nitro 0.23.0 → 0.24.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 +350 -0
  2. data/INSTALL +2 -2
  3. data/ProjectInfo +61 -0
  4. data/README +5 -4
  5. data/Rakefile +5 -4
  6. data/bin/nitrogen +3 -1
  7. data/doc/AUTHORS +27 -3
  8. data/doc/RELEASES +193 -0
  9. data/doc/lhttpd.txt +4 -0
  10. data/lib/nitro.rb +1 -1
  11. data/lib/nitro/adapter/cgi.rb +6 -321
  12. data/lib/nitro/adapter/fastcgi.rb +2 -14
  13. data/lib/nitro/adapter/scgi.rb +237 -71
  14. data/lib/nitro/adapter/webrick.rb +25 -7
  15. data/lib/nitro/caching.rb +1 -0
  16. data/lib/nitro/cgi.rb +296 -0
  17. data/lib/nitro/{cookie.rb → cgi/cookie.rb} +0 -0
  18. data/lib/nitro/cgi/http.rb +62 -0
  19. data/lib/nitro/{request.rb → cgi/request.rb} +4 -1
  20. data/lib/nitro/{response.rb → cgi/response.rb} +0 -0
  21. data/lib/nitro/cgi/stream.rb +43 -0
  22. data/lib/nitro/cgi/utils.rb +38 -0
  23. data/lib/nitro/compiler.rb +23 -11
  24. data/lib/nitro/compiler/css.rb +8 -0
  25. data/lib/nitro/compiler/morphing.rb +66 -0
  26. data/lib/nitro/context.rb +21 -30
  27. data/lib/nitro/controller.rb +23 -100
  28. data/lib/nitro/dispatcher.rb +18 -8
  29. data/lib/nitro/element.rb +6 -2
  30. data/lib/nitro/flash.rb +2 -2
  31. data/lib/nitro/mixin/buffer.rb +2 -2
  32. data/lib/nitro/mixin/form.rb +204 -93
  33. data/lib/nitro/mixin/javascript.rb +170 -11
  34. data/lib/nitro/mixin/markup.rb +1 -0
  35. data/lib/nitro/mixin/pager.rb +7 -4
  36. data/lib/nitro/mixin/rss.rb +2 -0
  37. data/lib/nitro/mixin/table.rb +23 -6
  38. data/lib/nitro/mixin/xhtml.rb +2 -2
  39. data/lib/nitro/render.rb +19 -5
  40. data/lib/nitro/scaffold.rb +12 -6
  41. data/lib/nitro/server.rb +4 -6
  42. data/lib/nitro/server/runner.rb +2 -2
  43. data/lib/nitro/session.rb +8 -1
  44. data/lib/nitro/session/file.rb +40 -0
  45. data/lib/part/admin.rb +2 -0
  46. data/lib/part/admin/controller.rb +7 -3
  47. data/lib/part/admin/skin.rb +8 -1
  48. data/lib/part/admin/template/index.xhtml +39 -1
  49. data/proto/public/error.xhtml +5 -3
  50. data/proto/public/js/behaviour.js +254 -254
  51. data/proto/public/js/controls.js +427 -165
  52. data/proto/public/js/dragdrop.js +255 -276
  53. data/proto/public/js/effects.js +476 -277
  54. data/proto/public/js/prototype.js +561 -127
  55. data/proto/public/js/scaffold.js +74 -0
  56. data/proto/public/js/scriptaculous.js +44 -0
  57. data/proto/public/js/util.js +548 -0
  58. data/proto/public/scaffold/list.xhtml +4 -1
  59. data/proto/scgi.rb +333 -0
  60. data/script/scgi_ctl +221 -0
  61. data/script/scgi_service +120 -0
  62. data/test/nitro/adapter/raw_post1.bin +0 -0
  63. data/test/nitro/{tc_cookie.rb → cgi/tc_cookie.rb} +1 -1
  64. data/test/nitro/{tc_request.rb → cgi/tc_request.rb} +1 -1
  65. data/test/nitro/mixin/tc_xhtml.rb +1 -1
  66. data/test/nitro/{adapter/tc_cgi.rb → tc_cgi.rb} +12 -12
  67. data/test/nitro/tc_controller.rb +9 -5
  68. metadata +159 -169
  69. data/benchmark/bench.rb +0 -5
  70. data/benchmark/simple-webrick-n-200.txt +0 -44
  71. data/benchmark/static-webrick-n-200.txt +0 -43
  72. data/benchmark/tiny-lhttpd-n-200-c-5.txt +0 -43
  73. data/benchmark/tiny-webrick-n-200-c-5.txt +0 -44
  74. data/benchmark/tiny-webrick-n-200.txt +0 -44
  75. data/benchmark/tiny2-webrick-n-200.txt +0 -44
  76. data/examples/README +0 -7
