rjspotter-innate 2009.06.29

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