nitro 0.29.0 → 0.30.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 (93) hide show
  1. data/CHANGELOG +410 -0
  2. data/ProjectInfo +36 -44
  3. data/README +5 -5
  4. data/doc/AUTHORS +6 -0
  5. data/doc/RELEASES +159 -2
  6. data/lib/glue/sweeper.rb +2 -2
  7. data/lib/glue/webfile.rb +14 -1
  8. data/lib/nitro.rb +6 -9
  9. data/lib/nitro/adapter/mongrel.rb +36 -43
  10. data/lib/nitro/adapter/scgi.rb +1 -1
  11. data/lib/nitro/adapter/webrick.rb +96 -24
  12. data/lib/nitro/caching/actions.rb +2 -1
  13. data/lib/nitro/caching/fragments.rb +1 -8
  14. data/lib/nitro/caching/output.rb +14 -4
  15. data/lib/nitro/cgi.rb +19 -21
  16. data/lib/nitro/cgi/cookie.rb +5 -1
  17. data/lib/nitro/cgi/request.rb +20 -4
  18. data/lib/nitro/compiler.rb +74 -28
  19. data/lib/nitro/compiler/cleanup.rb +1 -1
  20. data/lib/nitro/compiler/elements.rb +1 -2
  21. data/lib/nitro/compiler/localization.rb +1 -1
  22. data/lib/nitro/compiler/markup.rb +1 -1
  23. data/lib/nitro/compiler/script.rb +52 -44
  24. data/lib/nitro/compiler/squeeze.rb +4 -3
  25. data/lib/nitro/compiler/xslt.rb +7 -6
  26. data/lib/nitro/context.rb +39 -20
  27. data/lib/nitro/controller.rb +24 -5
  28. data/lib/nitro/dispatcher.rb +13 -5
  29. data/lib/nitro/global.rb +63 -0
  30. data/lib/nitro/helper/feed.rb +432 -0
  31. data/lib/nitro/helper/form.rb +11 -3
  32. data/lib/nitro/helper/form/builder.rb +140 -0
  33. data/lib/nitro/helper/form/controls.rb +2 -1
  34. data/lib/nitro/helper/javascript.rb +6 -0
  35. data/lib/nitro/helper/javascript/morphing.rb +13 -6
  36. data/lib/nitro/helper/xhtml.rb +42 -6
  37. data/lib/nitro/helper/xml.rb +3 -0
  38. data/lib/nitro/part.rb +2 -2
  39. data/lib/nitro/render.rb +7 -2
  40. data/lib/nitro/router.rb +57 -16
  41. data/lib/nitro/scaffolding.rb +29 -20
  42. data/lib/nitro/server.rb +4 -10
  43. data/lib/nitro/server/drb.rb +1 -1
  44. data/lib/nitro/server/runner.rb +10 -0
  45. data/lib/nitro/session.rb +31 -12
  46. data/lib/nitro/session/drb.rb +13 -1
  47. data/lib/nitro/session/file.rb +1 -1
  48. data/lib/nitro/session/memcached.rb +1 -1
  49. data/lib/nitro/session/memory.rb +1 -1
  50. data/lib/nitro/session/og.rb +1 -1
  51. data/lib/nitro/test/testcase.rb +3 -0
  52. data/proto/public/error.xhtml +5 -5
  53. data/proto/public/js/controls.js +2 -2
  54. data/proto/public/js/dragdrop.js +320 -79
  55. data/proto/public/js/effects.js +200 -152
  56. data/proto/public/js/prototype.js +284 -63
  57. data/proto/public/js/scriptaculous.js +7 -5
  58. data/proto/public/js/unittest.js +11 -0
  59. data/proto/public/scaffold/advanced_search.xhtml +30 -0
  60. data/proto/public/scaffold/list.xhtml +8 -1
  61. data/proto/public/scaffold/search.xhtml +2 -1
  62. data/proto/script/scgi_service +1 -1
  63. data/src/part/admin/controller.rb +1 -1
  64. data/src/part/admin/skin.rb +1 -1
  65. data/test/nitro/CONFIG.rb +3 -0
  66. data/test/nitro/adapter/tc_webrick.rb +1 -1
  67. data/test/nitro/cgi/tc_cookie.rb +1 -1
  68. data/test/nitro/cgi/tc_request.rb +5 -5
  69. data/test/nitro/compiler/tc_client_morpher.rb +47 -0
  70. data/test/nitro/compiler/tc_compiler.rb +2 -0
  71. data/test/nitro/helper/tc_feed.rb +138 -0
  72. data/test/nitro/helper/tc_pager.rb +1 -1
  73. data/test/nitro/helper/tc_rss.rb +1 -1
  74. data/test/nitro/helper/tc_table.rb +1 -1
  75. data/test/nitro/helper/tc_xhtml.rb +1 -1
  76. data/test/nitro/tc_caching.rb +1 -1
  77. data/test/nitro/tc_cgi.rb +1 -1
  78. data/test/nitro/tc_context.rb +1 -1
  79. data/test/nitro/tc_controller.rb +31 -3
  80. data/test/nitro/tc_controller_aspect.rb +1 -1
  81. data/test/nitro/tc_dispatcher.rb +1 -1
  82. data/test/nitro/tc_element.rb +1 -1
  83. data/test/nitro/tc_flash.rb +1 -1
  84. data/test/nitro/tc_helper.rb +1 -1
  85. data/test/nitro/tc_render.rb +6 -6
  86. data/test/nitro/tc_router.rb +8 -4
  87. data/test/nitro/tc_server.rb +1 -3
  88. data/test/nitro/tc_session.rb +1 -3
  89. metadata +107 -104
  90. data/Rakefile +0 -232
  91. data/lib/nitro/adapter/acgi.rb +0 -237
  92. data/proto/public/Makefile.acgi +0 -40
  93. data/proto/public/acgi.c +0 -138
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
 
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
 
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
 
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
  require 'ostruct'
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
  require 'ostruct'
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
 
