nitro 0.25.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. data/CHANGELOG +531 -1
  2. data/ProjectInfo +29 -5
  3. data/README +1 -1
  4. data/doc/AUTHORS +12 -6
  5. data/doc/RELEASES +114 -0
  6. data/lib/glue/sweeper.rb +71 -0
  7. data/lib/nitro.rb +19 -12
  8. data/lib/nitro/adapter/cgi.rb +4 -0
  9. data/lib/nitro/adapter/webrick.rb +4 -2
  10. data/lib/nitro/caching.rb +1 -0
  11. data/lib/nitro/caching/fragments.rb +7 -1
  12. data/lib/nitro/caching/output.rb +6 -1
  13. data/lib/nitro/caching/stores.rb +13 -1
  14. data/lib/nitro/cgi.rb +9 -1
  15. data/lib/nitro/cgi/request.rb +11 -3
  16. data/lib/nitro/cgi/utils.rb +24 -2
  17. data/lib/nitro/compiler.rb +89 -63
  18. data/lib/nitro/compiler/cleanup.rb +16 -0
  19. data/lib/nitro/compiler/elements.rb +117 -0
  20. data/lib/nitro/compiler/markup.rb +3 -1
  21. data/lib/nitro/compiler/morphing.rb +203 -73
  22. data/lib/nitro/compiler/script_generator.rb +14 -0
  23. data/lib/nitro/compiler/shaders.rb +1 -1
  24. data/lib/nitro/context.rb +5 -6
  25. data/lib/nitro/controller.rb +43 -21
  26. data/lib/nitro/dispatcher.rb +86 -37
  27. data/lib/nitro/element.rb +3 -105
  28. data/lib/nitro/helper/benchmark.rb +3 -0
  29. data/lib/nitro/helper/dojo.rb +0 -0
  30. data/lib/nitro/helper/form.rb +85 -255
  31. data/lib/nitro/helper/form/controls.rb +274 -0
  32. data/lib/nitro/helper/javascript.rb +86 -6
  33. data/lib/nitro/helper/pager.rb +5 -0
  34. data/lib/nitro/helper/prototype.rb +49 -0
  35. data/lib/nitro/helper/scriptaculous.rb +0 -0
  36. data/lib/nitro/helper/xhtml.rb +11 -8
  37. data/lib/nitro/helper/xml.rb +1 -1
  38. data/lib/nitro/routing.rb +8 -1
  39. data/lib/nitro/scaffolding.rb +344 -0
  40. data/lib/nitro/server.rb +5 -1
  41. data/lib/nitro/server/runner.rb +19 -15
  42. data/lib/nitro/session.rb +32 -56
  43. data/lib/nitro/session/drbserver.rb +1 -1
  44. data/lib/nitro/session/file.rb +34 -15
  45. data/lib/nitro/session/memory.rb +13 -4
  46. data/lib/nitro/session/og.rb +56 -0
  47. data/proto/public/js/controls.js +30 -1
  48. data/proto/public/js/dragdrop.js +211 -146
  49. data/proto/public/js/effects.js +261 -399
  50. data/proto/public/js/prototype.js +131 -72
  51. data/proto/public/scaffold/edit.xhtml +10 -3
  52. data/proto/public/scaffold/form.xhtml +1 -7
  53. data/proto/public/scaffold/index.xhtml +20 -0
  54. data/proto/public/scaffold/list.xhtml +15 -8
  55. data/proto/public/scaffold/new.xhtml +10 -3
  56. data/proto/public/scaffold/search.xhtml +28 -0
  57. data/proto/public/scaffold/view.xhtml +8 -0
  58. data/proto/run.rb +93 -1
  59. data/src/part/admin.rb +4 -2
  60. data/src/part/admin/controller.rb +62 -28
  61. data/src/part/admin/skin.rb +8 -8
  62. data/src/part/admin/system.css +135 -0
  63. data/src/part/admin/template/index.xhtml +8 -12
  64. data/test/nitro/caching/tc_stores.rb +17 -0
  65. data/test/nitro/tc_caching.rb +1 -4
  66. data/test/nitro/tc_dispatcher.rb +22 -10
  67. data/test/nitro/tc_element.rb +1 -1
  68. data/test/nitro/tc_session.rb +23 -11
  69. data/test/public/blog/another/very_litle/index.xhtml +1 -0
  70. metadata +29 -15
  71. data/lib/nitro/dispatcher/general.rb +0 -62
  72. data/lib/nitro/dispatcher/nice.rb +0 -57
  73. data/lib/nitro/scaffold.rb +0 -171
  74. data/proto/public/index.xhtml +0 -83
  75. data/proto/public/js/scaffold.js +0 -74
  76. data/proto/public/settings.xhtml +0 -66
