netzke-core 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile +1 -0
- data/README.md +9 -3
- data/javascripts/base.js +15 -8
- data/javascripts/ext.js +145 -70
- data/lib/netzke/base.rb +33 -10
- data/lib/netzke/core.rb +1 -0
- data/lib/netzke/core/action_config.rb +3 -3
- data/lib/netzke/core/actions.rb +34 -2
- data/lib/netzke/core/component_config.rb +3 -2
- data/lib/netzke/core/composition.rb +19 -36
- data/lib/netzke/core/configuration.rb +1 -3
- data/lib/netzke/core/dsl_config_base.rb +9 -0
- data/lib/netzke/core/dsl_support.rb +6 -6
- data/lib/netzke/core/javascript.rb +11 -5
- data/lib/netzke/core/railz/controller_extensions.rb +56 -28
- data/lib/netzke/core/services.rb +20 -6
- data/lib/netzke/core/version.rb +1 -1
- data/test/core_test_app/app/components/actions.rb +2 -0
- data/test/core_test_app/app/components/composition.rb +1 -0
- data/test/core_test_app/app/components/dynamic_loading.rb +7 -11
- data/test/core_test_app/app/components/dynamic_loading/javascripts/dynamic_loading.js +1 -1
- data/test/core_test_app/app/components/endpoints.rb +15 -1
- data/test/core_test_app/app/components/endpoints/javascripts/endpoints.js +6 -2
- data/test/core_test_app/app/components/hello_user.rb +12 -0
- data/test/core_test_app/app/components/hello_world/javascripts/hello_world.js +1 -1
- data/test/core_test_app/app/components/multi_instance_loading.rb +18 -0
- data/test/core_test_app/app/components/multi_instance_loading/javascripts/multi_instance_loading.js +18 -0
- data/test/core_test_app/app/components/persistence.rb +1 -1
- data/test/core_test_app/app/components/session_expiration.rb +21 -0
- data/test/core_test_app/app/components/simple_component.rb +1 -1
- data/test/core_test_app/config/initializers/javascripts/session_expiration.js +6 -0
- data/test/core_test_app/config/initializers/netzke.rb +3 -1
- data/test/core_test_app/log/development.log +46574 -0
- data/test/core_test_app/log/test.log +67624 -0
- data/test/core_test_app/tmp/cache/assets/C92/5A0/sprockets%2F39e75754782ee12179bf35c9a0971d80 +0 -0
- data/test/core_test_app/tmp/cache/assets/C9F/750/sprockets%2F20ce3d64040a5d3a0a8883bd60754356 +0 -0
- data/test/core_test_app/tmp/cache/assets/CC4/C00/sprockets%2Fc615df52887d8c2e67e8413576a419c5 +0 -0
- data/test/core_test_app/tmp/cache/assets/D0E/870/sprockets%2Fa593bf4fac106add88c9434141a49663 +0 -0
- data/test/core_test_app/tmp/cache/assets/D14/8E0/sprockets%2F20748e8d1d7d090d122904a9fe6f18fc +0 -0
- data/test/core_test_app/tmp/cache/assets/D3E/DA0/sprockets%2Fa175f1ac5996544b908ba3ba3f64c4f3 +0 -0
- data/test/core_test_app/tmp/cache/assets/D43/C00/sprockets%2F7bc60c758776356d615ab5edff201ee2 +0 -0
- data/test/core_test_app/tmp/cache/assets/D98/9C0/sprockets%2F18b80e8fe200aebc522e561a867ea6fb +0 -0
- data/test/core_test_app/tmp/cache/assets/DB0/6E0/sprockets%2F03e33f5a4779eeb48bcfc86ee717fb55 +0 -0
- metadata +13 -2
data/test/core_test_app/tmp/cache/assets/C92/5A0/sprockets%2F39e75754782ee12179bf35c9a0971d80
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/C9F/750/sprockets%2F20ce3d64040a5d3a0a8883bd60754356
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/CC4/C00/sprockets%2Fc615df52887d8c2e67e8413576a419c5
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/D0E/870/sprockets%2Fa593bf4fac106add88c9434141a49663
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/D14/8E0/sprockets%2F20748e8d1d7d090d122904a9fe6f18fc
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/D3E/DA0/sprockets%2Fa175f1ac5996544b908ba3ba3f64c4f3
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/D43/C00/sprockets%2F7bc60c758776356d615ab5edff201ee2
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/D98/9C0/sprockets%2F18b80e8fe200aebc522e561a867ea6fb
CHANGED
Binary file
|
data/test/core_test_app/tmp/cache/assets/DB0/6E0/sprockets%2F03e33f5a4779eeb48bcfc86ee717fb55
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netzke-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nomadcoder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: uglifier
|
@@ -141,6 +141,7 @@ files:
|
|
141
141
|
- lib/netzke/core/config_to_dsl_delegator.rb
|
142
142
|
- lib/netzke/core/configuration.rb
|
143
143
|
- lib/netzke/core/css_config.rb
|
144
|
+
- lib/netzke/core/dsl_config_base.rb
|
144
145
|
- lib/netzke/core/dsl_support.rb
|
145
146
|
- lib/netzke/core/dynamic_assets.rb
|
146
147
|
- lib/netzke/core/embedding.rb
|
@@ -202,6 +203,7 @@ files:
|
|
202
203
|
- test/core_test_app/app/components/haml_panel/html/body.html.haml
|
203
204
|
- test/core_test_app/app/components/haml_panel/html/server_response.html.haml
|
204
205
|
- test/core_test_app/app/components/haml_panel.rb
|
206
|
+
- test/core_test_app/app/components/hello_user.rb
|
205
207
|
- test/core_test_app/app/components/hello_world/javascripts/hello_world.js
|
206
208
|
- test/core_test_app/app/components/hello_world.rb
|
207
209
|
- test/core_test_app/app/components/js_inclusion/javascripts/extra_one.js
|
@@ -215,6 +217,8 @@ files:
|
|
215
217
|
- test/core_test_app/app/components/loaded_css_inclusion.rb
|
216
218
|
- test/core_test_app/app/components/localization.rb
|
217
219
|
- test/core_test_app/app/components/localization_extended.rb
|
220
|
+
- test/core_test_app/app/components/multi_instance_loading/javascripts/multi_instance_loading.js
|
221
|
+
- test/core_test_app/app/components/multi_instance_loading.rb
|
218
222
|
- test/core_test_app/app/components/persistence.rb
|
219
223
|
- test/core_test_app/app/components/persistence_with_shared_state.rb
|
220
224
|
- test/core_test_app/app/components/plugin_with_actions.rb
|
@@ -230,6 +234,7 @@ files:
|
|
230
234
|
- test/core_test_app/app/components/self_reloading.rb
|
231
235
|
- test/core_test_app/app/components/server_counter/javascripts/server_counter.js
|
232
236
|
- test/core_test_app/app/components/server_counter.rb
|
237
|
+
- test/core_test_app/app/components/session_expiration.rb
|
233
238
|
- test/core_test_app/app/components/simple_authentication_component.rb
|
234
239
|
- test/core_test_app/app/components/simple_component.rb
|
235
240
|
- test/core_test_app/app/components/simple_composite.rb
|
@@ -263,6 +268,7 @@ files:
|
|
263
268
|
- test/core_test_app/config/environments/test.rb
|
264
269
|
- test/core_test_app/config/initializers/backtrace_silencers.rb
|
265
270
|
- test/core_test_app/config/initializers/inflections.rb
|
271
|
+
- test/core_test_app/config/initializers/javascripts/session_expiration.js
|
266
272
|
- test/core_test_app/config/initializers/mime_types.rb
|
267
273
|
- test/core_test_app/config/initializers/netzke.rb
|
268
274
|
- test/core_test_app/config/initializers/secret_token.rb
|
@@ -370,6 +376,7 @@ test_files:
|
|
370
376
|
- test/core_test_app/app/components/haml_panel/html/body.html.haml
|
371
377
|
- test/core_test_app/app/components/haml_panel/html/server_response.html.haml
|
372
378
|
- test/core_test_app/app/components/haml_panel.rb
|
379
|
+
- test/core_test_app/app/components/hello_user.rb
|
373
380
|
- test/core_test_app/app/components/hello_world/javascripts/hello_world.js
|
374
381
|
- test/core_test_app/app/components/hello_world.rb
|
375
382
|
- test/core_test_app/app/components/js_inclusion/javascripts/extra_one.js
|
@@ -383,6 +390,8 @@ test_files:
|
|
383
390
|
- test/core_test_app/app/components/loaded_css_inclusion.rb
|
384
391
|
- test/core_test_app/app/components/localization.rb
|
385
392
|
- test/core_test_app/app/components/localization_extended.rb
|
393
|
+
- test/core_test_app/app/components/multi_instance_loading/javascripts/multi_instance_loading.js
|
394
|
+
- test/core_test_app/app/components/multi_instance_loading.rb
|
386
395
|
- test/core_test_app/app/components/persistence.rb
|
387
396
|
- test/core_test_app/app/components/persistence_with_shared_state.rb
|
388
397
|
- test/core_test_app/app/components/plugin_with_actions.rb
|
@@ -398,6 +407,7 @@ test_files:
|
|
398
407
|
- test/core_test_app/app/components/self_reloading.rb
|
399
408
|
- test/core_test_app/app/components/server_counter/javascripts/server_counter.js
|
400
409
|
- test/core_test_app/app/components/server_counter.rb
|
410
|
+
- test/core_test_app/app/components/session_expiration.rb
|
401
411
|
- test/core_test_app/app/components/simple_authentication_component.rb
|
402
412
|
- test/core_test_app/app/components/simple_component.rb
|
403
413
|
- test/core_test_app/app/components/simple_composite.rb
|
@@ -431,6 +441,7 @@ test_files:
|
|
431
441
|
- test/core_test_app/config/environments/test.rb
|
432
442
|
- test/core_test_app/config/initializers/backtrace_silencers.rb
|
433
443
|
- test/core_test_app/config/initializers/inflections.rb
|
444
|
+
- test/core_test_app/config/initializers/javascripts/session_expiration.js
|
434
445
|
- test/core_test_app/config/initializers/mime_types.rb
|
435
446
|
- test/core_test_app/config/initializers/netzke.rb
|
436
447
|
- test/core_test_app/config/initializers/secret_token.rb
|