data/CHANGELOG CHANGED
@@ -1,3 +1,353 @@
1
+ Thu Oct 27 22:41:45 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
2
+ * Updated build script.
3
+
4
+ Thu Oct 27 22:36:01 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
5
+ * Require latest facets.
6
+
7
+ Thu Oct 27 22:20:06 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
8
+ * Cleaned up source code removed windows EOL.
9
+
10
+ Thu Oct 27 21:37:55 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
11
+ * Added some js files in the repo.
12
+
13
+ Thu Oct 27 21:36:31 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
14
+ * Added latest version of Prototype/Scriptaculous 1.4.rc_0
15
+
16
+ Thu Oct 27 15:06:03 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
17
+ * Added Flare and Sparcs in the public repository.
18
+
19
+ Thu Oct 27 14:10:21 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
20
+ * Updated Reap files, fixed property bug.
21
+
22
+ Thu Oct 27 13:41:05 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
23
+ * Small fixes in scaffold.
24
+
25
+ Thu Oct 27 13:21:50 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
26
+ * Readded morphing compiler.
27
+
28
+ Thu Oct 27 13:21:04 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
29
+ * Added file session support.
30
+
31
+ Thu Oct 27 13:19:32 GTB Standard Time 2005 Chris Farmiloe <chris@motionpath.com>
32
+ * Fixes in scaffold, form, admin.
33
+
34
+ Thu Oct 27 13:10:18 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@gmail.com>
35
+ * Streaming support fix.
36
+
37
+ Mon Oct 24 12:38:40 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
38
+ * Fixes in form mixin, scaffold, sti, psql adapter and properties.
39
+
40
+ Fri Oct 21 13:31:09 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
41
+ * FCGI compatible query_string calculation.
42
+
43
+ Fri Oct 21 12:37:52 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
44
+ * Small fixes to make spark run with fcgi.
45
+
46
+ Thu Oct 20 19:05:43 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
47
+ * Readded scgi in the repo.
48
+
49
+ Thu Oct 20 17:57:03 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
50
+ * Many fixes to the scaffolding code.
51
+
52
+ Thu Oct 20 16:25:56 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
53
+ * Updated AUTHORS.
54
+
55
+ Thu Oct 20 16:23:26 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
56
+ * Added needed require. [rob]
57
+
58
+ Thu Oct 20 16:23:08 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
59
+ * Fix in scgi adapter.
60
+
61
+ Thu Oct 20 15:27:49 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
62
+ * Updated scgi adapter.
63
+
64
+ Thu Oct 20 14:20:40 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
65
+ * Updated Changelog.
66
+
67
+ Thu Oct 20 14:08:07 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
68
+ * Imported all files in the new repo.
69
+
70
+ Mon Oct 17 15:27:49 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
71
+ * Improved javascript mixin.
72
+
73
+ Mon Oct 17 15:27:15 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
74
+ * Removed some old dirs and files.
75
+
76
+ Mon Oct 17 15:25:44 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
77
+ * Many changes to make compatible with latest facets.
78
+
79
+ Fri Oct 14 15:28:35 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
80
+ * Small fixes in Rakefiles and Docs.
81
+
82
+ Fri Oct 14 10:30:16 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
83
+ * Fixed flash session bug (context propagation in included fragments).
84
+
85
+ Fri Oct 14 10:24:53 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
86
+ * Cleaned up relation resolver, fixed polymorphic relations.
87
+
88
+ Thu Oct 13 15:08:32 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
89
+ * Added support for title in RSS helper. [drak]
90
+
91
+ Thu Oct 13 14:44:28 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
92
+ * Temporal simple fix for scaffoliding template_root problem.
93
+
94
+ Thu Oct 13 14:43:00 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
95
+ * Fixed and cleaned up blog example.
96
+
97
+ Thu Oct 13 14:00:06 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
98
+ * Added support for custum per-tag editors.
99
+
100
+ Thu Oct 13 13:59:21 GTB Standard Time 2005 Emmanuel Piperakis <epiperak@softlab.ece.ntua.gr>
101
+ * Small fix in popup helper.
102
+
103
+ Thu Oct 13 13:58:20 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
104
+ * Misc small fixes
105
+
106
+ Thu Oct 13 13:57:40 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
107
+ * Updated documentation, added standard docs for gen.
108
+
109
+ Wed Oct 12 16:51:36 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
110
+ * Many many small Og fixes to make STI and some test cases to work again.
111
+
112
+ Wed Oct 12 16:51:19 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
113
+ * Updated docs.
114
+
115
+ Wed Oct 12 16:49:44 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
116
+ * Fixed some 'included' bugs.
117
+
118
+ Tue Oct 11 18:52:10 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
119
+ * Implemented KirbyBase store.
120
+
121
+ Tue Oct 11 18:51:36 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
122
+ * Small fixes
123
+
124
+ Tue Oct 11 18:51:12 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
125
+ * Hack fix for aspects.
126
+
127
+ Mon Oct 10 17:17:49 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
128
+ * Moved blog templates into template.
129
+
130
+ Mon Oct 10 17:17:05 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
131
+ * Fixed various append_features not calling include.
132
+
133
+ Mon Oct 10 17:15:34 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
134
+ * Fixes in blog example.
135
+
136
+ Mon Oct 10 15:32:46 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
137
+ * Multiple fixes to make Og tests pass.
138
+
139
+ Mon Oct 10 15:17:18 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
140
+ * Small fixes to make nitro tests pass.
141
+
142
+ Mon Oct 10 15:07:42 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
143
+ * Many many small fixes to make glue tests pass again.
144
+
145
+ Mon Oct 10 13:37:59 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
146
+ * Converted postgres store.
147
+
148
+ Mon Oct 10 13:34:12 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
149
+ * Converted mysql store to latest codebase.
150
+
151
+ Mon Oct 10 13:33:43 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
152
+ * Improved docs.
153
+
154
+ Mon Oct 10 12:49:22 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
155
+ * Small fixes in examples and docs.
156
+
157
+ Mon Oct 10 12:48:51 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
158
+ * Moved store/experimental to store/alpha.
159
+
160
+ Mon Oct 10 12:47:01 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
161
+ * Moved unfinished og stores into store/experimental.
162
+
163
+ Mon Oct 10 12:16:30 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
164
+ * Added app generator.
165
+
166
+ Mon Oct 10 12:15:14 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
167
+ * Updated for latest facets, fixed polymorphic bug.
168
+
169
+ Mon Oct 10 12:15:01 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
170
+ * Worked on release docs.
171
+
172
+ Mon Oct 10 12:11:57 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
173
+ * Improved generator infrastructure.
174
+
175
+ Fri Oct 7 12:16:23 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@laposte.net>
176
+ * Small reload fix.
177
+
178
+ Fri Oct 7 12:15:58 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
179
+ * Made taggable more fault tolerant.
180
+
181
+ Fri Oct 7 12:15:23 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
182
+ * Updated authors and credits.
183
+
184
+ Fri Oct 7 11:32:25 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
185
+ * Brand new property system based on Facets annotations. MANY CHANGES.
186
+
187
+ Tue Oct 4 18:15:05 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
188
+ * Implemented aspects on top of mega/ingeritor. At last ;-)
189
+
190
+ Tue Oct 4 16:24:08 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
191
+ * Use mega annotations in controller and compiler, removed the old implementation.
192
+
193
+ Tue Oct 4 14:28:59 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
194
+ * Entity.assign_properties
195
+
196
+ Tue Oct 4 14:28:28 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
197
+ * Some improvements in the auto admin code.
198
+
199
+ Tue Oct 4 14:27:56 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
200
+ * Added children alias in Element.
201
+
202
+ Tue Oct 4 14:27:24 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
203
+ * Removed fill from context.
204
+
205
+ Tue Oct 4 14:26:26 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
206
+ * Temporarily moved fill method here.
207
+
208
+ Fri Sep 30 14:27:27 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
209
+ * Greatly improved scaffolding code, now handles more cases and all relation types.
210
+
211
+ Fri Sep 30 14:26:53 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
212
+ * Recoded request.fill method.
213
+
214
+ Fri Sep 30 14:23:26 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
215
+ * Improvements in Property.
216
+
217
+ Fri Sep 30 11:00:29 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
218
+ * Refactored to support scgi
219
+
220
+ Fri Sep 30 10:59:17 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@laposte.net>
221
+ * Added cgi/stream.rb
222
+
223
+ Fri Sep 30 10:55:59 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@laposte.net>
224
+ * Added some simple support for streaming.
225
+
226
+ Tue Sep 27 17:39:13 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
227
+ * Removed logger format overloading to avoid conflict with 1.8.3
228
+
229
+ Mon Sep 26 19:05:37 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
230
+ * Added render exit helper.
231
+
232
+ Mon Sep 26 19:04:56 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
233
+ * Added propagate_param helper.
234
+
235
+ Mon Sep 26 19:04:31 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
236
+ * Removed name from excluded parameters.
237
+
238
+ Mon Sep 26 14:09:10 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
239
+ * Fixed <textarea></textarea> problem. [fbuch]
240
+
241
+ Mon Sep 26 13:44:06 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
242
+ * Removed SimpleController (was a hack).
243
+
244
+ Mon Sep 26 13:38:57 GTB Standard Time 2005 Emmanuel Piperakis <epiperak@softlab.ece.ntua.gr>
245
+ * Fixed class.delete in entity.
246
+
247
+ Mon Sep 26 13:21:19 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
248
+ * Converted template_root to a method for extra flexibility. [pabrahamsen]
249
+
250
+ Mon Sep 26 12:46:26 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
251
+ * Added cascade parameter to entity.delete. [epiperak]
252
+
253
+ Sat Sep 24 11:46:38 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
254
+ * Improved table mixin.
255
+
256
+ Sat Sep 24 11:45:38 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
257
+ * Worked on integrating Zed's SCGI adapter.
258
+
259
+ Sat Sep 24 11:45:24 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
260
+ * Updated AUTHORS.
261
+
262
+ Sat Sep 24 11:45:01 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
263
+ * Small fixes.
264
+
265
+ Sat Sep 24 11:42:28 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
266
+ * Refactored Cgi related code to make more flexible and cleaner.
267
+
268
+ Tue Sep 20 12:50:27 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
269
+ * Added hook for customizing webrick.
270
+
271
+ Tue Sep 20 11:43:36 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
272
+ * Add support for programmatically shuting down the webrick adapter. [jamesb]
273
+
274
+ Tue Sep 20 11:30:59 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
275
+ * Option to hide fields from autogenerated forms. [epiperak]
276
+
277
+ Tue Sep 20 11:30:07 GTB Standard Time 2005 Chris Farmiloe <chris.farmiloe@farmiloe.com>
278
+ * Fix for xxxaction actions.
279
+
280
+ Fri Sep 16 16:47:00 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
281
+ * Updated to latest nano/mega.
282
+
283
+ Fri Sep 16 16:46:22 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
284
+ * Added various Og helper methods.
285
+
286
+ Fri Sep 16 16:44:25 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
287
+ * Added support for precompiling templates, usefull for dynamic css.
288
+
289
+ Fri Sep 16 16:43:26 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
290
+ * Experimentation with nano annotations.
291
+
292
+ Tue Sep 13 10:51:12 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
293
+ * Updates for the latest nano/mega.
294
+
295
+ Fri Sep 9 18:58:42 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
296
+ * Added session all helper.
297
+
298
+ Fri Sep 9 18:58:16 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
299
+ * Added js helper for humanized time distance.
300
+
301
+ Fri Sep 9 18:55:21 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
302
+ * Pass path to mounted callback.
303
+
304
+ Fri Sep 9 18:54:40 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
305
+ * Temporarily disabled flashing by default.
306
+
307
+ Fri Sep 9 18:53:45 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
308
+ * Fixed <render> for relative urls.
309
+
310
+ Fri Sep 9 10:53:04 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
311
+ * Introduced Gen code generation framework.
312
+
313
+ Fri Sep 9 10:50:39 GTB Standard Time 2005 Aleksi Niemela <Aleksi.Niemela@cs.helsinki.fi>
314
+ * Escape error in default error handler.
315
+
316
+ Fri Sep 9 10:50:00 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
317
+ * Skip relations option in form builder.
318
+
319
+ Thu Sep 8 15:24:44 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
320
+ * Experimentation with metadata.
321
+
322
+ Thu Sep 8 15:19:43 GTB Standard Time 2005 TRANS <transfire@gmail.com>
323
+ * Small fix for nitrogen
324
+
325
+ Thu Sep 8 15:17:51 GTB Standard Time 2005 Guillaume Pierronnet <guillaume.pierronnet@laposte.net>
326
+ * Orderable move_to
327
+ * pager_key
328
+ * fixed mysql boolean
329
+ * fixed collection delete_all
330
+
331
+ Fri Sep 2 18:41:09 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
332
+ * Fixes in form calculation. [reid]
333
+
334
+ Fri Sep 2 18:40:50 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
335
+ * Unescape action parameters.
336
+
337
+ Fri Sep 2 18:40:29 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
338
+ * Fixed nano recurse bug.
339
+
340
+ Fri Sep 2 18:39:57 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
341
+ * Small fixes.
342
+
343
+ Fri Sep 2 18:39:37 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
344
+ * Removed plasma from public dir
345
+
346
+ Wed Aug 31 15:35:12 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
347
+ * Cleanup.
348
+
349
+ Wed Aug 31 15:34:30 GTB Standard Time 2005 George Moschovitis <gm@navel.gr>
350
+ * Created new repository.
1
351
 
