nitro 0.29.0 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
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
data/CHANGELOG CHANGED
@@ -1,3 +1,413 @@
1
+ Sat Apr 29 20:09:13 EEST 2006 George Moschovitis <gm@navel.gr>
2
+ * Minor.
3
+
4
+ Sat Apr 29 20:08:26 EEST 2006 George Moschovitis <gm@navel.gr>
5
+ * Minor stuff.
6
+
7
+ Sat Apr 29 09:58:29 EEST 2006 bryan.a.soto@gmail.com
8
+ * enh-nitro-test-fixtures
9
+ Adds param processing for get requests.
10
+
11
+ Thu Apr 27 09:33:36 EEST 2006 bryan.a.soto@gmail.com
12
+ * fix-og-ez-sti
13
+ Adds manveru's test case and revises his solution, hopefully correctly.
14
+
15
+ Thu Apr 27 09:32:00 EEST 2006 bryan.a.soto@gmail.com
16
+ * test-og-tc_aggregate_calculations
17
+ Gets rid of those stupid warnings.
18
+
19
+ Tue Apr 25 08:46:29 EEST 2006 bryan.a.soto@gmail.com
20
+ * facets-1.3.2-update
21
+ Updates to facets 1.3.2 by removing the Glue namespace prefix from Nitro code.
22
+
23
+ Mon Apr 24 09:37:55 EEST 2006 bryan.a.soto@gmail.com
24
+ * glue-aspects-removal-addendum
25
+ Changes a couple more requires that were missed earlier.
26
+
27
+ Mon Apr 24 09:17:04 EEST 2006 bryan.a.soto@gmail.com
28
+ * gmosx-feed-style-fix-update
29
+ Brings George's style corrections up to date with the correct version of feed helper.
30
+
31
+ Sun Apr 23 12:12:07 EEST 2006 fabian@fabian-buch.de
32
+ * FeedHelper atom time fix
33
+ removed to_rfc3339 in favour of iso8601
34
+
35
+ Fri Apr 21 13:32:45 EEST 2006 fabian@fabian-buch.de
36
+ * FeedHelper initialize time via Time.at(0)
37
+ so should work on Windows too now :)
38
+
39
+ Thu Apr 20 09:27:52 EEST 2006 bryan.a.soto@gmail.com
40
+ * logger-debug-update
41
+ Updates manveru's patch to current repo by resolving conflicts
42
+
43
+ Wed Apr 12 16:15:32 EEST 2006 m.fellinger@gmail.com
44
+ * Adding 'if $DBG' for all Logger.debug messages
45
+
46
+ Thu Apr 20 08:46:59 EEST 2006 bryan.a.soto@gmail.com
47
+ * manverus-ez-tests
48
+ Adds test cases manveru submitted on the mailing list.
49
+
50
+ Tue Apr 18 22:45:59 EEST 2006 bryan.a.soto@gmail.com
51
+ * script-runner-enhancements
52
+ Various enhancements. Runs against darcs repo, allows multiple dirs to be ran, i.e. ./script/test.rb nitro og rather than only one at a time.
53
+
54
+ Sat Apr 29 04:50:09 EEST 2006 George Moschovitis <gm@navel.gr>
55
+ * Adapted yonas finegrained transformation pipeline patch to work with the latest code. Also added support for action specific pipelines, added more rdocs. See compiler.rb for the details.
56
+
57
+ Thu Apr 27 20:19:02 EEST 2006 George Moschovitis <gm@navel.gr>
58
+ * Removed unneeded ContextHelper.
59
+
60
+ Thu Apr 27 20:17:48 EEST 2006 George Moschovitis <gm@navel.gr>
61
+ * Added more rdoc comments here and there, to clarify some parts of the Nitro code. More to come.
62
+
63
+ Thu Apr 27 13:32:32 EEST 2006 George Moschovitis <gm@navel.gr>
64
+ * Removed acgi stuff, not mature enough!
65
+
66
+ Thu Apr 27 13:29:45 EEST 2006 George Moschovitis <gm@navel.gr>
67
+ * Initial support for orderables in admin/scaffold pages.
68
+
69
+ Thu Apr 27 13:14:59 EEST 2006 George Moschovitis <gm@navel.gr>
70
+ * Rationalized explicitly unamanaged classes setup. Now including Og::Unmanageable marker only affects the class that includes it, not the descendants. Added some rdoc comments.
71
+
72
+ Thu Apr 27 10:39:29 EEST 2006 George Moschovitis <gm@navel.gr>
73
+ * Fixed admin destroy option, used to delete_all.
74
+
75
+ Tue Apr 25 18:46:13 EEST 2006 George Moschovitis <gm@navel.gr>
76
+ * Og.setup= and Og.options= to allow configuring Og through a Configuration .yaml file.
77
+
78
+ Tue Apr 25 14:08:19 EEST 2006 George Moschovitis <gm@navel.gr>
79
+ * Added some tests for R fix.
80
+
81
+ Tue Apr 25 14:02:05 EEST 2006 George Moschovitis <gm@navel.gr>
82
+ * FIX: R operator (encode_url) correctly handles actions with arity.
83
+
84
+ Tue Apr 25 09:41:13 EEST 2006 George Moschovitis <gm@navel.gr>
85
+ * href_of helper accepts strings/symbols.
86
+
87
+ Sun Apr 23 19:07:55 EEST 2006 George Moschovitis <gm@navel.gr>
88
+ * Add href_of in xhtml helper.
89
+
90
+ Sat Apr 22 11:26:29 EEST 2006 George Moschovitis <gm@navel.gr>
91
+ * Fill the params array with extra nils if params are missing to make auto nice urls more flexible and useful.
92
+
93
+ Sat Apr 22 10:00:29 EEST 2006 George Moschovitis <gm@navel.gr>
94
+ * A simple script to perform mass file replacements.
95
+
96
+ Sat Apr 22 10:00:00 EEST 2006 George Moschovitis <gm@navel.gr>
97
+ * Changed all nitrohq refs to nitroproject refs.
98
+
99
+ Sat Apr 22 00:00:46 EEST 2006 George Moschovitis <gm@navel.gr>
100
+ * Fixed toggling in default error page.
101
+
102
+ Fri Apr 21 19:47:40 EEST 2006 George Moschovitis <gm@navel.gr>
103
+ * Added link_to helper in XHTML helper for easy linking to entities.
104
+
105
+ Fri Apr 21 19:47:10 EEST 2006 George Moschovitis <gm@navel.gr>
106
+ * Better controller mount_path handling, removed Bryan's hack fix.
107
+
108
+ Fri Apr 21 12:08:47 EEST 2006 George Moschovitis <gm@navel.gr>
109
+ * FIX: don't create tables for polymorphic_parent entities.
110
+
111
+ Thu Apr 20 17:29:59 EEST 2006 George Moschovitis <gm@navel.gr>
112
+ * Removed aspects from glue (in facets now), adapted nitro accordingly.
113
+
114
+ Tue Apr 18 19:40:37 EEST 2006 Jonas Pfenniger <jonas@stvs.ch>
115
+ * [small fix] Nitro didn't start properly when Og was not used
116
+
117
+ Wed Apr 19 14:01:33 EEST 2006 George Moschovitis <gm@navel.gr>
118
+ * Aplied some coding convetions to the new feed helper.
119
+
120
+ Tue Apr 18 21:14:10 EEST 2006 fabian@fabian-buch.de
121
+ * * new FeedHelper
122
+ . reimplementation of RssHelper to support all RSS versions
123
+ . very few code left of Georges original RssHelper
124
+ . supports RSS versions 0.91, 1.0 and 2.0
125
+ . supports Atom 1.0
126
+ . supports rough OPML 1.0
127
+ . should be backward compatible to the RssHelper for RSS 0.91 feeds
128
+ . just change "helper :rss" to "helper :feed" for access to all the new features
129
+ . not much tested yet, so be careful, but test a lot and report bugs
130
+ . big RDoc, so everyone knows how to use it
131
+ . more tests, but it still could use a lot more.. (but tests are no validator, right?)
132
+
133
+ Tue Apr 18 17:56:29 EEST 2006 George Moschovitis <gm@navel.gr>
134
+ * Minor fix.
135
+
136
+ Tue Apr 18 01:41:59 EEST 2006 bryan.a.soto@gmail.com
137
+ * glue-version-bump-0.30
138
+ Bump Glue::Version to 0.30.0
139
+
140
+ Tue Apr 18 01:25:08 EEST 2006 bryan.a.soto@gmail.com
141
+ * test-fix-tc_aggregations_calculations
142
+ Modifies test case for tc_aggregations_calculations.rb. Group by doesn't automatically perform an order by of the grouping field, so the test case was failing due to the assumption that the lowest value was listed first.
143
+
144
+ Thu Apr 6 10:09:20 EEST 2006 bryan.a.soto@gmail.com
145
+ * og-postgres-sti-fix
146
+ Makes PsqlStore#eval_og_allocate use the same logic as SqlStore#eval_og_allocate when determining if a class is STI.
147
+
148
+ Thu Apr 13 09:20:23 EEST 2006 bryan.a.soto@gmail.com
149
+ * og-aggregate-type-casting
150
+ Patch adds a new method, #type_cast, which ensures dates and times are returned as instances of Date and Time. Adds tests to tc_aggregations_calculations.rb.
151
+
152
+ Thu Apr 6 08:14:41 EEST 2006 bryan.a.soto@gmail.com
153
+ * og-postgres-join-tables
154
+ Patch modifies the way Postgres accesses join table info to match other stores.
155
+
156
+ Fri Apr 7 08:36:54 EEST 2006 bryan.a.soto@gmail.com
157
+ * og-tags
158
+ Modifies the query used for Tag selection. Uses subqueries. Passes tests on Mysql, Postgres and Sqlite.
159
+
160
+ Wed Apr 12 23:14:23 EEST 2006 bryan.a.soto@gmail.com
161
+ * og-joins_many-relation
162
+ When using a through table, joins_many was assuming that the through table class was already enchanted. This modifies it to compute the table name.
163
+
164
+ Thu Apr 13 02:42:36 EEST 2006 bryan.a.soto@gmail.com
165
+ * bugfix-nitro-R-operator
166
+ Fixes the R operator by setting the annotation it requires in the dispatcher when the controller is mounted to the mount point. Adds tests.
167
+
168
+ Sat Apr 15 09:23:47 EEST 2006 bryan.a.soto@gmail.com
169
+ * test-fix-tc_aggregations_calculations
170
+ Modifies test case for tc_aggregations_calculations.rb. Group by doesn't automatically perform an order by of the grouping field, so the test case was failing due to the assumption that the lowest value was listed first.
171
+
172
+ Tue Apr 18 17:16:33 EEST 2006 George Moschovitis <gm@navel.gr>
173
+ * Removed from glue files that where added in Facets, adapted Nitro accordingly.
174
+
175
+ Mon Apr 17 11:37:21 EEST 2006 George Moschovitis <gm@navel.gr>
176
+ * More flexible Script generator, the developer can use most of its features without a Client subclass.
177
+
178
+ Mon Apr 17 11:18:15 EEST 2006 George Moschovitis <gm@navel.gr>
179
+ * Added context.no_sync! option, low level hack needed when modifying the users session in interesting ways ;-)
180
+
181
+ Fri Apr 14 13:04:40 EEST 2006 George Moschovitis <gm@navel.gr>
182
+ * Updated docs.
183
+
184
+ Fri Apr 14 12:49:15 EEST 2006 George Moschovitis <gm@navel.gr>
185
+ * Small changes to make all tests pass.
186
+
187
+ Fri Apr 14 10:50:41 EEST 2006 George Moschovitis <gm@navel.gr>
188
+ * Added new script to run all tests, lets get rid of the stupid rakefile.
189
+
190
+ Thu Apr 13 14:39:02 EEST 2006 George Moschovitis <gm@navel.gr>
191
+ * Fix in output caching.
192
+
193
+ Thu Apr 13 12:11:34 EEST 2006 George Moschovitis <gm@navel.gr>
194
+ * Reimplemented session garbage collection (simple).
195
+
196
+ Thu Apr 13 11:50:56 EEST 2006 George Moschovitis <gm@navel.gr>
197
+ * Reimplemented global, more flexible and transparently supports distributed global variables, work in progress though.
198
+
199
+ Wed Apr 12 20:18:42 EEST 2006 George Moschovitis <gm@navel.gr>
200
+ * Misc fixes.
201
+
202
+ Tue Apr 11 10:57:05 EEST 2006 George Moschovitis <gm@navel.gr>
203
+ * Made the router and nice url resolver a bit more intelligent.
204
+
205
+ Tue Apr 11 10:14:48 EEST 2006 George Moschovitis <gm@navel.gr>
206
+ * Moved Tag out of Glue namespace (temporarily).
207
+
208
+ Tue Apr 11 09:59:10 EEST 2006 George Moschovitis <gm@navel.gr>
209
+ * Small fix in fragments caching.
210
+
211
+ Mon Apr 10 13:58:55 EEST 2006 George Moschovitis <gm@navel.gr>
212
+ * Moved top level repo scripts in script
213
+
214
+ Mon Apr 10 13:56:45 EEST 2006 George Moschovitis <gm@navel.gr>
215
+ * Cleaned up tabs.
216
+
217
+ Mon Apr 10 13:26:23 EEST 2006 George Moschovitis <gm@navel.gr>
218
+ * Updated AUTHORS.
219
+
220
+ Mon Apr 10 13:21:55 EEST 2006 George Moschovitis <gm@navel.gr>
221
+ * Add some simple options to the session vcr: --record session.yaml and --playback session.yaml, enjoy ;-)
222
+
223
+ Mon Apr 10 13:08:42 EEST 2006 George Moschovitis <gm@navel.gr>
224
+ * Keep the rendering level in the context to allow for conditional rendering on top_level actions (very useful ;-)).
225
+
226
+ Mon Apr 10 12:01:44 EEST 2006 George Moschovitis <gm@navel.gr>
227
+ * Small updates in docs.
228
+
229
+ Sun Apr 9 12:23:08 EEST 2006 George Moschovitis <gm@navel.gr>
230
+ * Cleaned up router implementation, added more intuitive 'global' setup (see rdocs). [james_b]
231
+
232
+ Sun Apr 9 11:27:58 EEST 2006 George Moschovitis <gm@navel.gr>
233
+ * Better error report when a relation uses a non-existant class as the target.
234
+
235
+ Sat Apr 8 20:39:04 EEST 2006 George Moschovitis <gm@navel.gr>
236
+ * Implemented absolutely magical record/playback functionality in the Webrick adapter to allow for fully automatic webapp testing. Use your browser to 'record' your test run of the application and playback many times to assert that it works as expected.
237
+
238
+ Sat Apr 8 10:35:30 EEST 2006 George Moschovitis <gm@navel.gr>
239
+ * Updated to prototype 1.5.0_rc0 / Scriptaculous 1.6.1
240
+
241
+ Sat Mar 25 09:56:09 EET 2006 bryan.a.soto@gmail.com
242
+ * ajax-helper-params
243
+ Code submitted by Massimo Maria Ghisalberti nissl AT tiscali DOT it
244
+ Added testcase.
245
+
246
+ Allows AJAX helper generated Javascript functions to take params.
247
+
248
+ Tue Apr 4 09:33:14 EEST 2006 bryan.a.soto@gmail.com
249
+ * camel-case-table-naming
250
+ Fixes devlab bug #13. http://devlab.oree.ch/trac/nitroproject/ticket/13
251
+ Wasn't consistently determining field names.
252
+
253
+ Fri Mar 10 14:53:03 EET 2006 Kashia Buch <kashia@vfemail.net>
254
+ * add testcase for joins with camel case
255
+
256
+ Fri Apr 7 12:25:55 EEST 2006 George Moschovitis <gm@navel.gr>
257
+ * Added some cookie related helpers.
258
+
259
+ Fri Apr 7 10:14:12 EEST 2006 George Moschovitis <gm@navel.gr>
260
+ * Added boolean helpers in request object.
261
+
262
+ Tue Apr 4 02:57:27 EEST 2006 bryan.a.soto@gmail.com
263
+ * og-sqlite-sti-fix
264
+ Sqlite3 store was not using fields_for_class defined in SqlStore, so it was improperly handling single table inheritance.
265
+
266
+ Tue Apr 4 02:59:47 EEST 2006 bryan.a.soto@gmail.com
267
+ * og-sqlite-test-fix
268
+ Config setting was keeping Og test suite from running when using the Sqlite3 store. This probably just masks the symptom more than anything else though. The real culprit probably lies lurking somewhere.
269
+
270
+
271
+ Tue Mar 28 10:41:03 EEST 2006 bryan.a.soto@gmail.com
272
+ * kirby_fixes
273
+ Fixes to the Kirby store submitted by Dylan Bruzenak (dylanb AT digitalvalence DOT com). Had to integrate as the repo didn't apply correctly against devlab.
274
+
275
+ Sun Apr 2 23:26:44 EEST 2006 George Moschovitis <gm@navel.gr>
276
+ * Added ignore_field/ignore_column annotation for Og. [kasia]
277
+
278
+ Thu Mar 30 13:05:18 EEST 2006 George Moschovitis <gm@navel.gr>
279
+ * Bumped version number to 0.30.0
280
+
281
+ Thu Mar 30 12:11:55 EEST 2006 George Moschovitis <gm@navel.gr>
282
+ * Added query_by_example support in Og and the auto admin interface, minor improvements in form helper.
283
+
284
+ Thu Mar 30 10:40:23 EEST 2006 George Moschovitis <gm@navel.gr>
285
+ * Removed og startup optimization, doesnt work.
286
+
287
+ Mon Mar 27 21:59:51 EEST 2006 George Moschovitis <gm@navel.gr>
288
+ * Startup optimization, don't search in ObjectSpace for managed classes.
289
+
290
+ Mon Mar 27 21:43:44 EEST 2006 George Moschovitis <gm@navel.gr>
291
+ * Further improved configuration system, even added some ruby magic, check out the rdocs and the updated test case.
292
+
293
+ Sat Mar 25 08:41:50 EET 2006 bryan.a.soto@gmail.com
294
+ * facets-1.2.0
295
+ Updates to Facets-1.2.0. Removes requires for calibre.
296
+
297
+ Fri Mar 24 23:17:32 EET 2006 bryan.a.soto@gmail.com
298
+ * glue-taggable-join-update
299
+ Brings og/lib/glue/taggable.rb up to date with Rob's join patch.
300
+
301
+ Mon Mar 13 12:13:26 EET 2006 rob@motionpath.com
302
+ * Add :table property to join relationships allowing you to specify a custom table (and have multiple different join relations with the same class). Test case demonstrating this.
303
+
304
+ Tue Mar 14 09:05:15 EET 2006 m.fellinger@gmail.com
305
+ * small fix for flare-rss
306
+
307
+ There still is the problem that we cannot provide a direct link to a comment,
308
+ since there is no action dedicated to view them, wich means i offer links
309
+ to the article the comment is related to.
310
+
311
+ Wed Mar 8 17:26:29 EET 2006 rob@motionpath.com
312
+ * Stop empty cookies crashing Nitro
313
+
314
+ Thu Mar 23 22:38:31 EET 2006 bryan.a.soto@gmail.com
315
+ * test-fix-glue-tc_configuration
316
+ This test was displaying evil knowledge of internals. It deleted _all_ settings currently stored causing things to fail in later tests.
317
+
318
+ Thu Mar 23 21:52:06 EET 2006 bryan.a.soto@gmail.com
319
+ * georges-glue-configuration-improvements
320
+ Reimplemented Configuration system to be more flexible, added more comments and documentation.
321
+
322
+ Written by gmosx. Ported by bryan.
323
+
324
+ Thu Mar 23 02:33:16 EET 2006 bryan.a.soto@gmail.com
325
+ * glue-cache-file-fix
326
+ This time, I'm really adding my file-cacheable-fix.
327
+
328
+ Win32 doesn't seem to like opening an existing file flocked with exclusive.
329
+ Also opens cache files in binary mode. Doesn't seem to make much difference
330
+ as Marshall seems to convert it to binary, but just to be safe.
331
+
332
+
333
+ Fri Mar 17 08:01:21 EET 2006 bryan.a.soto@gmail.com
334
+ * nitro-test-config
335
+ Adds a CONFIG.rb file to the nitro test suite. Sets $NITRO_NO_ENVIRONMENT to true and requires nitro. Ensures that the chdir isn't performed.
336
+
337
+ Wed Mar 22 09:31:17 EET 2006 bryan.a.soto@gmail.com
338
+ * element-fix
339
+ Fix to #is_element?. PREFIX_RE is a regex and when it was being converted to a string, was causing the tag to be searched for incorrectly.
340
+
341
+ Wed Mar 22 01:00:33 EET 2006 bryan.a.soto@gmail.com
342
+ * tests-add-sti-test
343
+ Adds a test to ensure that STI classes come back as the correct class.
344
+
345
+ Sun Mar 19 14:41:44 EET 2006 Kashia Buch <kashia@vfemail.net>
346
+ * Nitro + facets 1.1.0 + calibre 1.2.0
347
+
348
+ Tue Mar 14 23:15:41 EET 2006 bryan.a.soto@gmail.com
349
+ * nitro-fix-dot-in-urls
350
+ Should make Nitro process URLs with a '.' (dot/period) in them.
351
+
352
+ Tue Mar 7 21:12:09 EET 2006 Jonas Pfenniger <jonas@oree.ch>
353
+ UNDO: All compilers now have text and compiler as argument
354
+
355
+ Fri Mar 10 11:41:44 EET 2006 vseguip@gmail.com
356
+ UNDO: Avoid name clash with GTK2
357
+
358
+ This patch avoids a name clash between Og and the Glib ruby bindings.
359
+ It does so by renaming properties with og_properties and then aliasing
360
+ og_properties with properties for backwards compatibility. It also avoids
361
+ the internal use of "property" (which also clashes) using "prop_accessor"
362
+ instead.
363
+
364
+
365
+ Fri Mar 10 11:41:44 EET 2006 vseguip@gmail.com
366
+ * Avoid name clash with GTK2
367
+
368
+ This patch avoids a name clash between Og and the Glib ruby bindings.
369
+ It does so by renaming properties with og_properties and then aliasing
370
+ og_properties with properties for backwards compatibility. It also avoids
371
+ the internal use of "property" (which also clashes) using "prop_accessor"
372
+ instead.
373
+
374
+
375
+ Tue Mar 7 21:12:09 EET 2006 Jonas Pfenniger <jonas@oree.ch>
376
+ * All compilers now have text and compiler as argument
377
+
378
+ Sat Mar 18 08:40:06 EET 2006 bryan.a.soto@gmail.com
379
+ * guills-taggable-fixes
380
+ Guill's fixes for Glue::Taggable. Separated to a separate patch. Credit to guillaume.pierronnet AT gmail DOT com
381
+
382
+ Sat Mar 18 08:27:33 EET 2006 bryan.a.soto@gmail.com
383
+ * guills-spark-fixes
384
+ Tiny spark fixes from Guillame Pierronnet. Separated out into a separate patch.
385
+ Credit guillaume.pierronnet AT gmail DOT com
386
+
387
+ Sat Mar 18 08:59:24 EET 2006 bryan.a.soto@gmail.com
388
+ * file-cacheable-fix
389
+ Win32 doesn't seem to like opening an existing file flocked with exclusive. Also opens cache files in binary mode. Doesn't seem to make much difference as Marshall seems to convert it to binary, but just to be safe.
390
+
391
+ Tue Mar 14 09:11:25 EET 2006 m.fellinger@gmail.com
392
+ * removed restriction to 1000 characters for an Article-body
393
+
394
+ Mon Mar 13 13:49:29 EET 2006 rob@motionpath.com
395
+ * George's fixes to his new routes system as a patch and a tiny fix for the case where params are nil
396
+
397
+ Thu Mar 9 18:21:54 EET 2006 Jonas Pfenniger <jonas@oree.ch>
398
+ * Nitro::Element : removed unneeded
399
+
400
+ Tue Mar 7 18:22:20 EET 2006 George Moschovitis <gm@navel.gr>
401
+ * Some small improvements in the Element code.
402
+
403
+ Tue Mar 7 15:58:39 EET 2006 Jonas Pfenniger <jonas@oree.ch>
404
+ * Element enhanced
405
+
406
+ Tue Mar 7 17:38:36 EET 2006 George Moschovitis <gm@navel.gr>
407
+ * Minor.
408
+
409
+ --- 0.29.0 ---
410
+
1
411
  Tue Mar 7 17:34:13 EET 2006 George Moschovitis <gm@navel.gr>