@@ -11,7 +11,7 @@ class TestRender < Test::Unit::TestCase # :nodoc: all
11
11
 
12
12
  class ContextMock < Mock
13
13
  mock :response_headers, {}
14
- mock :host_url, 'http://www.nitrohq.com'
14
+ mock :host_url, 'http://www.nitroproject.org'
15
15
  end
16
16
 
17
17
  class TestController
@@ -30,11 +30,11 @@ class TestRender < Test::Unit::TestCase # :nodoc: all
30
30
  def test_redirect
31
31
  # relative url, the controller base_url is prepended
32
32
  redirect 'hello'
33
- assert_equal 'http://www.nitrohq.com/base/hello', @controller.context.response_headers['location']
33
+ assert_equal 'http://www.nitroproject.org/base/hello', @controller.context.response_headers['location']
34
34
 
35
35
  # absolute url, use as is.
36
36
  redirect '/main'
37
- assert_equal 'http://www.nitrohq.com/main', @controller.context.response_headers['location']
37
+ assert_equal 'http://www.nitroproject.org/main', @controller.context.response_headers['location']
38
38
 
39
39
  # http://, use as is.
40
40
  redirect 'http://www.gmosx.com/info'
@@ -42,11 +42,11 @@ class TestRender < Test::Unit::TestCase # :nodoc: all
42
42
 
43
43
  # bug.
44
44
  redirect 'edit/Home'
45
- assert_equal 'http://www.nitrohq.com/base/edit/Home', @controller.context.response_headers['location']
45
+ assert_equal 'http://www.nitroproject.org/base/edit/Home', @controller.context.response_headers['location']
46
46
 
47
47
  @controller.base = nil
48
48
  redirect 'edit/Home'
49
- assert_equal 'http://www.nitrohq.com/edit/Home', @controller.context.response_headers['location']
49
+ assert_equal 'http://www.nitroproject.org/edit/Home', @controller.context.response_headers['location']
50
50
  end
51
51
 
52
52
  def redirect(*args)
@@ -1,4 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
2
2
 
3
3
  require 'test/unit'
4
4
  require 'ostruct'
@@ -11,6 +11,10 @@ class AdminController; end
11
11
 
12
12
  class AbstractRouter
13
13
  include Nitro::Router
14
+
15
+ def initialize
16
+ init_routes()
17
+ end
14
18
  end
15
19
 
16
20
  class TC_Router < Test::Unit::TestCase # :nodoc: all
@@ -19,9 +23,9 @@ class TC_Router < Test::Unit::TestCase # :nodoc: all
19
23
  def setup
20
24
  @r = AbstractRouter.new
21
25
 