2
352
  Wed Aug 31 14:29:17 EEST 2005 George Moschovitis <gm@navel.gr>
3
353
  * Fixed a redirect problem.
data/INSTALL CHANGED
@@ -65,8 +65,8 @@ Put the libray dir in the Ruby path (Unix example):
65
65
 
66
66
  $ export RUBYOPT='-I path/to/nitro/lib'
67
67
 
68
- or, at windows
69
-
68
+ or, at windows
69
+
70
70
  > set RUBYOPT=Ic:\dev\nitro\lib;c:\dev\og\lib;c:\dev\glue\lib
71
71
 
72
72
  You also may have to manualy install the following libraries:
data/ProjectInfo ADDED
@@ -0,0 +1,61 @@
1
+ --- %YAML:1.0
2
+
3
+ TITLE : &title Nitro
4
+ NAME : &pkg nitro
5
+ VERSION : '0.24.0'
6
+ STATUS : beta
7
+
8
+ AUTHOR : George Moschovitis
9
+ EMAIL : &email gm@navel.gr
10
+ HOMEPAGE : "http://www.nitrohq.com"
11
+
12
+ SUMMARY: Everyhting you need to create Web 2.0 applications with Ruby and Javascript
13
+
14
+ DESCRIPTION: >
15
+ Nitro provides everything you need to develop professional Web
16
+ applications using Ruby and Javascript. Nitro redefines Rapid
17
+ Application Development by providing a clean, yet efficient API,
18
+ a layer of domain specific languages implemented on top of
19
+ Ruby and the most powerful and elegant object relational
20
+ mapping solution available everywhere. Nitro is Web 2.0 ready,
21
+ featuring excellent support for AJAX, XML, Syndication while
22
+ staying standards compliant.
23
+
24
+ DEPENDENCIES:
25
+ - [ og, '= 0.24.0' ]
26
+ - [ gen, '= 0.24.0' ]
27
+ - [ glue, '= 0.24.0' ]
28
+
29
+ DISTRIBUTE: [ gem, tgz, zip ]
30
+
31
+ RUBYFORGE:
32
+ PROJECT: 'nitro'
33
+ USERNAME: 'gmosx'
34
+
35
+ # Anything to require upfront?
36
+ #TEST:
37
+ # fixture: ''
38
+
39
+ ANNOUNCE:
40
+ to: george.moschovitis@gmail.com
41
+ from: gm@navel.gr
42
+ domain: navel.gr
43
+ server: mail
44
+ port: 25 #587
45
+ account: gm@navel.gr
46
+ authtype: login #cram_md5 #plain
47
+ sectype: tls # ~, tls, ssl (tls is broke)
48
+ file: ANN
49
+ slogan: Nitro Web Engine
50
+
51
+
52
+
53
+ links:
54
+ - http://www.nitrohq.com
55
+
56
+
57
+
58
+
59
+
60
+
61
+
data/README CHANGED
@@ -1,4 +1,4 @@
1
- = Nitro 0.23.0 README
1
+ = Nitro 0.24.0 README
2
2
 
3
3
  Nitro provides everything you need to develop professional Web
4
4
  applications using Ruby and Javascript.
@@ -62,8 +62,8 @@ A short summary of the major features:
62
62
  and provides a collection of usefull Mixins to synthesize
63
63
  common Entities.
64
64
 
65
- Adapters for PostgreSQL, MySQL, SQLite3, Memory, Filesystem,
66
- Oracle and SQL Server are included.
65
+ Adapters for PostgreSQL, MySQL, SQLite3, Memory, KirbyBase,
66
+ Filesystem, Oracle and SQL Server are included.
67
67
 
68
68
  * XML server pages (.xhtml)
69
69
 
@@ -157,7 +157,8 @@ A short summary of the major features:
157
157
  * Multiple Adapters
158
158
 
159
159
  Nitro supports multiple web server configurations. Out of the box
160
- it supports WEBrick (pure ruby), Lighttpd (fastcgi), Apache (fastcgi).
160
+ it supports WEBrick (pure ruby), Lighttpd (fastcgi/scgi),
161
+ Apache (fastcgi / scgi). The prefered adapter is SCGI.
161
162
  More options will be available in the future.
162
163
 
163
164
  * Minimum configuration