rsence-pre 3.0.0.15 → 3.0.0.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22bd2e678d27f487fb7c2a5a2b98ad11fc14af70
4
- data.tar.gz: 177e8451577c50844408ad8f71b2c0440b2834f3
3
+ metadata.gz: 9172faa9db077a8050b3019cd2980d3f47c012a7
4
+ data.tar.gz: 490a635c8d3dc98280ff28511f1c967808fd3cd0
5
5
  SHA512:
6
- metadata.gz: b01f94be972aa993c6150faf61dd805e81b7ca141ef3757f1cf608a54db0b68f9c497836584101883f44c756ec40b1ec93b13dc0afcd3879afadb3a918c427c6
7
- data.tar.gz: 0dec9df51c10fcca127e7a3b334cd4b22aafca0c6010ba3a3a6129be99346663ef50056def9c08bc91fecd093d398fcc94b81d5d687464eae1392193eed40b8b
6
+ metadata.gz: 75675afe88e013d6259714d5848ad3fe9cc739c4868f38d86f97a18380c2e06be1de1104bb3c313a92ec40912a9856da5f05a89b23e27fcf830f04ce6e7ebb2d
7
+ data.tar.gz: 6eb2d05ddc8da6eb7f937747bb7af85498b23e5e5fbe187963e20cb0bfe4df1db02300ddb699b60e5f72956971e40aecefa9b68339a8cebd865169cd13f45119
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.0.15.pre
1
+ 3.0.0.16.pre
@@ -1130,25 +1130,26 @@ EventManagerApp = HApplication.extend
1130
1130
  # that responds true to _methodName. If _ctrl is undefined, use
1131
1131
  # a special default rule of auto-selecting the active control and
1132
1132
  # checking all of its siblings before traversing.
1133
- defaultKey: (_methodName,_ctrl,_testedIds)->
1134
- return true if _ctrl? and _ctrl[_methodName]? and _ctrl[_methodName]() == true
1133
+ defaultKey: (_methodName, _ctrl, _testedIds) ->
1134
+ return true if _ctrl?[_methodName]?() == true
1135
1135
  return null unless @_listeners.active
1136
1136
  _ctrl = @_views[@_listeners.active[0]] unless _ctrl?
1137
+ return null unless _ctrl?
1137
1138
  _ctrlId = _ctrl.viewId
1138
1139
  return null if ~_testedIds.indexOf(_ctrlId)
1139
- return true if _ctrl[_methodName]? and _ctrl[_methodName]() == true
1140
+ return true if _ctrl?[_methodName]?() == true
1140
1141
  _stop = null
1141
1142
  _testedIds.push(_ctrlId)
1142
1143
  for _viewId in _ctrl.parent.views
1143
1144
  continue if ~_testedIds.indexOf(_viewId)
1144
- continue if _ctrl.viewId == _viewId
1145
+ continue if _ctrl? and _ctrl.viewId == _viewId
1145
1146
  _ctrl = @_views[_viewId]
1146
- if _ctrl[_methodName]?
1147
+ if _ctrl?[_methodName]?
1147
1148
  _stopStatus = _ctrl[_methodName]()
1148
1149
  if _stopStatus == false or _stopStatus == true
1149
1150
  _stop = _stopStatus unless _stop
1150
1151
  return _stop if _stop != null
1151
- return true if _ctrl.parent? and @defaultKey(_methodName,_ctrl.parent,_testedIds) == true
1152
+ return true if _ctrl?.parent? and @defaultKey(_methodName, _ctrl.parent, _testedIds) == true
1152
1153
  null
1153
1154
  #
1154
1155
  # Handles the keyDown event