data/CHANGELOG CHANGED
@@ -1,3 +1,533 @@
1
+ Wed Dec 21 13:55:01 EET 2005 George Moschovitis <gm@navel.gr>
2
+ * Minor fixes.
3
+
4
+ Wed Dec 21 13:29:50 EET 2005 chrisfarms@gmail.com
5
+ * Remove reduntant lines from a handful of Controls
6
+
7
+ Wed Dec 21 13:16:49 EET 2005 chrisfarms@gmail.com
8
+ * Updates to Control system, allow preprocessing of posted values by the controls themselves (or via a method specified on property/relation).
9
+
10
+ Tue Dec 20 15:06:21 EET 2005 chrisfarms@gmail.com
11
+ * When an obj is pushed into a collection any existing version of obj needs removing first.
12
+
13
+ Tue Dec 20 15:05:32 EET 2005 chrisfarms@gmail.com
14
+ * What is the patch name? Rebuild of Controls; a Control instance is now made for each obj,property pairing when required, this stops the need to continully pass the obj,prop to each instance method.
15
+
16
+ Tue Dec 20 12:00:27 EET 2005 chrisfarms@gmail.com
17
+ * Repaired scaffold delete (missing '@')
18
+
19
+ Wed Dec 21 13:14:08 EET 2005 George Moschovitis <gm@navel.gr>
20
+ * Some more small fixes.
21
+
22
+ Wed Dec 21 13:02:25 EET 2005 George Moschovitis <gm@navel.gr>
23
+ * Implemented bryans validation_key idea to avoid multiple validations [bryan].
24
+
25
+ Wed Dec 21 12:41:20 EET 2005 rob@motionpath.com
26
+ * Don't infinite loop if PostgreSQL database is damaged
27
+
28
+ Wed Dec 21 12:38:02 EET 2005 George Moschovitis <gm@navel.gr>
29
+ * Updated docs.
30
+
31
+ Wed Dec 21 12:23:30 EET 2005 George Moschovitis <gm@navel.gr>
32
+ * Multiple small fixes in flare.
33
+
34
+ Tue Dec 20 18:49:41 EET 2005 rob@motionpath.com
35
+ * Heavy duty startup patch to PostgreSQL
36
+ Allows you to do crazy things like run 50 concurrent connections at once destroying
37
+ the tables while other Og processes are trying to load
38
+
39
+ Tue Dec 20 16:38:52 EET 2005 rob@motionpath.com
40
+ * PostgreSQL fix to allow tolerance of multiple programs meddling with the database structure
41
+
42
+ Mon Dec 19 21:05:06 EET 2005 rob@motionpath.com
43
+ * PostgreSQL improvements, change to manager, enhancement and change to error logger, call create_table on STI classes again
44
+ This patch tidies up the old foreign key constraint creation and also offers a new rapid method that is called post setup. A similar technique could be used to offer an alternate table creation mechanism greatly increasing load performance.
45
+ Error logger was not verbose enough so I made it more verbose when Og.setup throws exceptions. I also made it exit the program if $DBG was set to make this easier to spot.
46
+ For some reason create_table was explicitly not being called on tables with schema inheritance set. This is a mistake I think, there is no reason why you cannot use the schema inheritance base class and we do.
47
+
48
+
49
+ Tue Dec 20 03:10:45 EET 2005 chrisfarms@gmail.com
50
+ * More scaffolding related bits. A HasMany/JoinsMany control, Repaired the redirect after save, removed obsolete scaffold.js
51
+
52
+ Fri Dec 16 19:33:09 EET 2005 chrisfarms@gmail.com
53
+ * Some mailservers reject mail requests if they lie about their HELO statement.... This patch makes the default domain for Glue::Mailer the hostname of the machine running the app (I think this is better default behaviour)
54
+
55
+ Tue Dec 20 14:40:35 EET 2005 George Moschovitis <gm@navel.gr>
56
+ * Small fixes.
57
+
58
+ Mon Dec 19 15:49:33 EET 2005 George Moschovitis <gm@navel.gr>
59
+ * Added delete/destroy in main admin page.
60
+
61
+ Tue Dec 20 11:04:27 EET 2005 George Moschovitis <gm@navel.gr>
62
+ * More templates for blog example.
63
+
64
+ Tue Dec 20 11:03:46 EET 2005 George Moschovitis <gm@navel.gr>
65
+ * Updated docs.
66
+
67
+ Tue Dec 20 11:03:29 EET 2005 George Moschovitis <gm@navel.gr>
68
+ * Small fix in flare.
69
+
70
+ Fri Dec 16 19:56:02 EET 2005 rob@motionpath.com
71
+ * Another postgresql race condition...
72
+
73
+ Fri Dec 16 18:46:03 EET 2005 rob@motionpath.com
74
+ * Og.setup error logger now more chatty and exits the program if $DBG is set (program is useless if it's broken)
75
+
76
+ Fri Dec 16 18:39:27 EET 2005 rob@motionpath.com
77
+ * Fixes another race condition
78
+
79
+ Fri Dec 16 18:29:23 EET 2005 rob@motionpath.com
80
+ * Stop race condition with PostgreSQL
81
+
82
+ Fri Dec 16 18:21:12 EET 2005 rob@motionpath.com
83
+ * PostgreSQL auto-stripping of broken relations fix
84
+
85
+ Mon Dec 12 17:35:34 EET 2005 rob@motionpath.com
86
+ * Og was incorrectly using a case-sensitive comparison to see if it should append SELECT klass::OGTABLE but SQL is case-insensitive. Fixed.
87
+
88
+ Fri Dec 16 00:15:39 EET 2005 chrisfarms@gmail.com
89
+ * Scaffolding and part/admin updates. Notable changes new scaffold_all method instead of the mounted hack, sprinkling of aspects in the scaffold code for pre :on => scaffold_save etc (handy for restricting control), cleaner stylesheet handling from part/admin, scaffold method defaults to :mount => true ... seems silly adding this everytime... search gives a "not implimented" error if no serach method found instead of raising /error... +other bits
90
+
91
+ Wed Dec 7 16:17:07 EET 2005 chrisfarms@gmail.com
92
+ * TEMP: fix _oid issues ... abandon once new scaffold operational
93
+
94
+ Tue Dec 6 14:23:01 EET 2005 chrisfarms@gmail.com
95
+ * TEMP: fix to refers_to scaffold relation in populate when :none is allowed
96
+
97
+ Fri Dec 16 17:33:49 EET 2005 George Moschovitis <gm@navel.gr>
98
+ * Small changes in runner.
99
+
100
+ Fri Dec 16 12:02:49 EET 2005 George Moschovitis <gm@navel.gr>
101
+ * Dont dump access_log to STDERR by default on windows.
102
+
103
+ Thu Dec 15 17:58:33 EET 2005 George Moschovitis <gm@navel.gr>
104
+ * Hack fixed PROTO_DIR/index bug. A better solution (template_root stack) will be available in 0.27.0
105
+
106
+ Thu Dec 15 17:27:17 EET 2005 George Moschovitis <gm@navel.gr>
107
+ * Added enumerable accumulate helper.
108
+
109
+ Thu Dec 15 16:25:38 EET 2005 George Moschovitis <gm@navel.gr>
110
+ * Confirm before delete in the admin screens.
111
+
112
+ Thu Dec 15 15:34:15 EET 2005 George Moschovitis <gm@navel.gr>
113
+ * Refactored, improved, fixed blog example.
114
+
115
+ Thu Dec 15 15:16:10 EET 2005 George Moschovitis <gm@navel.gr>
116
+ * Added fragment caching helper to sweeper, small fixes in fragment caching.
117
+
118
+ Thu Dec 15 13:22:57 EET 2005 George Moschovitis <gm@navel.gr>
119
+ * Updated docs.
120
+
121
+ Thu Dec 15 12:13:33 EET 2005 George Moschovitis <gm@navel.gr>
122
+ * Some fixes on guill's session patch.
123
+
124
+ Wed Dec 14 18:33:22 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
125
+ * nitro session code refactored, og session store added, test case updated
126
+
127
+ Fri Dec 9 19:31:59 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
128
+ * webrick adapter: avoid warning on streaming with http/1.0
129
+
130
+ Fri Dec 9 14:12:32 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
131
+ * @out can be an IO in case of streaming, and don't have empty? method
132
+
133
+ Fri Dec 9 14:05:32 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
134
+ * request.ajax? removed and aliased to xml_http_request? instead
135
+
136
+ Wed Dec 14 21:49:51 EET 2005 rainhead@gmail.com
137
+ * Updated docs for RELEASES and javascript
138
+
139
+ Wed Dec 14 13:59:59 EET 2005 George Moschovitis <gm@navel.gr>
140
+ * Some fixes to the examples to make them work with the latest nitro.
141
+
142
+ Wed Dec 14 13:47:02 EET 2005 George Moschovitis <gm@navel.gr>
143
+ * Small changes to make the tests pass again.
144
+
145
+ Wed Dec 14 13:06:58 EET 2005 George Moschovitis <gm@navel.gr>
146
+ * Upgrated to Prototype 1.4 and Scriptaculous 1.5
147
+
148
+ Wed Dec 14 12:58:27 EET 2005 George Moschovitis <gm@navel.gr>
149
+ * Updated docs to prepare for new release.
150
+
151
+ Sun Dec 11 16:57:17 EET 2005 brian@xsi-design.com
152
+ * improved_validations
153
+
154
+ Tue Dec 13 17:30:39 EET 2005 George Moschovitis <gm@navel.gr>
155
+ * Use DATETIME instead of timestamp by default on Mysql.
156
+
157
+ Tue Dec 13 17:06:44 EET 2005 George Moschovitis <gm@navel.gr>
158
+ * Reordered default compiler pipeline, better tradeoff.
159
+
160
+ Tue Dec 13 15:32:51 EET 2005 George Moschovitis <gm@navel.gr>
161
+ * Inline admin css.
162
+
163
+ Tue Dec 13 15:32:29 EET 2005 George Moschovitis <gm@navel.gr>
164
+ * Temp many_to_many implementation.
165
+
166
+ Mon Dec 12 18:08:12 EET 2005 George Moschovitis <gm@navel.gr>
167
+ * Add to_s for tags (scaffold friendly).
168
+
169
+ Mon Dec 12 17:40:02 EET 2005 George Moschovitis <gm@navel.gr>
170
+ * Added the new sweeper.
171
+
172
+ Mon Dec 12 17:38:49 EET 2005 George Moschovitis <gm@navel.gr>
173
+ * Add Revisable, Sweeper support in spark.
174
+
175
+ Mon Dec 12 17:38:33 EET 2005 George Moschovitis <gm@navel.gr>
176
+ * Improved Revisable.
177
+
178
+ Mon Dec 12 17:36:29 EET 2005 George Moschovitis <gm@navel.gr>
179
+ * CacheSweeper -> Sweeper, allow for non cache cleanups.
180
+
181
+ Mon Dec 12 17:32:11 EET 2005 George Moschovitis <gm@navel.gr>
182
+ * Updated RELEASES.
183
+
184
+ Mon Dec 12 17:31:08 EET 2005 George Moschovitis <gm@navel.gr>
185
+ * Sweeper support in flare.
186
+
187
+ Sun Dec 11 11:24:37 EET 2005 George Moschovitis <gm@navel.gr>
188
+ * Misc changes.
189
+
190
+ Sat Dec 10 00:22:44 EET 2005 bryan.a.soto@gmail.com
191
+ * bugfix_validate_unique
192
+
193
+ Modifies validate_unique to use new find_all_by_* methods which return an array.
194
+ Adds tests.
195
+
196
+ Fri Dec 9 08:23:48 EET 2005 rainhead@gmail.com
197
+ * Some documentation for Javascript mixin
198
+
199
+ Thu Dec 8 01:01:36 EET 2005 Jonas Pfenniger <zimba.tm@gmail.com>
200
+ * Added CheckboxControl, linked to TrueClass and changed sql to parse 'true', '1' and 't' to true
201
+
202
+ Thu Dec 8 13:04:11 EET 2005 Jonas Pfenniger <zimba.tm@gmail.com>
203
+ * Removed all ms ^M
204
+
205
+ Thu Dec 8 16:04:54 EET 2005 George Moschovitis <gm@navel.gr>
206
+ * Removed the new validation code, buggy, waiting for a new patch.
207
+
208
+ Thu Dec 8 15:33:36 EET 2005 George Moschovitis <gm@navel.gr>
209
+ * Added force_save.
210
+
211
+ Thu Dec 8 15:30:44 EET 2005 George Moschovitis <gm@navel.gr>
212
+ * Fix in timestamp.
213
+
214
+ Thu Dec 8 01:06:12 EET 2005 brian@xsi-design.com
215
+ * Improving validation support and enabling validation before a save. Fixed a bug where calling #valid? would cause an endless loop. Fixed a bug where calling #valid? and then extending a class to add new validations would cause those validations to be ignored.
216
+
217
+ Wed Dec 7 18:06:17 EET 2005 George Moschovitis <gm@navel.gr>
218
+ * More small things.
219
+
220
+ Wed Dec 7 15:08:26 EET 2005 rob@motionpath.com
221
+ * PostgreSQL foreign key constraints fixes and improvements
222
+ Now deletes join table rows as it did before (this is needed since Og has applied a NOT NULL constraint to join tables). The framework is in place for the ability to specify foreign key reactions.
223
+
224
+ Wed Dec 7 15:05:18 EET 2005 George Moschovitis <gm@navel.gr>
225
+ * Fixed some old :editors.
226
+
227
+ Wed Dec 7 14:41:24 EET 2005 George Moschovitis <gm@navel.gr>
228
+ * Misc fixes.
229
+
230
+ Wed Dec 7 14:31:04 EET 2005 George Moschovitis <gm@navel.gr>
231
+ * Small fix in flare
232
+
233
+ Wed Dec 7 13:25:23 EET 2005 George Moschovitis <gm@navel.gr>
234
+ * Some fixes in evolution.
235
+
236
+ Wed Dec 7 12:54:54 EET 2005 George Moschovitis <gm@navel.gr>
237
+ * Added searchable, the scaffolder also supports searching.
238
+
239
+ Wed Dec 7 12:13:47 EET 2005 rob@motionpath.com
240
+ * Patch to allow multiple other databases to be used with PostgreSQL
241
+
242
+ Wed Dec 7 12:05:42 EET 2005 George Moschovitis <gm@navel.gr>
243
+ * Added pager in the admin screens (dont forget the system.css file)
244
+
245
+ Wed Dec 7 12:04:40 EET 2005 George Moschovitis <gm@navel.gr>
246
+ * Misc fixes in the admin/scaffold code.
247
+
248
+ Wed Dec 7 00:02:26 EET 2005 chrisfarms@gmail.com
249
+ * Attempt at making the error handling for @out a little neater
250
+
251
+ Tue Dec 6 23:59:47 EET 2005 chrisfarms@gmail.com
252
+ * More consistancy between compiler and the cool new dispatcher, raise NoActionError for 404 type situations
253
+
254
+ Wed Dec 7 10:49:39 EET 2005 George Moschovitis <gm@navel.gr>
255
+ * Added guill's kirby test case. [guill]
256
+
257
+ Tue Dec 6 18:40:36 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
258
+ * fixed: bad handling of @oid in og/store/kirby.rb
259
+
260
+ Tue Dec 6 18:00:58 EET 2005 rob@motionpath.com
261
+ * PostgreSQL foreign key constraints fixes
262
+ This patch will cause Og to strip out all constraints it has previously added to a database on startup unless you use the :leave_constraints option by setting it to true within the database options. It is safe to allow it to do this always. There has been a change in that all constraints now set NULL on deletes rather than cascading the delete which was appropriate to join tables but not appropriate to other relationships. This is a safe fix to use for now, also removes the need for the seperate sceript and manual intervention and should stay in Og while the cascade behaviour of relationships is discussed on the Mailinglist.
263
+
264
+
265
+ Tue Dec 6 13:16:06 EET 2005 rob@motionpath.com
266
+ * Added loopback to the list of ignored proxy addresses (some ad-blocking software uses this)
267
+
268
+ Tue Dec 6 17:58:27 EET 2005 George Moschovitis <gm@navel.gr>
269
+ * More small fixes.
270
+
271
+ Tue Dec 6 17:44:43 EET 2005 George Moschovitis <gm@navel.gr>
272
+ * Added old why_wiki code too.
273
+
274
+ Tue Dec 6 17:43:24 EET 2005 George Moschovitis <gm@navel.gr>
275
+ * Some fixes to make Publishables work again.
276
+
277
+ Tue Dec 6 17:42:46 EET 2005 George Moschovitis <gm@navel.gr>
278
+ * Reimplemented why_wiki example.
279
+
280
+ Tue Dec 6 17:08:07 EET 2005 George Moschovitis <gm@navel.gr>
281
+ * Added the extremely useful CacheSweeper mixin.
282
+
283
+ Tue Dec 6 16:41:32 EET 2005 George Moschovitis <gm@navel.gr>
284
+ * Cleaned up dispatcher.
285
+
286
+ Tue Dec 6 16:38:09 EET 2005 George Moschovitis <gm@navel.gr>
287
+ * Further improvements to the scaffoliding / admin code.
288
+
289
+ Tue Dec 6 14:18:24 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
290
+ * compiler/morphing.rb not stripping doctype anymore
291
+
292
+ Tue Dec 6 14:17:42 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
293
+ * base and meta tags added to cleaned up html tags
294
+
295
+ Thu Dec 1 08:11:31 EET 2005 rainhead@gmail.com
296
+ * Allow fixtures with ".yaml" extension
297
+
298
+ Mon Dec 5 21:19:32 EET 2005 zimba.tm@gmail.com
299
+ * Glycerin require facility
300
+
301
+ Sun Nov 27 13:07:02 EET 2005 zimba.tm@gmail.com
302
+ * removed ms carriage-return
303
+
304
+ Mon Dec 5 16:19:24 EET 2005 George Moschovitis <gm@navel.gr>
305
+ * Use the new KirbyBase 2.5 gem, which works perfectly with the latest code (no more db corruption on reload).
306
+
307
+ Mon Dec 5 15:25:47 EET 2005 George Moschovitis <gm@navel.gr>
308
+ * Continued work on the new scaffolder, initial support for relation, more cleanups, navigation and more improvements.
309
+
310
+ Mon Dec 5 13:03:47 EET 2005 George Moschovitis <gm@navel.gr>
311
+ * Executables in ProjectInfo. [trans]
312
+
313
+ Sat Dec 3 04:34:28 EET 2005 rainhead@gmail.com
314
+ * Type-o in nitro/ProjectInfo
315
+
316
+ Mon Dec 5 12:35:26 EET 2005 George Moschovitis <gm@navel.gr>
317
+ * Added Rob's kill-constrains script. [rob]
318
+
319
+ Mon Dec 5 11:37:43 EET 2005 rob@motionpath.com
320
+ * Improvements to PostgreSQL foreign key constraints
321
+ Now tracks record fields as well as join tables. Will automatically set corrupt relations that were in place before adding the constraints to NULL if evolve_schema_cautious is set to false. Otherwise, logs an error, doesn't add the constraint and allows Og to continue loading.
322
+ The code is simplified.
323
+
324
+ Thu Nov 17 12:45:00 EET 2005 rob@motionpath.com
325
+ * Allows simple (not heavily tested) usage of primary keys with a different field name to the relation name (useful for legacy applicatons)
326
+
327
+ Mon Dec 5 12:21:59 EET 2005 George Moschovitis <gm@navel.gr>
328
+ * Implemented the new intelligent dispatcher that combines the functionality of the older general and nice dispatchers and allows for completely free structure and nice urls without rewrites. Pure magic!
329
+
330
+ Sun Dec 4 20:29:55 EET 2005 chrisfarms@gmail.com
331
+ * FIX: Elements not getting aliased as ElementProcessor propperly
332
+ --test cases are useful
333
+
334
+ Sun Dec 4 20:17:59 EET 2005 chrisfarms@gmail.com
335
+ * By putting the morphing compiler after the elements compiler we are able to use morhping code within elements, but lose the ability to morph an element!
336
+
337
+ Sun Dec 4 20:10:45 EET 2005 chrisfarms@gmail.com
338
+ * FIX: whoops!... changes to cleanup stopped the render,inject etc tags rendering
339
+
340
+ Sun Dec 4 16:54:03 EET 2005 chrisfarms@gmail.com
341
+ * Tiny bit of refactoring in compiler, easier to read
342
+
343
+ Fri Dec 2 19:09:26 EET 2005 chrisfarms@gmail.com
344
+ * Stop Runner silently catching errors in external config files (was confusing, and hard to find bugs)
345
+
346
+ Mon Nov 28 18:30:58 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
347
+ * ajax? method for request
348
+
349
+ Mon Nov 28 17:31:33 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
350
+ * mysql store evolve_schema support
351
+ this is mainly a recopy of code. Needs to be refactored.
352
+
353
+ Sat Nov 19 03:43:35 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
354
+ * taggable: avoid key conflict by filtering already tagged objects
355
+
356
+ Fri Nov 18 12:46:30 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
357
+ * og sqlite small bugfix
358
+
359
+ Fri Dec 2 19:00:34 EET 2005 George Moschovitis <gm@navel.gr>
360
+ * Added some simple relation controls, refactoring and fixes, still under construction.
361
+
362
+ Fri Dec 2 16:50:00 EET 2005 George Moschovitis <gm@navel.gr>
363
+ * Started working on new form helper, this patch contains changes for scaffolding, compiler and more to support this. Under construction.
364
+
365
+ Fri Dec 2 11:18:04 EET 2005 George Moschovitis <gm@navel.gr>
366
+ * Manually added the cleanup compiler.
367
+
368
+ Fri Dec 2 11:17:07 EET 2005 George Moschovitis <gm@navel.gr>
369
+ * Annotation bug fix in update_routes (hopefully this fixes the hard to track annotation bug).
370
+
371
+ Fri Dec 2 11:16:33 EET 2005 George Moschovitis <gm@navel.gr>
372
+ * Small updates after chris's patch.
373
+
374
+ Fri Dec 2 07:38:32 EET 2005 chrisfarms@gmail.com
375
+ * Allow use of symbols for set_order options (kirby)
376
+
377
+ Fri Dec 2 07:37:42 EET 2005 chrisfarms@gmail.com
378
+ * Change some debug/display info in runner
379
+
380
+ Fri Dec 2 07:32:00 EET 2005 chrisfarms@gmail.com
381
+ * Updates to morphing... order that morphers are added dictates priority for that morpher, added select_if, checked_if, select_unless etc. attributes for use with <option> and checkbox elements.
382
+
383
+ should now be possible todo
384
+ <select>
385
+ <option each="this in that" selected_if="this == 1">#{this}</option>
386
+ </select>
387
+ and simular
388
+
389
+ not heavily tested.
390
+
391
+ Fri Dec 2 07:29:24 EET 2005 chrisfarms@gmail.com
392
+ * allow searching of templates to fall back to Template.root if not found in self.template_root
393
+
394
+ Fri Dec 2 07:25:59 EET 2005 chrisfarms@gmail.com
395
+ * Use a Cleanup.transform to perform the Glue::HTML cleanup function
396
+ ...this might be better built directly into Template.transform's function ?
397
+
398
+ Fri Dec 2 07:21:01 EET 2005 chrisfarms@gmail.com
399
+ * Move the ElementProcessor => Elements compiler module to keep everything organised
400
+
401
+ Fri Dec 2 07:18:38 EET 2005 chrisfarms@gmail.com
402
+ * Only apply the Glue cleanup method to certain html element to make output more IE friendly
403
+ InternetExplorer would cry if it saw <div /> or worse <script />
404
+
405
+ Fri Dec 2 03:35:36 EET 2005 chrisfarms@gmail.com
406
+ * some more simple request.from_xxx? methods in utils
407
+
408
+ Thu Dec 1 22:26:44 EET 2005 chrisfarms@gmail.com
409
+ * Missing </li> in proto index.xhtml - was annoying me
410
+
411
+ Thu Dec 1 00:03:50 EET 2005 chrisfarms@gmail.com
412
+ * Error information for when Og.setup fails, very useful in early stages
413
+
414
+ Wed Nov 30 23:38:03 EET 2005 chrisfarms@gmail.com
415
+ * allow markup pipeline to be access from the Nitro namespace (keeping glue behind the scenes is more intuative)
416
+
417
+ Thu Dec 1 18:20:50 EET 2005 George Moschovitis <gm@navel.gr>
418
+ * A big patch that introduces the new scaffolding system. Many many changes and improvements to dispatcher, compiler etc to support this. This is work in progress and will most probably change a lot.
419
+
420
+ Thu Dec 1 12:09:22 EET 2005 George Moschovitis <gm@navel.gr>
421
+ * Totaly recoded morphing subsystem, allows for userned, pluggable morphers, multiple key attributes per element and more.
422
+
423
+ Thu Dec 1 12:08:17 EET 2005 George Moschovitis <gm@navel.gr>
424
+ * Initial commit of new example.
425
+
426
+ Wed Nov 30 17:28:08 EET 2005 George Moschovitis <gm@navel.gr>
427
+ * Modified default compilere pipeline to include all the common modules.
428
+
429
+ Wed Nov 30 12:07:34 EET 2005 George Moschovitis <gm@navel.gr>
430
+ * Introduced some new js helpers, no code yet, ignore for the moment.
431
+
432
+ Tue Nov 29 21:22:40 EET 2005 George Moschovitis <gm@navel.gr>
433
+ * Fix boolean handling. [timl]
434
+
435
+ Fri Nov 25 18:34:55 EET 2005 George Moschovitis <gm@navel.gr>
436
+ * Added some comments on revisable.
437
+
438
+ Fri Nov 25 18:31:21 EET 2005 George Moschovitis <gm@navel.gr>
439
+ * Implemented an Og Revisable mixin, based on original code by Dirk Barnikel.
440
+
441
+ Fri Nov 25 17:09:58 EET 2005 George Moschovitis <gm@navel.gr>
442
+ * Removed dangerous aspects patch.
443
+
444
+ Fri Nov 25 17:01:27 EET 2005 George Moschovitis <gm@navel.gr>
445
+ * Dynamic finder with block and refactoring. [aleksi]
446
+
447
+ Fri Nov 25 14:29:50 EET 2005 George Moschovitis <gm@navel.gr>
448
+ * Added some comments here and there...
449
+
450
+ Fri Nov 25 14:29:14 EET 2005 George Moschovitis <gm@navel.gr>
451
+ * Fix author in Flare. [manveru]
452
+
453
+ Thu Nov 24 14:05:21 EET 2005 George Moschovitis <gm@navel.gr>
454
+ * Argh!
455
+
456
+ Thu Nov 24 13:07:28 EET 2005 George Moschovitis <gm@navel.gr>
457
+ * Added small pager helper method.
458
+
459
+ Thu Nov 24 11:30:26 EET 2005 George Moschovitis <gm@navel.gr>
460
+ * Fixed aspects not included bug. [manveru, bryan]
461
+
462
+ Wed Nov 23 17:19:31 EET 2005 George Moschovitis <gm@navel.gr>
463
+ * Fixed again cgi query_string handling.
464
+
465
+ Wed Nov 23 11:22:31 EET 2005 George Moschovitis <gm@navel.gr>
466
+ * Applied some patches from zimba and manveru.
467
+
468
+ Tue Nov 22 16:01:54 EET 2005 George Moschovitis <gm@navel.gr>
469
+ * Added test case for the previous fix.
470
+
471
+ Fri Nov 18 22:43:33 EET 2005 bryan.a.soto@gmail.com
472
+ * bugfix_eval_validate
473
+
474
+ By catching all NoMethodErrors and performing a retry, an endless loop
475
+ occurred if a NoMethodError was thrown during validation.
476
+
477
+ This fixes that by just handling the call to validate and raising the
478
+ original exception for anything else.
479
+
480
+
481
+ Tue Nov 22 15:42:25 EET 2005 George Moschovitis <gm@navel.gr>
482
+ * Bumped version number.
483
+
484
+ Tue Nov 22 15:28:58 EET 2005 George Moschovitis <gm@navel.gr>
485
+ * Temp fix for Admin/Unmanageable bug.
486
+
487
+ Mon Nov 21 14:20:54 EET 2005 George Moschovitis <gm@navel.gr>
488
+ * Added chdir again.
489
+
490
+ Mon Nov 21 13:12:05 EET 2005 George Moschovitis <gm@navel.gr>
491
+ * Fix for load_path.
492
+
493
+ Mon Nov 21 12:25:58 EET 2005 George Moschovitis <gm@navel.gr>
494
+ * Fix in markup.
495
+
496
+ Thu Nov 17 17:35:43 EET 2005 George Moschovitis <gm@navel.gr>
497
+ * Added Template.strip_xml_comments setting to make guille's patch optional.
498
+
499
+ Thu Nov 17 12:41:55 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
500
+ * small bugfix
501
+
502
+ Thu Nov 17 12:40:41 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
503
+ * compiler/morphing.rb and elements.rb bugfixes
504
+
505
+ Thu Nov 17 15:22:58 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
506
+ * cgi adapter fixes
507
+
508
+ Thu Nov 17 15:19:56 EET 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
509
+ * nitro.rb cleanup
510
+
511
+ Thu Nov 17 11:31:41 EET 2005 George Moschovitis <gm@navel.gr>
512
+ * Removed buggy drb runner.
513
+
514
+ Thu Nov 17 11:14:35 EET 2005 George Moschovitis <gm@navel.gr>
515
+ * Small updates in ProjectInfo's
516
+
517
+ Thu Nov 17 11:10:31 EET 2005 George Moschovitis <gm@navel.gr>
518
+ * Small fixes to prepare for release.
519
+
520
+ Thu Nov 17 10:59:15 EET 2005 George Moschovitis <gm@navel.gr>
521
+ * Small fix in Og example.
522
+
523
+ Thu Nov 17 10:58:52 EET 2005 George Moschovitis <gm@navel.gr>
524
+ * Updated release docs.
525
+
526
+ Thu Nov 17 10:58:09 EET 2005 George Moschovitis <gm@navel.gr>
527
+ * Improved apply.rb
528
+
529
+ --- 0.25.0 ---
530
+
1
531
  Wed Nov 16 18:15:00 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
2
532
  * Small changes
3
533
 
@@ -272,7 +802,7 @@ Sat Oct 29 13:03:32 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
272
802
  Sat Oct 29 12:53:48 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
273
803
  * Small fix in Cgi adapter. [fbach]
274
804
 
275
- 0.24.0:
805
+ --- 0.24.0 ---
276
806
 
277
807
  Sat Oct 29 12:53:10 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
278
808
  * Small fixes before release.