22
- @r.add_route(%r{rewritten/url/(.*)}, :controller => IdController, :action => :register, :param => :name)
23
- @r.add_route(%r{another/zelo/(.*)/(.*)}, :controller => AdminController, :action => :kick, :params => [:name, :age])
24
- @r.add_route(%r{cool/(.*)_(.*).html}, :controller => AdminController, :action => :long, :params => [:name, :age])
26
+ @r.add_rule(:match => %r{rewritten/url/(.*)}, :controller => IdController, :action => :register, :param => :name)
27
+ @r.add_rule(:match => %r{another/zelo/(.*)/(.*)}, :controller => AdminController, :action => :kick, :params => [:name, :age])
28
+ @r.add_rule(:match => %r{cool/(.*)_(.*).html}, :controller => AdminController, :action => :long, :params => [:name, :age])
25
29
  end
26
30
 
27
31
  def teardown
@@ -1,6 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
2
-
3
- $NITRO_NO_ENVIRONMENT = true
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
4
2
 
5
3
  require 'test/unit'
6
4
 
@@ -1,6 +1,4 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
2
-
3
- $NITRO_NO_ENVIRONMENT = true
1
+ require File.join(File.dirname(__FILE__), 'CONFIG.rb')
4
2
 
5
3
  require 'ostruct'
6
4
  require 'test/unit'
metadata CHANGED
@@ -3,13 +3,13 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: nitro
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.29.0
7
- date: 2006-03-07 00:00:00 +02:00
6
+ version: 0.30.0
7
+ date: 2006-05-05 00:00:00 +03:00
8
8
  summary: Everything you need to create Web 2.0 applications with Ruby and Javascript
9
9
  require_paths:
10
10
  - lib
11
11
  email: gm@navel.gr
12
- homepage: http://www.nitrohq.com
12
+ homepage: http://www.nitroproject.org
13
13
  rubyforge_project: nitro
14
14
  description:
15
15
  autorequire:
@@ -22,37 +22,36 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
22
22
  - !ruby/object:Gem::Version
23
23
  version: 0.0.0
24
24
  version:
25
- platform: ruby
25
+ platform:
26
26
  signing_key:
27
27
  cert_chain:
28
28
  authors:
29
29
  - George Moschovitis
30
30
  files:
31
+ - ProjectInfo
32
+ - CHANGELOG
33
+ - INSTALL
34
+ - README
31
35
  - bin
32
36
  - doc
33
37
  - lib
34
38
  - src
35
39
  - test
36
- - ProjectInfo
37
40
  - setup.rb
38
- - Rakefile
39
- - README
40
- - INSTALL
41
- - CHANGELOG
42
41
  - proto
43
42
  - bin/nitrogen
44
43
  - bin/nitro
45
- - doc/lhttpd.txt
46
- - doc/faq.txt
47
- - doc/config.txt
48
- - doc/CHANGELOG.3
49
- - doc/apache.txt
50
- - doc/RELEASES
51
- - doc/MIGRATION
52
- - doc/LICENSE
53
- - doc/CHANGELOG.2
54
44
  - doc/CHANGELOG.1
55
45
  - doc/AUTHORS
46
+ - doc/CHANGELOG.2
47
+ - doc/CHANGELOG.3
48
+ - doc/LICENSE
49
+ - doc/MIGRATION
50
+ - doc/RELEASES
51
+ - doc/apache.txt
52
+ - doc/config.txt
53
+ - doc/faq.txt
54
+ - doc/lhttpd.txt
56
55
  - lib/nitro
57
56
  - lib/glue
58
57
  - lib/nitro.rb
@@ -60,54 +59,54 @@ files:
60
59
  - lib/nitro/adapter
61
60
  - lib/nitro/caching
62
61
  - lib/nitro/cgi
62
+ - lib/nitro/caching.rb
63
63
  - lib/nitro/compiler
64
- - lib/nitro/part.rb
64
+ - lib/nitro/cgi.rb
65
+ - lib/nitro/global.rb
66
+ - lib/nitro/compiler.rb
67
+ - lib/nitro/context.rb
68
+ - lib/nitro/controller.rb
65
69
  - lib/nitro/element
70
+ - lib/nitro/dispatcher.rb
71
+ - lib/nitro/router.rb
72
+ - lib/nitro/element.rb
73
+ - lib/nitro/flash.rb
74
+ - lib/nitro/render.rb
66
75
  - lib/nitro/server
76
+ - lib/nitro/part.rb
67
77
  - lib/nitro/service
