ajax_scaffold_plugin 3.2.0

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.
Files changed (36) hide show
  1. data/CHANGELOG +3 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README +13 -0
  4. data/app/views/ajax_scaffold/_column_headings.rhtml +20 -0
  5. data/app/views/ajax_scaffold/_column_totals.rhtml +10 -0
  6. data/app/views/ajax_scaffold/_form.rhtml +5 -0
  7. data/app/views/ajax_scaffold/_form_messages.rhtml +5 -0
  8. data/app/views/ajax_scaffold/_messages.rhtml +10 -0
  9. data/app/views/ajax_scaffold/_new_edit.rhtml +40 -0
  10. data/app/views/ajax_scaffold/_pagination_links.rhtml +26 -0
  11. data/app/views/ajax_scaffold/_row.rhtml +46 -0
  12. data/app/views/ajax_scaffold/cancel.rjs +12 -0
  13. data/app/views/ajax_scaffold/create.rjs +20 -0
  14. data/app/views/ajax_scaffold/destroy.rjs +11 -0
  15. data/app/views/ajax_scaffold/edit.rjs +16 -0
  16. data/app/views/ajax_scaffold/list.rhtml +1 -0
  17. data/app/views/ajax_scaffold/new.rjs +14 -0
  18. data/app/views/ajax_scaffold/table.rhtml +63 -0
  19. data/app/views/ajax_scaffold/update.rjs +19 -0
  20. data/init.rb +27 -0
  21. data/install.rb +1 -0
  22. data/lib/ajax_scaffold_plugin.rb +505 -0
  23. data/lib/base/ajax_scaffold.rb +180 -0
  24. data/public/blank.html +33 -0
  25. data/public/images/add.gif +0 -0
  26. data/public/images/arrow_down.gif +0 -0
  27. data/public/images/arrow_up.gif +0 -0
  28. data/public/images/indicator-small.gif +0 -0
  29. data/public/images/indicator.gif +0 -0
  30. data/public/javascripts/ajax_scaffold.js +126 -0
  31. data/public/javascripts/dhtml_history.js +961 -0
  32. data/public/javascripts/rico_corner.js +781 -0
  33. data/public/stylesheets/ajax_scaffold.css +482 -0
  34. data/tasks/ajax_scaffold_tasks.rake +4 -0
  35. data/test/ajax_scaffold_test.rb +8 -0
  36. metadata +90 -0
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :ajax_scaffold do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,8 @@
1
+ require 'test/unit'
2
+
3
+ class AjaxScaffoldTest < Test::Unit::TestCase
4
+ # Replace this with your real tests.
5
+ def test_this_plugin
6
+ flunk
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.11
3
+ specification_version: 1
4
+ name: ajax_scaffold_plugin
5
+ version: !ruby/object:Gem::Version
6
+ version: 3.2.0
7
+ date: 2006-09-12 00:00:00 -06:00
8
+ summary: Ajax Scaffold plugin is a rails plugin for ajaxified scaffolds
9
+ require_paths:
10
+ - lib
11
+ email:
12
+ homepage:
13
+ rubyforge_project:
14
+ description: Ajax Scaffold plugin is a rails plugin for ajaxified scaffolds
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ authors: []
29
+
30
+ files:
31
+ - README
32
+ - CHANGELOG
33
+ - MIT-LICENSE
34
+ - init.rb
35
+ - install.rb
36
+ - app/
37
+ - app/views
38
+ - app/views/ajax_scaffold
39
+ - app/views/ajax_scaffold/_row.rhtml
40
+ - app/views/ajax_scaffold/_pagination_links.rhtml
41
+ - app/views/ajax_scaffold/_new_edit.rhtml
42
+ - app/views/ajax_scaffold/_messages.rhtml
43
+ - app/views/ajax_scaffold/_form_messages.rhtml
44
+ - app/views/ajax_scaffold/_form.rhtml
45
+ - app/views/ajax_scaffold/_column_totals.rhtml
46
+ - app/views/ajax_scaffold/_column_headings.rhtml
47
+ - app/views/ajax_scaffold/update.rjs
48
+ - app/views/ajax_scaffold/table.rhtml
49
+ - app/views/ajax_scaffold/new.rjs
50
+ - app/views/ajax_scaffold/list.rhtml
51
+ - app/views/ajax_scaffold/edit.rjs
52
+ - app/views/ajax_scaffold/destroy.rjs
53
+ - app/views/ajax_scaffold/create.rjs
54
+ - app/views/ajax_scaffold/cancel.rjs
55
+ - lib/
56
+ - lib/base
57
+ - lib/base/ajax_scaffold.rb
58
+ - lib/ajax_scaffold_plugin.rb
59
+ - public/
60
+ - public/stylesheets
61
+ - public/stylesheets/ajax_scaffold.css
62
+ - public/javascripts
63
+ - public/javascripts/rico_corner.js
64
+ - public/javascripts/dhtml_history.js
65
+ - public/javascripts/ajax_scaffold.js
66
+ - public/images
67
+ - public/images/indicator.gif
68
+ - public/images/indicator-small.gif
69
+ - public/images/arrow_up.gif
70
+ - public/images/arrow_down.gif
71
+ - public/images/add.gif
72
+ - public/blank.html
73
+ - tasks/
74
+ - tasks/ajax_scaffold_tasks.rake
75
+ - test/
76
+ - test/ajax_scaffold_test.rb
77
+ test_files: []
78
+
79
+ rdoc_options: []
80
+
81
+ extra_rdoc_files: []
82
+
83
+ executables: []
84
+
85
+ extensions: []
86
+
87
+ requirements:
88
+ - none
89
+ dependencies: []
90
+