nitro 0.28.0 → 0.29.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +382 -0
- data/ProjectInfo +4 -4
- data/README +1 -1
- data/doc/AUTHORS +15 -15
- data/doc/MIGRATION +13 -0
- data/doc/RELEASES +102 -0
- data/lib/glue/sweeper.rb +1 -1
- data/lib/nitro.rb +38 -9
- data/lib/nitro/adapter/acgi.rb +1 -3
- data/lib/nitro/adapter/cgi.rb +1 -1
- data/lib/nitro/adapter/fastcgi.rb +1 -3
- data/lib/nitro/adapter/mongrel.rb +8 -6
- data/lib/nitro/adapter/webrick.rb +1 -2
- data/lib/nitro/cgi.rb +1 -1
- data/lib/nitro/compiler.rb +21 -40
- data/lib/nitro/compiler/elements.rb +72 -32
- data/lib/nitro/compiler/errors.rb +92 -42
- data/lib/nitro/compiler/include.rb +47 -17
- data/lib/nitro/compiler/morphing.rb +1 -3
- data/lib/nitro/compiler/script.rb +2 -2
- data/lib/nitro/context.rb +36 -0
- data/lib/nitro/controller.rb +140 -31
- data/lib/nitro/dispatcher.rb +27 -28
- data/lib/nitro/element.rb +52 -15
- data/lib/nitro/flash.rb +44 -0
- data/lib/nitro/helper/buffer.rb +0 -2
- data/lib/nitro/helper/form.rb +2 -2
- data/lib/nitro/helper/form/controls.rb +14 -3
- data/lib/nitro/helper/pager.rb +1 -1
- data/lib/nitro/helper/table.rb +4 -3
- data/lib/nitro/helper/xml.rb +1 -1
- data/lib/nitro/part.rb +20 -0
- data/lib/nitro/render.rb +44 -5
- data/lib/nitro/router.rb +81 -0
- data/lib/nitro/scaffolding.rb +24 -23
- data/lib/nitro/server.rb +12 -1
- data/lib/nitro/server/runner.rb +12 -0
- data/lib/nitro/session.rb +3 -12
- data/lib/nitro/session/drb.rb +2 -5
- data/lib/nitro/session/file.rb +2 -2
- data/lib/nitro/session/memcached.rb +14 -0
- data/lib/nitro/session/memory.rb +3 -26
- data/lib/nitro/session/og.rb +1 -1
- data/lib/nitro/test/assertions.rb +1 -1
- data/lib/nitro/test/context.rb +8 -2
- data/lib/nitro/test/testcase.rb +16 -7
- data/proto/public/error.xhtml +58 -21
- data/proto/public/js/controls.js +60 -15
- data/proto/public/js/dragdrop.js +105 -16
- data/proto/public/js/effects.js +19 -12
- data/proto/public/js/scriptaculous.js +1 -1
- data/proto/public/js/slider.js +2 -2
- data/proto/public/js/unittest.js +29 -20
- data/proto/public/scaffold/edit.xhtml +1 -1
- data/proto/public/scaffold/index.xhtml +2 -2
- data/proto/public/scaffold/list.xhtml +2 -2
- data/proto/public/scaffold/new.xhtml +1 -1
- data/proto/public/scaffold/search.xhtml +1 -1
- data/src/part/admin/controller.rb +5 -5
- data/src/part/admin/template/index.xhtml +2 -2
- data/test/nitro/compiler/tc_compiler.rb +23 -0
- data/test/nitro/helper/tc_table.rb +35 -0
- data/test/nitro/tc_cgi.rb +1 -1
- data/test/nitro/tc_controller.rb +3 -3
- data/test/nitro/tc_controller_aspect.rb +2 -0
- data/test/nitro/tc_dispatcher.rb +10 -1
- data/test/nitro/tc_flash.rb +14 -0
- data/test/nitro/tc_router.rb +58 -0
- data/test/nitro/tc_session.rb +26 -9
- metadata +13 -12
- data/lib/nitro/routing.rb +0 -41
- data/test/nitro/caching/tc_stores.rb +0 -17
- data/test/nitro/tc_table.rb +0 -66
data/CHANGELOG
CHANGED
@@ -1,3 +1,385 @@
|
|
1
|
+
Tue Mar 7 17:34:13 EET 2006 George Moschovitis <gm@navel.gr>
|
2
|
+
* More test fixes.
|
3
|
+
|
4
|
+
Tue Mar 7 17:17:51 EET 2006 George Moschovitis <gm@navel.gr>
|
5
|
+
* Updated the docs.
|
6
|
+
|
7
|
+
Tue Mar 7 16:13:46 EET 2006 George Moschovitis <gm@navel.gr>
|
8
|
+
* Added some migration info in doc/MIGRATION.
|
9
|
+
|
10
|
+
Tue Mar 7 16:07:14 EET 2006 George Moschovitis <gm@navel.gr>
|
11
|
+
* Removed control, action, and the controllers compiler as Jonas suggested. This code needs more thought and testing.
|
12
|
+
|
13
|
+
Tue Mar 7 15:22:03 EET 2006 George Moschovitis <gm@navel.gr>
|
14
|
+
* Added support for absolute hrefs in StaticInclude. Fix in quotea.
|
15
|
+
|
16
|
+
Tue Mar 7 14:48:27 EET 2006 George Moschovitis <gm@navel.gr>
|
17
|
+
* Added bicou's EZ array fix. [bicou]
|
18
|
+
|
19
|
+
Tue Mar 7 14:37:40 EET 2006 George Moschovitis <gm@navel.gr>
|
20
|
+
* Minor...
|
21
|
+
|
22
|
+
Tue Mar 7 14:36:33 EET 2006 George Moschovitis <gm@navel.gr>
|
23
|
+
* Better initialization of $global (context.global) backed by Glue::Cache stores.
|
24
|
+
|
25
|
+
Tue Mar 7 14:09:38 EET 2006 George Moschovitis <gm@navel.gr>
|
26
|
+
* Bumped version numbers.
|
27
|
+
|
28
|
+
Tue Mar 7 14:01:37 EET 2006 George Moschovitis <gm@navel.gr>
|
29
|
+
* Updated docs.
|
30
|
+
|
31
|
+
Tue Mar 7 12:07:00 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
32
|
+
* Glue::FileCache improved: escaping bad characters in filenames
|
33
|
+
|
34
|
+
Tue Mar 7 13:35:19 EET 2006 George Moschovitis <gm@navel.gr>
|
35
|
+
* Fixed bugs in Taggable. While at it added some needed helpers plus garbage collection through ref counting. Taggable is much more useful now, but there are still some things left for a future version.
|
36
|
+
|
37
|
+
Tue Mar 7 02:06:29 EET 2006 bryan.a.soto@gmail.com
|
38
|
+
* testfix-tc_inheritance
|
39
|
+
Repairs implementation of tc_inheritance test. Class.descendents is a Facet method that is implemented by iterating through ObjectSpace. It won't always return these descendents in the same order.
|
40
|
+
|
41
|
+
Mon Mar 6 23:44:43 EET 2006 bryan.a.soto@gmail.com
|
42
|
+
* spark-style.css
|
43
|
+
Sets pre foreground color to white for easier reading.
|
44
|
+
|
45
|
+
Credit to timh@dirtymonday.net
|
46
|
+
|
47
|
+
Mon Mar 6 21:32:07 EET 2006 bryan.a.soto@gmail.com
|
48
|
+
* test-fix-tc_session
|
49
|
+
This must have been the one giving the security error. Fixed.
|
50
|
+
|
51
|
+
Mon Mar 6 14:04:12 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
52
|
+
* Glue::FileCache: safe locking of files added, making this caching method safe for multiprocess
|
53
|
+
|
54
|
+
Mon Mar 6 13:48:11 EET 2006 George Moschovitis <gm@navel.gr>
|
55
|
+
* Minor og tests fix. Thanks to Bryans hard work all tests now pass!
|
56
|
+
|
57
|
+
Mon Mar 6 09:29:17 EET 2006 bryan.a.soto@gmail.com
|
58
|
+
* testfix-orderable
|
59
|
+
Repairs orderable to work with test case. Simple fix. It needed an aspect run on both :og_insert and :og_update. Removed a save from the test case as it was unnecessary.
|
60
|
+
|
61
|
+
Mon Mar 6 06:45:59 EET 2006 bryan.a.soto@gmail.com
|
62
|
+
* test-fixes-taggable-override
|
63
|
+
Repairs taggable library using tc_taggable as a spec. Also adds a fix to tc_override, where it wasn't properly restoring the Og.prefix setting that broke taggable when running in the full suite.
|
64
|
+
|
65
|
+
Sun Mar 5 21:16:50 EET 2006 bryan.a.soto@gmail.com
|
66
|
+
* test-fix-tc_cacheable
|
67
|
+
Fixes to File cache, files with a colon (:) are illegal on win32.
|
68
|
+
Fixes to tc_cacheable, sepearates each cache type test into it's own class as they wouldn't run otherwise.
|
69
|
+
|
70
|
+
Mon Mar 6 11:27:30 EET 2006 George Moschovitis <gm@navel.gr>
|
71
|
+
* Fixes to make some test cases pass.
|
72
|
+
|
73
|
+
Mon Mar 6 11:05:48 EET 2006 George Moschovitis <gm@navel.gr>
|
74
|
+
* Updated docs
|
75
|
+
|
76
|
+
Mon Mar 6 10:44:36 EET 2006 George Moschovitis <gm@navel.gr>
|
77
|
+
* Removed controls compiler from the default pipeline, this thing needs more thought/testing and certainly a better implementation. Some form of intuitive dynamic element style features is really need though.
|
78
|
+
|
79
|
+
Mon Mar 6 00:22:50 EET 2006 George Moschovitis <gm@navel.gr>
|
80
|
+
* Cleaned up tabs and sources.
|
81
|
+
|
82
|
+
Mon Mar 6 00:18:16 EET 2006 George Moschovitis <gm@navel.gr>
|
83
|
+
* Fixed floating point counts bug.
|
84
|
+
|
85
|
+
Mon Mar 6 00:13:04 EET 2006 George Moschovitis <gm@navel.gr>
|
86
|
+
* Updated docs.
|
87
|
+
|
88
|
+
Mon Mar 6 00:12:49 EET 2006 George Moschovitis <gm@navel.gr>
|
89
|
+
* Fix for blog example.
|
90
|
+
|
91
|
+
Sun Mar 5 23:50:07 EET 2006 George Moschovitis <gm@navel.gr>
|
92
|
+
* Improved StaticInclude compiler to take template_root stack into account. One step closer to truly reusable parts.
|
93
|
+
|
94
|
+
Sun Mar 5 08:30:16 EET 2006 bryan.a.soto@gmail.com
|
95
|
+
* stringio-patch-modification
|
96
|
+
Patch modifies my earlier patch to undo a mistake I made that broke file uploads.
|
97
|
+
|
98
|
+
Sun Mar 5 08:24:27 EET 2006 bryan.a.soto@gmail.com
|
99
|
+
* examples-ui-patch
|
100
|
+
Adds some begin/rescues to catch load errors. For example, the wee example will catch load errors of wee components and informs user that the example requires wee.
|
101
|
+
|
102
|
+
Sun Mar 5 00:45:25 EET 2006 George Moschovitis <gm@navel.gr>
|
103
|
+
* Improved template_root stack system. Much more reusable in my part system. Will be improved more in the near future.
|
104
|
+
|
105
|
+
Sat Mar 4 10:53:43 EET 2006 bryan.a.soto@gmail.com
|
106
|
+
* mysql-using-sqlutils
|
107
|
+
Removes unnecessary redefinition of MysqlUtils#quote that is inhereited from an included module, SqlUtils.
|
108
|
+
|
109
|
+
Sat Mar 4 10:23:22 EET 2006 bryan.a.soto@gmail.com
|
110
|
+
* scaffolding-classes-defaults
|
111
|
+
When scaffolding a class, if options have already been stored, they should be updated rather than using a default.
|
112
|
+
|
113
|
+
Sat Mar 4 10:06:48 EET 2006 bryan.a.soto@gmail.com
|
114
|
+
* blog-example-comment-fix
|
115
|
+
Renames a template file, comments.xhtml, which was causing the example to blow up. Fixes some time stamp format strings that weren't actually outputting anything.
|
116
|
+
|
117
|
+
Sat Mar 4 09:07:44 EET 2006 bryan.a.soto@gmail.com
|
118
|
+
* mongrel_mime_type_fixes
|
119
|
+
Makes Mongrel adapter properly serve mime types and adds binary flag to file read so that graphics are served correctly.
|
120
|
+
|
121
|
+
Fri Mar 3 17:47:44 EET 2006 George Moschovitis <gm@navel.gr>
|
122
|
+
* Tmp introduction for global variables (dont use yet).
|
123
|
+
|
124
|
+
Fri Mar 3 15:26:34 EET 2006 fabian@fabian-buch.de
|
125
|
+
* alias_method :redirect_referrer, :redirect_referer
|
126
|
+
|
127
|
+
Referrer is written with rr in English, but referer (with one r) became standard, because of a typo in the original RFC. But not everyone might know that, so might write it with two r, which shouldn't lead to the app not working.
|
128
|
+
|
129
|
+
|
130
|
+
Fri Mar 3 16:21:39 EET 2006 George Moschovitis <gm@navel.gr>
|
131
|
+
* Some small flash fixes.
|
132
|
+
|
133
|
+
Fri Mar 3 15:21:20 EET 2006 George Moschovitis <gm@navel.gr>
|
134
|
+
* Added some usefull helpers to flash (push/pop/join).
|
135
|
+
|
136
|
+
Fri Mar 3 13:34:00 EET 2006 George Moschovitis <gm@navel.gr>
|
137
|
+
* Added tiny nitro helpers.
|
138
|
+
|
139
|
+
Thu Mar 2 10:04:09 EET 2006 bryan.a.soto@gmail.com
|
140
|
+
* test_fix_tc_session
|
141
|
+
Added back og cache test. Conditional run of memcached test.
|
142
|
+
|
143
|
+
Thu Mar 2 09:23:44 EET 2006 bryan.a.soto@gmail.com
|
144
|
+
* test_fix_tc_property
|
145
|
+
Slightly modifies Rob's patch to maintain backwards compatibility.
|
146
|
+
|
147
|
+
Fri Mar 3 09:31:38 EET 2006 bryan.a.soto@gmail.com
|
148
|
+
* test_add_og_tc_sti
|
149
|
+
Adds a test case to ensure STI parents and children return the same fields when creating a database table.
|
150
|
+
|
151
|
+
Thu Mar 2 18:23:32 EET 2006 George Moschovitis <gm@navel.gr>
|
152
|
+
* Small fixes in R.
|
153
|
+
|
154
|
+
Wed Mar 1 18:11:25 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
155
|
+
* little fixes on session handlers
|
156
|
+
|
157
|
+
Wed Mar 1 18:08:33 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
158
|
+
* Nitro session memcached support (and session test case improved)
|
159
|
+
|
160
|
+
Wed Mar 1 18:06:54 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
161
|
+
* Glue::MemCached implemented (and test case updated)
|
162
|
+
|
163
|
+
Wed Mar 1 17:58:46 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
164
|
+
* little Glue::Cache improvements
|
165
|
+
|
166
|
+
Fri Feb 24 18:53:53 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
167
|
+
* added --address and --port options to force server to run on those settings
|
168
|
+
|
169
|
+
Fri Feb 24 18:52:27 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
170
|
+
* cache improvements
|
171
|
+
|
172
|
+
Wed Mar 1 18:21:52 EET 2006 George Moschovitis <gm@navel.gr>
|
173
|
+
* Some cleanup in router.
|
174
|
+
|
175
|
+
Wed Mar 1 18:16:33 EET 2006 George Moschovitis <gm@navel.gr>
|
176
|
+
* Recoded routing system from scratch, much more powerfull, added unit test. The new router supports two way routing (encoding/decoding). The R operator now respects routing rules.
|
177
|
+
|
178
|
+
Wed Mar 1 15:14:10 EET 2006 George Moschovitis <gm@navel.gr>
|
179
|
+
* Experimental support for Camping style R (encode_url) operator, does not respect routig yet, has problems with hash ordering. Anyone has any ideas how to improve this?
|
180
|
+
|
181
|
+
Wed Mar 1 01:24:42 EET 2006 bryan.a.soto@gmail.com
|
182
|
+
* bugfix_cgi_stringio_propagation
|
183
|
+
Changes Cgi.structure_param to ensure that StringIOs aren't placed in the params hash.
|
184
|
+
|
185
|
+
Wed Mar 1 01:26:51 EET 2006 bryan.a.soto@gmail.com
|
186
|
+
* bugfix_array_control
|
187
|
+
Removes :selected option that isn't necessary for ArrayControl.
|
188
|
+
|
189
|
+
Wed Mar 1 02:59:29 EET 2006 bryan.a.soto@gmail.com
|
190
|
+
* testfix_aggregate_tc_store
|
191
|
+
og/test/og/tc_store.rb looked to be using an old interface to the aggregate method defined in og/lib/og/store/sql.rb. Fixed the test and updated the RDocs to reflect the correct usage.
|
192
|
+
|
193
|
+
Tue Feb 28 23:15:47 EET 2006 bryan.a.soto@gmail.com
|
194
|
+
* compiler_double_slash_test_case
|
195
|
+
Adds a test case for Rob's double slash patch. Hopefully more will be added.
|
196
|
+
|
197
|
+
Tue Feb 28 21:14:45 EET 2006 bryan.a.soto@gmail.com
|
198
|
+
* comment_output_tc_hierarchial
|
199
|
+
Comments out the puts section of the test case so it runs quietly.
|
200
|
+
|
201
|
+
Tue Feb 28 15:40:42 EET 2006 Kashia Buch <kashia@vfemail.net>
|
202
|
+
* hierarchical fix
|
203
|
+
|
204
|
+
Mon Feb 20 18:13:49 EET 2006 rob@motionpath.com
|
205
|
+
* Memory session needs glue logger
|
206
|
+
|
207
|
+
Tue Feb 28 14:34:11 EET 2006 George Moschovitis <gm@navel.gr>
|
208
|
+
* Added Og aggregations / calculations. Code like this works automagically: User.min(:age), User.sum(:money, :group => :proffession), User.average(:age) etc. If a :group option is passed Og returns an aggregation.
|
209
|
+
|
210
|
+
Tue Feb 28 10:09:08 EET 2006 bryan.a.soto@gmail.com
|
211
|
+
* mongrel_adapter_fix
|
212
|
+
Works around a bug or incorrect documentation in the Mongrel adaptor. RDocs say it should return a thread, but it currently returns a Fixnum. This is a
|
213
|
+
slightly more verbose way of getting the accepting Thread, so it doesn't need
|
214
|
+
to be changed later.
|
215
|
+
|
216
|
+
Tue Feb 28 12:12:10 EET 2006 George Moschovitis <gm@navel.gr>
|
217
|
+
* Updated to script.aculo.us 1.5.3
|
218
|
+
|
219
|
+
Tue Feb 28 11:55:08 EET 2006 George Moschovitis <gm@navel.gr>
|
220
|
+
* Some small Og fixes.
|
221
|
+
|
222
|
+
Tue Feb 28 11:54:19 EET 2006 George Moschovitis <gm@navel.gr>
|
223
|
+
* Introduced call/answer. not working yet, do not use!
|
224
|
+
|
225
|
+
Tue Feb 28 11:53:17 EET 2006 George Moschovitis <gm@navel.gr>
|
226
|
+
* Introduced part.
|
227
|
+
|
228
|
+
Tue Feb 28 09:08:38 EET 2006 bryan.a.soto@gmail.com
|
229
|
+
* gen_fixes
|
230
|
+
Bumps gen version number to 0.29.0.
|
231
|
+
Bugfix: changes include to Nitro::FormHelper.
|
232
|
+
Adds info on form plugin to USAGE of executable.
|
233
|
+
|
234
|
+
Tue Feb 21 17:15:04 EET 2006 rob@motionpath.com
|
235
|
+
* Stop compiler exploding if people put double slashes in URLs
|
236
|
+
|
237
|
+
Tue Feb 21 17:26:55 EET 2006 fabian@fabian-buch.de
|
238
|
+
* scriptcompiler fix for valid XHTML
|
239
|
+
|
240
|
+
Mon Feb 20 19:30:55 EET 2006 rob@motionpath.com
|
241
|
+
* Added magic "oid" to scaffold post method for consistency with the other scaffold aspects
|
242
|
+
|
243
|
+
Mon Feb 20 17:28:25 EET 2006 rob@motionpath.com
|
244
|
+
* Fix to property so scaffold fill treats empty integers as nil
|
245
|
+
|
246
|
+
Fri Feb 24 12:03:24 EET 2006 rob@motionpath.com
|
247
|
+
* Nullification of broken relations fix (no crash)
|
248
|
+
|
249
|
+
Thu Feb 23 17:32:32 EET 2006 rob@motionpath.com
|
250
|
+
* Act like the user accepted previous cookies in repeat unit-test requests
|
251
|
+
|
252
|
+
Thu Feb 23 17:27:23 EET 2006 rob@motionpath.com
|
253
|
+
* Further unit test patches
|
254
|
+
|
255
|
+
Thu Feb 23 16:42:37 EET 2006 rob@motionpath.com
|
256
|
+
* Changes to nitro unit testing library
|
257
|
+
|
258
|
+
Mon Feb 27 11:27:37 EET 2006 George Moschovitis <gm@navel.gr>
|
259
|
+
* Greatly improved error reporting. Exact identification of the 'hot' line where the error hapens. Handles syntax errors in actions and templates and run time errors in action and templates.
|
260
|
+
|
261
|
+
Fri Feb 17 09:18:16 EET 2006 bryan.a.soto@gmail.com
|
262
|
+
* tc_cacheable_test_fix
|
263
|
+
Some fixes to make tc_cacheable pass. Partial fix for tc_hierarchical. At least it makes it error out a bit further along.
|
264
|
+
|
265
|
+
Fri Feb 17 22:20:42 EET 2006 bryan.a.soto@gmail.com
|
266
|
+
* part-admin_array_control_fix
|
267
|
+
Adds #emit_container_start, #emit_container_end to ArrayControl. Change to #emit_js to fix off by one error in remove array element button.
|
268
|
+
|
269
|
+
Credit to aidan@infurious.com
|
270
|
+
|
271
|
+
Fri Feb 17 09:00:50 EET 2006 bryan.a.soto@gmail.com
|
272
|
+
* more_glue_namespace_fixes
|
273
|
+
Adds module name to a few more classes. Removes some unneeded requires of glue files.
|
274
|
+
|
275
|
+
Wed Jan 25 17:13:18 EET 2006 rob@motionpath.com
|
276
|
+
* Nitro should not rely on Glue being in Object's namespace as this stops you using gems with conflicting class names (i.e ruby breakpoint). This patch is not well tested, it should be checked carefully by someone more familiar with Glue.
|
277
|
+
|
278
|
+
Wed Feb 15 15:44:04 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
279
|
+
* Taggable: Moved the Tag class in the Glue namespace
|
280
|
+
|
281
|
+
Tue Feb 14 13:40:16 EET 2006 rob@motionpath.com
|
282
|
+
* Improvement to error html output - displays source traces
|
283
|
+
|
284
|
+
Tue Feb 14 15:53:02 EET 2006 rob@motionpath.com
|
285
|
+
* Allow finder methods to accept arrays to select multiple models at once (or from a list if using in find_one mode)
|
286
|
+
|
287
|
+
Tue Feb 14 14:59:27 EET 2006 rob@motionpath.com
|
288
|
+
* Fix to earlier finder fix
|
289
|
+
|
290
|
+
Mon Feb 13 23:05:31 EET 2006 bryan.a.soto@gmail.com
|
291
|
+
* prevent_multi_enchantments
|
292
|
+
This patch changes _no_ external behaviour. It only rejects classes already managed in Og::Manager#manage_classes from the collection returned from Og::Manager#manageable_classes.
|
293
|
+
|
294
|
+
Also adds a method Og::Manager.managed_classes which returns all classes actually managed by Og, as opposed to Og::Manager.manageable_classes which returns all classes that are capable of being managed. A subtle difference perhaps, but it bugged me.
|
295
|
+
|
296
|
+
Mon Feb 13 23:03:37 EET 2006 bryan.a.soto@gmail.com
|
297
|
+
* dispatch_test_case
|
298
|
+
Adds test for NoActionError to tc_dispatch.
|
299
|
+
|
300
|
+
Mon Feb 13 23:15:47 EET 2006 bryan.a.soto@gmail.com
|
301
|
+
* og_thread_safe_fixes
|
302
|
+
Cleans up some further problems with Og.thread_safe. Og.thread_safe is global and Og::Manager changes behaviour based off the global setting, but wasn't properly adapting to the change. As an example, if Og.thread_safe is true when a manager is created, it will create a store. If Og.thread_safe is later changed to false, it ignores the pool to use the @store instance variable that was never assigned to returning nil.
|
303
|
+
|
304
|
+
This should probably be a per manager setting, where managers store the value of Og.thread_safe at the time of creation and use it for their lifetime. This would allow you to mix managers, though I don't know if anyone actually needs that.
|
305
|
+
|
306
|
+
Mon Feb 13 18:52:48 EET 2006 rob@motionpath.com
|
307
|
+
* Fix to finder so you can pass objects to find_all_by_a_and_b for relations and so that find conditions such as set_order are honoured
|
308
|
+
|
309
|
+
Mon Feb 13 18:30:31 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
310
|
+
* Nitro::Action now import the controller's instance_vars unless a variable was already defined
|
311
|
+
|
312
|
+
Mon Feb 13 10:50:34 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
313
|
+
* [fix glue] Changed Nitro::Control to Nitro::Form::Control. I had forgetted this one.
|
314
|
+
|
315
|
+
Mon Feb 13 12:12:21 EET 2006 Jonas Pfenniger <jonas@oree.ch>
|
316
|
+
* Set Glue's facet dependency to 1.0.3
|
317
|
+
|
318
|
+
Sun Feb 12 17:14:01 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
319
|
+
* [test fix] Dispatcher test fixed
|
320
|
+
|
321
|
+
Sun Feb 12 16:56:57 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
322
|
+
* Controller : made template_root assignable
|
323
|
+
|
324
|
+
Sun Feb 12 16:56:35 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
325
|
+
* Controls : moved the transorm order with Element
|
326
|
+
|
327
|
+
Fri Feb 10 20:12:52 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
328
|
+
* Element transformer : avoid interpreting unknown elements so that controls can take care of it
|
329
|
+
|
330
|
+
Fri Feb 10 20:09:13 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
331
|
+
* Controls : fix for the controls options
|
332
|
+
|
333
|
+
Fri Feb 10 10:14:27 EET 2006 bryan.a.soto@gmail.com
|
334
|
+
* test_suite_cleanup
|
335
|
+
Some moves, some deletes, one fix and a modification to a Rakefile to make the filelist it generates match the rest.
|
336
|
+
|
337
|
+
Fri Feb 10 08:57:48 EET 2006 bryan.a.soto@gmail.com
|
338
|
+
* sti_bugfix
|
339
|
+
Fixes STI bug where tables where evolved (fields dropped!).
|
340
|
+
|
341
|
+
Fri Feb 10 22:53:55 EET 2006 bryan.a.soto@gmail.com
|
342
|
+
* bump_to_0.29.0
|
343
|
+
Bumps version numbers.
|
344
|
+
|
345
|
+
Thu Feb 9 15:18:00 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
346
|
+
* security fixes on ./og/lib/og/store/sql.rb
|
347
|
+
|
348
|
+
Thu Feb 9 15:17:40 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
349
|
+
* littles improvements on nitro/helper/table.rb
|
350
|
+
|
351
|
+
Thu Feb 9 15:15:40 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
352
|
+
* bugfix: autoreload messages sent to Logger instead of STDERR
|
353
|
+
|
354
|
+
Wed Feb 8 14:35:28 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
355
|
+
* supplementary check on calling Og.thread_safe
|
356
|
+
|
357
|
+
Tue Feb 7 18:56:46 EET 2006 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
|
358
|
+
* bugfix: on-the-fly Og.thread_safe mode changing
|
359
|
+
|
360
|
+
Thu Feb 9 04:36:23 EET 2006 Jonas Pfenniger <jonas@oree.ch>
|
361
|
+
* Enhanced glycerin.rb with an optional NAVEL_ROOT path constant
|
362
|
+
|
363
|
+
Thu Feb 9 04:06:59 EET 2006 Jonas Pfenniger <jonas@oree.ch>
|
364
|
+
* [flare skin] The skin's title was set to George Moschovitis intead of Blog.title
|
365
|
+
|
366
|
+
Wed Feb 8 22:34:05 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
367
|
+
* Implemented a new Control system : Form Control moved in Nitro::Form, added a Controls transformer, Nitro::Action is a generic action
|
368
|
+
|
369
|
+
Tue Feb 7 09:39:09 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
370
|
+
* scaffolding and part/admin support managed classes in modules
|
371
|
+
|
372
|
+
Wed Feb 8 11:04:59 EET 2006 Jonas Pfenniger <zimba.tm@gmail.com>
|
373
|
+
* part/admin : sorting of managed classes and system configuration
|
374
|
+
|
375
|
+
Mon Feb 6 19:10:28 EET 2006 George Moschovitis <gm@navel.gr>
|
376
|
+
* Minor
|
377
|
+
|
378
|
+
Mon Feb 6 18:04:26 EET 2006 George Moschovitis <gm@navel.gr>
|
379
|
+
* Minor...
|
380
|
+
|
381
|
+
--- 0.28.0 ---
|
382
|
+
|
1
383
|
Mon Feb 6 17:27:36 EET 2006 George Moschovitis <gm@navel.gr>
|
2
384
|
* Fixed paramix/is problem.
|
3
385
|
|
data/ProjectInfo
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
TITLE : &title Nitro
|
4
4
|
NAME : &pkg nitro
|
5
|
-
VERSION : '0.
|
5
|
+
VERSION : '0.29.0'
|
6
6
|
STATUS : beta
|
7
7
|
|
8
8
|
AUTHOR : George Moschovitis
|
@@ -22,9 +22,9 @@ DESCRIPTION: >
|
|
22
22
|
staying standards compliant.
|
23
23
|
|
24
24
|
DEPENDENCIES:
|
25
|
-
- [ og, '= 0.
|
26
|
-
- [ gen, '= 0.
|
27
|
-
- [ glue, '= 0.
|
25
|
+
- [ og, '= 0.29.0' ]
|
26
|
+
- [ gen, '= 0.29.0' ]
|
27
|
+
- [ glue, '= 0.29.0' ]
|
28
28
|
- [ RedCloth, '= 3.0.3' ]
|
29
29
|
- [ ruby-breakpoint, '= 0.5' ]
|
30
30
|
- [ daemons, '= 0.4.2' ]
|
data/README
CHANGED
data/doc/AUTHORS
CHANGED
@@ -1,33 +1,36 @@
|
|
1
|
-
|
1
|
+
LEAD DEVELOPER:
|
2
2
|
|
3
3
|
* George K. Moschovitis <gm@navel.gr>
|
4
4
|
Project leader, architecture and design, main coder,
|
5
5
|
documentation, maintainer (http://www.gmosx.com).
|
6
6
|
|
7
7
|
|
8
|
-
|
8
|
+
NITRO DEVELOPMENT TEAM:
|
9
9
|
|
10
|
-
*
|
11
|
-
Patches, new features, bug fixes.
|
12
|
-
|
13
|
-
* Chris Farmiloe <chris.farmiloe@farmiloe.com>
|
10
|
+
* Jonas Pfenniger <zimba.tm@gmail.com>
|
14
11
|
Patches, new features, bug fixes.
|
15
12
|
|
16
|
-
* Rob Pitt <rob@motionpath.co.uk>
|
17
|
-
Bug fixes, Scaffolding improvements, patches.
|
18
|
-
|
19
13
|
* Bryan Soto <bryan.a.soto@gmail.com>
|
20
14
|
Patches, bug fixes, docs, quality assurance, community
|
21
15
|
management.
|
22
16
|
|
17
|
+
* Guillaume Pierronnet <guillaume.pierronnet@laposte.net>
|
18
|
+
Patches, new features, bug fixes.
|
19
|
+
|
20
|
+
* Rob Pitt <rob@motionpath.co.uk>
|
21
|
+
Patches, Bug fixes, Scaffolding improvements.
|
22
|
+
|
23
|
+
* Aidan Rogers <aidan@infurious.com>
|
24
|
+
Documentation, Bug reports, patches.
|
25
|
+
|
23
26
|
|
24
27
|
IDEAS, ADDITIONAL CODING, SUPPORT:
|
25
28
|
|
26
|
-
*
|
27
|
-
Patches, bug
|
29
|
+
* Chris Farmiloe <chris.farmiloe@farmiloe.com>
|
30
|
+
Patches, new features, bug fixes.
|
28
31
|
|
29
32
|
* James Britt <james_b@neurogami.com>
|
30
|
-
|
33
|
+
Evangelising, documentation, design, additional code, bug reports.
|
31
34
|
|
32
35
|
* Aleksi Niemela <Aleksi.Niemela@cs.helsinki.fi>
|
33
36
|
Bug fixes, patches, documentation.
|
@@ -38,9 +41,6 @@ IDEAS, ADDITIONAL CODING, SUPPORT:
|
|
38
41
|
* Zed A. Shaw <zedshaw@zedshaw.com>
|
39
42
|
SCGI adapter.
|
40
43
|
|
41
|
-
* Aidan Rogers <aidan@infurious.com>
|
42
|
-
Bug reports, patches.
|
43
|
-
|
44
44
|
* Peter Abrahamsen <rainhead@gmail.com>
|
45
45
|
Documentation, small patches.
|
46
46
|
|