innate 2009.04

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. data/CHANGELOG +2981 -0
  2. data/COPYING +18 -0
  3. data/MANIFEST +127 -0
  4. data/README.md +563 -0
  5. data/Rakefile +35 -0
  6. data/example/app/retro_games.rb +60 -0
  7. data/example/app/todo/layout/default.xhtml +11 -0
  8. data/example/app/todo/spec/todo.rb +63 -0
  9. data/example/app/todo/start.rb +51 -0
  10. data/example/app/todo/view/index.xhtml +39 -0
  11. data/example/app/whywiki_erb/layout/wiki.html.erb +15 -0
  12. data/example/app/whywiki_erb/spec/wiki.rb +19 -0
  13. data/example/app/whywiki_erb/start.rb +42 -0
  14. data/example/app/whywiki_erb/view/edit.erb +6 -0
  15. data/example/app/whywiki_erb/view/index.erb +12 -0
  16. data/example/custom_middleware.rb +35 -0
  17. data/example/hello.rb +11 -0
  18. data/example/howto_spec.rb +35 -0
  19. data/example/link.rb +27 -0
  20. data/example/provides.rb +31 -0
  21. data/example/session.rb +38 -0
  22. data/innate.gemspec +29 -0
  23. data/lib/innate.rb +269 -0
  24. data/lib/innate/action.rb +150 -0
  25. data/lib/innate/adapter.rb +76 -0
  26. data/lib/innate/cache.rb +134 -0
  27. data/lib/innate/cache/api.rb +128 -0
  28. data/lib/innate/cache/drb.rb +58 -0
  29. data/lib/innate/cache/file_based.rb +41 -0
  30. data/lib/innate/cache/marshal.rb +17 -0
  31. data/lib/innate/cache/memory.rb +22 -0
  32. data/lib/innate/cache/yaml.rb +17 -0
  33. data/lib/innate/current.rb +37 -0
  34. data/lib/innate/dynamap.rb +96 -0
  35. data/lib/innate/helper.rb +183 -0
  36. data/lib/innate/helper/aspect.rb +124 -0
  37. data/lib/innate/helper/cgi.rb +54 -0
  38. data/lib/innate/helper/flash.rb +36 -0
  39. data/lib/innate/helper/link.rb +94 -0
  40. data/lib/innate/helper/redirect.rb +85 -0
  41. data/lib/innate/helper/render.rb +87 -0
  42. data/lib/innate/helper/send_file.rb +26 -0
  43. data/lib/innate/log.rb +20 -0
  44. data/lib/innate/log/color_formatter.rb +43 -0
  45. data/lib/innate/log/hub.rb +73 -0
  46. data/lib/innate/middleware_compiler.rb +65 -0
  47. data/lib/innate/mock.rb +49 -0
  48. data/lib/innate/node.rb +1025 -0
  49. data/lib/innate/options.rb +37 -0
  50. data/lib/innate/options/dsl.rb +202 -0
  51. data/lib/innate/options/stub.rb +7 -0
  52. data/lib/innate/request.rb +141 -0
  53. data/lib/innate/response.rb +23 -0
  54. data/lib/innate/route.rb +110 -0
  55. data/lib/innate/session.rb +121 -0
  56. data/lib/innate/session/flash.rb +94 -0
  57. data/lib/innate/spec.rb +23 -0
  58. data/lib/innate/state.rb +27 -0
  59. data/lib/innate/state/accessor.rb +130 -0
  60. data/lib/innate/state/fiber.rb +74 -0
  61. data/lib/innate/state/thread.rb +47 -0
  62. data/lib/innate/traited.rb +85 -0
  63. data/lib/innate/trinity.rb +18 -0
  64. data/lib/innate/version.rb +3 -0
  65. data/lib/innate/view.rb +60 -0
  66. data/lib/innate/view/erb.rb +15 -0
  67. data/lib/innate/view/etanni.rb +36 -0
  68. data/lib/innate/view/none.rb +9 -0
  69. data/spec/example/app/retro_games.rb +30 -0
  70. data/spec/example/hello.rb +13 -0
  71. data/spec/example/link.rb +25 -0
  72. data/spec/example/provides.rb +16 -0
  73. data/spec/example/session.rb +22 -0
  74. data/spec/helper.rb +10 -0
  75. data/spec/innate/action/layout.rb +107 -0
  76. data/spec/innate/action/layout/file_layout.xhtml +1 -0
  77. data/spec/innate/cache/common.rb +47 -0
  78. data/spec/innate/cache/marshal.rb +5 -0
  79. data/spec/innate/cache/memory.rb +5 -0
  80. data/spec/innate/cache/yaml.rb +5 -0
  81. data/spec/innate/dynamap.rb +22 -0
  82. data/spec/innate/helper.rb +86 -0
  83. data/spec/innate/helper/aspect.rb +75 -0
  84. data/spec/innate/helper/cgi.rb +37 -0
  85. data/spec/innate/helper/flash.rb +118 -0
  86. data/spec/innate/helper/link.rb +139 -0
  87. data/spec/innate/helper/redirect.rb +160 -0
  88. data/spec/innate/helper/render.rb +133 -0
  89. data/spec/innate/helper/send_file.rb +21 -0
  90. data/spec/innate/helper/view/aspect_hello.xhtml +1 -0
  91. data/spec/innate/helper/view/locals.xhtml +1 -0
  92. data/spec/innate/helper/view/loop.xhtml +4 -0
  93. data/spec/innate/helper/view/num.xhtml +1 -0
  94. data/spec/innate/helper/view/partial.xhtml +1 -0
  95. data/spec/innate/helper/view/recursive.xhtml +7 -0
  96. data/spec/innate/mock.rb +84 -0
  97. data/spec/innate/node/mapping.rb +37 -0
  98. data/spec/innate/node/node.rb +134 -0
  99. data/spec/innate/node/resolve.rb +82 -0
  100. data/spec/innate/node/view/another_layout/another_layout.xhtml +3 -0
  101. data/spec/innate/node/view/bar.xhtml +1 -0
  102. data/spec/innate/node/view/foo.html.xhtml +1 -0
  103. data/spec/innate/node/view/only_view.xhtml +1 -0
  104. data/spec/innate/node/view/with_layout.xhtml +1 -0
  105. data/spec/innate/node/wrap_action_call.rb +83 -0
  106. data/spec/innate/options.rb +115 -0
  107. data/spec/innate/parameter.rb +154 -0
  108. data/spec/innate/provides.rb +99 -0
  109. data/spec/innate/provides/list.html.xhtml +1 -0
  110. data/spec/innate/provides/list.txt.xhtml +1 -0
  111. data/spec/innate/request.rb +77 -0
  112. data/spec/innate/route.rb +135 -0
  113. data/spec/innate/session.rb +54 -0
  114. data/spec/innate/state/fiber.rb +58 -0
  115. data/spec/innate/state/thread.rb +40 -0
  116. data/spec/innate/traited.rb +55 -0
  117. data/tasks/bacon.rake +66 -0
  118. data/tasks/changelog.rake +18 -0
  119. data/tasks/gem.rake +22 -0
  120. data/tasks/gem_installer.rake +76 -0
  121. data/tasks/grancher.rake +12 -0
  122. data/tasks/install_dependencies.rake +4 -0
  123. data/tasks/manifest.rake +4 -0
  124. data/tasks/rcov.rake +19 -0
  125. data/tasks/release.rake +51 -0
  126. data/tasks/reversion.rake +8 -0
  127. data/tasks/setup.rake +28 -0
  128. metadata +181 -0