78
+ - lib/nitro/server.rb
68
79
  - lib/nitro/session
80
+ - lib/nitro/service.rb
69
81
  - lib/nitro/test
70
- - lib/nitro/test.rb
71
82
  - lib/nitro/session.rb
72
- - lib/nitro/service.rb
73
- - lib/nitro/server.rb
74
- - lib/nitro/compiler.rb
75
- - lib/nitro/render.rb
76
- - lib/nitro/flash.rb
77
- - lib/nitro/element.rb
78
- - lib/nitro/context.rb
79
- - lib/nitro/dispatcher.rb
80
- - lib/nitro/controller.rb
81
83
  - lib/nitro/helper
82
- - lib/nitro/cgi.rb
83
- - lib/nitro/router.rb
84
- - lib/nitro/caching.rb
84
+ - lib/nitro/test.rb
85
85
  - lib/nitro/helper.rb
86
86
  - lib/nitro/scaffolding.rb
87
87
  - lib/nitro/adapter/scgi.rb
88
- - lib/nitro/adapter/acgi.rb
89
- - lib/nitro/adapter/webrick.rb
90
- - lib/nitro/adapter/fastcgi.rb
91
88
  - lib/nitro/adapter/cgi.rb
89
+ - lib/nitro/adapter/fastcgi.rb
90
+ - lib/nitro/adapter/webrick.rb
92
91
  - lib/nitro/adapter/mongrel.rb
93
92
  - lib/nitro/caching/fragments.rb
94
- - lib/nitro/caching/output.rb
95
93
  - lib/nitro/caching/actions.rb
94
+ - lib/nitro/caching/output.rb
96
95
  - lib/nitro/cgi/response.rb
97
- - lib/nitro/cgi/utils.rb
98
- - lib/nitro/cgi/stream.rb
99
- - lib/nitro/cgi/request.rb
100
- - lib/nitro/cgi/http.rb
101
96
  - lib/nitro/cgi/cookie.rb
102
- - lib/nitro/compiler/elements.rb
97
+ - lib/nitro/cgi/http.rb
98
+ - lib/nitro/cgi/request.rb
99
+ - lib/nitro/cgi/stream.rb
100
+ - lib/nitro/cgi/utils.rb
103
101
  - lib/nitro/compiler/xslt.rb
104
- - lib/nitro/compiler/squeeze.rb
105
- - lib/nitro/compiler/markup.rb
106
- - lib/nitro/compiler/errors.rb
107
- - lib/nitro/compiler/localization.rb
108
102
  - lib/nitro/compiler/css.rb
109
- - lib/nitro/compiler/layout.rb
103
+ - lib/nitro/compiler/localization.rb
104
+ - lib/nitro/compiler/elements.rb
105
+ - lib/nitro/compiler/errors.rb
110
106
  - lib/nitro/compiler/morphing.rb
107
+ - lib/nitro/compiler/markup.rb
108
+ - lib/nitro/compiler/squeeze.rb
109
+ - lib/nitro/compiler/layout.rb
111
110
  - lib/nitro/compiler/include.rb
112
111
  - lib/nitro/compiler/cleanup.rb
113
112
  - lib/nitro/compiler/script.rb
@@ -115,45 +114,47 @@ files:
115
114
  - lib/nitro/server/runner.rb
116
115
  - lib/nitro/server/drb.rb
117
116
  - lib/nitro/service/xmlrpc.rb
118
- - lib/nitro/session/memcached.rb
119
- - lib/nitro/session/memory.rb
120
117
  - lib/nitro/session/file.rb
121
118
  - lib/nitro/session/drb.rb
119
+ - lib/nitro/session/memcached.rb
120
+ - lib/nitro/session/memory.rb
122
121
  - lib/nitro/session/og.rb
123
- - lib/nitro/test/testcase.rb
124
- - lib/nitro/test/context.rb
125
122
  - lib/nitro/test/assertions.rb
126
- - lib/nitro/helper/xhtml.rb
127
- - lib/nitro/helper/xml.rb
123
+ - lib/nitro/test/context.rb
124
+ - lib/nitro/test/testcase.rb
128
125
  - lib/nitro/helper/benchmark.rb
