compass-jquery-plugin 0.2.4.5 → 0.2.4.99

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/README.textile +36 -4
  2. data/VERSION.yml +1 -1
  3. data/compass-jquery-plugin.gemspec +49 -3
  4. data/gem_tasks/calendar.rake +2 -2
  5. data/gem_tasks/dynatree.rake +2 -2
  6. data/gem_tasks/jqgrid.rake +2 -2
  7. data/gem_tasks/jqtouch.rake +114 -0
  8. data/gem_tasks/jrails.rake +20 -4
  9. data/gem_tasks/rubygems.rake +4 -1
  10. data/gem_tasks/secret_sauce.rake +2 -2
  11. data/lib/jquery/jqgrid/jqgrid.rb +435 -0
  12. data/lib/jquery/jqgrid/jqgrid2xml.rb +50 -0
  13. data/lib/jquery/jqgrid.rb +3 -419
  14. data/lib/jquery/jqtouch.rb +4 -0
  15. data/templates/dynatree/jquery.ui/dynatree.vista/folder.png +0 -0
  16. data/templates/dynatree/manifest.rb +0 -1
  17. data/templates/jqtouch/config/initializers/jqtouch.rb +3 -0
  18. data/templates/jqtouch/jqtouch/apple/backButton.png +0 -0
  19. data/templates/jqtouch/jqtouch/apple/blueButton.png +0 -0
  20. data/templates/jqtouch/jqtouch/apple/cancel.png +0 -0
  21. data/templates/jqtouch/jqtouch/apple/chevron.png +0 -0
  22. data/templates/jqtouch/jqtouch/apple/grayButton.png +0 -0
  23. data/templates/jqtouch/jqtouch/apple/listArrowSel.png +0 -0
  24. data/templates/jqtouch/jqtouch/apple/listGroup.png +0 -0
  25. data/templates/jqtouch/jqtouch/apple/loading.gif +0 -0
  26. data/templates/jqtouch/jqtouch/apple/on_off.png +0 -0
  27. data/templates/jqtouch/jqtouch/apple/pinstripes.png +0 -0
  28. data/templates/jqtouch/jqtouch/apple/selection.png +0 -0
  29. data/templates/jqtouch/jqtouch/apple/thumb.png +0 -0
  30. data/templates/jqtouch/jqtouch/apple/toggle.png +0 -0
  31. data/templates/jqtouch/jqtouch/apple/toggleOn.png +0 -0
  32. data/templates/jqtouch/jqtouch/apple/toolButton.png +0 -0
  33. data/templates/jqtouch/jqtouch/apple/toolbar.png +0 -0
  34. data/templates/jqtouch/jqtouch/apple/whiteButton.png +0 -0
  35. data/templates/jqtouch/jqtouch/apple.sass +651 -0
  36. data/templates/jqtouch/jqtouch/icons/iphone_16x16.png +0 -0
  37. data/templates/jqtouch/jqtouch/iphone-emulator.sass +17 -0
  38. data/templates/jqtouch/jqtouch/iphone_fullsize.png +0 -0
  39. data/templates/jqtouch/jqtouch/jqt/back_button.png +0 -0
  40. data/templates/jqtouch/jqtouch/jqt/back_button_clicked.png +0 -0
  41. data/templates/jqtouch/jqtouch/jqt/button.png +0 -0
  42. data/templates/jqtouch/jqtouch/jqt/button_clicked.png +0 -0
  43. data/templates/jqtouch/jqtouch/jqt/chevron.png +0 -0
  44. data/templates/jqtouch/jqtouch/jqt/chevron_circle.png +0 -0
  45. data/templates/jqtouch/jqtouch/jqt/grayButton.png +0 -0
  46. data/templates/jqtouch/jqtouch/jqt/loading.gif +0 -0
  47. data/templates/jqtouch/jqtouch/jqt/on_off.png +0 -0
  48. data/templates/jqtouch/jqtouch/jqt/rowhead.png +0 -0
  49. data/templates/jqtouch/jqtouch/jqt/toggle.png +0 -0
  50. data/templates/jqtouch/jqtouch/jqt/toggleOn.png +0 -0
  51. data/templates/jqtouch/jqtouch/jqt/toolbar.png +0 -0
  52. data/templates/jqtouch/jqtouch/jqt/whiteButton.png +0 -0
  53. data/templates/jqtouch/jqtouch/jqt.sass +580 -0
  54. data/templates/jqtouch/jqtouch/jqtouch.sass +75 -0
  55. data/templates/jqtouch/jquery.jqtouch.js +1007 -0
  56. data/templates/jqtouch/jquery.jqtouch.min.js +1 -0
  57. data/templates/jqtouch/manifest.rb +43 -0
  58. data/templates/jrails/config/initializers/jrails.rb +2 -0
  59. data/templates/jrails/jquery.compat-1.3.js +288 -0
  60. data/templates/jrails/jquery.compat-1.3.min.js +1 -0
  61. data/templates/jrails/jquery.js +4483 -2570
  62. data/templates/jrails/jquery.min.js +12 -8
  63. data/templates/jrails/manifest.rb +2 -0
  64. metadata +49 -3
  65. data/templates/dynatree/jquery.ui/dynatree.vista/folder_open.png +0 -0