@@ -0,0 +1,2981 @@
1
+ [ffd8edd | Sat Apr 25 14:59:47 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2
+
3
+ * Give innate a rubyforge project
4
+
5
+ [cf62a9c | Sat Apr 25 14:59:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
6
+
7
+ * Version 2009.04
8
+
9
+ [0ec2012 | Thu Apr 23 06:21:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
10
+
11
+ * Allow deletion of mapped apps in DynaMap
12
+
13
+ [cbedd9c | Thu Apr 23 05:04:04 UTC 2009] Ryan Grove <ryan@wonko.com>
14
+
15
+ * Add path and full_path to Innate::Action
16
+
17
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
18
+
19
+ [b9a0d4b | Mon Apr 20 05:12:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
20
+
21
+ * Make the u and h aliases for the CGI helper module_functions too
22
+
23
+ [b68aad4 | Mon Apr 20 05:12:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
24
+
25
+ * Allow further modification of the Action in the render_* methods via block
26
+
27
+ [dca3531 | Sun Apr 19 23:38:06 UTC 2009] Ryan Grove <ryan@wonko.com>
28
+
29
+ * Preserve response headers when redirecting. Closes #1
30
+
31
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
32
+
33
+ [d465ca3 | Sat Apr 18 02:46:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
34
+
35
+ * Version 2009.04.18
36
+
37
+ [987c5d7 | Sat Apr 18 02:44:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
38
+
39
+ * Update the release tasks
40
+
41
+ [f927c9d | Fri Apr 17 11:51:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
42
+
43
+ * Add Content-Disposition support to send_file
44
+
45
+ [888318c | Fri Apr 17 10:43:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
46
+
47
+ * Better English in render_custom error
48
+
49
+ [15078e6 | Wed Apr 15 16:49:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
50
+
51
+ * Add comment about planned deprecation of SendFile helper's default status
52
+
53
+ [4b487aa | Wed Apr 15 16:48:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
54
+
55
+ * Remove the length from Response, Rack provides that
56
+
57
+ [1634391 | Wed Apr 15 11:02:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
58
+
59
+ * Don't camel-case the helper module name, simply remove underscores, we do case-insensitive lookup anyway
60
+
61
+ [f97e8d7 | Wed Apr 15 10:58:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
62
+
63
+ * Remove core_extensions, we don't need String#each or BasicObject anymore
64
+
65
+ [0b33546 | Wed Apr 15 09:16:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
66
+
67
+ * Action may be invalid if the node requires a method and view
68
+
69
+ [39dd843 | Wed Apr 15 09:15:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
70
+
71
+ * Escape non-hash arguments to Helper::Link#route (ryan grove)
72
+
73
+ [22ee4df | Wed Apr 15 07:25:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
74
+
75
+ * Raise if the Render helper cannot obtain an Action
76
+
77
+ [e229299 | Mon Apr 13 12:48:05 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
78
+
79
+ * Allow Action#call even if we are outside Current#wrap
80
+
81
+ [b6e9558 | Mon Apr 13 04:37:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
82
+
83
+ * Remove Action#exts member and use better terms
84
+
85
+ [46d2a5e | Sun Apr 12 05:03:58 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
86
+
87
+ * FileBased caches have access to @filename now
88
+
89
+ [f84f18f | Sun Apr 12 05:03:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
90
+
91
+ * Set a PROJECT_README for some rake tasks
92
+
93
+ [8920482 | Sun Apr 12 05:03:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
94
+
95
+ * Improvment and spec for provide example
96
+
97
+ [a892dea | Sun Apr 12 05:02:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
98
+
99
+ * Minor improvment and spec for retro games example
100
+
101
+ [b3aeb97 | Fri Apr 10 12:30:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
102
+
103
+ * Allow overriding of middleware mode for specs
104
+
105
+ [7d65255 | Fri Apr 10 12:07:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
106
+
107
+ * Compact code
108
+
109
+ [cde9366 | Fri Apr 10 10:51:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
110
+
111
+ * Simplify specs and make them pass using rack-test
112
+
113
+ [f4c9572 | Fri Apr 10 10:50:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
114
+
115
+ * Don't forget to specify an app for rack-test
116
+
117
+ [41b1955 | Fri Apr 10 10:17:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
118
+
119
+ * Remove spec for render_template
120
+
121
+ [a3b73ca | Fri Apr 10 10:17:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
122
+
123
+ * Add `rake setup` task to comply to convention. I will put up the corresponding gems ASAP
124
+
125
+ [c648bf7 | Fri Apr 10 10:16:12 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
126
+
127
+ * Switch to using rack-test for our specs, needs rack-test from the master branch head
128
+
129
+ [5c08e25 | Thu Apr 09 17:52:28 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
130
+
131
+ * Use ContentLength middleware
132
+
133
+ [0dc50d4 | Thu Apr 09 16:10:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
134
+
135
+ * Fix template caching... was using html instead of the wish the glob was for
136
+
137
+ [622bbe3 | Thu Apr 09 16:01:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
138
+
139
+ * Fix example apps
140
+
141
+ [6e9e843 | Tue Apr 07 09:56:56 UTC 2009] Sam Carr <samcarr@gmail.com>
142
+
143
+ * Minor tidy-ups to fix comments, add missing requires, add comments etc.
144
+
145
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
146
+
147
+ [8f9af98 | Tue Apr 07 18:42:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
148
+
149
+ * Set default interval for reloader to 2 seconds
150
+
151
+ [9f7e749 | Tue Apr 07 18:42:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
152
+
153
+ * Never assign $0, bad mojo
154
+
155
+ [281501e | Tue Apr 07 17:53:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
156
+
157
+ * Don't assign a directory to $0
158
+
159
+ [8a2ddc7 | Tue Apr 07 17:16:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
160
+
161
+ * Version 2009.04.08
162
+
163
+ [89ab244 | Tue Apr 07 16:17:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
164
+
165
+ * bring the retro_games example up to date
166
+
167
+ [c1b6939 | Tue Apr 07 14:30:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
168
+
169
+ * Fix typo in howto_spec example
170
+
171
+ [c1f7bb8 | Tue Apr 07 12:24:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
172
+
173
+ * Improve Helper::CGI, don't accept more than one argument per method
174
+
175
+ [c01a0ce | Tue Apr 07 02:07:28 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
176
+
177
+ * Warn if action is invalid
178
+
179
+ [d749887 | Tue Apr 07 02:07:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
180
+
181
+ * Remove Helper::Render#render_template
182
+
183
+ [fba39b5 | Mon Apr 06 03:26:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
184
+
185
+ * Remove specs for Helper::Partial
186
+
187
+ [98bc6f7 | Mon Apr 06 03:25:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
188
+
189
+ * Add more specs and refine Helper::Render
190
+
191
+ [616b5aa | Mon Apr 06 03:03:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
192
+
193
+ * Provide direct access to Helper::Render methods through extension
194
+
195
+ [696f85d | Mon Apr 06 02:58:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
196
+
197
+ * Make Helper::Render#render_template work and add specs
198
+
199
+ [b0fcf13 | Sun Apr 05 23:51:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
200
+
201
+ * Adding Helper::Render, this should be able to cover all our rendering needs
202
+
203
+ [ea02bbe | Sun Apr 05 23:49:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
204
+
205
+ * Remove Helper::Partial, to be replaced by Helper::Render
206
+
207
+ [52c9943 | Sun Apr 05 23:47:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
208
+
209
+ * just fix some annoying things
210
+
211
+ [cd45648 | Sun Apr 05 23:46:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
212
+
213
+ * Refactor Helper to use HelpersHelper.options
214
+
215
+ [4a1b7f6 | Sun Apr 05 14:25:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
216
+
217
+ * remove some more methods from Request, they depend on a method in ramaze
218
+
219
+ [6e0b421 | Sun Apr 05 09:22:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
220
+
221
+ * Make multipart building a bit more compact
222
+
223
+ [2f17bf6 | Sun Apr 05 14:23:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
224
+
225
+ * Make some variables more 'communicative', as reek puts it
226
+
227
+ [348e179 | Sat Apr 04 06:37:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
228
+
229
+ * Caching for template locations finally working, this should reduce the disk IO through globbing considerably, even if it is still updating the locations for every request
230
+
231
+ [8555277 | Sat Apr 04 06:27:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
232
+
233
+ * Better bacon task
234
+
235
+ [110243b | Fri Apr 03 12:08:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
236
+
237
+ * Experimental templating path caching
238
+
239
+ [258d7c9 | Fri Apr 03 13:01:12 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
240
+
241
+ * Use Etanni engine for specs and most examples
242
+
243
+ [2bf8941 | Fri Apr 03 12:59:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
244
+
245
+ * Comment out gemspec dependencies until rack is released
246
+
247
+ [57078ac | Fri Apr 03 12:58:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
248
+
249
+ * Remove the extra newlines introduced with Etanni
250
+
251
+ [51b4797 | Fri Apr 03 12:58:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
252
+
253
+ * Relax views by using #to_s instead of #to_str
254
+
255
+ [d8475d3 | Fri Apr 03 09:48:49 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
256
+
257
+ * Don't carry over view_value into layout actions
258
+
259
+ [8e2788f | Thu Apr 02 03:50:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
260
+
261
+ * Fix view and layout mapping if there are multiple view_mappings
262
+
263
+ [8e93e87 | Tue Mar 31 16:35:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
264
+
265
+ * Version 2009.04.01
266
+
267
+ [1a7242b | Tue Mar 31 16:32:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
268
+
269
+ * Optional is called Optioned now, watch out
270
+
271
+ [0809fb1 | Tue Mar 31 07:50:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
272
+
273
+ * Set proper default templating engine for html to Etanni
274
+
275
+ [e1f9450 | Tue Mar 31 06:14:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
276
+
277
+ * Make sure Etanni returns stripped strings, that should make the specs pass again
278
+
279
+ [3c7063b | Tue Mar 31 05:49:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
280
+
281
+ * Fix bug where root_mappings where not considered alternatives
282
+
283
+ [0ab5ab1 | Sun Mar 29 13:44:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
284
+
285
+ * Unescape params given to the action
286
+
287
+ [4fe8226 | Sat Mar 28 08:04:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
288
+
289
+ * Version 2009.03.28
290
+
291
+ [57680d3 | Sat Mar 28 08:04:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
292
+
293
+ * Split rake tasks into small units for management with raku
294
+
295
+ [d7a9278 | Thu Mar 26 13:14:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
296
+
297
+ * Adapt recursive partial spec for new action iv setting semantics
298
+
299
+ [4dede34 | Thu Mar 26 11:20:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
300
+
301
+ * Nicer code for Action#layout_view_or_method
302
+
303
+ [d392fda | Thu Mar 26 11:19:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
304
+
305
+ * Make Node#resolve smarter if called on an instance
306
+
307
+ [3e49468 | Thu Mar 26 10:40:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
308
+
309
+ * Put copy_variables before calling of the action method, so instance variables are copied over from the action and usable in the method the same way as in the template
310
+
311
+ [408bbd9 | Thu Mar 26 02:28:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
312
+
313
+ * Better lookup for options.roots
314
+
315
+ [250188f | Wed Mar 25 14:48:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
316
+
317
+ * Give the engine the value or a string, not nil
318
+
319
+ [6784523 | Wed Mar 25 14:37:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
320
+
321
+ * Adding Etanni with .xhtml extension
322
+
323
+ [dc871bf | Wed Mar 25 12:35:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
324
+
325
+ * Remove specs for old request methods
326
+
327
+ [fa7aa95 | Wed Mar 25 12:35:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
328
+
329
+ * Don't fail when trying to obtain symbolic view
330
+
331
+ [a79b532 | Wed Mar 25 12:34:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
332
+
333
+ * Allow Ramaze to inject Request/Response/Session
334
+
335
+ [3799d36 | Wed Mar 25 12:34:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
336
+
337
+ * Using Gem::Specification#to_ruby, yay
338
+
339
+ [6367793 | Wed Mar 25 09:01:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
340
+
341
+ * Remove cruft from View::ERB
342
+
343
+ [72b02f0 | Wed Mar 25 09:00:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
344
+
345
+ * Simplify View::get, we don't need lookup by extension anymore
346
+
347
+ [b4850cd | Wed Mar 25 09:00:05 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
348
+
349
+ * Remove some methods from Request, they fit better into Ramaze
350
+
351
+ [d919c03 | Wed Mar 25 08:59:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
352
+
353
+ * Remove cruft from Adapter, I added support for arbitrary handlers to rack (patch will go in by tomorrow)
354
+
355
+ [b7a4f88 | Wed Mar 25 05:01:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
356
+
357
+ * Remove some unused methods
358
+
359
+ [afea731 | Tue Mar 24 14:52:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
360
+
361
+ * Version 2009.03.24
362
+
363
+ [94d0714 | Tue Mar 24 10:33:44 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
364
+
365
+ * Fix bug where index(arg) was passed 'index' as arg
366
+
367
+ [28c9f16 | Tue Mar 24 07:05:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
368
+
369
+ * Nicer output for skipped specs
370
+
371
+ [ea90a79 | Tue Mar 24 07:05:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
372
+
373
+ * Fix specs for 1.9
374
+
375
+ [404cffe | Mon Mar 23 10:43:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
376
+
377
+ * Using anchor in combination with route would fail between nodes
378
+
379
+ [b9c4048 | Mon Mar 23 10:23:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
380
+
381
+ * Update README to reflect latest developments
382
+
383
+ [bd4456e | Mon Mar 23 06:53:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
384
+
385
+ * Copy action.variables into instance variables before calling engine
386
+
387
+ [85b1b75 | Mon Mar 23 06:27:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
388
+
389
+ * Only render_template if the resulting action is valid
390
+
391
+ [1e9009c | Mon Mar 23 06:03:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
392
+
393
+ * Make the methods in Helper::CGI module functions
394
+
395
+ [3e20690 | Sat Mar 21 02:36:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
396
+
397
+ * Fix outstanding issues around State and spec them
398
+
399
+ [1906be4 | Fri Mar 20 17:15:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
400
+
401
+ * Clean up a bit after suggestions from nitpick
402
+
403
+ [e89cde5 | Fri Mar 20 10:35:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
404
+
405
+ * Only set root in spec if found
406
+
407
+ [45e1307 | Fri Mar 20 10:34:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
408
+
409
+ * Add some aliases for options given to Innate.start, should make life easier
410
+
411
+ [c418e85 | Fri Mar 20 09:25:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
412
+
413
+ * Add specs for extended behaviour of Request#domain
414
+
415
+ [17a1ca3 | Fri Mar 20 09:24:44 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
416
+
417
+ * Support put/delete in shared :mock
418
+
419
+ [f857946 | Fri Mar 20 09:24:18 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
420
+
421
+ * Take advantage of new Rack::Request#url for Request#domain
422
+
423
+ [b849861 | Fri Mar 20 09:23:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
424
+
425
+ * small style change
426
+
427
+ [a0d3176 | Fri Mar 20 09:23:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
428
+
429
+ * Don't rescue anything in Helper, all exceptions get shown
430
+
431
+ [3e5869d | Thu Mar 19 12:57:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
432
+
433
+ * Remove unused method from node spec
434
+
435
+ [27ffac3 | Thu Mar 19 12:48:05 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
436
+
437
+ * Clean up and remove methods that aren't used anymore
438
+
439
+ [1e09f3c | Thu Mar 19 12:47:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
440
+
441
+ * Improve spec/helper.rb to work with rcov
442
+
443
+ [ca75800 | Thu Mar 19 12:46:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
444
+
445
+ * Fix logical typo
446
+
447
+ [057b52e | Thu Mar 19 12:12:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
448
+
449
+ * Spec Node mapping generation
450
+
451
+ [05a244a | Thu Mar 19 12:09:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
452
+
453
+ * Move node aspects into the aspect helper, make traits faster
454
+
455
+ [f774349 | Thu Mar 19 10:18:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
456
+
457
+ * Better session id, use securerandom if possible (ruby >= 1.8.7)
458
+
459
+ [4b8d305 | Thu Mar 19 09:58:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
460
+
461
+ * update_method_arities only once per request
462
+
463
+ [3d7a493 | Thu Mar 19 09:51:38 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
464
+
465
+ * Remove some debugging output
466
+
467
+ [2650232 | Thu Mar 19 09:51:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
468
+
469
+ * No need for next
470
+
471
+ [b8e2c90 | Wed Mar 18 11:49:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
472
+
473
+ * Run Innate.setup_dependencies for shared :mock
474
+
475
+ [335c4d0 | Wed Mar 18 11:49:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
476
+
477
+ * Forgot commiting the change to Node#root_mappings
478
+
479
+ [e7a022c | Wed Mar 18 11:48:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
480
+
481
+ * Node docs more compatible with YARD
482
+
483
+ [8bab954 | Wed Mar 18 11:37:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
484
+
485
+ * Adding Helper::Link#route_location, makes life easier for Ramaze
486
+
487
+ [ce9a71d | Wed Mar 18 11:35:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
488
+
489
+ * More intelligent automatic mapping
490
+
491
+ [3227e0b | Wed Mar 18 09:40:58 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
492
+
493
+ * Split up the specs for Node a little
494
+
495
+ [176f1f8 | Tue Mar 17 12:09:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
496
+
497
+ * And even more docs for Node
498
+
499
+ [6992116 | Tue Mar 17 11:43:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
500
+
501
+ * Update specs for new template lookup
502
+
503
+ [68ba841 | Tue Mar 17 11:41:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
504
+
505
+ * Add more docs, yard uses @example instead of @usage
506
+
507
+ [45c7a24 | Tue Mar 17 11:40:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
508
+
509
+ * Document some of the stuff that goes on in the Node#layout method, allow removing layout from node
510
+
511
+ [fb36a5f | Tue Mar 17 11:39:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
512
+
513
+ * Remove the Node#layout_root method
514
+
515
+ [f2e4cc7 | Tue Mar 17 11:38:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
516
+
517
+ * Use param as variable name for the options hash to avoid confusion
518
+
519
+ [a457bdf | Tue Mar 17 11:30:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
520
+
521
+ * Refactor Node options
522
+
523
+ Node options are now done by traits.
524
+
525
+ The reasoning behind this is that one wants to inherit options from
526
+ nodes they subclass and that lookup of these options should be fast.
527
+
528
+ Lookup of views is this:
529
+ [Innate.options.roots, Innate.options.views,
530
+ Node.trait[:views], name]
531
+
532
+ Lookup of layouts is this:
533
+ [Innate.options.roots, Innate.options.layouts,
534
+ Node.trait[:layouts], name]
535
+
536
+ If the traits are empty arrays, the Node.mapping is used instead.
537
+
538
+ Setting a custom view or layout mapping works like:
539
+
540
+ class Foo
541
+ Innate.node('/')
542
+ map_views '/foobar'
543
+ map_layouts '/foobar'
544
+ end
545
+
546
+ More about this soon in the docs.
547
+
548
+ [9b78d9c | Tue Mar 17 11:28:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
549
+
550
+ * Fix the non-node references to Node.options
551
+
552
+ [64cfecb | Tue Mar 17 11:27:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
553
+
554
+ * Move some Node.options to Innate.options again, they make more sense there
555
+
556
+ [f2db256 | Mon Mar 16 07:00:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
557
+
558
+ * Handle nil in path_glob gracefully
559
+
560
+ [1b2435b | Mon Mar 16 06:38:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
561
+
562
+ * Even more docs for Node
563
+
564
+ [c9dad64 | Mon Mar 16 06:38:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
565
+
566
+ * Better information about ambigous templates
567
+
568
+ [9fef72f | Mon Mar 16 06:38:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
569
+
570
+ * Some more docs for Node
571
+
572
+ [07230ee | Mon Mar 16 05:53:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
573
+
574
+ * Simple example for provides
575
+
576
+ [9fa53a0 | Mon Mar 16 05:53:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
577
+
578
+ * Some docs for Node#provide
579
+
580
+ [93ffd36 | Mon Mar 16 01:58:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
581
+
582
+ * Add Innate::Helper::Link#route_self
583
+
584
+ [89b5f05 | Sun Mar 15 08:09:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
585
+
586
+ * Try setting $0 correctly in Innate.start
587
+
588
+ [75fe61d | Sun Mar 15 03:25:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
589
+
590
+ * Options of modules in Innate should be subs of Innate.options, not simple references
591
+
592
+ [19797aa | Sat Mar 14 13:38:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
593
+
594
+ * Proper fallback for Options#[]=
595
+
596
+ [53e5412 | Sat Mar 14 13:37:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
597
+
598
+ * Allow multiple public roots
599
+
600
+ [88f6b82 | Sat Mar 14 05:25:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
601
+
602
+ * The :app trait isn't needed anymore
603
+
604
+ [f3b5d20 | Sat Mar 14 05:18:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
605
+
606
+ * Add missing options/stub.rb
607
+
608
+ [33c2fbe | Sat Mar 14 05:17:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
609
+
610
+ * Allow to change the object wrapped by Rack::MockRequest
611
+
612
+ [2e5eccf | Sat Mar 14 05:12:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
613
+
614
+ * Refactor to use new options convention, each module has its own options now
615
+
616
+ [b271865 | Sat Mar 14 05:09:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
617
+
618
+ * Make specs easier by setting $0 correctly
619
+
620
+ [346c8f3 | Sat Mar 14 05:09:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
621
+
622
+ * More specs for Innate::Options
623
+
624
+ [786a340 | Sat Mar 14 05:08:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
625
+
626
+ * Improve Innate::Options and add Innate::Optional
627
+
628
+ [5d84d92 | Thu Mar 12 12:28:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
629
+
630
+ * Rewire to use Innate::MiddlewareCompiler and allow Ramaze to use its own URLMap
631
+
632
+ [a4461b8 | Thu Mar 12 12:26:58 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
633
+
634
+ * Fix Helper::Flash spec, we need to return a string
635
+
636
+ [7d22edb | Thu Mar 12 12:26:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
637
+
638
+ * Nicer debugging output for routing
639
+
640
+ [12d63ac | Thu Mar 12 10:23:00 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
641
+
642
+ * Dynamic MiddlewareCompiler, removes last Rack namespaced class
643
+
644
+ [aa7e2e1 | Mon Mar 09 11:09:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
645
+
646
+ * Move default hash into Action::create to prevent silly behaviour
647
+
648
+ [68b8ec0 | Sat Mar 07 06:48:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
649
+
650
+ * Refactor of content representation, should work smooth now
651
+
652
+ [e1ade5a | Fri Mar 06 06:42:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
653
+
654
+ * Improve Helper::Link#anchor on suggestions of endoh
655
+
656
+ [d7ec2e6 | Fri Mar 06 06:16:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
657
+
658
+ * Some explanation about session.expires
659
+
660
+ [7b95de4 | Fri Mar 06 06:15:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
661
+
662
+ * Refactor provides, any engine just has to respond to ::call now
663
+
664
+ [e9302f0 | Thu Mar 05 05:37:47 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
665
+
666
+ * Another change to template exts, only respect the wish to simplify things
667
+
668
+ [5bc84c1 | Thu Mar 05 04:19:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
669
+
670
+ * Remove our Rack::Reloader - i'll try to improve the one in Rack instead and Ramaze has its own anyway
671
+
672
+ [3712cff | Thu Mar 05 04:06:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
673
+
674
+ * Utilize application-specific configuration
675
+
676
+ [527a29f | Thu Mar 05 04:04:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
677
+
678
+ * Split up to_template with path_glob and ext_glob
679
+
680
+ [66ea210 | Wed Mar 04 07:53:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
681
+
682
+ * Allow multiple values for options.app.(root|view|layout|public)
683
+
684
+ [671aaea | Thu Mar 05 09:02:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
685
+
686
+ * View::register overwrites
687
+
688
+ [663d623 | Mon Mar 02 17:20:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
689
+
690
+ * Options is not Enumerable anymore, add to_hash instead
691
+
692
+ [e30a191 | Mon Mar 02 17:20:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
693
+
694
+ * simplify helper failure
695
+
696
+ [c1328ed | Mon Mar 02 08:13:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
697
+
698
+ * Use Options#[] for faster access and add Innate::teardown_dependencies
699
+
700
+ [a56126b | Mon Mar 02 08:13:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
701
+
702
+ * Fix middleware compilation
703
+
704
+ [7d92080 | Sun Mar 01 10:46:02 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
705
+
706
+ * Add spec for render_template with variable.
707
+
708
+ [b5cdf83 | Sun Mar 01 07:56:20 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
709
+
710
+ * Use Array#first instead of to_s to get extension from provide wish in
711
+
712
+ Array#to_s in 1.9 joins with brackets. # ['foo'].to_s #=> "[\"foo\"]"
713
+
714
+ [2e8bb64 | Sun Mar 01 15:20:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
715
+
716
+ * Nicer exception for some missing helpers
717
+
718
+ [a5de43a | Sun Mar 01 15:20:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
719
+
720
+ * MiddlewareCompiler#use now has traditional rack meaning, use apps for the old behaviour
721
+
722
+ [aedca0f | Sun Mar 01 15:19:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
723
+
724
+ * Use options[:mode] to avoid problems with facets
725
+
726
+ [f17eec8 | Sun Mar 01 07:02:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
727
+
728
+ * Add Innate::defer to schedule code for running in background
729
+
730
+ [b7e58fa | Sat Feb 28 08:12:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
731
+
732
+ * Simplify view API a bit
733
+
734
+ [37a05e8 | Wed Feb 25 07:04:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
735
+
736
+ * Fix version for rack in gemspec
737
+
738
+ [e29cd02 | Wed Feb 25 07:03:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
739
+
740
+ * innate doesn't rely on github
741
+
742
+ [08d6773 | Wed Feb 25 07:01:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
743
+
744
+ * Version 2009.02.25
745
+
746
+ [04201ef | Wed Feb 25 06:27:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
747
+
748
+ * cleanup
749
+
750
+ [295a241 | Wed Feb 25 06:27:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
751
+
752
+ * Add Traited#class_trait and docs
753
+
754
+ [6ed8499 | Wed Feb 25 06:04:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
755
+
756
+ * rebuild middleware if block is passed to Innate.start
757
+
758
+ [8ce86a7 | Wed Feb 25 06:04:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
759
+
760
+ * Make the real failures on helper requires visible
761
+
762
+ [232214e | Wed Feb 25 06:03:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
763
+
764
+ * Remove optimization for wrap_action_call, leads to really weird recursion
765
+
766
+ [38d0a7b | Wed Feb 25 05:09:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
767
+
768
+ * Simplify setting of mode and compilation of middleware
769
+
770
+ [8c02417 | Wed Feb 25 04:40:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
771
+
772
+ * Speed up wrap_action_call
773
+
774
+ [cea8af5 | Wed Feb 25 04:37:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
775
+
776
+ * Speed up ancestral_trait
777
+
778
+ [608a7eb | Tue Feb 24 13:45:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
779
+
780
+ * Remove Innate::Setup, that goes into Ramaze
781
+
782
+ [785b1e5 | Tue Feb 24 13:45:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
783
+
784
+ * Remove reference to Innate in log to avoid confusion
785
+
786
+ [3df0612 | Tue Feb 24 13:28:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
787
+
788
+ * Remove the providing_hash example until we come up with a better way to show it
789
+
790
+ [8309299 | Tue Feb 24 13:25:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
791
+
792
+ * small cleanup
793
+
794
+ [93be7ad | Tue Feb 24 13:25:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
795
+
796
+ * Spec the session example
797
+
798
+ [7b39146 | Tue Feb 24 13:24:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
799
+
800
+ * Add missing template for node spec
801
+
802
+ [d8ccfce | Tue Feb 24 13:22:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
803
+
804
+ * Add todolist example
805
+
806
+ [fd73cef | Tue Feb 24 13:06:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
807
+
808
+ * Don't serve a view without method if params are given
809
+
810
+ [58f9ecd | Tue Feb 24 12:05:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
811
+
812
+ * Fix spec for example/link
813
+
814
+ [607fc72 | Tue Feb 24 12:05:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
815
+
816
+ * Provide shared multipart to enable easy POST specs
817
+
818
+ [9b833f8 | Tue Feb 24 12:04:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
819
+
820
+ * Innate::Node, rename LIST to NODE_LIST and HELPERS to DEFAULT_HELPERS
821
+
822
+ [397cff4 | Tue Feb 24 12:03:38 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
823
+
824
+ * A little bit nicer each in retro games
825
+
826
+ [0ab5dfe | Tue Feb 24 11:09:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
827
+
828
+ * We don't provide error handling out of the box, remove example
829
+
830
+ [9466549 | Tue Feb 24 11:06:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
831
+
832
+ * Clean up code of the whywiki
833
+
834
+ [715371b | Tue Feb 24 10:58:44 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
835
+
836
+ * Bring examples up to date
837
+
838
+ [378977c | Sun Feb 22 13:14:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
839
+
840
+ * Add some docs
841
+
842
+ [566303c | Sun Feb 22 12:34:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
843
+
844
+ * Make Innate::setup and Innate::sync available to Ramaze
845
+
846
+ [6fa8645 | Sun Feb 22 12:16:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
847
+
848
+ * Make it easier for Ramaze to set a default engine
849
+
850
+ [dfe34cd | Sat Feb 21 12:54:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
851
+
852
+ * Correct usage of git tag
853
+
854
+ [42d3883 | Sat Feb 21 03:28:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
855
+
856
+ * Version 2009.02.21
857
+
858
+ [374f218 | Sat Feb 21 03:26:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
859
+
860
+ * Bring retro games example back to life
861
+
862
+ [800c1e2 | Fri Feb 20 08:38:32 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
863
+
864
+ * Make Innate::Route() and Innate::Rewrite() available for Ramaze
865
+
866
+ [f9d5d68 | Fri Feb 20 06:48:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
867
+
868
+ * Don't fail fatal if no app root can be found
869
+
870
+ [ddd6e77 | Fri Feb 20 06:48:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
871
+
872
+ * Rename action_not_found(path) to action_missing(path), easier to remember
873
+
874
+ [e682e18 | Fri Feb 20 06:47:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
875
+
876
+ * Add trigger for options.mode to reset middleware
877
+
878
+ [0efafb9 | Thu Feb 19 08:29:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
879
+
880
+ * Update options spec for trigger
881
+
882
+ [f3741ee | Thu Feb 19 08:26:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
883
+
884
+ * Fix MiddlewareCompiler#static and add #directory
885
+
886
+ [0ce72dc | Thu Feb 19 08:07:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
887
+
888
+ * Put the dynamap module functions into the SingletonMethods so Ramaze can have them too
889
+
890
+ [b392fa7 | Thu Feb 19 08:06:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
891
+
892
+ * Add options.app.public which recompiles middleware on change
893
+
894
+ [e9d3e04 | Thu Feb 19 08:06:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
895
+
896
+ * Add Options#trigger, runs a block when an option changed
897
+
898
+ [a3bdfdc | Thu Feb 19 06:56:38 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
899
+
900
+ * Proper name for node in session spec
901
+
902
+ [bc942f2 | Thu Feb 19 06:52:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
903
+
904
+ * Some more yard-compatible docs
905
+
906
+ [9f97f72 | Thu Feb 19 06:16:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
907
+
908
+ * Make aliasing views more consistent
909
+
910
+ [3d10ef2 | Thu Feb 19 05:40:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
911
+
912
+ * Clean up session spec
913
+
914
+ [027f20b | Thu Feb 19 05:38:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
915
+
916
+ * Cache the session just as long as the cookie is scheduled to exist
917
+
918
+ [0279f91 | Thu Feb 19 05:37:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
919
+
920
+ * Further improvments to the spec task
921
+
922
+ [f69b4cf | Mon Feb 16 18:50:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
923
+
924
+ * publish for real
925
+
926
+ [81048fa | Mon Feb 16 18:48:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
927
+
928
+ * add rake publish via grancher
929
+
930
+ [c825e8b | Sun Feb 15 11:29:02 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
931
+
932
+ * Use current node's extension if it is not provided to render_template.
933
+
934
+ [4338891 | Sun Feb 15 11:29:02 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
935
+
936
+ * Use current node's extension if it is not provided to render_template.
937
+
938
+ [e97696f | Sun Feb 15 01:05:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
939
+
940
+ * Warn if no app.root was set
941
+
942
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
943
+
944
+ [70f09fd | Sat Feb 14 15:08:44 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
945
+
946
+ * Clear layout before rendering a template in #render_template.
947
+
948
+ [4318c09 | Sun Feb 15 02:05:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
949
+
950
+ * Warn if no app.root was set
951
+
952
+ [22a7a1d | Sat Feb 14 15:08:44 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
953
+
954
+ * Clear layout before rendering a template in #render_template.
955
+
956
+ [4a31e76 | Fri Feb 13 09:02:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
957
+
958
+ * Reflect change to Fiber from Ramaze
959
+
960
+ [59ad732 | Wed Feb 11 09:09:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
961
+
962
+ * Add bacon dependency for spec
963
+
964
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
965
+
966
+ [d93b2e5 | Wed Feb 11 09:15:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
967
+
968
+ * exit status 1 if specs fail
969
+
970
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
971
+
972
+ [89327f5 | Wed Feb 11 09:11:49 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
973
+
974
+ * Remove debug info, seems to work on RunCodeRun now
975
+
976
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
977
+
978
+ [529f7e7 | Wed Feb 11 08:50:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
979
+
980
+ * Install dependencies on for specs
981
+
982
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
983
+
984
+ [da3fb06 | Wed Feb 11 09:33:06 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
985
+
986
+ * Use eval with binding argument, Binding#eval is 1.8.7+
987
+
988
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
989
+
990
+ [7be640a | Wed Feb 11 09:07:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
991
+
992
+ * debug RunCodeRun
993
+
994
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
995
+
996
+ [c422ae6 | Wed Feb 11 08:50:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
997
+
998
+ * Support for multiple extensions per engine
999
+
1000
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1001
+
1002
+ [2cae45a | Wed Feb 11 06:44:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1003
+
1004
+ * Add options.app.prefix - only outbound for now
1005
+
1006
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1007
+
1008
+ [dcbdfdb | Wed Feb 11 06:43:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1009
+
1010
+ * Add rake ydoc task
1011
+
1012
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1013
+
1014
+ [3715913 | Wed Feb 11 10:33:06 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1015
+
1016
+ * Use eval with binding argument, Binding#eval is 1.8.7+
1017
+
1018
+ [eb77842 | Wed Feb 11 10:15:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1019
+
1020
+ * exit status 1 if specs fail
1021
+
1022
+ [544533d | Wed Feb 11 10:11:49 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1023
+
1024
+ * Remove debug info, seems to work on RunCodeRun now
1025
+
1026
+ [29d7021 | Wed Feb 11 10:09:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1027
+
1028
+ * Add bacon dependency for spec
1029
+
1030
+ [d4ca17d | Wed Feb 11 10:07:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1031
+
1032
+ * debug RunCodeRun
1033
+
1034
+ [8756390 | Wed Feb 11 09:50:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1035
+
1036
+ * Support for multiple extensions per engine
1037
+
1038
+ [d5c003d | Wed Feb 11 09:50:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1039
+
1040
+ * Install dependencies on for specs
1041
+
1042
+ [35f2ece | Wed Feb 11 07:44:11 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1043
+
1044
+ * Add options.app.prefix - only outbound for now
1045
+
1046
+ [d212cd2 | Wed Feb 11 07:43:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1047
+
1048
+ * Add rake ydoc task
1049
+
1050
+ [5210279 | Mon Feb 09 08:47:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1051
+
1052
+ * params defaults to []
1053
+
1054
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1055
+
1056
+ [53cf3b0 | Mon Feb 09 08:47:06 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1057
+
1058
+ * Fix render_template
1059
+
1060
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1061
+
1062
+ [b8abf58 | Mon Feb 09 08:37:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1063
+
1064
+ * Cosmetics
1065
+
1066
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1067
+
1068
+ [b25f9e7 | Mon Feb 09 08:36:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1069
+
1070
+ * Some more usage of Innate::node
1071
+
1072
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1073
+
1074
+ [ad4f3ff | Mon Feb 09 08:15:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1075
+
1076
+ * Add convenience method Innate::node
1077
+
1078
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1079
+
1080
+ [d713321 | Mon Feb 09 07:42:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1081
+
1082
+ * Allow alias_view to point to another Node
1083
+
1084
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1085
+
1086
+ [af92ee4 | Mon Feb 09 07:15:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1087
+
1088
+ * Allow templates for methods like this__nested__one
1089
+
1090
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1091
+
1092
+ [56f119e | Mon Feb 09 07:15:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1093
+
1094
+ * Add options.action.needs_method
1095
+
1096
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1097
+
1098
+ [3cc7b5c | Mon Feb 09 07:00:49 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1099
+
1100
+ * Adapt specs for new API (memcached returns no value on delete)
1101
+
1102
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1103
+
1104
+ [3698234 | Mon Feb 09 07:00:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1105
+
1106
+ * Action is made a bit more modular so one can call Action#render
1107
+
1108
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1109
+
1110
+ [27520cb | Sun Feb 08 06:51:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1111
+
1112
+ * Correct behaviour for alias_view with spec
1113
+
1114
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1115
+
1116
+ [e5fcc9b | Sun Feb 08 06:42:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1117
+
1118
+ * Adapt node spec to new behaviour
1119
+
1120
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1121
+
1122
+ [487acde | Sun Feb 08 06:41:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1123
+
1124
+ * Fix alias_view, still needs spec
1125
+
1126
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1127
+
1128
+ [34269db | Sun Feb 08 06:35:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1129
+
1130
+ * Fix update_method_arities for new traits
1131
+
1132
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1133
+
1134
+ [030c75b | Sun Feb 08 06:35:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1135
+
1136
+ * Better error message if no action was found
1137
+
1138
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1139
+
1140
+ [8e5b4dd | Sun Feb 08 05:42:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1141
+
1142
+ * Restructure innate.rb and introduce options.mode
1143
+
1144
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1145
+
1146
+ [6524d1c | Sun Feb 08 05:41:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1147
+
1148
+ * Fix trait memory-leak
1149
+
1150
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1151
+
1152
+ [82673cd | Mon Feb 09 09:47:15 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1153
+
1154
+ * params defaults to []
1155
+
1156
+ [fe17b8d | Mon Feb 09 09:47:06 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1157
+
1158
+ * Fix render_template
1159
+
1160
+ [9d23d82 | Mon Feb 09 09:37:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1161
+
1162
+ * Cosmetics
1163
+
1164
+ [e6b6d79 | Mon Feb 09 09:36:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1165
+
1166
+ * Some more usage of Innate::node
1167
+
1168
+ [da464b9 | Mon Feb 09 09:15:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1169
+
1170
+ * Add convenience method Innate::node
1171
+
1172
+ [ed2bdee | Mon Feb 09 08:42:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1173
+
1174
+ * Allow alias_view to point to another Node
1175
+
1176
+ [95238a3 | Mon Feb 09 08:15:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1177
+
1178
+ * Allow templates for methods like this__nested__one
1179
+
1180
+ [fc75dca | Mon Feb 09 08:15:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1181
+
1182
+ * Add options.action.needs_method
1183
+
1184
+ [190e66b | Mon Feb 09 08:00:49 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1185
+
1186
+ * Adapt specs for new API (memcached returns no value on delete)
1187
+
1188
+ [68ad412 | Mon Feb 09 08:00:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1189
+
1190
+ * Action is made a bit more modular so one can call Action#render
1191
+
1192
+ [4818105 | Sun Feb 08 07:51:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1193
+
1194
+ * Correct behaviour for alias_view with spec
1195
+
1196
+ [ffee12e | Sun Feb 08 07:42:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1197
+
1198
+ * Adapt node spec to new behaviour
1199
+
1200
+ [2034ce4 | Sun Feb 08 07:41:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1201
+
1202
+ * Fix alias_view, still needs spec
1203
+
1204
+ [2778db9 | Sun Feb 08 07:35:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1205
+
1206
+ * Fix update_method_arities for new traits
1207
+
1208
+ [faae0e0 | Sun Feb 08 07:35:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1209
+
1210
+ * Better error message if no action was found
1211
+
1212
+ [ca68ade | Sun Feb 08 06:42:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1213
+
1214
+ * Restructure innate.rb and introduce options.mode
1215
+
1216
+ [228951a | Sun Feb 08 06:41:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1217
+
1218
+ * Fix trait memory-leak
1219
+
1220
+ [fb91811 | Sat Feb 07 08:20:22 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1221
+
1222
+ * Remove unused actions in Helper::Flash spec
1223
+
1224
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1225
+
1226
+ [4205f14 | Sat Feb 07 08:13:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1227
+
1228
+ * Fix usage of parameters in accept_language
1229
+
1230
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1231
+
1232
+ [bf69983 | Sat Feb 07 08:11:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1233
+
1234
+ * Specs for layouts
1235
+
1236
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1237
+
1238
+ [256c8c9 | Sat Feb 07 08:11:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1239
+
1240
+ * New layout behaviour
1241
+
1242
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1243
+
1244
+ [d78cedb | Sat Feb 07 06:58:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1245
+
1246
+ * Allow adding multiple caches at once
1247
+
1248
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1249
+
1250
+ [ff74c88 | Sat Feb 07 06:58:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1251
+
1252
+ * wrap_action_call hooks should return the body
1253
+
1254
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1255
+
1256
+ [0b34ab6 | Sat Feb 07 03:57:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1257
+
1258
+ * Better parsing of Request#accept_language
1259
+
1260
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1261
+
1262
+ [bff2472 | Sat Feb 07 03:56:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1263
+
1264
+ * Faster Innate.options
1265
+
1266
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1267
+
1268
+ [532f3a2 | Fri Feb 06 08:44:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1269
+
1270
+ * Minor fixes and docs for rakefile
1271
+
1272
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1273
+
1274
+ [345157b | Fri Feb 06 08:44:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1275
+
1276
+ * Provide default for alias_view
1277
+
1278
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1279
+
1280
+ [febab0f | Fri Feb 06 08:41:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1281
+
1282
+ * Version 2009.02.06
1283
+
1284
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1285
+
1286
+ [3ed0607 | Sat Feb 07 09:20:22 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1287
+
1288
+ * Remove unused actions in Helper::Flash spec
1289
+
1290
+ [e80d217 | Sat Feb 07 09:13:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1291
+
1292
+ * Fix usage of parameters in accept_language
1293
+
1294
+ [3f5adb8 | Sat Feb 07 09:11:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1295
+
1296
+ * Specs for layouts
1297
+
1298
+ [f2bdd45 | Sat Feb 07 09:11:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1299
+
1300
+ * New layout behaviour
1301
+
1302
+ [e9c6ae3 | Sat Feb 07 07:58:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1303
+
1304
+ * Allow adding multiple caches at once
1305
+
1306
+ [defd5aa | Sat Feb 07 07:58:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1307
+
1308
+ * wrap_action_call hooks should return the body
1309
+
1310
+ [6d20f61 | Sat Feb 07 04:57:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1311
+
1312
+ * Better parsing of Request#accept_language
1313
+
1314
+ [00ed695 | Sat Feb 07 04:56:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1315
+
1316
+ * Faster Innate.options
1317
+
1318
+ [ec09fde | Fri Feb 06 09:44:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1319
+
1320
+ * Minor fixes and docs for rakefile
1321
+
1322
+ [45497a2 | Fri Feb 06 09:44:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1323
+
1324
+ * Provide default for alias_view
1325
+
1326
+ [1dd1d29 | Fri Feb 06 09:41:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1327
+
1328
+ * Version 2009.02.06
1329
+
1330
+ [01ca014 | Tue Feb 03 17:37:50 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1331
+
1332
+ * Delete :root and :file parameters after root is figured. Because they
1333
+
1334
+
1335
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
1336
+
1337
+ [caf7b61 | Tue Feb 03 17:32:01 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1338
+
1339
+ * Add Action#name, taken from Ramaze.
1340
+
1341
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
1342
+
1343
+ [d10e1e4 | Tue Feb 03 18:37:50 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1344
+
1345
+ * Delete :root and :file parameters after root is figured. Because they
1346
+
1347
+
1348
+
1349
+ [a0eaff1 | Tue Feb 03 18:32:01 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1350
+
1351
+ * Add Action#name, taken from Ramaze.
1352
+
1353
+ [f83a30c | Sun Feb 01 06:50:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1354
+
1355
+ * Rack now has nested parameter parsing
1356
+
1357
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1358
+
1359
+ [cc3f110 | Sun Feb 01 18:35:42 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1360
+
1361
+ * use view name as name of the method when method is unavailable.
1362
+
1363
+ [20518d4 | Sun Feb 01 18:37:47 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1364
+
1365
+ * update aspect spec to check before/after_all, instance_eval and view without method.
1366
+
1367
+ [ad974e8 | Mon Feb 02 04:28:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1368
+
1369
+ * instance_eval the aspect blocks
1370
+
1371
+ [12460ae | Sun Feb 01 18:37:47 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1372
+
1373
+ * update aspect spec to check before/after_all, instance_eval and view without method.
1374
+
1375
+ [ac3cd91 | Sun Feb 01 18:35:42 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1376
+
1377
+ * use view name as name of the method when method is unavailable.
1378
+
1379
+ [1ac84ef | Sun Feb 01 18:32:14 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1380
+
1381
+ * instance_eval the aspect block.
1382
+
1383
+ [2287f32 | Sun Feb 01 18:31:17 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1384
+
1385
+ * block_holder can be a hash or an actual block. lets first check it.
1386
+
1387
+ [b180b45 | Sun Feb 01 07:50:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1388
+
1389
+ * Rack now has nested parameter parsing
1390
+
1391
+ [71639b6 | Sat Jan 31 11:45:28 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1392
+
1393
+ * Some yard-style docs
1394
+
1395
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1396
+
1397
+ [6b70d31 | Sat Jan 31 11:45:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1398
+
1399
+ * Remove useless adapters
1400
+
1401
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1402
+
1403
+ [50b78b5 | Sat Jan 31 11:45:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1404
+
1405
+ * Make Node#wrap_action_call work, for now only aspects are registered
1406
+
1407
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1408
+
1409
+ [2a827d7 | Sat Jan 31 11:43:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1410
+
1411
+ * Improve Action#copy_variables
1412
+
1413
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1414
+
1415
+ [4ae1a01 | Sat Jan 31 12:45:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1416
+
1417
+ * Remove useless adapters
1418
+
1419
+ [f75e32d | Sat Jan 31 12:45:28 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1420
+
1421
+ * Some yard-style docs
1422
+
1423
+ [a7c4120 | Sat Jan 31 12:45:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1424
+
1425
+ * Make Node#wrap_action_call work, for now only aspects are registered
1426
+
1427
+ [46c35c0 | Sat Jan 31 12:43:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1428
+
1429
+ * Improve Action#copy_variables
1430
+
1431
+ [b7595b3 | Fri Jan 30 10:12:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1432
+
1433
+ * Fix assignment for (before|after)_all
1434
+
1435
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1436
+
1437
+ [76e1be6 | Fri Jan 30 11:48:17 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1438
+
1439
+ * Fixed forgotten merge portion in previous 5de42ee51db98a4ca211a4513056f47389904420.
1440
+
1441
+ [7076383 | Fri Jan 30 11:12:09 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1442
+
1443
+ * Fix assignment for (before|after)_all
1444
+
1445
+ [3e9a5a8 | Fri Jan 30 09:57:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1446
+
1447
+ * Add before_all/after_all aspects
1448
+
1449
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1450
+
1451
+ [1335bf2 | Fri Jan 30 10:57:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1452
+
1453
+ * Add before_all/after_all aspects
1454
+
1455
+ [8b57671 | Thu Jan 29 14:21:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1456
+
1457
+ * trap only once
1458
+
1459
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1460
+
1461
+ [9e56624 | Thu Jan 29 12:37:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1462
+
1463
+ * method_arities is a trait now
1464
+
1465
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1466
+
1467
+ [82646b1 | Thu Jan 29 12:39:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1468
+
1469
+ * Improve Node::setup, automap is now mapping and behaves like ramaze needs it
1470
+
1471
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1472
+
1473
+ [97e8308 | Thu Jan 29 12:38:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1474
+
1475
+ * Better naming and arguments for Adapter::start
1476
+
1477
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1478
+
1479
+ [b182882 | Thu Jan 29 12:38:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1480
+
1481
+ * Even if started is true, still do basic setup
1482
+
1483
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1484
+
1485
+ [e3ffd52 | Thu Jan 29 12:37:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1486
+
1487
+ * Don't use custom adapter in example
1488
+
1489
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1490
+
1491
+ [5d95198 | Thu Jan 29 12:08:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1492
+
1493
+ * Fix precedence issue in find_method
1494
+
1495
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1496
+
1497
+ [64d317f | Thu Jan 29 10:04:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1498
+
1499
+ * Remove requires for rubygems
1500
+
1501
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1502
+
1503
+ [508edc9 | Thu Jan 29 10:02:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1504
+
1505
+ * Remove whywiki_haml/whywiki_nagoro examples
1506
+
1507
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1508
+
1509
+ [b55cf95 | Thu Jan 29 15:21:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1510
+
1511
+ * trap only once
1512
+
1513
+ [4d1eda4 | Thu Jan 29 13:57:54 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1514
+
1515
+ * Remove leftover code from previous addition.
1516
+
1517
+ [b41c42a | Thu Jan 29 13:39:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1518
+
1519
+ * Work around issue in Rack::URLMap and add spec
1520
+
1521
+ [9dde517 | Thu Jan 29 13:39:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1522
+
1523
+ * Improve Node::setup, automap is now mapping and behaves like ramaze needs it
1524
+
1525
+ [861ef4d | Thu Jan 29 13:38:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1526
+
1527
+ * Better naming and arguments for Adapter::start
1528
+
1529
+ [456c144 | Thu Jan 29 13:38:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1530
+
1531
+ * Even if started is true, still do basic setup
1532
+
1533
+ [76e4b23 | Thu Jan 29 13:37:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1534
+
1535
+ * Don't use custom adapter in example
1536
+
1537
+ [6921322 | Thu Jan 29 13:37:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1538
+
1539
+ * method_arities is a trait now
1540
+
1541
+ [f66c001 | Thu Jan 29 13:25:41 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1542
+
1543
+ * Add layout spec and some more.
1544
+
1545
+ [3dab943 | Thu Jan 29 13:08:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1546
+
1547
+ * Fix precedence issue in find_method
1548
+
1549
+ [be40b43 | Thu Jan 29 11:04:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1550
+
1551
+ * Remove requires for rubygems
1552
+
1553
+ [21d17f3 | Thu Jan 29 11:02:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1554
+
1555
+ * Remove whywiki_haml/whywiki_nagoro examples
1556
+
1557
+ [03c14eb | Wed Jan 28 10:55:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1558
+
1559
+ * Move code for copying Action#variables
1560
+
1561
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1562
+
1563
+ [1084897 | Wed Jan 28 13:38:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1564
+
1565
+ * Fix cache specs, why the hell did they pass?
1566
+
1567
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1568
+
1569
+ [1968cb7 | Wed Jan 28 12:55:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1570
+
1571
+ * Add some specs for examples
1572
+
1573
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1574
+
1575
+ [9285cec | Wed Jan 28 10:56:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1576
+
1577
+ * Add Node::HELPERS for helpers used on inclusion
1578
+
1579
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1580
+
1581
+ [e6b9002 | Wed Jan 28 11:04:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1582
+
1583
+ * Remove require for route_exceptions
1584
+
1585
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1586
+
1587
+ [7b98be1 | Wed Jan 28 10:55:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1588
+
1589
+ * Rack::RouteExceptions is now in rack-contrib
1590
+
1591
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1592
+
1593
+ [e83fc84 | Tue Jan 27 12:41:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1594
+
1595
+ * Nicer inspect of session
1596
+
1597
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1598
+
1599
+ [6b0be6f | Tue Jan 27 12:41:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1600
+
1601
+ * Set cookie on the response object returned, not the original one
1602
+
1603
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1604
+
1605
+ [5b2403c | Tue Jan 27 11:49:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1606
+
1607
+ * Fix specs for 1.9
1608
+
1609
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1610
+
1611
+ [36dbcc0 | Tue Jan 27 11:49:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1612
+
1613
+ * 1.9 will return symbols instead of strings as method names
1614
+
1615
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1616
+
1617
+ [9e5520e | Tue Jan 27 11:48:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1618
+
1619
+ * A bit nicer code style
1620
+
1621
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1622
+
1623
+ [eb0935f | Tue Jan 27 11:48:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1624
+
1625
+ * Map casts to #to_s, :/ is very common in ramaze code
1626
+
1627
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1628
+
1629
+ [580673b | Tue Jan 27 11:47:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1630
+
1631
+ * Fix handling of binding for 1.9
1632
+
1633
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1634
+
1635
+ [f67b9a0 | Tue Jan 27 11:46:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1636
+
1637
+ * In current 1.9 the original require won't work for some gems
1638
+
1639
+ Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1640
+
1641
+ [9133eb2 | Wed Jan 28 14:38:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1642
+
1643
+ * Fix cache specs, why the hell did they pass?
1644
+
1645
+ [741a79c | Wed Jan 28 13:55:35 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1646
+
1647
+ * Add some specs for examples
1648
+
1649
+ [122c35f | Wed Jan 28 12:04:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1650
+
1651
+ * Remove require for route_exceptions
1652
+
1653
+ [2405c23 | Wed Jan 28 11:56:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1654
+
1655
+ * Add Node::HELPERS for helpers used on inclusion
1656
+
1657
+ [94cde03 | Wed Jan 28 11:55:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1658
+
1659
+ * Move code for copying Action#variables
1660
+
1661
+ [4452766 | Wed Jan 28 11:55:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1662
+
1663
+ * Rack::RouteExceptions is now in rack-contrib
1664
+
1665
+ [2922c7b | Wed Jan 28 12:44:43 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1666
+
1667
+ * Add some specs.
1668
+
1669
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
1670
+
1671
+ [cfc74b8 | Wed Jan 28 12:43:50 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1672
+
1673
+ * Add missing fallback argument to redirect_referrer.
1674
+
1675
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
1676
+
1677
+ [e4534e1 | Tue Jan 27 08:37:21 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1678
+
1679
+ * Fix typo in example.
1680
+
1681
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
1682
+
1683
+ [53b7764 | Wed Jan 28 13:44:43 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1684
+
1685
+ * Add some specs.
1686
+
1687
+ [35b3fe7 | Wed Jan 28 13:43:50 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1688
+
1689
+ * Add missing fallback argument to redirect_referrer.
1690
+
1691
+ [eeffc7d | Tue Jan 27 13:41:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1692
+
1693
+ * Nicer inspect of session
1694
+
1695
+ [1daeb8f | Tue Jan 27 13:41:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1696
+
1697
+ * Set cookie on the response object returned, not the original one
1698
+
1699
+ [c7f8f10 | Tue Jan 27 12:49:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1700
+
1701
+ * Fix specs for 1.9
1702
+
1703
+ [9075cff | Tue Jan 27 12:49:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1704
+
1705
+ * 1.9 will return symbols instead of strings as method names
1706
+
1707
+ [fdd2197 | Tue Jan 27 12:48:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1708
+
1709
+ * A bit nicer code style
1710
+
1711
+ [a2003fe | Tue Jan 27 12:48:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1712
+
1713
+ * Map casts to #to_s, :/ is very common in ramaze code
1714
+
1715
+ [06331c4 | Tue Jan 27 12:47:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1716
+
1717
+ * Fix handling of binding for 1.9
1718
+
1719
+ [e7070f2 | Tue Jan 27 12:46:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1720
+
1721
+ * In current 1.9 the original require won't work for some gems
1722
+
1723
+ [047baef | Tue Jan 27 09:37:21 UTC 2009] Tadahiko Uehara <kikofx@gmail.com>
1724
+
1725
+ * Fix typo in example.
1726
+
1727
+ [d3304dd | Mon Jan 26 16:50:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1728
+
1729
+ * pass arguments to start to start!
1730
+
1731
+ [8f37866 | Mon Jan 26 07:47:22 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1732
+
1733
+ * Prettier output for rake spec
1734
+
1735
+ [602c6c1 | Mon Jan 26 07:42:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1736
+
1737
+ * spec for provide json and layout
1738
+
1739
+ [725f209 | Mon Jan 26 07:42:13 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1740
+
1741
+ * Fix layout render
1742
+
1743
+ [c71fca2 | Mon Jan 26 06:41:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1744
+
1745
+ * Remove Content-Type before dispatch, only add if not set
1746
+
1747
+ [07547ba | Sun Jan 25 09:09:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1748
+
1749
+ * add options.action.wish for higher order control over wishes
1750
+
1751
+ [8394dc5 | Sun Jan 25 09:08:38 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1752
+
1753
+ * small fixes for options
1754
+
1755
+ [aa53722 | Sat Jan 24 05:05:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1756
+
1757
+ * Expand specs for options
1758
+
1759
+ [67f124d | Sat Jan 24 05:05:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1760
+
1761
+ * Expand specs for flash
1762
+
1763
+ [e28bcda | Sat Jan 24 05:05:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1764
+
1765
+ * Fix Flash#delete
1766
+
1767
+ [a78085c | Sat Jan 24 05:04:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1768
+
1769
+ * Prune never reached code from options dsl
1770
+
1771
+ [dd778ba | Sat Jan 24 05:04:18 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1772
+
1773
+ * Docs for Helper::Link#route
1774
+
1775
+ [3013397 | Sat Jan 24 05:03:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1776
+
1777
+ * Provide Innate::start! method
1778
+
1779
+ [bdfe9da | Sat Jan 24 05:03:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1780
+
1781
+ * Ignore adapter for coverage
1782
+
1783
+ [2484dd4 | Sat Jan 24 03:34:36 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1784
+
1785
+ * Innate::Helper::Link#route defaults to '/'
1786
+
1787
+ [1e68525 | Sat Jan 24 03:34:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1788
+
1789
+ * Spec Innate::Helper::Link
1790
+
1791
+ [8d988f0 | Fri Jan 23 16:58:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1792
+
1793
+ * Add clean task
1794
+
1795
+ [ce74581 | Fri Jan 23 15:53:00 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1796
+
1797
+ * Spec Innate::Helper::CGI
1798
+
1799
+ [6823756 | Fri Jan 23 15:52:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1800
+
1801
+ * Spec Innate::Helper::Partial
1802
+
1803
+ [27fa85a | Fri Jan 23 15:52:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1804
+
1805
+ * Add specs for DynaMap
1806
+
1807
+ [8e1ee7d | Fri Jan 23 15:51:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1808
+
1809
+ * Spec more of Request
1810
+
1811
+ [766023a | Fri Jan 23 15:51:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1812
+
1813
+ * Expand redirect spec
1814
+
1815
+ [66229fc | Fri Jan 23 15:51:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1816
+
1817
+ * Use shared mock a bit
1818
+
1819
+ [6e62527 | Fri Jan 23 15:50:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1820
+
1821
+ * Spec that helper methods are no actions by default
1822
+
1823
+ [b5dd53b | Fri Jan 23 15:50:06 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1824
+
1825
+ * add shared :mock
1826
+
1827
+ [84a057d | Fri Jan 23 15:49:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1828
+
1829
+ * Fix throw/catch around :respond/:redirect
1830
+
1831
+ [f56dbe4 | Fri Jan 23 15:48:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1832
+
1833
+ * Rename Node#to_view to Node#find_view
1834
+
1835
+ [0ca8a71 | Fri Jan 23 15:47:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1836
+
1837
+ * add CGI to autoload, it's used very seldom
1838
+
1839
+ [ce88e79 | Fri Jan 23 15:46:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1840
+
1841
+ * We need URI for Request
1842
+
1843
+ [597b9a4 | Fri Jan 23 15:46:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1844
+
1845
+ * Add rcov task
1846
+
1847
+ [a583746 | Thu Jan 22 15:01:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1848
+
1849
+ * Don't try to use ERB for things that aren't strings
1850
+
1851
+ [959e891 | Thu Jan 22 15:01:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1852
+
1853
+ * Some improvments for specs, add shared :session
1854
+
1855
+ [d17596b | Thu Jan 22 15:00:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1856
+
1857
+ * redirect_referrer should work like in Ramaze
1858
+
1859
+ [da7d7c6 | Thu Jan 22 15:00:29 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1860
+
1861
+ * Use r, not Rs
1862
+
1863
+ [775fa4b | Thu Jan 22 15:00:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1864
+
1865
+ * Clean up Helper::Aspect
1866
+
1867
+ [1286960 | Thu Jan 22 14:59:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1868
+
1869
+ * Nicer glob
1870
+
1871
+ [5551462 | Thu Jan 22 14:58:37 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1872
+
1873
+ * Innate::HelperAccess::helper doesn't extend anymore, do that in your helper as needed
1874
+
1875
+ [b6675e0 | Thu Jan 22 14:57:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1876
+
1877
+ * Remove Innate::Helper::DEFAULT
1878
+
1879
+ [1a602c3 | Thu Jan 22 14:56:26 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1880
+
1881
+ * Don't fret on existing Innate::ROOT
1882
+
1883
+ [656c951 | Thu Jan 22 14:55:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1884
+
1885
+ * Spec for flash
1886
+
1887
+ [206a101 | Wed Jan 21 10:56:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1888
+
1889
+ * Node automap doesn't need to replace spaces
1890
+
1891
+ [c518707 | Wed Jan 21 10:53:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1892
+
1893
+ * Seems like ERB likes this better
1894
+
1895
+ [39f033b | Wed Jan 21 10:53:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1896
+
1897
+ * Only search public instance methods
1898
+
1899
+ [696d7af | Wed Jan 21 10:52:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1900
+
1901
+ * Compact try_resolve
1902
+
1903
+ [fd2bb5f | Wed Jan 21 10:52:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1904
+
1905
+ * Use Traited in Node, finally gives us inheritable configuration
1906
+
1907
+ [3891bc2 | Wed Jan 21 10:51:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1908
+
1909
+ * Better fulfill_wish
1910
+
1911
+ [3552421 | Wed Jan 21 10:50:58 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1912
+
1913
+ * remove Action::CONTENT_TYPE, we can add '.sass' in ramaze
1914
+
1915
+ [5dbfec2 | Wed Jan 21 10:49:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1916
+
1917
+ * Nicer output of specs
1918
+
1919
+ [c6666eb | Wed Jan 21 10:49:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1920
+
1921
+ * Specs for Traited
1922
+
1923
+ [934ba5f | Wed Jan 21 10:49:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1924
+
1925
+ * Add Traited, like Ramaze traits, but limited in scope
1926
+
1927
+ [9b57ea4 | Wed Jan 21 04:17:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1928
+
1929
+ * Refactor some Node code, faster arity check and warning on ambiguity for layouts
1930
+
1931
+ [4853060 | Wed Jan 21 04:12:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1932
+
1933
+ * Squeeze slack from Node::automap and Node::setup
1934
+
1935
+ [4038a4d | Wed Jan 21 04:12:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1936
+
1937
+ * Assign layout on include... gotta improve that for inherit
1938
+
1939
+ [5b8c69b | Wed Jan 21 04:10:44 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1940
+
1941
+ * Don't use RouteExceptions by default, but use CommonLogger
1942
+
1943
+ [18ab6cb | Wed Jan 21 04:10:22 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1944
+
1945
+ * Remove test code from hello example
1946
+
1947
+ [c6e0016 | Wed Jan 21 04:10:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1948
+
1949
+ * Simpler Innate::View::None
1950
+
1951
+ [576fc84 | Wed Jan 21 04:09:53 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1952
+
1953
+ * ERB now initialized with '<%>' and sensible filename
1954
+
1955
+ [42ced1f | Wed Jan 21 04:08:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1956
+
1957
+ * Add docs to Innate::DynaMap and accept block on Innate::map
1958
+
1959
+ [782b029 | Wed Jan 21 04:07:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1960
+
1961
+ * Clean up setup of caches, won't register on initialize anymore
1962
+
1963
+ [cabc6b2 | Wed Jan 21 04:07:24 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1964
+
1965
+ * Add Innate::Cache::DRb
1966
+
1967
+ [82e0dae | Mon Jan 19 10:53:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1968
+
1969
+ * Improve Helper::Redirect and port specs
1970
+
1971
+ [255643c | Sun Jan 18 11:31:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1972
+
1973
+ * Explain how layouts respect provides
1974
+
1975
+ [87c30c9 | Sun Jan 18 11:20:38 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1976
+
1977
+ * A bit more compact code
1978
+
1979
+ [27d7f2e | Sun Jan 18 11:18:18 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1980
+
1981
+ * Unify layout/view file lookup so layout respects wish
1982
+
1983
+ [ba91e65 | Sun Jan 18 11:02:46 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1984
+
1985
+ * Reduce code needed to setup specs
1986
+
1987
+ [f9d9ef1 | Sun Jan 18 11:02:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1988
+
1989
+ * Fixes and improvments for Helper
1990
+
1991
+ [722336e | Sun Jan 18 11:02:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1992
+
1993
+ * Make Innate::middleware less boring
1994
+
1995
+ [c8ca27e | Sun Jan 18 11:01:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
1996
+
1997
+ * Pass block to Innate::start to build your middleware
1998
+
1999
+ [2124ae4 | Sun Jan 18 11:00:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2000
+
2001
+ * Innate::Route and Innate::Rewrite behave correct now
2002
+
2003
+ [96a3674 | Sun Jan 18 10:09:02 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2004
+
2005
+ * Simplify Helper API and add some docs
2006
+
2007
+ [64420a2 | Sun Jan 18 02:26:47 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2008
+
2009
+ * Don't assign :caller
2010
+
2011
+ [12f7119 | Sat Jan 17 08:20:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2012
+
2013
+ * Add example for error handling
2014
+
2015
+ [e38b669 | Sat Jan 17 08:20:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2016
+
2017
+ * Fix error handling
2018
+
2019
+ [3bfe38c | Sat Jan 17 07:56:08 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2020
+
2021
+ * Innate::Current isn't needed for static files
2022
+
2023
+ [e9a9a03 | Sat Jan 17 07:55:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2024
+
2025
+ * Heed shadow warnings
2026
+
2027
+ [eec3639 | Sat Jan 17 07:54:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2028
+
2029
+ * More timeout on trap
2030
+
2031
+ [7a8c8f2 | Sat Jan 17 07:54:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2032
+
2033
+ * Add merging for options
2034
+
2035
+ [9ff7e94 | Sat Jan 17 07:34:58 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2036
+
2037
+ * Exception handling by recall, can you feel the power?
2038
+
2039
+ [c8e4bec | Sat Jan 17 05:12:16 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2040
+
2041
+ * Check log.color option
2042
+
2043
+ [97957b9 | Sat Jan 17 05:03:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2044
+
2045
+ * Remove Rack::Profile, there's one in rack-contrib
2046
+
2047
+ [91aab79 | Sat Jan 17 05:00:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2048
+
2049
+ * Add Response#reset
2050
+
2051
+ [2aa69fc | Sat Jan 17 05:00:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2052
+
2053
+ * Port Helper::SendFile and spec
2054
+
2055
+ [8dfca77 | Sat Jan 17 04:51:25 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2056
+
2057
+ * Don't require rubygems twice on specs
2058
+
2059
+ [db69ee3 | Sat Jan 17 04:50:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2060
+
2061
+ * Simple logging options
2062
+
2063
+ [1c81540 | Sat Jan 17 04:49:30 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2064
+
2065
+ * Minor mod
2066
+
2067
+ [fba8f58 | Sat Jan 17 04:49:01 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2068
+
2069
+ * Automatic mapping for Node, '/' if only one Node exists
2070
+
2071
+ [044b979 | Sat Jan 17 04:47:23 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2072
+
2073
+ * Innate::Cache::add method like Ramaze::Cache::add
2074
+
2075
+ [cda601a | Tue Jan 13 10:35:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2076
+
2077
+ * Clean up Node spec
2078
+
2079
+ [88866be | Tue Jan 13 10:32:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2080
+
2081
+ * Fix Session spec
2082
+
2083
+ [5974e23 | Tue Jan 13 10:32:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2084
+
2085
+ * Fix Node spec
2086
+
2087
+ [675e3bc | Tue Jan 13 10:32:05 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2088
+
2089
+ * Fix aspect spec
2090
+
2091
+ [1b9a1c8 | Tue Jan 13 10:31:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2092
+
2093
+ * Spec Request
2094
+
2095
+ [0932816 | Tue Jan 13 08:35:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2096
+
2097
+ * Port specs for Node parameters
2098
+
2099
+ [37b1392 | Tue Jan 13 08:35:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2100
+
2101
+ * Port specs for Route
2102
+
2103
+ [972e2de | Tue Jan 13 08:35:21 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2104
+
2105
+ * Reset Response when action is found
2106
+
2107
+ [58a9143 | Tue Jan 13 08:35:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2108
+
2109
+ * Further fixes of provides, only modify the path if a provide is found
2110
+
2111
+ [b87493f | Tue Jan 13 08:32:56 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2112
+
2113
+ * Fix Innate::Route and add Innate::Rewrite
2114
+
2115
+ [33be02f | Tue Jan 13 08:32:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2116
+
2117
+ * Add Innate::Response
2118
+
2119
+ [7cedab1 | Sat Jan 10 07:59:55 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2120
+
2121
+ * Add routing middleware
2122
+
2123
+ [9459903 | Fri Jan 09 08:34:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2124
+
2125
+ * Adding aspect helper as default and squeeze out some bugs
2126
+
2127
+ [170f032 | Wed Jan 07 14:01:57 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2128
+
2129
+ * Some additions and improvments to Request
2130
+
2131
+ [79979ce | Wed Jan 07 13:12:10 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2132
+
2133
+ * Don't rescue in Node::call so we don't get double backtraces
2134
+
2135
+ [48f92c1 | Wed Jan 07 13:11:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2136
+
2137
+ * render is no helper
2138
+
2139
+ [13584b8 | Wed Jan 07 13:11:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2140
+
2141
+ * LogHub can now be toggled on and off, so you don't have to modify the loggers
2142
+
2143
+ [88d1c7f | Wed Jan 07 13:10:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2144
+
2145
+ * Clean up logging a bit
2146
+
2147
+ [6036864 | Wed Jan 07 12:55:41 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2148
+
2149
+ * flash is default helper as well
2150
+
2151
+ [740015b | Wed Jan 07 12:52:34 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2152
+
2153
+ * Add Helper::Flash
2154
+
2155
+ [753ba5a | Wed Jan 07 12:52:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2156
+
2157
+ * Add Innate::Session::Flash
2158
+
2159
+ [e74d7ac | Wed Jan 07 11:09:54 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2160
+
2161
+ * Spec for Helper::Aspect
2162
+
2163
+ [f0ba7e7 | Wed Jan 07 11:09:40 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2164
+
2165
+ * Activate default helpers on inclusion of Innate::Node
2166
+
2167
+ [f1ff921 | Wed Jan 07 11:08:39 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2168
+
2169
+ * Execute Helper::Aspect hooks in Action
2170
+
2171
+ [6687cd6 | Wed Jan 07 11:03:51 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2172
+
2173
+ * Helper::Partial from Ramaze
2174
+
2175
+ [470bee9 | Tue Jan 06 12:28:18 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
2176
+
2177
+ * fixed requires and Wiki#provide to refer to erb instead of haml
2178
+
2179
+ [015034d | Tue Jan 06 12:26:53 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
2180
+
2181
+ * converted haml templated to erb
2182
+
2183
+ [a6fa567 | Mon Jan 05 14:15:42 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2184
+
2185
+ * Don't be so noisy about state
2186
+
2187
+ [44a11ec | Mon Jan 05 14:15:28 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2188
+
2189
+ * Reduce view glob
2190
+
2191
+ [2b5dad5 | Mon Jan 05 14:15:12 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2192
+
2193
+ * Action#sync_variables
2194
+
2195
+ [155d9ad | Mon Jan 05 14:14:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2196
+
2197
+ * Don't define ROOT twice
2198
+
2199
+ [bcce1e2 | Mon Jan 05 13:01:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2200
+
2201
+ * The cookie of Mock::Session may be changed
2202
+
2203
+ [8cb296b | Mon Jan 05 12:10:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2204
+
2205
+ * Better lookup so Ramaze can integrate
2206
+
2207
+ [b4f556d | Mon Jan 05 11:06:45 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2208
+
2209
+ * Action#binding as shortcut
2210
+
2211
+ [5f5602a | Mon Jan 05 10:15:03 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2212
+
2213
+ * Move all templating engines that have dependencies to Ramaze
2214
+
2215
+ [91da40d | Mon Jan 05 09:58:59 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2216
+
2217
+ * Remove done todos
2218
+
2219
+ [4e5f3f2 | Mon Jan 05 09:57:48 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2220
+
2221
+ * Update specs for new options
2222
+
2223
+ [24ef9cf | Mon Jan 05 09:57:31 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2224
+
2225
+ * Fix options usage in node spec
2226
+
2227
+ [2ce93fd | Mon Jan 05 09:57:14 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2228
+
2229
+ * Only run Options#dsl instance_eval if block given
2230
+
2231
+ [1613987 | Mon Jan 05 09:46:07 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2232
+
2233
+ * Expired cache values should not be returned
2234
+
2235
+ [9849a07 | Mon Jan 05 09:41:17 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2236
+
2237
+ * fix setup for cache spec
2238
+
2239
+ [25c5303 | Mon Jan 05 09:39:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2240
+
2241
+ * Unify requires for specs and don't use Lint
2242
+
2243
+ [353ebb2 | Mon Jan 05 09:38:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2244
+
2245
+ * Allow choice between Fiber and Threads via options
2246
+
2247
+ [a814522 | Mon Jan 05 09:38:20 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2248
+
2249
+ * Use new options syntax
2250
+
2251
+ [f8982ae | Mon Jan 05 09:32:44 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2252
+
2253
+ * Refactor sessions, lazy, efficient, and deep
2254
+
2255
+ [167e44a | Mon Jan 05 09:25:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2256
+
2257
+ * Final draft of caching implementation, should fix all problems and be ready for arbitrary backends
2258
+
2259
+ [8275eb8 | Mon Jan 05 09:24:00 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2260
+
2261
+ * Action#content_type should be public
2262
+
2263
+ [a565059 | Mon Jan 05 07:41:43 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2264
+
2265
+ * Don't spec spec/innate/cache/common.rb
2266
+
2267
+ [96caaf5 | Mon Jan 05 07:41:18 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2268
+
2269
+ * Add Options#method_missing and #dsl reopens the previous Options instance
2270
+
2271
+ [1b564e7 | Mon Jan 05 07:40:27 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2272
+
2273
+ * Require date in rakefile
2274
+
2275
+ [4fa57b7 | Sun Jan 04 09:58:50 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2276
+
2277
+ * Make trap optional
2278
+
2279
+ [26d161c | Sun Jan 04 07:56:22 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2280
+
2281
+ * Some more functionality for Options, use it
2282
+
2283
+ [3a535ea | Sat Jan 03 09:24:52 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2284
+
2285
+ * Better namespaced configuration, not as convenient or magical but much more effective
2286
+
2287
+ [8522a01 | Thu Jan 01 15:00:19 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2288
+
2289
+ * Allow deleting session data
2290
+
2291
+ [9ef3b8a | Thu Jan 01 15:00:04 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2292
+
2293
+ * Remove useless stuff from marshal store
2294
+
2295
+ [75916be | Thu Jan 01 14:59:33 UTC 2009] Michael Fellinger <m.fellinger@gmail.com>
2296
+
2297
+ * Allow setting port
2298
+
2299
+ [01fa845 | Wed Dec 31 10:51:18 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2300
+
2301
+ * the session cache defaults already, add more docs for Cache
2302
+
2303
+ [1d3f663 | Wed Dec 31 10:20:34 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2304
+
2305
+ * Unify Cache::(Marshal|YAML) and simplify specs
2306
+
2307
+ [a496e6e | Wed Dec 31 10:10:06 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2308
+
2309
+ * Clean up Cache::YAML
2310
+
2311
+ [08c9bd0 | Wed Dec 31 10:09:50 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2312
+
2313
+ * Add Cache::Marshal
2314
+
2315
+ [95ec4fc | Wed Dec 31 09:32:13 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2316
+
2317
+ * HTML templates may have .htm extension
2318
+
2319
+ [d2470a7 | Wed Dec 31 09:32:01 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2320
+
2321
+ * Add Maruku templating engine
2322
+
2323
+ [10bf350 | Wed Dec 31 09:23:13 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2324
+
2325
+ * Only things that include Node are comparable with it
2326
+
2327
+ [f41b1ea | Wed Dec 31 09:22:32 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2328
+
2329
+ * Prepare Helper so Ramaze can inject its own path and namespace
2330
+
2331
+ [940e3f6 | Wed Dec 31 09:21:54 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2332
+
2333
+ * Break up if nothing is mapped
2334
+
2335
+ [af1da32 | Wed Dec 31 09:21:12 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2336
+
2337
+ * Layout may be a special layout file, a method or a normal template
2338
+
2339
+ [68cf7c1 | Wed Dec 31 09:20:07 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2340
+
2341
+ * Move VERSION into lib/innate/version.rb
2342
+
2343
+ [e963c21 | Wed Dec 31 09:16:44 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2344
+
2345
+ * Add erb templating
2346
+
2347
+ [9fe7fea | Wed Dec 31 03:00:33 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2348
+
2349
+ * Update gemspec
2350
+
2351
+ [2f70869 | Wed Dec 31 03:00:00 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2352
+
2353
+ * Remove bin/innate from gespec
2354
+
2355
+ [10acbc0 | Wed Dec 31 02:36:57 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2356
+
2357
+ * Version 2008.12.31
2358
+
2359
+ [6e3a0d5 | Wed Dec 31 00:21:19 UTC 2008] Pistos <gitsomegrace.5.pistos@geoshell.com>
2360
+
2361
+ * Numerous minor English corrections and adjustments.
2362
+
2363
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2364
+
2365
+ [b5ea6a4 | Tue Dec 30 13:20:10 UTC 2008] Pistos <gitsomegrace.5.pistos@geoshell.com>
2366
+
2367
+ * A few minor English adjustments in README.
2368
+
2369
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2370
+
2371
+ [b85da01 | Tue Dec 30 03:02:41 UTC 2008] Pistos <gitsomegrace.5.pistos@geoshell.com>
2372
+
2373
+ * Corrected wrong statement about Innate.
2374
+
2375
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2376
+
2377
+ [464a25e | Tue Dec 30 02:58:32 UTC 2008] Pistos <gitsomegrace.5.pistos@geoshell.com>
2378
+
2379
+ * One small change in choice of words.
2380
+
2381
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2382
+
2383
+ [14e356e | Tue Dec 30 02:56:36 UTC 2008] Pistos <gitsomegrace.5.pistos@geoshell.com>
2384
+
2385
+ * Some English adjustments in README.
2386
+
2387
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2388
+
2389
+ [2848eb6 | Tue Dec 30 09:01:57 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2390
+
2391
+ * Add spec for options, not passing yet
2392
+
2393
+ [3c12d1c | Tue Dec 30 09:00:49 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2394
+
2395
+ * Better spec setup
2396
+
2397
+ [4e58286 | Tue Dec 30 09:00:30 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2398
+
2399
+ * Refactor option.rb
2400
+
2401
+ [5f56567 | Tue Dec 30 08:59:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2402
+
2403
+ * Make use of new caching in Session
2404
+
2405
+ [b4ff9c1 | Tue Dec 30 08:58:14 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2406
+
2407
+ * Small refactor regarding Innate.options and startup
2408
+
2409
+ [ad3a45f | Tue Dec 30 06:52:48 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2410
+
2411
+ * Execute update_method_arities only once every request, add docs
2412
+
2413
+ [b4d956e | Tue Dec 30 06:44:09 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2414
+
2415
+ * Correct order of ancestor lookup, make spec
2416
+
2417
+ [9e55aa6 | Tue Dec 30 06:42:17 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2418
+
2419
+ * Fix node subclassing, for now
2420
+
2421
+ [0c6526b | Tue Dec 30 02:53:33 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2422
+
2423
+ * Exapnd readme even more :)
2424
+
2425
+ [9f6e69e | Mon Dec 29 08:14:08 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2426
+
2427
+ * Update readme with future plans for ramaze
2428
+
2429
+ [9ac04bd | Sun Dec 28 11:06:13 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2430
+
2431
+ * Update readme, more to come
2432
+
2433
+ [2e7a9d4 | Sun Dec 28 09:52:24 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2434
+
2435
+ * Don't actually modify repo on release, just output needed steps
2436
+
2437
+ [c89e0ce | Sun Dec 28 09:47:44 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2438
+
2439
+ * Don't override rubys VERSION
2440
+
2441
+ [c074bc1 | Sun Dec 28 09:45:44 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2442
+
2443
+ * Really add robust_params now
2444
+
2445
+ [36157e3 | Sun Dec 28 09:42:58 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2446
+
2447
+ * Update Rakefile with release task
2448
+
2449
+ [bfc3b84 | Sun Dec 28 09:42:35 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2450
+
2451
+ * Add Request#robust_params and remove useless spec
2452
+
2453
+ [fb076fa | Sun Dec 28 09:30:28 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2454
+
2455
+ * Add Rakefile
2456
+
2457
+ [7eebd57 | Sun Dec 28 09:30:17 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2458
+
2459
+ * Add copyright
2460
+
2461
+ [770e0e7 | Sun Dec 28 08:02:22 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2462
+
2463
+ * Rename whywiki to whywiki_haml
2464
+
2465
+ [26a4093 | Sun Dec 28 07:29:47 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2466
+
2467
+ * Finally add a gemspec
2468
+
2469
+ [71f4adc | Sun Dec 28 07:29:31 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2470
+
2471
+ * Remove the favicon.svg
2472
+
2473
+ [e5a89c4 | Sun Dec 28 07:25:28 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2474
+
2475
+ * Minor update to readme
2476
+
2477
+ [93dee0b | Sat Dec 27 04:47:44 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2478
+
2479
+ * the nagoro layout uses nagoro of course
2480
+
2481
+ [2633b69 | Sat Dec 27 04:45:59 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2482
+
2483
+ * Add Nagoro templating engine
2484
+
2485
+ [93c347f | Sat Dec 27 04:45:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2486
+
2487
+ * Add Innate::sync as shortcut for Innate::STATE.sync
2488
+
2489
+ [d8299a0 | Sat Dec 27 04:45:18 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2490
+
2491
+ * Use __send__ to talk with Node
2492
+
2493
+ [aad2313 | Sat Dec 27 04:44:57 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2494
+
2495
+ * methods in Innate module are all module_function
2496
+
2497
+ [1abdaa0 | Sat Dec 27 04:44:27 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2498
+
2499
+ * Use STATE.sync to avoid nested transactions to PStore
2500
+
2501
+ [c00ad1d | Sat Dec 27 04:43:01 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2502
+
2503
+ * Add whywiki with nagoro templates
2504
+
2505
+ [ec64847 | Sat Dec 27 03:29:52 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2506
+
2507
+ * Handle empty haml templates gracefully, allow symbols to indicate layout names
2508
+
2509
+ [c1f528b | Sat Dec 27 03:29:15 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2510
+
2511
+ * Error handling explained
2512
+
2513
+ [a9f657c | Sat Dec 27 03:28:49 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2514
+
2515
+ * Don't output debugging info on startup anymore
2516
+
2517
+ [1b6ea66 | Sat Dec 27 03:28:18 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2518
+
2519
+ * Add generic spec helper
2520
+
2521
+ [ffe012d | Sat Dec 27 03:28:01 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2522
+
2523
+ * Add example/app/whywiki, 15 lines smaller than ramaze (63 LoC)
2524
+
2525
+ [5d00cf3 | Fri Dec 26 14:50:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2526
+
2527
+ * Fix bug in Helper::Link, make specs work
2528
+
2529
+ [6067687 | Fri Dec 26 14:46:55 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2530
+
2531
+ * A bit of docs for Innate::View
2532
+
2533
+ [63d2bbd | Fri Dec 26 14:46:33 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2534
+
2535
+ * Document Innate::State::Thread and Innate::State::Fiber
2536
+
2537
+ [4d8fe6d | Fri Dec 26 14:46:09 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2538
+
2539
+ * Document Innate::StateAccessor
2540
+
2541
+ [122472e | Fri Dec 26 14:45:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2542
+
2543
+ * Minor docs for session
2544
+
2545
+ [a44618a | Fri Dec 26 14:45:11 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2546
+
2547
+ * Document Innate::Request
2548
+
2549
+ [853cbb7 | Fri Dec 26 14:44:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2550
+
2551
+ * Document Innate::Node
2552
+
2553
+ [bf4240f | Fri Dec 26 14:44:08 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2554
+
2555
+ * Better Node#action_not_found
2556
+
2557
+ [ef2d77c | Fri Dec 26 14:43:35 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2558
+
2559
+ * Handle empty PATH_INFO reasonably, log failure
2560
+
2561
+ [882b793 | Fri Dec 26 14:41:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2562
+
2563
+ * Document Innate::Helper
2564
+
2565
+ [a7c3887 | Fri Dec 26 14:41:19 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2566
+
2567
+ * Document Innate::DynaMap
2568
+
2569
+ [816dad6 | Fri Dec 26 14:41:06 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2570
+
2571
+ * Document Innate::Current
2572
+
2573
+ [24bc498 | Fri Dec 26 14:40:52 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2574
+
2575
+ * Document Innate::Adapter
2576
+
2577
+ [9493582 | Fri Dec 26 14:40:07 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2578
+
2579
+ * Avoid useless variable in the thread wrapper
2580
+
2581
+ [d989063 | Fri Dec 26 14:39:27 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2582
+
2583
+ * Some improvments to StateAccessor
2584
+
2585
+ [cf47b2e | Fri Dec 26 14:37:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2586
+
2587
+ * Only include Innate::Helper, that will take care of Trinity already
2588
+
2589
+ [76cd130 | Fri Dec 26 14:36:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2590
+
2591
+ * A bit of cleanup for Action
2592
+
2593
+ [e6b16fc | Fri Dec 26 14:36:24 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2594
+
2595
+ * Add Action#content_type=
2596
+
2597
+ [f49d415 | Fri Dec 26 14:35:54 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2598
+
2599
+ * Innate::call can optionally take a parameter that indicates the cached middleware stack to use
2600
+
2601
+ [8b6caa1 | Fri Dec 26 14:35:16 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2602
+
2603
+ * Add Request#local_net? and rename Request#locales to Request#accept_language
2604
+
2605
+ [02c4df7 | Fri Dec 26 14:32:58 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2606
+
2607
+ * Don't mess up the if innate is there already
2608
+
2609
+ [bf5c96c | Fri Dec 26 14:32:28 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2610
+
2611
+ * Update README with two quick samples of usage
2612
+
2613
+ [035b03e | Fri Dec 26 14:31:57 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2614
+
2615
+ * Add new example to show how to spec
2616
+
2617
+ [bfbcb08 | Wed Dec 24 04:27:25 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2618
+
2619
+ * Give respond/respond! some default values
2620
+
2621
+ [d491aaa | Thu Dec 18 06:23:19 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2622
+
2623
+ * give middleware_compiler a handy shortcut for static directories
2624
+
2625
+ [5090bee | Sun Nov 16 11:42:43 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2626
+
2627
+ * Some basic methods for Request
2628
+
2629
+ [aeebe55 | Sun Nov 16 11:42:26 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2630
+
2631
+ * Minor refactor after a peek via reek
2632
+
2633
+ [03580f4 | Sun Nov 16 11:41:48 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2634
+
2635
+ * Remove wiki example
2636
+
2637
+ [ce29024 | Fri Oct 10 14:41:46 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2638
+
2639
+ * Only load coderay stylesheet if set
2640
+
2641
+ [eafd404 | Fri Oct 10 14:39:54 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2642
+
2643
+ * Speed up index page x3
2644
+
2645
+ [a543b33 | Fri Oct 10 14:07:27 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2646
+
2647
+ * Avoid too much debugging output
2648
+
2649
+ [7e1cf38 | Fri Oct 10 14:06:24 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2650
+
2651
+ * Support feeds in wiki
2652
+
2653
+ [78338d3 | Thu Oct 09 14:08:41 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2654
+
2655
+ * Major updates to wiki
2656
+
2657
+ [547e6f9 | Thu Oct 09 07:25:54 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2658
+
2659
+ * History and localization for wiki
2660
+
2661
+ [866c9a9 | Thu Oct 09 05:40:31 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2662
+
2663
+ * Fix code highlighting
2664
+
2665
+ [d10d3a5 | Mon Oct 06 13:49:47 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2666
+
2667
+ * Adapt wiki for new loadpath and swfs
2668
+
2669
+ [73b95f2 | Mon Oct 06 13:48:27 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2670
+
2671
+ * Adding org
2672
+
2673
+ [cb4289d | Mon Oct 06 13:46:37 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2674
+
2675
+ * Adding the screencasts
2676
+
2677
+ [864170c | Mon Oct 06 13:33:53 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2678
+
2679
+ * Minor changes to smongrel and emongrel
2680
+
2681
+ [c96c73b | Mon Oct 06 13:33:23 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2682
+
2683
+ * Fixing the link helper
2684
+
2685
+ [16b6383 | Mon Oct 06 13:32:45 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2686
+
2687
+ * Adding innate/request
2688
+
2689
+ [bc3b59d | Mon Oct 06 13:32:18 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2690
+
2691
+ * Current::action and Current::actions
2692
+
2693
+ [1a302c2 | Mon Oct 06 13:30:45 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2694
+
2695
+ * Major update to wiki, almost done.
2696
+
2697
+ [e2b07a1 | Sat Oct 04 11:56:13 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2698
+
2699
+ * Layout shouldn't invoke node method again
2700
+
2701
+ [cf743d0 | Tue Sep 30 13:17:31 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2702
+
2703
+ * Fix typo
2704
+
2705
+ [4b36ea6 | Tue Sep 30 13:15:30 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2706
+
2707
+ * Wishful thinking, now real!
2708
+
2709
+ [0d5138e | Tue Sep 30 13:15:16 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2710
+
2711
+ * Refactor of Redirect helper
2712
+
2713
+ [9a4fa66 | Tue Sep 30 13:14:29 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2714
+
2715
+ * Fix Action, method value has lower priority
2716
+
2717
+ [a8445bb | Tue Sep 30 08:13:53 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2718
+
2719
+ * Example for the new mime-type based functionality
2720
+
2721
+ [b8335aa | Tue Sep 30 08:13:30 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2722
+
2723
+ * Intelligently handle requests to *.json or *.yaml
2724
+
2725
+ [f2ea5cd | Tue Sep 30 07:11:57 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2726
+
2727
+ * Remove debugging output
2728
+
2729
+ [384306d | Tue Sep 30 07:11:25 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2730
+
2731
+ * View is a module
2732
+
2733
+ [b1b14df | Tue Sep 30 07:11:09 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2734
+
2735
+ * Incoporate wish into view lookup and simplify
2736
+
2737
+ [47f4112 | Tue Sep 30 07:10:37 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2738
+
2739
+ * custom middleware setup for wiki
2740
+
2741
+ [eb2d73b | Tue Sep 30 07:10:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2742
+
2743
+ * Wikis git instance should use Log
2744
+
2745
+ [404c879 | Mon Sep 29 17:24:37 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2746
+
2747
+ * Improve view.rb and add tenjin
2748
+
2749
+ [d647e68 | Mon Sep 29 17:23:32 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2750
+
2751
+ * Better logging
2752
+
2753
+ [6ddb623 | Mon Sep 29 17:02:43 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2754
+
2755
+ * Update readme
2756
+
2757
+ [8e2eefd | Sun Sep 28 10:28:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2758
+
2759
+ * View is a module
2760
+
2761
+ [f6fa84d | Sun Sep 28 10:27:51 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2762
+
2763
+ * Don't fail if no view dir is there, less barking
2764
+
2765
+ [97da233 | Sun Sep 28 10:27:25 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2766
+
2767
+ * Don't overwrite response.status
2768
+
2769
+ [0909c3c | Sun Sep 28 10:27:12 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2770
+
2771
+ * Remove cruft from innate.rb
2772
+
2773
+ [91e0c5a | Sun Sep 28 10:26:49 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2774
+
2775
+ * Allow custom middleware and improve setup
2776
+
2777
+ [ddb4790 | Sun Sep 28 10:24:53 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2778
+
2779
+ * Move DynaMap into its own file
2780
+
2781
+ [68be38f | Sun Sep 28 10:24:24 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2782
+
2783
+ * Add custom_middleware example
2784
+
2785
+ [9b36583 | Sun Sep 28 09:35:44 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2786
+
2787
+ * Add coderay css
2788
+
2789
+ [76fcd85 | Sun Sep 28 09:34:50 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2790
+
2791
+ * Adding innate/setup.rb as stub for the ramaze one
2792
+
2793
+ [bbde91a | Sun Sep 28 09:34:29 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2794
+
2795
+ * Extend Innate::View, add Builder
2796
+
2797
+ [7d5446b | Sun Sep 28 09:33:49 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2798
+
2799
+ * Add mutex for Thread
2800
+
2801
+ [0031baa | Sun Sep 28 09:33:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2802
+
2803
+ * Improve action lookup for templates by ext
2804
+
2805
+ [b0b4558 | Sun Sep 28 09:32:36 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2806
+
2807
+ * Add Innate.start :file => __FILE__ or :dir => dir
2808
+
2809
+ [4ed4d95 | Sun Sep 28 09:32:03 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2810
+
2811
+ * autoload for Rack::Profile
2812
+
2813
+ [ff8a776 | Sun Sep 28 09:31:47 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2814
+
2815
+ * Some refactoring in wiki
2816
+
2817
+ [9593728 | Sun Sep 28 09:31:20 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2818
+
2819
+ * Caching for git requests, major speedup in wiki
2820
+
2821
+ [4a836e1 | Sun Sep 28 09:30:58 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2822
+
2823
+ * Using coderay for wiki
2824
+
2825
+ [56d29c6 | Sat Sep 27 07:46:38 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2826
+
2827
+ * State::Thread relays errors
2828
+
2829
+ [248f854 | Sat Sep 27 07:46:23 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2830
+
2831
+ * Better Helper::Link#r
2832
+
2833
+ [c4d3f73 | Sat Sep 27 07:45:53 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2834
+
2835
+ * Improve lookup of app root
2836
+
2837
+ [4541d8b | Fri Sep 26 14:17:54 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2838
+
2839
+ * Innate::Options#to_hash
2840
+
2841
+ [5cb29d7 | Fri Sep 26 14:17:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2842
+
2843
+ * Improve DEFAULT helper lookup
2844
+
2845
+ [2dc09bd | Fri Sep 26 14:17:27 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2846
+
2847
+ * Require haml on demand
2848
+
2849
+ [e52a14f | Fri Sep 26 14:17:12 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2850
+
2851
+ * Revamp Adapter system
2852
+
2853
+ [590295e | Fri Sep 26 14:16:34 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2854
+
2855
+ * Add Innate::Log stub
2856
+
2857
+ [6bdea11 | Fri Sep 26 14:15:34 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2858
+
2859
+ * Add example/app/retro_games
2860
+
2861
+ [b846469 | Fri Sep 26 13:39:45 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2862
+
2863
+ * Add README.md
2864
+
2865
+ [5804ece | Fri Sep 26 12:49:32 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2866
+
2867
+ * Minor refactor of Action
2868
+
2869
+ [3483e0c | Fri Sep 26 12:31:11 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2870
+
2871
+ * Remove haml dependency
2872
+
2873
+ [4ac02fc | Fri Sep 26 12:28:32 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2874
+
2875
+ * Don't require the profile middleware anymore
2876
+
2877
+ [2912d04 | Fri Sep 26 12:23:10 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2878
+
2879
+ * Smarter helper system
2880
+
2881
+ * Use the new helper method in your node
2882
+ Following would include Helper::Bar, extend Helper::Foo and include
2883
+ and extend Helper::Foobar
2884
+
2885
+ class Foo
2886
+ include Innate::Node
2887
+ helper :bar, :extend => :foo, :both => :foobar
2888
+ end
2889
+
2890
+ * shipped default helpers are found and used automatically, to specify a
2891
+ default helper you can add it to Innate::Helper::DEFAULT.
2892
+ * Helper::EXPOSE is now a reference to Helper::LOOKUP, i think the name
2893
+ makes more sense, it does the usual: exposing public helper methods to
2894
+ lookup for actions.
2895
+
2896
+ [f8de255 | Sun Sep 21 14:08:03 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2897
+
2898
+ * Add example for Helper::Link
2899
+
2900
+ [e6f86ba | Sun Sep 21 14:07:36 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2901
+
2902
+ * Mods to spec for Helper::Link
2903
+
2904
+ [348f504 | Sun Sep 21 14:07:09 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2905
+
2906
+ * Mods to Helper::Link
2907
+
2908
+ [014537e | Sun Sep 21 14:06:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2909
+
2910
+ * Remove debugging output
2911
+
2912
+ [5ca101e | Sun Sep 21 14:06:11 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2913
+
2914
+ * Default helpers
2915
+
2916
+ [7a06d13 | Sun Sep 21 13:24:59 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2917
+
2918
+ * Add :secure option to Session
2919
+
2920
+ [1e7dabf | Sun Sep 21 12:58:45 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2921
+
2922
+ * Adding helper for aspect and redirect
2923
+
2924
+ [8f0a947 | Sun Sep 21 12:57:30 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2925
+
2926
+ * Catch :respond and :redirect
2927
+
2928
+ [067f96b | Sun Sep 21 12:54:48 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2929
+
2930
+ * Remove strategy.rb
2931
+
2932
+ [1a0adb9 | Sun Sep 21 12:50:34 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2933
+
2934
+ * Use Fiber on 1.9 and Thread on 1.8 with less hacks
2935
+
2936
+ [e4fe857 | Sat Sep 20 09:13:37 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2937
+
2938
+ * Adding session example
2939
+
2940
+ [1b25235 | Sat Sep 20 09:13:25 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2941
+
2942
+ * Simpler hello example
2943
+
2944
+ [5c43219 | Sat Sep 20 09:12:52 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2945
+
2946
+ * Adding session and fixing bugs
2947
+
2948
+ [5b8ad21 | Thu Sep 18 12:57:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2949
+
2950
+ * Adding Innate::Helper
2951
+
2952
+ [0a60a5b | Tue Sep 16 06:52:33 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2953
+
2954
+ * Latest 1.9 finally gives Fiber #initialize, yay!
2955
+
2956
+ [446ea5a | Tue Sep 16 04:51:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2957
+
2958
+ * Remove failed files from reloader cache
2959
+
2960
+ [c365a60 | Tue Sep 16 04:51:07 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2961
+
2962
+ * Cleanup and put MiddlewareCompiler in own file
2963
+
2964
+ [ce3b0f6 | Tue Sep 16 04:49:37 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2965
+
2966
+ * Some major updates to the wiki
2967
+
2968
+ [43fc727 | Tue Sep 16 03:22:40 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2969
+
2970
+ * Caching middleware and improve node lookup
2971
+
2972
+ * Gives us major speed boost
2973
+
2974
+ [ac83995 | Tue Sep 16 01:36:28 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2975
+
2976
+ * Improve action compilation
2977
+
2978
+ [ed1f83a | Mon Sep 15 11:17:39 UTC 2008] Michael Fellinger <m.fellinger@gmail.com>
2979
+
2980
+ * Initial commit
2981
+