129
- - lib/nitro/helper/table.rb
130
- - lib/nitro/helper/rss.rb
131
- - lib/nitro/helper/pager.rb
126
+ - lib/nitro/helper/buffer.rb
127
+ - lib/nitro/helper/debug.rb
128
+ - lib/nitro/helper/default.rb
132
129
  - lib/nitro/helper/form.rb
133
130
  - lib/nitro/helper/javascript.rb
134
- - lib/nitro/helper/default.rb
135
- - lib/nitro/helper/debug.rb
136
- - lib/nitro/helper/buffer.rb
137
- - lib/nitro/helper/form
131
+ - lib/nitro/helper/pager.rb
132
+ - lib/nitro/helper/rss.rb
133
+ - lib/nitro/helper/table.rb
134
+ - lib/nitro/helper/xhtml.rb
135
+ - lib/nitro/helper/xml.rb
138
136
  - lib/nitro/helper/wee.rb
139
137
  - lib/nitro/helper/layout.rb
138
+ - lib/nitro/helper/form
140
139
  - lib/nitro/helper/javascript
140
+ - lib/nitro/helper/feed.rb
141
+ - lib/nitro/helper/form/builder.rb
141
142
  - lib/nitro/helper/form/controls.rb
142
- - lib/nitro/helper/javascript/scriptaculous.rb
143
- - lib/nitro/helper/javascript/prototype.rb
144
143
  - lib/nitro/helper/javascript/morphing.rb
145
144
  - lib/nitro/helper/javascript/dojo.rb
145
+ - lib/nitro/helper/javascript/scriptaculous.rb
146
+ - lib/nitro/helper/javascript/prototype.rb
146
147
  - lib/glue/sweeper.rb
147
- - lib/glue/magick.rb
148
148
  - lib/glue/webfile.rb
149
+ - lib/glue/magick.rb
149
150
  - lib/glue/thumbnails.rb
150
151
  - src/part
151
152
  - src/part/admin
152
153
  - src/part/admin.rb
153
154
  - src/part/admin/template
155
+ - src/part/admin/controller.rb
154
156
  - src/part/admin/skin.rb
155
157
  - src/part/admin/system.css
156
- - src/part/admin/controller.rb
157
158
  - src/part/admin/template/index.xhtml
158
159
  - src/part/admin/template/denied.xhtml
159
160
  - test/nitro
@@ -161,77 +162,79 @@ files:
161
162
  - test/nitro/adapter
162
163
  - test/nitro/cgi
163
164
  - test/nitro/compiler
165
+ - test/nitro/tc_controller.rb
166
+ - test/nitro/tc_caching.rb
167
+ - test/nitro/tc_cgi.rb
168
+ - test/nitro/tc_context.rb
169
+ - test/nitro/helper
170
+ - test/nitro/tc_controller_aspect.rb
164
171
  - test/nitro/tc_dispatcher.rb
165
- - test/nitro/tc_session.rb
166
- - test/nitro/tc_server.rb
167
- - test/nitro/tc_render.rb
168
- - test/nitro/tc_flash.rb
169
172
  - test/nitro/tc_element.rb
170
- - test/nitro/helper
173
+ - test/nitro/tc_flash.rb
174
+ - test/nitro/tc_render.rb
175
+ - test/nitro/tc_server.rb
176
+ - test/nitro/tc_session.rb
171
177
  - test/nitro/tc_helper.rb
172
- - test/nitro/tc_controller_aspect.rb
173
- - test/nitro/tc_controller.rb
174
- - test/nitro/tc_context.rb
175
- - test/nitro/tc_cgi.rb
176
- - test/nitro/tc_caching.rb
177
178
  - test/nitro/tc_router.rb
178
- - test/nitro/adapter/tc_webrick.rb
179
+ - test/nitro/CONFIG.rb
179
180
  - test/nitro/adapter/raw_post1.bin
180
- - test/nitro/cgi/tc_request.rb
181
+ - test/nitro/adapter/tc_webrick.rb
181
182
  - test/nitro/cgi/tc_cookie.rb
183
+ - test/nitro/cgi/tc_request.rb
182
184
  - test/nitro/compiler/tc_compiler.rb
185
+ - test/nitro/compiler/tc_client_morpher.rb
183
186
  - test/nitro/helper/tc_table.rb
184
- - test/nitro/helper/tc_xhtml.rb
185
- - test/nitro/helper/tc_rss.rb
186
187
  - test/nitro/helper/tc_pager.rb