@@ -6,6 +6,8 @@ javascript 'jrails.js'
6
6
  javascript 'jrails.min.js'
7
7
  javascript 'jquery.js'
8
8
  javascript 'jquery.min.js'
9
+ javascript 'jquery.compat-1.3.js'
10
+ javascript 'jquery.compat-1.3.min.js'
9
11
  javascript 'jquery.pngFix.js'
10
12
  javascript 'jquery.pngFix.min.js'
11
13
  javascript 'jquery-ui.js'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-jquery-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4.5
4
+ version: 0.2.4.99
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kosmas Schuetz
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-05 00:00:00 +01:00
12
+ date: 2010-01-16 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -43,6 +43,7 @@ files:
43
43
  - gem_tasks/calendar.rake
44
44
  - gem_tasks/dynatree.rake
45
45
  - gem_tasks/jqgrid.rake
46
+ - gem_tasks/jqtouch.rake
46
47
  - gem_tasks/jrails.rake
47
48
  - gem_tasks/rubygems.rake
48
49
  - gem_tasks/secret_sauce.rake
@@ -52,6 +53,9 @@ files:
52
53
  - lib/jquery/compass_plugin.rb
53
54
  - lib/jquery/dynatree.rb
54
55
  - lib/jquery/jqgrid.rb
56
+ - lib/jquery/jqgrid/jqgrid.rb
57
+ - lib/jquery/jqgrid/jqgrid2xml.rb
58
+ - lib/jquery/jqtouch.rb
55
59
  - lib/jquery/jrails.rb
56
60
  - lib/jquery/secret_sauce.rb
57
61
  - lib/jquery/secret_sauce/controller/ui_dialog_controls.rb
@@ -150,7 +154,6 @@ files:
150
154
  - templates/dynatree/jquery.ui/dynatree.vista/folder.png
151
155
  - templates/dynatree/jquery.ui/dynatree.vista/folder_docs.png
152
156
  - templates/dynatree/jquery.ui/dynatree.vista/folder_images.png
153
- - templates/dynatree/jquery.ui/dynatree.vista/folder_open.png
154
157
  - templates/dynatree/jquery.ui/dynatree.vista/folder_page.png
155
158
  - templates/dynatree/jquery.ui/dynatree.vista/ltDoc.png
156
159
  - templates/dynatree/jquery.ui/dynatree.vista/ltError.png
@@ -254,6 +257,47 @@ files:
254
257
  - templates/jqgrid/jquery.ui/jqGrid.sass
255
258
  - templates/jqgrid/manifest.rb