@@ -63,7 +63,9 @@ HRadioButtonList = HListItemControl.extend({
63
63
  var
64
64
  _prevIndex = this.radioButtonIndexValue.value,
65
65
  _listLen = _listItems.length;
66
- this.radioButtonIndexValue.set(-1);
66
+ if (this.radioButtonIndexValue) {
67
+ this.radioButtonIndexValue.set(-1);
68
+ }
67
69
  if( _listLen > 0 ){
68
70
  if( _listLen-1 < _prevIndex ){
69
71
  this.setValue(this.listItems[_listLen-1][0]);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsence-pre
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.15
4
+ version: 3.0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Riassence Inc.
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-11 00:00:00.000000000 Z
12
+ date: 2015-03-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rsence-deps
@@ -46,76 +46,13 @@ executables:
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - lib/rsence.rb
50
- - lib/rsence/argv.rb
51
- - lib/rsence/argv/argv_util.rb
52
- - lib/rsence/argv/env_check.rb
53
- - lib/rsence/argv/help_argv.rb
54
- - lib/rsence/argv/initenv_argv.rb
55
- - lib/rsence/argv/save_argv.rb
56
- - lib/rsence/argv/startup_argv.rb
57
- - lib/rsence/argv/status_argv.rb
58
- - lib/rsence/argv/test_port.rb
59
- - lib/rsence/daemon.rb
60
- - lib/rsence/default_config.rb
61
- - lib/rsence/dependencies.rb
62
- - lib/rsence/gzstring.rb
63
- - lib/rsence/http.rb
64
- - lib/rsence/http/broker.rb
65
- - lib/rsence/http/rackup.rb
66
- - lib/rsence/http/request.rb
67
- - lib/rsence/http/response.rb
68
- - lib/rsence/msg.rb
69
- - lib/rsence/pluginmanager.rb
70
- - lib/rsence/plugins.rb
71
- - lib/rsence/plugins/gui_plugin.rb
72
- - lib/rsence/plugins/guiparser.rb
73
- - lib/rsence/plugins/plugin.rb
74
- - lib/rsence/plugins/plugin_base.rb
75
- - lib/rsence/plugins/plugin_localization.rb
76
- - lib/rsence/plugins/plugin_plugins.rb
77
- - lib/rsence/plugins/plugin_sqlite_db.rb
78
- - lib/rsence/plugins/servlet.rb
79
- - lib/rsence/session/mongo_sessionstorage.rb
80
- - lib/rsence/session/sequel_sessionstorage.rb
81
- - lib/rsence/sessionmanager.rb
82
- - lib/rsence/sessionstorage.rb
83
- - lib/rsence/sigcomm.rb
84
- - lib/rsence/transporter.rb
85
- - lib/rsence/value.rb
86
- - lib/rsence/valuemanager.rb
87
- - setup/welcome/client_pkgs.yaml
88
- - setup/welcome/gui.yaml
89
- - setup/welcome/info.yaml
90
- - setup/welcome/js/welcome_scrollcontainer/welcome_scrollcontainer.coffee
91
- - setup/welcome/js/welcome_view/welcome_view.coffee
92
- - setup/welcome/text/welcome.html
93
- - setup/welcome/values.yaml
94
- - setup/welcome/welcome.rb
95
- - conf/default_conf.yaml
96
- - conf/default_strings.yaml
97
- - conf/rsence_command_strings.yaml
98
- - plugins/client_pkg/client_pkg.rb
99
- - plugins/client_pkg/info.yaml
100
- - plugins/client_pkg/lib/client_pkg_build.rb
101
- - plugins/client_pkg/lib/client_pkg_cache.rb
102
- - plugins/client_pkg/lib/client_pkg_serve.rb
103
- - plugins/main/img/loading.gif
104
- - plugins/main/img/riassence.gif
105
- - plugins/main/info.yaml
106
- - plugins/main/js/main.js
107
- - plugins/main/main.rb
108
- - plugins/main/tmpl/index.html
109
- - plugins/main/values.yaml
110
- - plugins/ticket/info.yaml
111
- - plugins/ticket/lib/common.rb
112
- - plugins/ticket/lib/favicon.rb
113
- - plugins/ticket/lib/file.rb
114
- - plugins/ticket/lib/img.rb
115
- - plugins/ticket/lib/objblob.rb
116
- - plugins/ticket/lib/rsrc.rb
117
- - plugins/ticket/lib/upload.rb
118
- - plugins/ticket/ticket.rb
49
+ - ".yardopts"
50
+ - AUTHORS.txt
51
+ - INSTALL.rdoc
52
+ - MIT-LICENSE.txt
53
+ - README.rdoc
54
+ - VERSION
55
+ - bin/rsence-pre
119
56
  - client/AUTHORS.txt
120
57
  - client/MIT-LICENSE.txt
121
58
  - client/README.md
@@ -308,18 +245,81 @@ files:
308
245
  - client/js/views/centerview/centerview.js
309
246
  - client/js/views/inlineview/inlineview.js
310
247
  - client/js/views/scrollview/scrollview.js
311
- - README.rdoc
312
- - INSTALL.rdoc
313
- - AUTHORS.txt
314
- - MIT-LICENSE.txt
248
+ - conf/default_conf.yaml
249
+ - conf/default_strings.yaml
250
+ - conf/rsence_command_strings.yaml
315
251
  - docs/ExampleGuiPlugin.rdoc
316
252
  - docs/JavascriptBundles.rdoc
317
253
  - docs/PluginBundleInfo.rdoc
318
254
  - docs/PluginBundles.rdoc
319
255
  - docs/Values.rdoc
320
- - VERSION
321
- - .yardopts
322
- - bin/rsence-pre
256
+ - lib/rsence.rb
257
+ - lib/rsence/argv.rb
258
+ - lib/rsence/argv/argv_util.rb
259
+ - lib/rsence/argv/env_check.rb
260
+ - lib/rsence/argv/help_argv.rb
261
+ - lib/rsence/argv/initenv_argv.rb
262
+ - lib/rsence/argv/save_argv.rb
263
+ - lib/rsence/argv/startup_argv.rb
264
+ - lib/rsence/argv/status_argv.rb
265
+ - lib/rsence/argv/test_port.rb
266
+ - lib/rsence/daemon.rb
267
+ - lib/rsence/default_config.rb
268
+ - lib/rsence/dependencies.rb
269
+ - lib/rsence/gzstring.rb
270
+ - lib/rsence/http.rb
271
+ - lib/rsence/http/broker.rb
272
+ - lib/rsence/http/rackup.rb
273
+ - lib/rsence/http/request.rb
274
+ - lib/rsence/http/response.rb
275
+ - lib/rsence/msg.rb
276
+ - lib/rsence/pluginmanager.rb
277
+ - lib/rsence/plugins.rb
278
+ - lib/rsence/plugins/gui_plugin.rb
279
+ - lib/rsence/plugins/guiparser.rb
280
+ - lib/rsence/plugins/plugin.rb
281
+ - lib/rsence/plugins/plugin_base.rb
282
+ - lib/rsence/plugins/plugin_localization.rb
283
+ - lib/rsence/plugins/plugin_plugins.rb
284
+ - lib/rsence/plugins/plugin_sqlite_db.rb
285
+ - lib/rsence/plugins/servlet.rb
286
+ - lib/rsence/session/mongo_sessionstorage.rb
287
+ - lib/rsence/session/sequel_sessionstorage.rb
288
+ - lib/rsence/sessionmanager.rb
289
+ - lib/rsence/sessionstorage.rb
290
+ - lib/rsence/sigcomm.rb
291
+ - lib/rsence/transporter.rb
292
+ - lib/rsence/value.rb
293
+ - lib/rsence/valuemanager.rb
294
+ - plugins/client_pkg/client_pkg.rb
295
+ - plugins/client_pkg/info.yaml
296
+ - plugins/client_pkg/lib/client_pkg_build.rb
297
+ - plugins/client_pkg/lib/client_pkg_cache.rb
298
+ - plugins/client_pkg/lib/client_pkg_serve.rb
299
+ - plugins/main/img/loading.gif
300
+ - plugins/main/img/riassence.gif
301
+ - plugins/main/info.yaml
302
+ - plugins/main/js/main.js
303
+ - plugins/main/main.rb
304
+ - plugins/main/tmpl/index.html
305
+ - plugins/main/values.yaml
306
+ - plugins/ticket/info.yaml
307
+ - plugins/ticket/lib/common.rb
308
+ - plugins/ticket/lib/favicon.rb
309
+ - plugins/ticket/lib/file.rb
310
+ - plugins/ticket/lib/img.rb
311
+ - plugins/ticket/lib/objblob.rb
312
+ - plugins/ticket/lib/rsrc.rb
313
+ - plugins/ticket/lib/upload.rb
314
+ - plugins/ticket/ticket.rb
315
+ - setup/welcome/client_pkgs.yaml
316
+ - setup/welcome/gui.yaml
317
+ - setup/welcome/info.yaml
318
+ - setup/welcome/js/welcome_scrollcontainer/welcome_scrollcontainer.coffee
319
+ - setup/welcome/js/welcome_view/welcome_view.coffee
320
+ - setup/welcome/text/welcome.html
321
+ - setup/welcome/values.yaml
322
+ - setup/welcome/welcome.rb
323
323
  homepage: http://www.rsence.org/
324
324
  licenses:
325
325
  - MIT
@@ -330,17 +330,17 @@ require_paths:
330
330
  - lib
331
331
  required_ruby_version: !ruby/object:Gem::Requirement
332
332
  requirements:
333
- - - '>='
333
+ - - ">="
334
334
  - !ruby/object:Gem::Version
335
335
  version: 1.8.7
336
336
  required_rubygems_version: !ruby/object:Gem::Requirement
337
337
  requirements:
338
- - - '>'
338
+ - - ">"
339
339
  - !ruby/object:Gem::Version
340
340
  version: 1.3.1
341
341
  requirements: []
342
342
  rubyforge_project: rsence-
343
- rubygems_version: 2.1.1
343
+ rubygems_version: 2.2.1
344
344
  signing_key:
345
345
  specification_version: 4
346
346
  summary: Pre-Release 3.0 version of RSence.