2
412
  * More test fixes.
3
413
 
@@ -2,12 +2,12 @@
2
2
 
3
3
  TITLE : &title Nitro
4
4
  NAME : &pkg nitro
5
- VERSION : '0.29.0'
5
+ VERSION : '0.30.0'
6
6
  STATUS : beta
7
7
 
8
8
  AUTHOR : George Moschovitis
9
9
  EMAIL : &email gm@navel.gr
10
- HOMEPAGE : "http://www.nitrohq.com"
10
+ HOMEPAGE : "http://www.nitroproject.org"
11
11
 
12
12
  SUMMARY: Everything you need to create Web 2.0 applications with Ruby and Javascript
13
13
 
@@ -21,46 +21,44 @@ DESCRIPTION: >
21
21
  featuring excellent support for AJAX, XML, Syndication while
22
22
  staying standards compliant.
23
23
 
24
- DEPENDENCIES:
25
- - [ og, '= 0.29.0' ]
26
- - [ gen, '= 0.29.0' ]
27
- - [ glue, '= 0.29.0' ]
28
- - [ RedCloth, '= 3.0.3' ]
29
- - [ ruby-breakpoint, '= 0.5' ]
30
- - [ daemons, '= 0.4.2' ]
31
-
32
- PACKAGE:
33
- exclude:
34
- - dev
35
-
36
- EXECUTABLES:
37
- - nitro
38
-
39
- DISTRIBUTE: [ gem, tgz, zip ]
40
-
41
24
  RUBYFORGE:
42
25
  PROJECT: 'nitro'
43
26
  USERNAME: 'gmosx'
44
27
 
45
- RDOC:
46
- - dir: rdoc
47
- options: ['--all', '--inline-source']
48
- include:
49
- - 'lib/nitro/**/*'
50
- - '[A-Z]*'
51
-
52
- PUBLISH:
53
- - host: rubyforge
54
- type: web
55
- username: gmosx
56
- project: nitro
57
- dir: 'web'
58
-
59
- # Anything to require upfront?
60
- #TEST:
61
- # fixture: ''
28
+ DEPENDENCIES:
29
+ - [ og, '= 0.30.0' ]
30
+ - [ gen, '= 0.30.0' ]
31
+ - [ glue, '= 0.30.0' ]
32
+ - [ RedCloth, '= 3.0.3' ]
33
+ - [ ruby-breakpoint, '= 0.5' ]
34
+ - [ daemons, '= 0.4.2' ]
62
35
 
63
- ANNOUNCE:
36
+ EXECUTABLES:
37
+ - nitro
38
+
39
+ PACKAGE: !!package
40
+ distribute: [ gem, tgz, zip ]
41
+
42
+ RDOC: !!rdoc
43
+ dir: rdoc
44
+ options: ['--all', '--inline-source']
45
+ include:
46
+ - 'lib/nitro/**/*'
47
+ - '[A-Z]*'
48
+
49
+ PUBLISH: !!publish
50
+ host: rubyforge
51
+ type: web
52
+ username: gmosx
53
+ project: nitro
54
+ dir: 'web'
55
+
56
+ TEST: !!test
57
+ libs:
58
+ - '../glue/lib'
59
+ - '../og/lib'
60
+
61
+ ANNOUNCE: !!announce
64
62
  to: george.moschovitis@gmail.com
65
63
  from: gm@navel.gr
66
64
  domain: navel.gr
@@ -72,11 +70,5 @@ ANNOUNCE:
72
70
  file: ANN
73
71
  slogan: Nitro Web Engine
74
72
  links:
75
- - http://www.nitrohq.com
76
-
77
-
78
-
79
-
80
-
81
-
73
+ - http://www.nitroproject.org
82
74