256
259
  - templates/jqgrid/public/stylesheets/ellipsis-xbl.xml
260
+ - templates/jqtouch/config/initializers/jqtouch.rb
261
+ - templates/jqtouch/jqtouch/apple.sass
262
+ - templates/jqtouch/jqtouch/apple/backButton.png
263
+ - templates/jqtouch/jqtouch/apple/blueButton.png
264
+ - templates/jqtouch/jqtouch/apple/cancel.png
265
+ - templates/jqtouch/jqtouch/apple/chevron.png
266
+ - templates/jqtouch/jqtouch/apple/grayButton.png
267
+ - templates/jqtouch/jqtouch/apple/listArrowSel.png
268
+ - templates/jqtouch/jqtouch/apple/listGroup.png
269
+ - templates/jqtouch/jqtouch/apple/loading.gif
270
+ - templates/jqtouch/jqtouch/apple/on_off.png
271
+ - templates/jqtouch/jqtouch/apple/pinstripes.png
272
+ - templates/jqtouch/jqtouch/apple/selection.png
273
+ - templates/jqtouch/jqtouch/apple/thumb.png
274
+ - templates/jqtouch/jqtouch/apple/toggle.png
275
+ - templates/jqtouch/jqtouch/apple/toggleOn.png
276
+ - templates/jqtouch/jqtouch/apple/toolButton.png
277
+ - templates/jqtouch/jqtouch/apple/toolbar.png
278
+ - templates/jqtouch/jqtouch/apple/whiteButton.png
279
+ - templates/jqtouch/jqtouch/icons/iphone_16x16.png
280
+ - templates/jqtouch/jqtouch/iphone-emulator.sass
281
+ - templates/jqtouch/jqtouch/iphone_fullsize.png
282
+ - templates/jqtouch/jqtouch/jqt.sass
283
+ - templates/jqtouch/jqtouch/jqt/back_button.png
284
+ - templates/jqtouch/jqtouch/jqt/back_button_clicked.png
285
+ - templates/jqtouch/jqtouch/jqt/button.png
286
+ - templates/jqtouch/jqtouch/jqt/button_clicked.png
287
+ - templates/jqtouch/jqtouch/jqt/chevron.png
288
+ - templates/jqtouch/jqtouch/jqt/chevron_circle.png
289
+ - templates/jqtouch/jqtouch/jqt/grayButton.png
290
+ - templates/jqtouch/jqtouch/jqt/loading.gif
291
+ - templates/jqtouch/jqtouch/jqt/on_off.png
292
+ - templates/jqtouch/jqtouch/jqt/rowhead.png
293
+ - templates/jqtouch/jqtouch/jqt/toggle.png
294
+ - templates/jqtouch/jqtouch/jqt/toggleOn.png
295
+ - templates/jqtouch/jqtouch/jqt/toolbar.png
296
+ - templates/jqtouch/jqtouch/jqt/whiteButton.png
297
+ - templates/jqtouch/jqtouch/jqtouch.sass
298
+ - templates/jqtouch/jquery.jqtouch.js
299
+ - templates/jqtouch/jquery.jqtouch.min.js
300
+ - templates/jqtouch/manifest.rb
257
301
  - templates/jrails/config/initializers/jrails.rb
258
302
  - templates/jrails/i18n/jquery.ui/datepicker-ar.js
259
303
  - templates/jrails/i18n/jquery.ui/datepicker-ar.min.js
@@ -339,6 +383,8 @@ files:
339
383
  - templates/jrails/i18n/jquery.ui/datepicker-zh-TW.min.js
340
384
  - templates/jrails/jquery-ui.js
341
385
  - templates/jrails/jquery-ui.min.js
386
+ - templates/jrails/jquery.compat-1.3.js
387
+ - templates/jrails/jquery.compat-1.3.min.js
342
388
  - templates/jrails/jquery.js
343
389
  - templates/jrails/jquery.min.js
344
390
  - templates/jrails/jquery.pngFix.js