188
+ - test/nitro/helper/tc_rss.rb
189
+ - test/nitro/helper/tc_xhtml.rb
190
+ - test/nitro/helper/tc_feed.rb
187
191
  - test/public/blog
188
192
  - test/public/dummy_mailer
189
193
  - test/public/blog/another
190
- - test/public/blog/list.xhtml
191
- - test/public/blog/inc2.xhtml
192
194
  - test/public/blog/inc1.xhtml
195
+ - test/public/blog/inc2.xhtml
196
+ - test/public/blog/list.xhtml
193
197
  - test/public/blog/another/very_litle
194
198
  - test/public/blog/another/very_litle/index.xhtml
195
199
  - test/public/dummy_mailer/registration.xhtml
196
200
  - proto/conf
197
201
  - proto/public
198
202
  - proto/script
199
- - proto/src
200
203
  - proto/run.rb
201
- - proto/conf/lhttpd.conf
204
+ - proto/src
202
205
  - proto/conf/apache.conf
206
+ - proto/conf/lhttpd.conf
207
+ - proto/public/fcgi.rb
208
+ - proto/public/cgi.rb
203
209
  - proto/public/js
210
+ - proto/public/error.xhtml
204
211
  - proto/public/media
205
212
  - proto/public/scaffold
206
- - proto/public/acgi.c
207
213
  - proto/public/robots.txt
208
- - proto/public/fcgi.rb
209
- - proto/public/error.xhtml
210
- - proto/public/cgi.rb
211
- - proto/public/Makefile.acgi
212
- - proto/public/js/util.js
213
- - proto/public/js/scriptaculous.js
214
- - proto/public/js/prototype.js
215
- - proto/public/js/effects.js
216
- - proto/public/js/dragdrop.js
217
- - proto/public/js/cookies.js
218
- - proto/public/js/controls.js
214
+ - proto/public/js/builder.js
219
215
  - proto/public/js/behaviour.js
220
- - proto/public/js/unittest.js
216
+ - proto/public/js/controls.js
217
+ - proto/public/js/cookies.js
218
+ - proto/public/js/dragdrop.js
219
+ - proto/public/js/effects.js
220
+ - proto/public/js/prototype.js
221
+ - proto/public/js/scriptaculous.js
222
+ - proto/public/js/util.js
221
223
  - proto/public/js/slider.js
222
- - proto/public/js/builder.js
224
+ - proto/public/js/unittest.js
223
225
  - proto/public/media/nitro.png
224
226
  - proto/public/scaffold/index.xhtml
225
- - proto/public/scaffold/view.xhtml
226
- - proto/public/scaffold/new.xhtml
227
- - proto/public/scaffold/list.xhtml
228
- - proto/public/scaffold/form.xhtml
229
227
  - proto/public/scaffold/edit.xhtml
228
+ - proto/public/scaffold/form.xhtml
229
+ - proto/public/scaffold/list.xhtml
230
+ - proto/public/scaffold/new.xhtml
231
+ - proto/public/scaffold/view.xhtml
230
232
  - proto/public/scaffold/search.xhtml
233
+ - proto/public/scaffold/advanced_search.xhtml
231
234
  - proto/script/scgi_service
232
- - proto/script/scgi_ctl
233
- - proto/script/runner
234
235
  - proto/script/benchmark
236
+ - proto/script/runner
237
+ - proto/script/scgi_ctl
235
238
  - proto/src/skin.rb
236
239
  test_files: []
237
240
 
@@ -253,7 +256,7 @@ dependencies:
253
256
  requirements:
254
257
  - - "="
255
258
  - !ruby/object:Gem::Version
256
- version: 0.29.0
259
+ version: 0.30.0
257
260
  version:
258
261
  - !ruby/object:Gem::Dependency
259
262
  name: gen
@@ -262,7 +265,7 @@ dependencies:
262
265
  requirements:
263
266
  - - "="
264
267
  - !ruby/object:Gem::Version
265
- version: 0.29.0
268
+ version: 0.30.0
266
269
  version:
267
270
  - !ruby/object:Gem::Dependency
268
271
  name: glue
@@ -271,7 +274,7 @@ dependencies:
271
274
  requirements:
272
275
  - - "="
273
276
  - !ruby/object:Gem::Version
274
- version: 0.29.0
277
+ version: 0.30.0
275
278
  version:
276
279
  - !ruby/object:Gem::Dependency
277
280
  name: RedCloth