ramaze 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (193) hide show
  1. data/Rakefile +14 -259
  2. data/bin/ramaze +52 -25
  3. data/doc/AUTHORS +6 -0
  4. data/doc/CHANGELOG +1363 -42
  5. data/doc/INSTALL +1 -1
  6. data/doc/README +48 -35
  7. data/doc/README.html +637 -0
  8. data/doc/TODO +7 -16
  9. data/doc/allison/allison.css +6 -7
  10. data/doc/allison/allison.gif +0 -0
  11. data/doc/allison/cache/STYLE +1 -2
  12. data/doc/changes.txt +3375 -0
  13. data/doc/changes.xml +3378 -0
  14. data/doc/meta/announcement.txt +47 -0
  15. data/doc/meta/configuration.txt +179 -0
  16. data/doc/meta/internals.txt +111 -0
  17. data/doc/readme_chunks/features.txt +8 -16
  18. data/doc/readme_chunks/installing.txt +7 -1
  19. data/doc/tutorial/todolist.txt +2 -3
  20. data/examples/blog/main.rb +9 -8
  21. data/examples/blog/public/styles/blog.css +132 -0
  22. data/examples/blog/src/controller.rb +14 -41
  23. data/examples/blog/src/model.rb +12 -13
  24. data/examples/blog/src/view.rb +16 -0
  25. data/examples/blog/template/edit.xhtml +19 -8
  26. data/examples/blog/template/index.xhtml +14 -22
  27. data/examples/blog/template/new.xhtml +18 -5
  28. data/examples/caching.rb +5 -8
  29. data/examples/element.rb +3 -3
  30. data/examples/hello.rb +3 -5
  31. data/examples/simple.rb +4 -7
  32. data/examples/templates/template/external.haml +8 -7
  33. data/examples/templates/template/external.mab +11 -8
  34. data/examples/templates/template_amrita2.rb +4 -4
  35. data/examples/templates/template_erubis.rb +3 -3
  36. data/examples/templates/template_ezamar.rb +1 -2
  37. data/examples/templates/template_haml.rb +24 -23
  38. data/examples/templates/template_liquid.rb +3 -1
  39. data/examples/templates/template_markaby.rb +15 -9
  40. data/examples/todolist/src/element/page.rb +1 -1
  41. data/lib/proto/conf/benchmark.yaml +6 -20
  42. data/lib/proto/conf/debug.yaml +6 -19
  43. data/lib/proto/conf/live.yaml +7 -19
  44. data/lib/proto/conf/silent.yaml +6 -16
  45. data/lib/proto/conf/stage.yaml +6 -18
  46. data/lib/proto/public/error.zmr +2 -2
  47. data/lib/ramaze.rb +34 -72
  48. data/lib/ramaze/adapter.rb +21 -18
  49. data/lib/ramaze/adapter/mongrel.rb +0 -3
  50. data/lib/ramaze/adapter/webrick.rb +6 -6
  51. data/lib/ramaze/cache/memcached.rb +3 -0
  52. data/lib/ramaze/controller.rb +227 -183
  53. data/lib/ramaze/dispatcher.rb +34 -129
  54. data/lib/ramaze/dispatcher/action.rb +28 -0
  55. data/lib/ramaze/dispatcher/error.rb +43 -0
  56. data/lib/ramaze/dispatcher/file.rb +34 -0
  57. data/lib/ramaze/global.rb +89 -48
  58. data/lib/ramaze/helper/aspect.rb +8 -6
  59. data/lib/ramaze/helper/auth.rb +3 -3
  60. data/lib/ramaze/helper/cache.rb +2 -2
  61. data/lib/ramaze/helper/file.rb +14 -0
  62. data/lib/ramaze/helper/inform.rb +36 -0
  63. data/lib/ramaze/helper/link.rb +7 -3
  64. data/lib/ramaze/helper/markaby.rb +30 -0
  65. data/lib/ramaze/helper/redirect.rb +2 -0
  66. data/lib/ramaze/inform.rb +8 -182
  67. data/lib/ramaze/inform/analogger.rb +19 -0
  68. data/lib/ramaze/inform/growl.rb +28 -0
  69. data/lib/ramaze/inform/hub.rb +26 -0
  70. data/lib/ramaze/inform/informer.rb +92 -0
  71. data/lib/ramaze/inform/informing.rb +44 -0
  72. data/lib/ramaze/inform/syslog.rb +27 -0
  73. data/lib/ramaze/inform/xosd.rb +42 -0
  74. data/lib/ramaze/snippets.rb +6 -2
  75. data/lib/ramaze/snippets/object/traits.rb +13 -1
  76. data/lib/ramaze/snippets/ramaze/autoreload.rb +58 -2
  77. data/lib/ramaze/snippets/string/color.rb +27 -0
  78. data/lib/ramaze/snippets/string/each.rb +6 -0
  79. data/lib/ramaze/snippets/struct/fill.rb +15 -0
  80. data/lib/ramaze/template/ezamar.rb +13 -22
  81. data/lib/ramaze/template/ezamar/element.rb +12 -12
  82. data/lib/ramaze/template/liquid.rb +19 -18
  83. data/lib/ramaze/template/markaby.rb +37 -58
  84. data/lib/ramaze/tool/localize.rb +128 -0
  85. data/lib/ramaze/tool/tidy.rb +51 -21
  86. data/lib/ramaze/trinity.rb +3 -3
  87. data/lib/ramaze/trinity/request.rb +41 -23
  88. data/lib/ramaze/trinity/response.rb +10 -5
  89. data/lib/ramaze/trinity/session.rb +17 -3
  90. data/lib/ramaze/version.rb +2 -2
  91. data/rake_tasks/conf.rake +56 -0
  92. data/rake_tasks/gem.rake +44 -0
  93. data/rake_tasks/maintaince.rake +187 -0
  94. data/spec/all.rb +32 -0
  95. data/spec/examples/caching.rb +19 -0
  96. data/spec/examples/element.rb +15 -0
  97. data/spec/examples/hello.rb +11 -0
  98. data/spec/examples/simple.rb +51 -0
  99. data/spec/examples/templates/template_amrita2.rb +14 -0
  100. data/spec/examples/templates/template_erubis.rb +21 -0
  101. data/spec/examples/templates/template_ezamar.rb +22 -0
  102. data/spec/examples/templates/template_haml.rb +23 -0
  103. data/spec/examples/templates/template_liquid.rb +24 -0
  104. data/spec/examples/templates/template_markaby.rb +21 -0
  105. data/spec/helper.rb +81 -0
  106. data/spec/{spec_helper_context.rb → helper/context.rb} +1 -1
  107. data/spec/helper/layout.rb +55 -0
  108. data/spec/helper/mock_http.rb +66 -0
  109. data/spec/{spec_helper_requester.rb → helper/requester.rb} +0 -6
  110. data/spec/{spec_helper_simple_http.rb → helper/simple_http.rb} +57 -57
  111. data/spec/helper/wrap.rb +193 -0
  112. data/spec/{adapter_spec.rb → ramaze/adapter.rb} +7 -5
  113. data/spec/{tc_adapter_mongrel.rb → ramaze/adapter/mongrel.rb} +2 -2
  114. data/spec/{tc_adapter_webrick.rb → ramaze/adapter/webrick.rb} +2 -2
  115. data/spec/{tc_cache.rb → ramaze/cache.rb} +16 -16
  116. data/spec/ramaze/conf/locale_de.yaml +6 -0
  117. data/spec/ramaze/conf/locale_en.yaml +6 -0
  118. data/spec/ramaze/controller.rb +184 -0
  119. data/spec/ramaze/controller/template/greet.xhtml +1 -0
  120. data/spec/ramaze/controller/template_resolving.rb +54 -0
  121. data/spec/ramaze/dependencies.rb +16 -0
  122. data/spec/{tc_element.rb → ramaze/element.rb} +21 -19
  123. data/spec/ramaze/error.rb +64 -0
  124. data/spec/{tc_gestalt.rb → ramaze/gestalt.rb} +10 -10
  125. data/spec/{tc_global.rb → ramaze/global.rb} +7 -7
  126. data/spec/{tc_helper_aspect.rb → ramaze/helper/aspect.rb} +22 -14
  127. data/spec/{tc_helper_auth.rb → ramaze/helper/auth.rb} +9 -7
  128. data/spec/{tc_helper_cache.rb → ramaze/helper/cache.rb} +14 -24
  129. data/spec/{tc_helper_feed.rb → ramaze/helper/feed.rb} +12 -12
  130. data/spec/ramaze/helper/file.rb +17 -0
  131. data/spec/{tc_helper_flash.rb → ramaze/helper/flash.rb} +16 -17
  132. data/spec/{tc_helper_form.rb → ramaze/helper/form.rb} +25 -26
  133. data/spec/{tc_helper_link.rb → ramaze/helper/link.rb} +9 -9
  134. data/spec/{tc_helper_redirect.rb → ramaze/helper/redirect.rb} +11 -10
  135. data/spec/{tc_helper_stack.rb → ramaze/helper/stack.rb} +10 -11
  136. data/spec/ramaze/inform/informer.rb +40 -0
  137. data/spec/ramaze/inform/syslog.rb +10 -0
  138. data/spec/ramaze/localize.rb +40 -0
  139. data/spec/ramaze/morpher.rb +82 -0
  140. data/spec/ramaze/params.rb +124 -0
  141. data/spec/{public → ramaze/public}/error404.xhtml +0 -0
  142. data/spec/{public → ramaze/public}/favicon.ico +0 -0
  143. data/spec/{public → ramaze/public}/ramaze.png +0 -0
  144. data/spec/{public → ramaze/public}/test_download.css +0 -0
  145. data/spec/ramaze/request.rb +129 -0
  146. data/spec/{tc_request_mongrel.rb → ramaze/request/mongrel.rb} +2 -2
  147. data/spec/{tc_request_webrick.rb → ramaze/request/webrick.rb} +1 -1
  148. data/spec/{tc_session.rb → ramaze/session.rb} +18 -18
  149. data/spec/{tc_store.rb → ramaze/store/default.rb} +10 -10
  150. data/spec/{tc_store_yaml.rb → ramaze/store/yaml.rb} +9 -9
  151. data/spec/ramaze/template.rb +86 -0
  152. data/spec/{tc_template_amrita2.rb → ramaze/template/amrita2.rb} +5 -5
  153. data/spec/{template → ramaze/template}/amrita2/data.amrita +0 -0
  154. data/spec/{template → ramaze/template}/amrita2/index.amrita +0 -0
  155. data/spec/{template → ramaze/template}/amrita2/sum.amrita +0 -0
  156. data/spec/{tc_template_erubis.rb → ramaze/template/erubis.rb} +9 -9
  157. data/spec/{template → ramaze/template}/erubis/sum.rhtml +0 -0
  158. data/spec/ramaze/template/ezamar.rb +62 -0
  159. data/spec/{template → ramaze/template}/ezamar/another/long/action.zmr +0 -0
  160. data/spec/{template → ramaze/template}/ezamar/combined.zmr +0 -0
  161. data/spec/{template → ramaze/template}/ezamar/file_only.zmr +0 -0
  162. data/spec/{template → ramaze/template}/ezamar/index.zmr +0 -0
  163. data/spec/ramaze/template/ezamar/nested.zmr +1 -0
  164. data/spec/{template → ramaze/template}/ezamar/some__long__action.zmr +0 -0
  165. data/spec/{template → ramaze/template}/ezamar/sum.zmr +0 -0
  166. data/spec/{tc_template_haml.rb → ramaze/template/haml.rb} +7 -7
  167. data/spec/{template → ramaze/template}/haml/index.haml +0 -0
  168. data/spec/{template → ramaze/template}/haml/with_vars.haml +0 -0
  169. data/spec/{tc_template_liquid.rb → ramaze/template/liquid.rb} +7 -7
  170. data/spec/{template → ramaze/template}/liquid/index.liquid +0 -0
  171. data/spec/{template → ramaze/template}/liquid/products.liquid +0 -0
  172. data/spec/ramaze/template/markaby.rb +59 -0
  173. data/spec/{template → ramaze/template}/markaby/external.mab +0 -0
  174. data/spec/{template → ramaze/template}/markaby/sum.mab +0 -0
  175. data/spec/ramaze/template/ramaze/external.test +1 -0
  176. data/spec/{tc_tidy.rb → ramaze/tidy.rb} +3 -3
  177. metadata +145 -81
  178. data/examples/blog/public/screen.css +0 -106
  179. data/examples/blog/src/element.rb +0 -58
  180. data/examples/blog/template/view.xhtml +0 -15
  181. data/examples/blog/test/tc_entry.rb +0 -18
  182. data/lib/proto/public/404.jpg +0 -0
  183. data/spec/request_tc_helper.rb +0 -135
  184. data/spec/spec_all.rb +0 -118
  185. data/spec/spec_helper.rb +0 -66
  186. data/spec/tc_controller.rb +0 -49
  187. data/spec/tc_dependencies.rb +0 -13
  188. data/spec/tc_error.rb +0 -43
  189. data/spec/tc_morpher.rb +0 -88
  190. data/spec/tc_params.rb +0 -125
  191. data/spec/tc_template_ezamar.rb +0 -64
  192. data/spec/tc_template_markaby.rb +0 -72
  193. data/spec/template/ezamar/nested.zmr +0 -1
@@ -0,0 +1,3378 @@
1
+ <changelog>
2
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511120856' local_date='Fri May 11 21:08:56 JST 2007' inverted='False' hash='20070511120856-cbc08-33eedf465edf73d19152e3d3fa4c41dcaa5f07d8.gz'>
3
+ <name>TAG 0.1.0</name>
4
+ </patch>
5
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511115521' local_date='Fri May 11 20:55:21 JST 2007' inverted='False' hash='20070511115521-cbc08-5d3507bf496acc68a7f7cbc01d4ef59e37d78866.gz'>
6
+ <name>update README with latest chunks</name>
7
+ </patch>
8
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511115209' local_date='Fri May 11 20:52:09 JST 2007' inverted='False' hash='20070511115209-cbc08-d8aca0b809ab75d5c7f82f275f5493c6e28f8a31.gz'>
9
+ <name>some patches to the rake-stuff, BASEDIR was messed up and some other things were outdated</name>
10
+ </patch>
11
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511114246' local_date='Fri May 11 20:42:46 JST 2007' inverted='False' hash='20070511114246-cbc08-4bc87966440a260f92ed7771f1344c633bb87463.gz'>
12
+ <name>remove Tidy and Localize form the Action pipeline (fix the spec and remove some spaces)</name>
13
+ </patch>
14
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070511113011' local_date='Fri May 11 20:30:11 JST 2007' inverted='False' hash='20070511113011-21a65-816d2660e537ff838509e20b79fda823a9413b34.gz'>
15
+ <name>Update localization tool</name>
16
+ </patch>
17
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511102047' local_date='Fri May 11 19:20:47 JST 2007' inverted='False' hash='20070511102047-cbc08-f922f78ad5fa165496edd90b6965a45e43957d6e.gz'>
18
+ <name>a couple of updates for the readme_chunks</name>
19
+ </patch>
20
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511081223' local_date='Fri May 11 17:12:23 JST 2007' inverted='False' hash='20070511081223-cbc08-86fd2bd1f3c1538359449d1014ada7a0769c26d2.gz'>
21
+ <name>move bl_Og to blog</name>
22
+ </patch>
23
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511071044' local_date='Fri May 11 16:10:44 JST 2007' inverted='False' hash='20070511071044-cbc08-24ff10fdd0e482e3c76c5730c0b66aa4590bad1e.gz'>
24
+ <name>remove the old blog example</name>
25
+ </patch>
26
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511070105' local_date='Fri May 11 16:01:05 JST 2007' inverted='False' hash='20070511070105-cbc08-e4e4a71542fbff15c667d2ee649c41e2375a78d4.gz'>
27
+ <name>fix a couple of bugs that the new controller stirred up, private methods are now really no actions anymore, fixing auth-helper and aspect-helper to respect that.</name>
28
+ </patch>
29
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070511062550' local_date='Fri May 11 15:25:50 JST 2007' inverted='False' hash='20070511062550-cbc08-3e369fdf5d86e2e863009e614275db22bc726f2f.gz'>
30
+ <name>update announcement</name>
31
+ </patch>
32
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070510163501' local_date='Fri May 11 01:35:01 JST 2007' inverted='False' hash='20070510163501-cbc08-31e61b6c2ba98c1b865f5bc460559bd4c084dbf8.gz'>
33
+ <name>remove some spelling-mistakes in announcement</name>
34
+ </patch>
35
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070510054725' local_date='Thu May 10 14:47:25 JST 2007' inverted='False' hash='20070510054725-cbc08-f0836c4fdb222f79c524b3324eb12e6656b86607.gz'>
36
+ <name>don&apos;t use an additional .reverse for the session-key</name>
37
+ </patch>
38
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070510054539' local_date='Thu May 10 14:45:39 JST 2007' inverted='False' hash='20070510054539-cbc08-225e703924108b1f05ae6f24b24c823e450e0a4b.gz'>
39
+ <name>Informer again, flush the output if possible, that makes it possible to tail -f if you pipe to a logfile</name>
40
+ </patch>
41
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070510054110' local_date='Thu May 10 14:41:10 JST 2007' inverted='False' hash='20070510054110-cbc08-1c3b34a6f7201af1af9f386471fd85cadc2bd3df.gz'>
42
+ <name>check for .tty? when deciding whether we should colorize or not.</name>
43
+ </patch>
44
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070510053034' local_date='Thu May 10 14:30:34 JST 2007' inverted='False' hash='20070510053034-cbc08-f25e0cf6395bfca4bad883c34a1591999f7c3a5e.gz'>
45
+ <name>intelligent logging of errors in Dispatcher::Error, omitting repeated backtraces</name>
46
+ </patch>
47
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070509105318' local_date='Wed May 9 19:53:18 JST 2007' inverted='False' hash='20070509105318-21a65-d85b29e68e7a3aec0c597ee14ee019c425f6d754.gz'>
48
+ <name>Change Rs() to use Controller.current instead of self</name>
49
+ </patch>
50
+ <patch author='m.fellinger@gmail.com' date='20070509104254' local_date='Wed May 9 19:42:54 JST 2007' inverted='False' hash='20070509104254-40155-c9e5a4085b1c0ff5356d7f75f45c38cf0dd5ac54.gz'>
51
+ <name>add Controller::current and an experimental spec of how to do render_partial</name>
52
+ </patch>
53
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509103136' local_date='Wed May 9 19:31:36 JST 2007' inverted='False' hash='20070509103136-cbc08-6368c60b8db5086ed05806a354bcbae7cd8f76d8.gz'>
54
+ <name>fixing Controller::template_paths and Controller::resolve_template</name>
55
+ </patch>
56
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509095050' local_date='Wed May 9 18:50:50 JST 2007' inverted='False' hash='20070509095050-cbc08-b6f3fee43d8c4448a402134e0a46e0329fc71885.gz'>
57
+ <name>tons of small fixes and improvments, Inform.debug won&apos;t inspect anymore if it&apos;s already a string, proper error-handling with sweet 500&apos;s for the templating and specific 404s for not found controller or action, improved caching in Controller, fixed some bugs in the AspectHelper, fixed the cache-example spec, activated the error-specs again, added some (c), gave the Action Struct a nicer look.....</name>
58
+ </patch>
59
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509052604' local_date='Wed May 9 14:26:04 JST 2007' inverted='False' hash='20070509052604-cbc08-997d05a885c3fe71967ea6a5cfe4151deb76b04d.gz'>
60
+ <name>add and use snippets/struct/fill</name>
61
+ </patch>
62
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509050152' local_date='Wed May 9 14:01:52 JST 2007' inverted='False' hash='20070509050152-cbc08-75255fc602e45b44c02b3658ef378116594bc6e6.gz'>
63
+ <name>improve pattern_cache for Controller</name>
64
+ </patch>
65
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509041620' local_date='Wed May 9 13:16:20 JST 2007' inverted='False' hash='20070509041620-cbc08-eb157a5f3a82f2389e3b0387cdf2f77977a9a84c.gz'>
66
+ <name>make the caching spec a bit more robust</name>
67
+ </patch>
68
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035948' local_date='Wed May 9 12:59:48 JST 2007' inverted='False' hash='20070509035948-cbc08-8774c31b73b209e422f0c743e32c4fa72a20fef7.gz'>
69
+ <name>fixing some weirdness and verbosity</name>
70
+ </patch>
71
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070508071400' local_date='Tue May 8 16:14:00 JST 2007' inverted='False' hash='20070508071400-cbc08-35001ab5fad656096c39c41163399fe69b0a24c7.gz'>
72
+ <name>add workaround if we run specs and don&apos;t want their modules in our controller</name>
73
+ </patch>
74
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035315' local_date='Wed May 9 12:53:15 JST 2007' inverted='False' hash='20070509035315-cbc08-f293041002f1ce6d8fa14393cd3b1506be4ce42b.gz'>
75
+ <name>disable two specs so we pass all specs - these are about error-handling but right now it&apos;s not clear what the distinction between 404 and 500 is anymore.</name>
76
+ </patch>
77
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035220' local_date='Wed May 9 12:52:20 JST 2007' inverted='False' hash='20070509035220-cbc08-f8df3a2eba7c50231f810401052542ff1bd56075.gz'>
78
+ <name>some minor changes</name>
79
+ </patch>
80
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035111' local_date='Wed May 9 12:51:11 JST 2007' inverted='False' hash='20070509035111-cbc08-f230d0e2eea41a960d38195105e545b7b6f56e64.gz'>
81
+ <name>big extension of spec/ramaze/controller</name>
82
+ </patch>
83
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035051' local_date='Wed May 9 12:50:51 JST 2007' inverted='False' hash='20070509035051-cbc08-d17b21b207d61954ffa334812564da385af49a04.gz'>
84
+ <name>add ramaze/controller to the spec layout again</name>
85
+ </patch>
86
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509035013' local_date='Wed May 9 12:50:13 JST 2007' inverted='False' hash='20070509035013-cbc08-5030c61c5b029f7ba30d67814f0393db45ce6eb8.gz'>
87
+ <name>fixing some spaces</name>
88
+ </patch>
89
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034953' local_date='Wed May 9 12:49:53 JST 2007' inverted='False' hash='20070509034953-cbc08-3d225f10908d7012c96c3dfff57e1a6fea7b26f5.gz'>
90
+ <name>include the spec dir to the fix-end-spaces task</name>
91
+ </patch>
92
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034817' local_date='Wed May 9 12:48:17 JST 2007' inverted='False' hash='20070509034817-cbc08-d85ee1679f0a25c3507e0b79ebe03f1550c6fd29.gz'>
93
+ <name>fix/extend the template_resolving spec</name>
94
+ </patch>
95
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034732' local_date='Wed May 9 12:47:32 JST 2007' inverted='False' hash='20070509034732-cbc08-6973f63fbe820569167f3e85fd78af848198bba3.gz'>
96
+ <name>add some modules to ignore as actions in the spec/helper setup</name>
97
+ </patch>
98
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034638' local_date='Wed May 9 12:46:38 JST 2007' inverted='False' hash='20070509034638-cbc08-336ebcb1caa5d4cf0d534ec26c461571402f77c3.gz'>
99
+ <name>fix template/ezamar file-lookup is done for it, no need to do it again</name>
100
+ </patch>
101
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034624' local_date='Wed May 9 12:46:24 JST 2007' inverted='False' hash='20070509034624-cbc08-d83858fe8f579df4229cfb02c071e09e93abb425.gz'>
102
+ <name>fix helper/aspect for the new Controller</name>
103
+ </patch>
104
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034540' local_date='Wed May 9 12:45:40 JST 2007' inverted='False' hash='20070509034540-cbc08-407d2974a4b071c0004f900fd3e898daeeb908c4.gz'>
105
+ <name>better handling of Dispatcher::File - we should cache the lookup-paths</name>
106
+ </patch>
107
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034522' local_date='Wed May 9 12:45:22 JST 2007' inverted='False' hash='20070509034522-cbc08-abe864e95f300663fe1eb152d6e645a3f8c53309.gz'>
108
+ <name>let the Dispatcher::Error respect Global.error_page</name>
109
+ </patch>
110
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034447' local_date='Wed May 9 12:44:47 JST 2007' inverted='False' hash='20070509034447-cbc08-402266b76c8b02e882ac4218ea1cf30a820b82d9.gz'>
111
+ <name>90% rewrite of controller/action/template lookup in Controller</name>
112
+ </patch>
113
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034316' local_date='Wed May 9 12:43:16 JST 2007' inverted='False' hash='20070509034316-cbc08-f760c27afe9b1e9080ca302cc5b8680361860c9a.gz'>
114
+ <name>move Global.controllers setup into the DEFAULT of Global</name>
115
+ </patch>
116
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034128' local_date='Wed May 9 12:41:28 JST 2007' inverted='False' hash='20070509034128-cbc08-e383dda591fe6cf08c20e351ba12004dc969d42a.gz'>
117
+ <name>add the Action Struct, nothing fancy but it should act from now on as container for actions ramaze-wide, most likely we&apos;ll extend it with binding and optional controller, it only propagates inside controller.rb and helper/aspect.rb atm</name>
118
+ </patch>
119
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070509034117' local_date='Wed May 9 12:41:17 JST 2007' inverted='False' hash='20070509034117-cbc08-25a952848e721069f446cc4547abaaefffcb0f1e.gz'>
120
+ <name>remove the proto/public/404.jpg we cannot distribute something that doesn&apos;t belong to us.</name>
121
+ </patch>
122
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070508103116' local_date='Tue May 8 19:31:16 JST 2007' inverted='False' hash='20070508103116-21a65-9d5037b77ed0c1f6be01c9fb400a90612db5c086.gz'>
123
+ <name>Add &apos;template resolving&apos; controller spec</name>
124
+ </patch>
125
+ <patch author='m.fellinger@gmail.com' date='20070508070058' local_date='Tue May 8 16:00:58 JST 2007' inverted='False' hash='20070508070058-40155-8b04a608514ce13fe7739d23d7390723881bdf1d.gz'>
126
+ <name>some small updates on the previous patch</name>
127
+ </patch>
128
+ <patch author='clive@crous.co.za' date='20070507174600' local_date='Tue May 8 02:46:00 JST 2007' inverted='False' hash='20070507174600-c370f-5f9182f7367fb9bf29bb30cbb21d195ddfa3b655.gz'>
129
+ <name>Add a few specs for the base ramaze template class</name>
130
+ </patch>
131
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070506100846' local_date='Sun May 6 19:08:46 JST 2007' inverted='False' hash='20070506100846-cbc08-6044b9c23a3575e0b9724a33513ef53a702eecbd.gz'>
132
+ <name>doc and typo in bl_Og/main.rb</name>
133
+ </patch>
134
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070505233256' local_date='Sun May 6 08:32:56 JST 2007' inverted='False' hash='20070505233256-cbc08-51667640b9fdb05469928eb55ac26c0ff1f85934.gz'>
135
+ <name>huge patch consisting of 171 hunks that provide huge improvments both to ramazes core and the whole spec-system, which is now mock-based</name>
136
+ </patch>
137
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070505232237' local_date='Sun May 6 08:22:37 JST 2007' inverted='False' hash='20070505232237-cbc08-06aaa248f9c76201b1321fd25564ddd75358cef4.gz'>
138
+ <name>fixing the template_root for the example templates</name>
139
+ </patch>
140
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070505202414' local_date='Sun May 6 05:24:14 JST 2007' inverted='False' hash='20070505202414-cbc08-658f3b6a3f0f221cb7fd464b55c77edfec5fab1a.gz'>
141
+ <name>make some helper-methods private</name>
142
+ </patch>
143
+ <patch author='m.fellinger@gmail.com' date='20070505195606' local_date='Sun May 6 04:56:06 JST 2007' inverted='False' hash='20070505195606-40155-919c51db7011d2c022fdd9241ce70b6a4609d34c.gz'>
144
+ <name>make bin/ramaze compatible to ruby1.9</name>
145
+ </patch>
146
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070505092631' local_date='Sat May 5 18:26:31 JST 2007' inverted='False' hash='20070505092631-cbc08-80fe601cc8bcd396379670309157fc811bcb98cb.gz'>
147
+ <name>clean files of the SpecLayout in a seperate step</name>
148
+ </patch>
149
+ <patch author='m.fellinger@gmail.com' date='20070504161401' local_date='Sat May 5 01:14:01 JST 2007' inverted='False' hash='20070504161401-40155-a5e39f3b409087fe018633e67385d1772297ff17.gz'>
150
+ <name>add example/bl_Og from entropy</name>
151
+ </patch>
152
+ <patch author='clive@crous.co.za' date='20070504120241' local_date='Fri May 4 21:02:41 JST 2007' inverted='False' hash='20070504120241-c370f-1c3288d443ea146163b03570e64fe850b6b4bbb7.gz'>
153
+ <name>Add a spec for testing Markaby links</name>
154
+ </patch>
155
+ <patch author='clive@crous.co.za' date='20070504114031' local_date='Fri May 4 20:40:31 JST 2007' inverted='False' hash='20070504114031-c370f-7d850cf0409e3b1dc0a8cdfd07666e9d97cd3d0b.gz'>
156
+ <name>Add my surname</name>
157
+ </patch>
158
+ <patch author='m.fellinger@gmail.com' date='20070504080416' local_date='Fri May 4 17:04:16 JST 2007' inverted='False' hash='20070504080416-40155-1282a1c1029a61b0756f6bcb7206fefa894db62b.gz'>
159
+ <name>improving performance in controller lookup</name>
160
+ </patch>
161
+ <patch author='m.fellinger@gmail.com' date='20070504064002' local_date='Fri May 4 15:40:02 JST 2007' inverted='False' hash='20070504064002-40155-16eebfcec826e1513769fde90519007985c0aad1.gz'>
162
+ <name>remove special handling of action &apos;error&apos;, it&apos;s not needed anymore</name>
163
+ </patch>
164
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503193711' local_date='Fri May 4 04:37:11 JST 2007' inverted='False' hash='20070503193711-cbc08-b64b659e9e0b847fb954b60d208a6789c826371b.gz'>
165
+ <name>split up the Rakefile and put parts into rake_tasks</name>
166
+ </patch>
167
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503192546' local_date='Fri May 4 04:25:46 JST 2007' inverted='False' hash='20070503192546-cbc08-29a11b9c93deffc1bd05cfe2d17209e33c00b74d.gz'>
168
+ <name>add the rake authors task that generates the doc/AUTHORS</name>
169
+ </patch>
170
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503185306' local_date='Fri May 4 03:53:06 JST 2007' inverted='False' hash='20070503185306-cbc08-138a44b446a01884caeffbebe17245bbbeb180b8.gz'>
171
+ <name>add the template specs to the default specs</name>
172
+ </patch>
173
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503185136' local_date='Fri May 4 03:51:36 JST 2007' inverted='False' hash='20070503185136-cbc08-cfd523fa4185ced9c78dc9e0bd6bb9141e749175.gz'>
174
+ <name>get rid of the failures we sometimes get for webrick by explicit require</name>
175
+ </patch>
176
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503184800' local_date='Fri May 4 03:48:00 JST 2007' inverted='False' hash='20070503184800-cbc08-13e26944b60ce783bfc148cba2700d310ccedc93.gz'>
177
+ <name>fixing extensions lookup order, it doesn&apos;t allow much modification yet, but should work for most common cases</name>
178
+ </patch>
179
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503184510' local_date='Fri May 4 03:45:10 JST 2007' inverted='False' hash='20070503184510-cbc08-c8c07c40af945c6925e10eb9a4fc92fba88f1fbb.gz'>
180
+ <name>fix the markaby example, &apos;this&apos; should be a symbol</name>
181
+ </patch>
182
+ <patch author='Michael Fellinger &lt;m.fellinger@gmail.com&gt;' date='20070503184247' local_date='Fri May 4 03:42:47 JST 2007' inverted='False' hash='20070503184247-cbc08-a15b3b344eec58c686a76ba28858af37f4442082.gz'>
183
+ <name>remove the old template from the haml-example</name>
184
+ </patch>
185
+ <patch author='m.fellinger@gmail.com' date='20070503174719' local_date='Fri May 4 02:47:19 JST 2007' inverted='False' hash='20070503174719-40155-c377afea700ac3a36ee2a11173cdbf419f64a9e1.gz'>
186
+ <name>update dependencies, rspec now 0.9.1</name>
187
+ </patch>
188
+ <patch author='m.fellinger@gmail.com' date='20070503173825' local_date='Fri May 4 02:38:25 JST 2007' inverted='False' hash='20070503173825-40155-5c02b40835e6a945f97b1d1de2dba536c710600a.gz'>
189
+ <name>fixing the template examples and add specs</name>
190
+ </patch>
191
+ <patch author='m.fellinger@gmail.com' date='20070503161850' local_date='Fri May 4 01:18:50 JST 2007' inverted='False' hash='20070503161850-40155-414b00630484e049db7ef6271a20b85dfabcd7e0.gz'>
192
+ <name>remove old stuff from Template::Markaby</name>
193
+ </patch>
194
+ <patch author='m.fellinger@gmail.com' date='20070503161452' local_date='Fri May 4 01:14:52 JST 2007' inverted='False' hash='20070503161452-40155-4e50cbb4778dc5fc8f8ea495955317c1f6f3db65.gz'>
195
+ <name>fixing instances-variable passing for markaby</name>
196
+ </patch>
197
+ <patch author='m.fellinger@gmail.com' date='20070503160129' local_date='Fri May 4 01:01:29 JST 2007' inverted='False' hash='20070503160129-40155-0bfc5d2849001f00a02aff985ae83b47b112dfdf.gz'>
198
+ <name>remove some of the debugging-code from markaby</name>
199
+ </patch>
200
+ <patch author='m.fellinger@gmail.com' date='20070503155701' local_date='Fri May 4 00:57:01 JST 2007' inverted='False' hash='20070503155701-40155-c878cb223a4de8ad2ab39191d27c8b7bddc79f98.gz'>
201
+ <name>fix automapping</name>
202
+ </patch>
203
+ <patch author='m.fellinger@gmail.com' date='20070502060942' local_date='Wed May 2 15:09:42 JST 2007' inverted='False' hash='20070502060942-40155-13835d071feb573c5fa98a88a8fedb8f9debba0a.gz'>
204
+ <name>update proto configs</name>
205
+ </patch>
206
+ <patch author='m.fellinger@gmail.com' date='20070502165624' local_date='Thu May 3 01:56:24 JST 2007' inverted='False' hash='20070502165624-40155-d980704923c0697e4c70c7081d1c0bac7e14572c.gz'>
207
+ <name>fixing the markaby example</name>
208
+ </patch>
209
+ <patch author='m.fellinger@gmail.com' date='20070501111637' local_date='Tue May 1 20:16:37 JST 2007' inverted='False' hash='20070501111637-40155-76bfd121580fd3baa13b3b09bc500ed4cdef3459.gz'>
210
+ <name>update spec/dependencies to include syntax</name>
211
+ </patch>
212
+ <patch author='m.fellinger@gmail.com' date='20070501111447' local_date='Tue May 1 20:14:47 JST 2007' inverted='False' hash='20070501111447-40155-390903b365cfb000a7b10a4686a0bb38632f1963.gz'>
213
+ <name>exit specs if rspec is &lt; 0.9.0</name>
214
+ </patch>
215
+ <patch author='m.fellinger@gmail.com' date='20070501110150' local_date='Tue May 1 20:01:50 JST 2007' inverted='False' hash='20070501110150-40155-d75d953b9a247da95dbc24dcc280c19ff0c29d2b.gz'>
216
+ <name>add spec/helper/layout and use it in spec/all - this is hopefully the last in a series of refactorings for the spec-framework</name>
217
+ </patch>
218
+ <patch author='m.fellinger@gmail.com' date='20070501110017' local_date='Tue May 1 20:00:17 JST 2007' inverted='False' hash='20070501110017-40155-319350241e8beaa5f27f8db28baaa64d3af8c410.gz'>
219
+ <name>add spec for inform/informer and inform/syslog</name>
220
+ </patch>
221
+ <patch author='m.fellinger@gmail.com' date='20070501093610' local_date='Tue May 1 18:36:10 JST 2007' inverted='False' hash='20070501093610-40155-8745dad5902d7b60687a1bd7eb30fd342bba23dd.gz'>
222
+ <name>update dependency-versions for gemspec</name>
223
+ </patch>
224
+ <patch author='m.fellinger@gmail.com' date='20070501085555' local_date='Tue May 1 17:55:55 JST 2007' inverted='False' hash='20070501085555-40155-21089ecea88fd2c1919225b01c905315b7705c7c.gz'>
225
+ <name>convert specs from 0.8.x to 0.9</name>
226
+ </patch>
227
+ <patch author='m.fellinger@gmail.com' date='20070501082533' local_date='Tue May 1 17:25:33 JST 2007' inverted='False' hash='20070501082533-40155-725f0bee50dbcd964c856668e026fe9038bc17da.gz'>
228
+ <name>update global.rb for ruby1.9</name>
229
+ </patch>
230
+ <patch author='m.fellinger@gmail.com' date='20070501070900' local_date='Tue May 1 16:09:00 JST 2007' inverted='False' hash='20070501070900-40155-e6f5faef0f966d19da76b965800565b115b11673.gz'>
231
+ <name>update spec/all into a less hackish and easier configurable design, running all specs including examples</name>
232
+ </patch>
233
+ <patch author='m.fellinger@gmail.com' date='20070501055639' local_date='Tue May 1 14:56:39 JST 2007' inverted='False' hash='20070501055639-40155-e104e24df197f9e47bbdc68b19ff9166afff604f.gz'>
234
+ <name>add helpers to spec/all</name>
235
+ </patch>
236
+ <patch author='m.fellinger@gmail.com' date='20070501050524' local_date='Tue May 1 14:05:24 JST 2007' inverted='False' hash='20070501050524-40155-cd0f62d614a9692c5aadffcafed6ae60c862bc13.gz'>
237
+ <name>add spec for FileHelper</name>
238
+ </patch>
239
+ <patch author='m.fellinger@gmail.com' date='20070501050437' local_date='Tue May 1 14:04:37 JST 2007' inverted='False' hash='20070501050437-40155-cece607298bffc9d679210df5b85e2ff85c27fdb.gz'>
240
+ <name>add (c) to FileHelper</name>
241
+ </patch>
242
+ <patch author='m.fellinger@gmail.com' date='20070501050339' local_date='Tue May 1 14:03:39 JST 2007' inverted='False' hash='20070501050339-40155-e9cce691e377280c44de3083f5de5403aec8c0ca.gz'>
243
+ <name>updating Rakefile to add a newline after (c)</name>
244
+ </patch>
245
+ <patch author='m.fellinger@gmail.com' date='20070501045714' local_date='Tue May 1 13:57:14 JST 2007' inverted='False' hash='20070501045714-40155-b9d1d691d348b23fb3077b825774647a3ab3f91a.gz'>
246
+ <name>adding specs for a couple of the simple examples</name>
247
+ </patch>
248
+ <patch author='m.fellinger@gmail.com' date='20070430160656' local_date='Tue May 1 01:06:56 JST 2007' inverted='False' hash='20070430160656-40155-5984193cc923b7d7a375591840bdb7a00a16ea46.gz'>
249
+ <name>adding FileHelper, no specs for it yet but added it to default-helpers</name>
250
+ </patch>
251
+ <patch author='m.fellinger@gmail.com' date='20070430160505' local_date='Tue May 1 01:05:05 JST 2007' inverted='False' hash='20070430160505-40155-65c9cfc136329f1513df305ed1458ad33320c90f.gz'>
252
+ <name>add Controller::map to make the &apos;trait :map =&gt; &quot;/foo&quot;&apos; nicer, use it like: &apos;map &quot;/foo&quot;, &quot;/bar&quot;&apos;</name>
253
+ </patch>
254
+ <patch author='m.fellinger@gmail.com' date='20070430160250' local_date='Tue May 1 01:02:50 JST 2007' inverted='False' hash='20070430160250-40155-f166fb556558f842fce9e8fcaaef4a6fd03ca92d.gz'>
255
+ <name>adding some startup-information about controllers</name>
256
+ </patch>
257
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070429133116' local_date='Sun Apr 29 22:31:16 JST 2007' inverted='False' hash='20070429133116-21a65-a712f9e0b9789e1a1b807289c5175ead6fb10e27.gz'>
258
+ <name>small fixes to loggers</name>
259
+ </patch>
260
+ <patch author='m.fellinger@gmail.com' date='20070429103815' local_date='Sun Apr 29 19:38:15 JST 2007' inverted='False' hash='20070429103815-40155-9eb172cb4696a9943c446b8c7b797c7ec457a1a4.gz'>
261
+ <name>add the missing helper/markaby</name>
262
+ </patch>
263
+ <patch author='m.fellinger@gmail.com' date='20070429103658' local_date='Sun Apr 29 19:36:58 JST 2007' inverted='False' hash='20070429103658-40155-56387bd226937838d3797d6f28f8b2d32bb08ae4.gz'>
264
+ <name>minor rewrite of Template::Markaby and its spec</name>
265
+ </patch>
266
+ <patch author='m.fellinger@gmail.com' date='20070429103537' local_date='Sun Apr 29 19:35:37 JST 2007' inverted='False' hash='20070429103537-40155-b25c6bc465334b8edc7b1eacbf2c07a37e6cc62a.gz'>
267
+ <name>some modifications to make LinkHelper work with markaby, it&apos;s a bit ugly right now...</name>
268
+ </patch>
269
+ <patch author='m.fellinger@gmail.com' date='20070429103321' local_date='Sun Apr 29 19:33:21 JST 2007' inverted='False' hash='20070429103321-40155-a7cdfd9f3e626eea87b8b120ac8281f933edce5c.gz'>
270
+ <name>this improves the template-lookup and general performance of Controller, file-templates can now be handled by different engines based on the extension, if unknown or method-only the trait takes over. also replacing some ancestral_traits with more specific versiosn of class_trait/trait</name>
271
+ </patch>
272
+ <patch author='m.fellinger@gmail.com' date='20070429103208' local_date='Sun Apr 29 19:32:08 JST 2007' inverted='False' hash='20070429103208-40155-c0e7e24d0474167de9e339957c8f1ad23f99decd.gz'>
273
+ <name>improving example for markaby a bit, it&apos;s not working yet though, have to talk with the markaby-folks</name>
274
+ </patch>
275
+ <patch author='m.fellinger@gmail.com' date='20070429094911' local_date='Sun Apr 29 18:49:11 JST 2007' inverted='False' hash='20070429094911-40155-f70d5adb58c25385f1d3c17d2ee9ee01e3396523.gz'>
276
+ <name>fixing some (c)s</name>
277
+ </patch>
278
+ <patch author='clive@crous.co.za' date='20070427081042' local_date='Fri Apr 27 17:10:42 JST 2007' inverted='False' hash='20070427081042-c370f-bd8880c29b019b48978bcdcb55bec0aee56caa30.gz'>
279
+ <name>use &apos;--partial&apos; for darcs get</name>
280
+ </patch>
281
+ <patch author='m.fellinger@gmail.com' date='20070427173331' local_date='Sat Apr 28 02:33:31 JST 2007' inverted='False' hash='20070427173331-40155-fb128833db88184c5854deac445807d464ebe85c.gz'>
282
+ <name>putting Ramaze::Inform assignment into Global.setup again</name>
283
+ </patch>
284
+ <patch author='m.fellinger@gmail.com' date='20070427131418' local_date='Fri Apr 27 22:14:18 JST 2007' inverted='False' hash='20070427131418-40155-7866cf0f2c1cc9b1a9db0a8006d96102b98df41f.gz'>
285
+ <name>move checking for automap into Controller</name>
286
+ </patch>
287
+ <patch author='m.fellinger@gmail.com' date='20070427131224' local_date='Fri Apr 27 22:12:24 JST 2007' inverted='False' hash='20070427131224-40155-dfa0bb43b4ae6b98a8e93bb28446313ae9d099c1.gz'>
288
+ <name>huge refactoring of logging, this needs extensive review</name>
289
+ </patch>
290
+ <patch author='m.fellinger@gmail.com' date='20070427125138' local_date='Fri Apr 27 21:51:38 JST 2007' inverted='False' hash='20070427125138-40155-2cda96d6a48fda92174621eb442c432653e8f629.gz'>
291
+ <name>add map for examples/hello as well</name>
292
+ </patch>
293
+ <patch author='m.fellinger@gmail.com' date='20070427124949' local_date='Fri Apr 27 21:49:49 JST 2007' inverted='False' hash='20070427124949-40155-2c9ad030e9fc9f53f027c8ded822fed278805a6c.gz'>
294
+ <name>fixing examples/element - we need mappings now</name>
295
+ </patch>
296
+ <patch author='m.fellinger@gmail.com' date='20070427124822' local_date='Fri Apr 27 21:48:22 JST 2007' inverted='False' hash='20070427124822-40155-5ff1db606768456a6c7d30cf3b9cbb3f78a81ef5.gz'>
297
+ <name>fixing a non-critical behaviour where Ezamar would throw an error if it cannot find a template but an action is there.</name>
298
+ </patch>
299
+ <patch author='m.fellinger@gmail.com' date='20070427113537' local_date='Fri Apr 27 20:35:37 JST 2007' inverted='False' hash='20070427113537-40155-f0352409d50788ac8113cd4ae5296c41c06a161a.gz'>
300
+ <name>adding Object#class_trait for better lookup of traits defined in the class of the current instance</name>
301
+ </patch>
302
+ <patch author='m.fellinger@gmail.com' date='20070426135524' local_date='Thu Apr 26 22:55:24 JST 2007' inverted='False' hash='20070426135524-40155-b0b792e7673f60a68c7e2fc7cada442e8998b978.gz'>
303
+ <name>rewrite of notification_hub and xosd</name>
304
+ </patch>
305
+ <patch author='m.fellinger@gmail.com' date='20070426123536' local_date='Thu Apr 26 21:35:36 JST 2007' inverted='False' hash='20070426123536-40155-5b05d7f335f70d9b7a772a6784de38f3cef8abb5.gz'>
306
+ <name>removing the spaces that kashia introduced so nice in the last patch</name>
307
+ </patch>
308
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070426122834' local_date='Thu Apr 26 21:28:34 JST 2007' inverted='False' hash='20070426122834-21a65-b498bd8f067ab3b58473bafb6a32e129facd2fe1.gz'>
309
+ <name>Add NotificationHub, Growl, Xosd Loggers</name>
310
+ <comment>This is a preliminary patch, especially the Xosd is not tested.</comment>
311
+ </patch>
312
+ <patch author='m.fellinger@gmail.com' date='20070424233056' local_date='Wed Apr 25 08:30:56 JST 2007' inverted='False' hash='20070424233056-40155-ea24f864f17f2a468df7fb9cbd9fd2f3ee854ff4.gz'>
313
+ <name>better report about errors in the ezamar pipeline, please note that the browser will still show &apos;no such action&apos;, but the console will inform you about all real errors (this has to improve further)</name>
314
+ </patch>
315
+ <patch author='m.fellinger@gmail.com' date='20070424232935' local_date='Wed Apr 25 08:29:35 JST 2007' inverted='False' hash='20070424232935-40155-c25db93d2de90280fddd478e7ec417d82f4b0664.gz'>
316
+ <name>little change in blog example</name>
317
+ </patch>
318
+ <patch author='clive@crous.co.za' date='20070424145429' local_date='Tue Apr 24 23:54:29 JST 2007' inverted='False' hash='20070424145429-c370f-ff9d8b5218ab8d7673a680b4fcfba1d20596aed4.gz'>
319
+ <name>Add a response message for deleting &quot;no such entry&quot; in the blog example</name>
320
+ </patch>
321
+ <patch author='clive@crous.co.za' date='20070424143854' local_date='Tue Apr 24 23:38:54 JST 2007' inverted='False' hash='20070424143854-c370f-3f32331e555f2dac7f249f6931664d0c67bc56d0.gz'>
322
+ <name>session result message is by id instead of class in the blog example, and disappears after 1.5 seconds</name>
323
+ </patch>
324
+ <patch author='clive@crous.co.za' date='20070424134105' local_date='Tue Apr 24 22:41:05 JST 2007' inverted='False' hash='20070424134105-c370f-5ef950293fecd0da59cbec599627b3e496009ca3.gz'>
325
+ <name>emphasise titles displayed within results for the blog example</name>
326
+ </patch>
327
+ <patch author='clive@crous.co.za' date='20070424132956' local_date='Tue Apr 24 22:29:56 JST 2007' inverted='False' hash='20070424132956-c370f-a99cb018c77b1a2919205510f77ce79b2ff13638.gz'>
328
+ <name>Show session result if applicable</name>
329
+ </patch>
330
+ <patch author='clive@crous.co.za' date='20070424125733' local_date='Tue Apr 24 21:57:33 JST 2007' inverted='False' hash='20070424125733-c370f-0da36eb899b1bbdd20fe875cc983228a32884bbc.gz'>
331
+ <name>Replace all references to oid with eid in the blog example.</name>
332
+ </patch>
333
+ <patch author='m.fellinger@gmail.com' date='20070424162300' local_date='Wed Apr 25 01:23:00 JST 2007' inverted='False' hash='20070424162300-40155-d1bc85a5590c9f63c097b4a54dd98185b46151df.gz'>
334
+ <name>limit sessions to 1000 per IP, also makes inspecting ObjectSpace easier</name>
335
+ </patch>
336
+ <patch author='m.fellinger@gmail.com' date='20070423225508' local_date='Tue Apr 24 07:55:08 JST 2007' inverted='False' hash='20070423225508-40155-a17f326b0385d8651c89b9a57561af8ae052cd25.gz'>
337
+ <name>add Global.test_connections to switch testing connections via TCPSocket on startup.</name>
338
+ </patch>
339
+ <patch author='m.fellinger@gmail.com' date='20070422162447' local_date='Mon Apr 23 01:24:47 JST 2007' inverted='False' hash='20070422162447-40155-ded68077216c9890da3c84e96cb31533fc0453ed.gz'>
340
+ <name>replace some stuff in spec for CacheHelper to be more readable</name>
341
+ </patch>
342
+ <patch author='m.fellinger@gmail.com' date='20070422160705' local_date='Mon Apr 23 01:07:05 JST 2007' inverted='False' hash='20070422160705-40155-b05fd0d9fd9292fe7462b0656f6d379f99423841.gz'>
343
+ <name>s/Context/Browser/ for specs, Context could be confused with the meaning of context of RSpec.</name>
344
+ </patch>
345
+ <patch author='m.fellinger@gmail.com' date='20070422155146' local_date='Mon Apr 23 00:51:46 JST 2007' inverted='False' hash='20070422155146-40155-8515103aa2f5ad4594a8addb5c001549c5c420f0.gz'>
346
+ <name>add doc/meta/announcement.txt as a template for announcements - would be thankful for reviews and corrections.</name>
347
+ </patch>
348
+ <patch author='m.fellinger@gmail.com' date='20070422122852' local_date='Sun Apr 22 21:28:52 JST 2007' inverted='False' hash='20070422122852-40155-dec4e208227e8a220234b21cc764d25dac48ac9f.gz'>
349
+ <name>move configuration/internals from doc/readme_chunks to doc/meta</name>
350
+ </patch>
351
+ <patch author='m.fellinger@gmail.com' date='20070419042626' local_date='Thu Apr 19 13:26:26 JST 2007' inverted='False' hash='20070419042626-40155-ae4d5c61fdd58141520f19cae21bc23cfd92e03d.gz'>
352
+ <name>move out SpecWrap to spec/helper/wrap and add a little fix to commonize</name>
353
+ </patch>
354
+ <patch author='m.fellinger@gmail.com' date='20070419084508' local_date='Thu Apr 19 17:45:08 JST 2007' inverted='False' hash='20070419084508-40155-8f3541a54d9d69e26dfba1817100db39a5920737.gz'>
355
+ <name>fixing tutorial and examples/element</name>
356
+ </patch>
357
+ <patch author='m.fellinger@gmail.com' date='20070419084019' local_date='Thu Apr 19 17:40:19 JST 2007' inverted='False' hash='20070419084019-40155-031e10dafc920ac0ace1120241c8f4749b43668c.gz'>
358
+ <name>Element doesn&apos;t use @hash anymore, instead the keys are set to instance-variables directly, please take car, this causes breakage</name>
359
+ </patch>
360
+ <patch author='m.fellinger@gmail.com' date='20070418090657' local_date='Wed Apr 18 18:06:57 JST 2007' inverted='False' hash='20070418090657-40155-b581377ab4c69b241f7a5c0cff6b6d898fdcdc49.gz'>
361
+ <name>total restructure of spec</name>
362
+ </patch>
363
+ <patch author='m.fellinger@gmail.com' date='20070417130501' local_date='Tue Apr 17 22:05:01 JST 2007' inverted='False' hash='20070417130501-40155-5c8e383b2bd0c7db05bf77ddc02848d291f40919.gz'>
364
+ <name>remove the rescue Object from tool/localize</name>
365
+ </patch>
366
+ <patch author='m.fellinger@gmail.com' date='20070417130340' local_date='Tue Apr 17 22:03:40 JST 2007' inverted='False' hash='20070417130340-40155-dd9b986439ffdf3691e6f2a6f63b07d5cf78e188.gz'>
367
+ <name>rename Global.inform to Global.informer to respect what class it is pointing to</name>
368
+ </patch>
369
+ <patch author='m.fellinger@gmail.com' date='20070417130030' local_date='Tue Apr 17 22:00:30 JST 2007' inverted='False' hash='20070417130030-40155-d4dbb92008d44833797bf9d0d488b729079ade99.gz'>
370
+ <name>add backtrace to Informer#error again</name>
371
+ </patch>
372
+ <patch author='m.fellinger@gmail.com' date='20070417125604' local_date='Tue Apr 17 21:56:04 JST 2007' inverted='False' hash='20070417125604-40155-001ecb98d3ccad7683a915ea0b18e33f3b9b68a6.gz'>
373
+ <name>adding readme_chunks/internals.txt</name>
374
+ </patch>
375
+ <patch author='m.fellinger@gmail.com' date='20070417055401' local_date='Tue Apr 17 14:54:01 JST 2007' inverted='False' hash='20070417055401-40155-155160b9c47ba03cdfd1366ce054299dd32f626e.gz'>
376
+ <name>update configuration.txt and remove useless :cache_actions from Global</name>
377
+ </patch>
378
+ <patch author='m.fellinger@gmail.com' date='20070416140503' local_date='Mon Apr 16 23:05:03 JST 2007' inverted='False' hash='20070416140503-40155-12f56ba89013dd5bf778eeb921141e312b548b32.gz'>
379
+ <name>add doc/readme_chunks/configuration.txt - just a first draft and to be completed</name>
380
+ </patch>
381
+ <patch author='m.fellinger@gmail.com' date='20070416140312' local_date='Mon Apr 16 23:03:12 JST 2007' inverted='False' hash='20070416140312-40155-7b0313efc0a97fae60908de9cd0e23930a71dc6e.gz'>
382
+ <name>adding implementation and specs for tool/localize (we _need_ docs for that)</name>
383
+ </patch>
384
+ <patch author='m.fellinger@gmail.com' date='20070416140115' local_date='Mon Apr 16 23:01:15 JST 2007' inverted='False' hash='20070416140115-40155-2334da64e64f5c74b530185eaeb6d43ae72207f6.gz'>
385
+ <name>a couple of fixes and adding missing stuff to Global</name>
386
+ </patch>
387
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070415110150' local_date='Sun Apr 15 20:01:50 JST 2007' inverted='False' hash='20070415110150-21a65-fc0ddc6865742206a4500b86b3aa60d0a8210ee8.gz'>
388
+ <name>Logger fixes</name>
389
+ </patch>
390
+ <patch author='m.fellinger@gmail.com' date='20070414220727' local_date='Sun Apr 15 07:07:27 JST 2007' inverted='False' hash='20070414220727-40155-a961a2d978623943eaac3c5431e05cc4cb35c408.gz'>
391
+ <name>define $context_runner</name>
392
+ </patch>
393
+ <patch author='m.fellinger@gmail.com' date='20070414220555' local_date='Sun Apr 15 07:05:55 JST 2007' inverted='False' hash='20070414220555-40155-078ac40922b9ce25437144ef0a642dae425c9e42.gz'>
394
+ <name>getting rid of warnings in SimpleHTTP</name>
395
+ </patch>
396
+ <patch author='m.fellinger@gmail.com' date='20070414220223' local_date='Sun Apr 15 07:02:23 JST 2007' inverted='False' hash='20070414220223-40155-6479974c5d6a456b17e4443f070fa8c75865272c.gz'>
397
+ <name>don&apos;t define #get twice in the spec requester</name>
398
+ </patch>
399
+ <patch author='m.fellinger@gmail.com' date='20070414220052' local_date='Sun Apr 15 07:00:52 JST 2007' inverted='False' hash='20070414220052-40155-79a73f4972caf591a6cbbc635cac6b9c75c8993e.gz'>
400
+ <name>get rid of the warning about redefinition of aquire</name>
401
+ </patch>
402
+ <patch author='m.fellinger@gmail.com' date='20070414215947' local_date='Sun Apr 15 06:59:47 JST 2007' inverted='False' hash='20070414215947-40155-8bc7b2fe5cf406ea1c5c9d15f36bed4404155cf8.gz'>
403
+ <name>get rid of the redefinition of #each... do an actual check first (for 1.9)</name>
404
+ </patch>
405
+ <patch author='m.fellinger@gmail.com' date='20070414215652' local_date='Sun Apr 15 06:56:52 JST 2007' inverted='False' hash='20070414215652-40155-996856efca247550714ed0aa06619f8e46d961f7.gz'>
406
+ <name>huge refactoring of the Inform system for better configurability, this changes lots of small things in lots of places, but nothing too invasive</name>
407
+ </patch>
408
+ <patch author='m.fellinger@gmail.com' date='20070414215528' local_date='Sun Apr 15 06:55:28 JST 2007' inverted='False' hash='20070414215528-40155-1ec1635f42166326f9e2cc2b96e445d5909701fb.gz'>
409
+ <name>adapt error.zmr to new inform system</name>
410
+ </patch>
411
+ <patch author='m.fellinger@gmail.com' date='20070413015734' local_date='Fri Apr 13 10:57:34 JST 2007' inverted='False' hash='20070413015734-40155-ad7c04f4611906e2df360874ab7cf7aeb2b3995c.gz'>
412
+ <name>add support for nested params</name>
413
+ </patch>
414
+ <patch author='m.fellinger@gmail.com' date='20070413014326' local_date='Fri Apr 13 10:43:26 JST 2007' inverted='False' hash='20070413014326-40155-a180a32f90ea755ec8aed092201aff36584978b9.gz'>
415
+ <name>pass $: as -I over in spec_all</name>
416
+ </patch>
417
+ <patch author='m.fellinger@gmail.com' date='20070413014059' local_date='Fri Apr 13 10:40:59 JST 2007' inverted='False' hash='20070413014059-40155-b35b3871167af9105d7f6e2c04fa9abdf339d88e.gz'>
418
+ <name>GlobalInformer Inform in the og-gulper</name>
419
+ </patch>
420
+ <patch author='m.fellinger@gmail.com' date='20070409093338' local_date='Mon Apr 9 18:33:38 JST 2007' inverted='False' hash='20070409093338-40155-0659e436348670b2864c21b152fa43bd5c80ab2a.gz'>
421
+ <name>add systemu to optional dependencies</name>
422
+ </patch>
423
+ <patch author='m.fellinger@gmail.com' date='20070409092724' local_date='Mon Apr 9 18:27:24 JST 2007' inverted='False' hash='20070409092724-40155-40941076e03e319b71f380da5d4651cf7f084324.gz'>
424
+ <name>better implementation of String#each (for 1.9 only)</name>
425
+ </patch>
426
+ <patch author='m.fellinger@gmail.com' date='20070412112204' local_date='Thu Apr 12 20:22:04 JST 2007' inverted='False' hash='20070412112204-40155-251dad81eb6ae90279f0f92c8c08960c102387df.gz'>
427
+ <name>Informer =&gt; Inform</name>
428
+ </patch>
429
+ <patch author='m.fellinger@gmail.com' date='20070411102623' local_date='Wed Apr 11 19:26:23 JST 2007' inverted='False' hash='20070411102623-40155-10c59dddb8168cd554382d1cd00e54bb1721b06a.gz'>
430
+ <name>brand new controller lookup on startup - use YourController.mapping to get its mapping :)</name>
431
+ </patch>
432
+ <patch author='m.fellinger@gmail.com' date='20070411094059' local_date='Wed Apr 11 18:40:59 JST 2007' inverted='False' hash='20070411094059-40155-01a326de094998d861e6efa9565071593ba1c071.gz'>
433
+ <name>fixing (c)</name>
434
+ </patch>
435
+ <patch author='m.fellinger@gmail.com' date='20070411093803' local_date='Wed Apr 11 18:38:03 JST 2007' inverted='False' hash='20070411093803-40155-faf661efdeff8547608475e9bcd3102fd42870b3.gz'>
436
+ <name>fixing logger.rb by adding Informer</name>
437
+ </patch>
438
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070411084209' local_date='Wed Apr 11 17:42:09 JST 2007' inverted='False' hash='20070411084209-21a65-f1f891bff21f0028f50f528881ca603641632578.gz'>
439
+ <name>add missing logger.rb for informer change</name>
440
+ </patch>
441
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070411082526' local_date='Wed Apr 11 17:25:26 JST 2007' inverted='False' hash='20070411082526-21a65-5c36abb750f8e5f2f1d72e22e8901457396f89c5.gz'>
442
+ <name>Make logger configurable</name>
443
+ <comment>Included loggers:
444
+ * GlobalInformer (standard)
445
+ * Analogger [Kirk Haines]
446
+ * Syslog</comment>
447
+ </patch>
448
+ <patch author='m.fellinger@gmail.com' date='20070411052608' local_date='Wed Apr 11 14:26:08 JST 2007' inverted='False' hash='20070411052608-40155-9dbbc96896b5ca0c0a120386ca621fd02b7c570b.gz'>
449
+ <name>filter for Dispatcher::Action</name>
450
+ </patch>
451
+ <patch author='m.fellinger@gmail.com' date='20070411052344' local_date='Wed Apr 11 14:23:44 JST 2007' inverted='False' hash='20070411052344-40155-7a4f2ee6a03dd303c7e8c8f9e72b6cafc42535c0.gz'>
452
+ <name>new implementation of autoreload, not in usage yet, but it should boost performance and reliability (and avoid the awkward double-thread</name>
453
+ </patch>
454
+ <patch author='m.fellinger@gmail.com' date='20070411042231' local_date='Wed Apr 11 13:22:31 JST 2007' inverted='False' hash='20070411042231-40155-0c84add3d9e73e963db1e43eff52934538ad9499.gz'>
455
+ <name>replace the aquire with a verbose way... snippets were not added to the $:/$&quot;</name>
456
+ </patch>
457
+ <patch author='m.fellinger@gmail.com' date='20070411040349' local_date='Wed Apr 11 13:03:49 JST 2007' inverted='False' hash='20070411040349-40155-2411d892590f0679c8e1fa77d144a54f3f6538a8.gz'>
458
+ <name>extending Global for setting and add a trait-link to tidy</name>
459
+ </patch>
460
+ <patch author='m.fellinger@gmail.com' date='20070411040129' local_date='Wed Apr 11 13:01:29 JST 2007' inverted='False' hash='20070411040129-40155-26f1fbfcd1324920c016f87e731a95d17d855236.gz'>
461
+ <name>better implementation of tidy... only use it for debugging, it&apos;s leaking memory</name>
462
+ </patch>
463
+ <patch author='m.fellinger@gmail.com' date='20070411035852' local_date='Wed Apr 11 12:58:52 JST 2007' inverted='False' hash='20070411035852-40155-c9a583d19ea677c193fda955b3e9654f6083c9c1.gz'>
464
+ <name>remove the post_dispatch from Dispatcher</name>
465
+ </patch>
466
+ <patch author='m.fellinger@gmail.com' date='20070410045808' local_date='Tue Apr 10 13:58:08 JST 2007' inverted='False' hash='20070410045808-40155-94578d3aaaaf3ef114bdae8d49928ca024f58d2f.gz'>
467
+ <name>a couple of changes in Global, we can now collect the traits inside Global transparently (finally modular configuration)</name>
468
+ </patch>
469
+ <patch author='m.fellinger@gmail.com' date='20070409155720' local_date='Tue Apr 10 00:57:20 JST 2007' inverted='False' hash='20070409155720-40155-601998e21f3a621d2ca29c1f70399d78e091a527.gz'>
470
+ <name>use class-methods instead of instantination in the Dispatcher for speed</name>
471
+ </patch>
472
+ <patch author='m.fellinger@gmail.com' date='20070409122549' local_date='Mon Apr 9 21:25:49 JST 2007' inverted='False' hash='20070409122549-40155-ca1a3568a42446623808a1e44851ce697c139d4e.gz'>
473
+ <name>extremly brutal refactoring of Dispatcher, it lacks a bit of elegance right now, but it is the right way</name>
474
+ </patch>
475
+ <patch author='m.fellinger@gmail.com' date='20070409085952' local_date='Mon Apr 9 17:59:52 JST 2007' inverted='False' hash='20070409085952-40155-310e19b9de6fc64fdfc79f4d2dbd5042daa22463.gz'>
476
+ <name>a couple of small changes for compatibility with 1.9</name>
477
+ </patch>
478
+ <patch author='m.fellinger@gmail.com' date='20070409071133' local_date='Mon Apr 9 16:11:33 JST 2007' inverted='False' hash='20070409071133-40155-515196e33e247ee5cf24e181faa309d43d828834.gz'>
479
+ <name>small refactoring for Inform#error</name>
480
+ </patch>
481
+ <patch author='m.fellinger@gmail.com' date='20070409080040' local_date='Mon Apr 9 17:00:40 JST 2007' inverted='False' hash='20070409080040-40155-4e8d09d1cba0cff97dd241a2b003da730054df2b.gz'>
482
+ <name>small fixes for YARV</name>
483
+ </patch>
484
+ <patch author='m.fellinger@gmail.com' date='20070408213611' local_date='Mon Apr 9 06:36:11 JST 2007' inverted='False' hash='20070408213611-40155-5cac76a4b4e08a83597f57157f3cf4951dde832a.gz'>
485
+ <name>exitstatus 0/1 for spec_all so the darcs hook can see if it&apos;s passing - finally automated recording-joy :)</name>
486
+ </patch>
487
+ <patch author='m.fellinger@gmail.com' date='20070408213429' local_date='Mon Apr 9 06:34:29 JST 2007' inverted='False' hash='20070408213429-40155-5899d9253e2ab6d1a06896468280356ae0ff14aa.gz'>
488
+ <name>darcs hook</name>
489
+ </patch>
490
+ <patch author='m.fellinger@gmail.com' date='20070408101103' local_date='Sun Apr 8 19:11:03 JST 2007' inverted='False' hash='20070408101103-40155-72dcad338e6f1114baa199163fc14c0c54a66f82.gz'>
491
+ <name>fixing flash for memcached</name>
492
+ </patch>
493
+ <patch author='m.fellinger@gmail.com' date='20070408101048' local_date='Sun Apr 8 19:10:48 JST 2007' inverted='False' hash='20070408101048-40155-bfe99092f79eb56c03b0f9deada020bb6492ae6e.gz'>
494
+ <name>add rake patchstat</name>
495
+ </patch>
496
+ <patch author='m.fellinger@gmail.com' date='20070407173323' local_date='Sun Apr 8 02:33:23 JST 2007' inverted='False' hash='20070407173323-40155-b09e5eaeedae66b5267660a85ebde431ea857e82.gz'>
497
+ <name>allow request[:foo] to access request.params[&apos;foo&apos;]</name>
498
+ </patch>
499
+ <patch author='m.fellinger@gmail.com' date='20070406162410' local_date='Sat Apr 7 01:24:10 JST 2007' inverted='False' hash='20070406162410-40155-4dc863adefdc5da82f1fd2c4eeedc9d2a34be7a5.gz'>
500
+ <name>add Inform::warn</name>
501
+ </patch>
502
+ <patch author='m.fellinger@gmail.com' date='20070406162338' local_date='Sat Apr 7 01:23:38 JST 2007' inverted='False' hash='20070406162338-40155-c4bf6d3c9eec52318b335bec78225584710783aa.gz'>
503
+ <name>check the template-dir mapping on startup for each controller</name>
504
+ </patch>
505
+ <patch author='m.fellinger@gmail.com' date='20070406153029' local_date='Sat Apr 7 00:30:29 JST 2007' inverted='False' hash='20070406153029-40155-1fc36143b7a078e39991b41b1efd318238b834fc.gz'>
506
+ <name>a bit more elaborate but much safer handling of exceptions in Ezamar</name>
507
+ </patch>
508
+ <patch author='m.fellinger@gmail.com' date='20070405152403' local_date='Fri Apr 6 00:24:03 JST 2007' inverted='False' hash='20070405152403-40155-a3be007b6f4b91dd93e7c606d8d93869504cf902.gz'>
509
+ <name>experiments in adapter.rb - please review</name>
510
+ </patch>
511
+ <patch author='m.fellinger@gmail.com' date='20070405152258' local_date='Fri Apr 6 00:22:58 JST 2007' inverted='False' hash='20070405152258-40155-6a30d0c3c01f08c3d05b40943b33740c9fe6aea1.gz'>
512
+ <name>refactor of request/response/dispatcher/adapter (be careful, tidy broke)</name>
513
+ </patch>
514
+ <patch author='m.fellinger@gmail.com' date='20070405051920' local_date='Thu Apr 5 14:19:20 JST 2007' inverted='False' hash='20070405051920-40155-f6b8a70d2bc94812f3047b69c3b131454f0e0e3c.gz'>
515
+ <name>little cleanup</name>
516
+ </patch>
517
+ <patch author='m.fellinger@gmail.com' date='20070405190652' local_date='Fri Apr 6 04:06:52 JST 2007' inverted='False' hash='20070405190652-40155-c0cc5fbebb7eea5bfbf055c040e3d854958468e0.gz'>
518
+ <name>better error-reporting for usual NoMethodError in controller/template</name>
519
+ </patch>
520
+ <patch author='m.fellinger@gmail.com' date='20070404145114' local_date='Wed Apr 4 23:51:14 JST 2007' inverted='False' hash='20070404145114-40155-7819b321919102f69785bbd8057cde3008af9ce5.gz'>
521
+ <name>use normal blocks instead of Symbol#to_proc, there was some weird error in Informer#debug</name>
522
+ </patch>
523
+ <patch author='m.fellinger@gmail.com' date='20070404145054' local_date='Wed Apr 4 23:50:54 JST 2007' inverted='False' hash='20070404145054-40155-1ec5ec3e1d3237ba8819776a0deec3703d4d8aa1.gz'>
524
+ <name>fixing the usage of meth_debug, replacing it with normal debug</name>
525
+ </patch>
526
+ <patch author='m.fellinger@gmail.com' date='20070404144624' local_date='Wed Apr 4 23:46:24 JST 2007' inverted='False' hash='20070404144624-40155-835238984c18054ddd297a486ec5a0bff2b84165.gz'>
527
+ <name>add helper/inform</name>
528
+ </patch>
529
+ <patch author='m.fellinger@gmail.com' date='20070404042122' local_date='Wed Apr 4 13:21:22 JST 2007' inverted='False' hash='20070404042122-40155-0cf8a4edd4a18c8d47b1643b2551cb3f2749afa4.gz'>
530
+ <name>yet another possible refactor of Inform, thinking about just using Informer instead, the modules functionality is not used anywhere.</name>
531
+ </patch>
532
+ <patch author='m.fellinger@gmail.com' date='20070403163937' local_date='Wed Apr 4 01:39:37 JST 2007' inverted='False' hash='20070403163937-40155-d5d704de6a5b98be307883582899b2d5a9cd9299.gz'>
533
+ <name>adding --console and --backtrace as startup-options for the bin/ramaze, improving error-reports for gone-wrong requires on startup</name>
534
+ </patch>
535
+ <patch author='m.fellinger@gmail.com' date='20070403121319' local_date='Tue Apr 3 21:13:19 JST 2007' inverted='False' hash='20070403121319-40155-be983c7cc7979c69f9ab462000d6853f1fd1d729.gz'>
536
+ <name>update doc/TODO</name>
537
+ </patch>
538
+ <patch author='m.fellinger@gmail.com' date='20070403121251' local_date='Tue Apr 3 21:12:51 JST 2007' inverted='False' hash='20070403121251-40155-4396fbe127cac3adce6f2384083e7db913c67637.gz'>
539
+ <name>fix rake task todolist</name>
540
+ </patch>
541
+ <patch author='m.fellinger@gmail.com' date='20070403120111' local_date='Tue Apr 3 21:01:11 JST 2007' inverted='False' hash='20070403120111-40155-a75a0da7b9d228a51ef71bcfa3f2e80a31a0a6f9.gz'>
542
+ <name>huge refactoring of Inform for better handling of colors and nicer code</name>
543
+ </patch>
544
+ <patch author='m.fellinger@gmail.com' date='20070403115722' local_date='Tue Apr 3 20:57:22 JST 2007' inverted='False' hash='20070403115722-40155-168ff78c413579a486d0fd153ffeb804d67ced47.gz'>
545
+ <name>remove some debugging from examples/blog</name>
546
+ </patch>
547
+ <patch author='m.fellinger@gmail.com' date='20070403075855' local_date='Tue Apr 3 16:58:55 JST 2007' inverted='False' hash='20070403075855-40155-5b2af41b3c41fb6be3878756c814dc090d881feb.gz'>
548
+ <name>s/Global/Ramaze::Global in adapter.rb</name>
549
+ </patch>
550
+ <patch author='m.fellinger@gmail.com' date='20070403062302' local_date='Tue Apr 3 15:23:02 JST 2007' inverted='False' hash='20070403062302-40155-cbbdd9f7c2dd1540de4a86ca6e8f0569eafb0676.gz'>
551
+ <name>add further colors/styles to snippets/string/color</name>
552
+ </patch>
553
+ <patch author='m.fellinger@gmail.com' date='20070403062235' local_date='Tue Apr 3 15:22:35 JST 2007' inverted='False' hash='20070403062235-40155-0171318323cadc5c8f91d6b1f4415b4dd6fd34a9.gz'>
554
+ <name>avoid warning on reload of Inform / don&apos;t define Informer twice</name>
555
+ </patch>
556
+ <patch author='m.fellinger@gmail.com' date='20070403061742' local_date='Tue Apr 3 15:17:42 JST 2007' inverted='False' hash='20070403061742-40155-c63dd416f95a6d9bc29a8af3cf7f65c82ab13d6a.gz'>
557
+ <name>added simple colorizer for Inform - can be activated by Global.inform_color = true / added String#red/yellow/green to snippets/String/color</name>
558
+ </patch>
559
+ <patch author='m.fellinger@gmail.com' date='20070403061454' local_date='Tue Apr 3 15:14:54 JST 2007' inverted='False' hash='20070403061454-40155-44f4d92803dc984fa86b8fd95aec83e3f27edbf4.gz'>
560
+ <name>restoring and improving functionality of Tool::Tidy, you can now output tidy HTML by setting Global.tidy = true | added ability to change the options and paths, no `locate` anymore</name>
561
+ </patch>
562
+ <patch author='m.fellinger@gmail.com' date='20070401153232' local_date='Mon Apr 2 00:32:32 JST 2007' inverted='False' hash='20070401153232-40155-2aae8101f623fd4f9dd2f4ee1ae9ab34a174111a.gz'>
563
+ <name>TAG 0.0.9</name>
564
+ </patch>
565
+ <patch author='m.fellinger@gmail.com' date='20070401153145' local_date='Mon Apr 2 00:31:45 JST 2007' inverted='False' hash='20070401153145-40155-fe77fd1aff227d681425992c7227dedd83dcca5b.gz'>
566
+ <name>0.0.9</name>
567
+ </patch>
568
+ <patch author='m.fellinger@gmail.com' date='20070401153128' local_date='Mon Apr 2 00:31:28 JST 2007' inverted='False' hash='20070401153128-40155-a45427a0657b0c2785181d1b055fac1e6520cf87.gz'>
569
+ <name>fixing (c)</name>
570
+ </patch>
571
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070401101436' local_date='Sun Apr 1 19:14:36 JST 2007' inverted='False' hash='20070401101436-21a65-b2be32e7fd4684dfc85817a858a3c6007b9296cf.gz'>
572
+ <name>beautify code block css in tutorial</name>
573
+ </patch>
574
+ <patch author='m.fellinger@gmail.com' date='20070401093920' local_date='Sun Apr 1 18:39:20 JST 2007' inverted='False' hash='20070401093920-40155-ab0dd84de061114abffc4e1d8e8e4784a9e73507.gz'>
575
+ <name>typos, proper encoding and doctype for the tutorial</name>
576
+ </patch>
577
+ <patch author='m.fellinger@gmail.com' date='20070401091555' local_date='Sun Apr 1 18:15:55 JST 2007' inverted='False' hash='20070401091555-40155-cc71689ad3621d04b59daf0a3054cd075d74ef42.gz'>
578
+ <name>add tutorial/todolist.html</name>
579
+ </patch>
580
+ <patch author='m.fellinger@gmail.com' date='20070401091531' local_date='Sun Apr 1 18:15:31 JST 2007' inverted='False' hash='20070401091531-40155-d2032c940e9b8e4a610ff02aa3715c6ea8403bba.gz'>
581
+ <name>update tutorial/todolist - bluecloth instead of rdoc</name>
582
+ </patch>
583
+ <patch author='m.fellinger@gmail.com' date='20070401091509' local_date='Sun Apr 1 18:15:09 JST 2007' inverted='False' hash='20070401091509-40155-879eb9fcc7c1d833adf08f29af4f0e3b31a91bd3.gz'>
584
+ <name>update the principles chunk</name>
585
+ </patch>
586
+ <patch author='m.fellinger@gmail.com' date='20070401091334' local_date='Sun Apr 1 18:13:34 JST 2007' inverted='False' hash='20070401091334-40155-672938cd516dca3c6a9b2109b4a036c3eeac75dd.gz'>
587
+ <name>add a tutorial2html to the rakefile</name>
588
+ </patch>
589
+ <patch author='m.fellinger@gmail.com' date='20070330165536' local_date='Sat Mar 31 01:55:36 JST 2007' inverted='False' hash='20070330165536-40155-06bf1d68f15605f5baa4a564ea60230edf0a29d8.gz'>
590
+ <name>close all inform_to on exit</name>
591
+ </patch>
592
+ <patch author='m.fellinger@gmail.com' date='20070330132329' local_date='Fri Mar 30 22:23:29 JST 2007' inverted='False' hash='20070330132329-40155-a745c8cae840f96b5d52f530098bdca9ea9d64ca.gz'>
593
+ <name>fixing the ramaze call in the two failing specs</name>
594
+ </patch>
595
+ <patch author='m.fellinger@gmail.com' date='20070330132255' local_date='Fri Mar 30 22:22:55 JST 2007' inverted='False' hash='20070330132255-40155-a451c20d7962745730d6d6dddb9e1a6ebd905c94.gz'>
596
+ <name>define a new Request#fullpath (in latest rack, not yet released)</name>
597
+ </patch>
598
+ <patch author='m.fellinger@gmail.com' date='20070330125457' local_date='Fri Mar 30 21:54:57 JST 2007' inverted='False' hash='20070330125457-40155-0889d73ed78e8191ad82a7f1a9d1ef70e1eea3c8.gz'>
599
+ <name>improving spec_all further, correct align of errors and information when a spec yields no usable output</name>
600
+ </patch>
601
+ <patch author='m.fellinger@gmail.com' date='20070330124028' local_date='Fri Mar 30 21:40:28 JST 2007' inverted='False' hash='20070330124028-40155-c2019dac4d82bcaec5012461ae724b5167b4e4f7.gz'>
602
+ <name>change default in spec_helper to webrick instead of mongrel</name>
603
+ </patch>
604
+ <patch author='m.fellinger@gmail.com' date='20070330122403' local_date='Fri Mar 30 21:24:03 JST 2007' inverted='False' hash='20070330122403-40155-80768f084f1867648a7b290accff7a04673782d4.gz'>
605
+ <name>add attempt to require rubygems to spec_all</name>
606
+ </patch>
607
+ <patch author='m.fellinger@gmail.com' date='20070330120813' local_date='Fri Mar 30 21:08:13 JST 2007' inverted='False' hash='20070330120813-40155-f7a5c03345c7e57a4fdd11b90d227a1c166a1039.gz'>
608
+ <name>add the spec/public/error404.xhtml and adapt the tc_error, static error-pages are now definetly working</name>
609
+ </patch>
610
+ <patch author='m.fellinger@gmail.com' date='20070330120659' local_date='Fri Mar 30 21:06:59 JST 2007' inverted='False' hash='20070330120659-40155-fde6dc52cb6920d740f32341be5a7b8245e7756e.gz'>
611
+ <name>replace Term::ANSIColor and the stubs with a small actual implementation</name>
612
+ </patch>
613
+ <patch author='m.fellinger@gmail.com' date='20070330113611' local_date='Fri Mar 30 20:36:11 JST 2007' inverted='False' hash='20070330113611-40155-3d9bf911089bf33bd180f1bc73340ae904def1cb.gz'>
614
+ <name>allow multiple &apos;pipes&apos; for Global.inform_to, just give it an array (backwards-compatible)</name>
615
+ </patch>
616
+ <patch author='m.fellinger@gmail.com' date='20070330113559' local_date='Fri Mar 30 20:35:59 JST 2007' inverted='False' hash='20070330113559-40155-44933c332c8b8f87936783104ce0ae920737669c.gz'>
617
+ <name>updating tc_error</name>
618
+ </patch>
619
+ <patch author='m.fellinger@gmail.com' date='20070330113528' local_date='Fri Mar 30 20:35:28 JST 2007' inverted='False' hash='20070330113528-40155-3e21de015a73991a36a5215594ee2e8224107d3e.gz'>
620
+ <name>getting rid of a warning about redefining Traits</name>
621
+ </patch>
622
+ <patch author='m.fellinger@gmail.com' date='20070330113444' local_date='Fri Mar 30 20:34:44 JST 2007' inverted='False' hash='20070330113444-40155-24cf5b7aba6066f0a9cfab62cdc4937f942ac542.gz'>
623
+ <name>Sanitizing error-handling for non-existant static error-page</name>
624
+ </patch>
625
+ <patch author='m.fellinger@gmail.com' date='20070329143924' local_date='Thu Mar 29 23:39:24 JST 2007' inverted='False' hash='20070329143924-40155-0137a9ece15d0d1da69db2ade1e1e60b2cbf4c3c.gz'>
626
+ <name>fixing Inform, it did wrong matching for $stderr/$stdout</name>
627
+ </patch>
628
+ <patch author='m.fellinger@gmail.com' date='20070326142525' local_date='Mon Mar 26 23:25:25 JST 2007' inverted='False' hash='20070326142525-40155-c0a28f83beebc61526a513f4aba6a336549fa71a.gz'>
629
+ <name>add example for nitroform</name>
630
+ </patch>
631
+ <patch author='m.fellinger@gmail.com' date='20070326142458' local_date='Mon Mar 26 23:24:58 JST 2007' inverted='False' hash='20070326142458-40155-9da50e4b22ccaac24c45e14bc969da89e5f45200.gz'>
632
+ <name>add a first stub for helper/nitroform - there seem to be some odd problems</name>
633
+ </patch>
634
+ <patch author='m.fellinger@gmail.com' date='20070326142352' local_date='Mon Mar 26 23:23:52 JST 2007' inverted='False' hash='20070326142352-40155-a78137dd9324a8bf955d67df2b8b98089e727221.gz'>
635
+ <name>don&apos;t raise when we can&apos;t find the file wanted by caller_lines</name>
636
+ </patch>
637
+ <patch author='m.fellinger@gmail.com' date='20070324160301' local_date='Sun Mar 25 01:03:01 JST 2007' inverted='False' hash='20070324160301-40155-a7afda8bb6dd08a8f4c59f1082a52248bc26cf9d.gz'>
638
+ <name>fix Kernel#aquire (by lasso)</name>
639
+ </patch>
640
+ <patch author='m.fellinger@gmail.com' date='20070323200645' local_date='Sat Mar 24 05:06:45 JST 2007' inverted='False' hash='20070323200645-40155-f74e220186e1c57c84d1e01e099dce8fbfc6d82c.gz'>
641
+ <name>improve handling of missing actions, now raising NoActionError</name>
642
+ </patch>
643
+ <patch author='m.fellinger@gmail.com' date='20070322211618' local_date='Fri Mar 23 06:16:18 JST 2007' inverted='False' hash='20070322211618-40155-4d08cf03103ceb9f71e00c902c4c4972cb671d51.gz'>
644
+ <name>fix serving static files on windows (hopefully)</name>
645
+ </patch>
646
+ <patch author='m.fellinger@gmail.com' date='20070322040926' local_date='Thu Mar 22 13:09:26 JST 2007' inverted='False' hash='20070322040926-40155-a2f14910174cb3f416aae1f0faa6292bfcd203cc.gz'>
647
+ <name>remove the useless _openid_consumer_service from the session afterwards</name>
648
+ </patch>
649
+ <patch author='m.fellinger@gmail.com' date='20070322040912' local_date='Thu Mar 22 13:09:12 JST 2007' inverted='False' hash='20070322040912-40155-6074055aeb09f18d8b35abe250b4bd21eb3e5121.gz'>
650
+ <name>add examples/identity</name>
651
+ </patch>
652
+ <patch author='m.fellinger@gmail.com' date='20070322040012' local_date='Thu Mar 22 13:00:12 JST 2007' inverted='False' hash='20070322040012-40155-71ff57be5f92f199fb1e85d4e20d24f93e435c42.gz'>
653
+ <name>fixing IdentityHelper so that it works</name>
654
+ </patch>
655
+ <patch author='m.fellinger@gmail.com' date='20070322035945' local_date='Thu Mar 22 12:59:45 JST 2007' inverted='False' hash='20070322035945-40155-44e55987147a05b7bae20c4b8b6731f0a6250b8e.gz'>
656
+ <name>move helper/openid to helper/identity</name>
657
+ </patch>
658
+ <patch author='m.fellinger@gmail.com' date='20070321031122' local_date='Wed Mar 21 12:11:22 JST 2007' inverted='False' hash='20070321031122-40155-a0bd6b7a113ae119b38058cd4133abdf34152326.gz'>
659
+ <name>add ::create_with(hash) to store/yaml</name>
660
+ </patch>
661
+ <patch author='m.fellinger@gmail.com' date='20070321031102' local_date='Wed Mar 21 12:11:02 JST 2007' inverted='False' hash='20070321031102-40155-af59b19d58c23c16ce9571eb7a90d1b155b9bb97.gz'>
662
+ <name>show the real error from Template::Ezamar</name>
663
+ </patch>
664
+ <patch author='m.fellinger@gmail.com' date='20070321031021' local_date='Wed Mar 21 12:10:21 JST 2007' inverted='False' hash='20070321031021-40155-2f4dfd7487bdebb69044b29687f7a5d3219bb236.gz'>
665
+ <name>make the error parsing a lot more robust and fault-tolerant</name>
666
+ </patch>
667
+ <patch author='m.fellinger@gmail.com' date='20070320135106' local_date='Tue Mar 20 22:51:06 JST 2007' inverted='False' hash='20070320135106-40155-8a50e91fa6d5fdd3b06cdd00959319f6cb7dc075.gz'>
668
+ <name>adapt Controller#error for the new caller_lines/caller_info</name>
669
+ </patch>
670
+ <patch author='m.fellinger@gmail.com' date='20070320135026' local_date='Tue Mar 20 22:50:26 JST 2007' inverted='False' hash='20070320135026-40155-3fd4ee08967f2e038da72f51d02613fafda7a5c1.gz'>
671
+ <name>extracting caller_lines and put it into snippets/kernel/caller_lines - also small fixes in caller_info</name>
672
+ </patch>
673
+ <patch author='m.fellinger@gmail.com' date='20070320135010' local_date='Tue Mar 20 22:50:10 JST 2007' inverted='False' hash='20070320135010-40155-9fea1c1383b8b8e03a8306633aeecc75b4c6b493.gz'>
674
+ <name>small changes in Method#name</name>
675
+ </patch>
676
+ <patch author='m.fellinger@gmail.com' date='20070320134848' local_date='Tue Mar 20 22:48:48 JST 2007' inverted='False' hash='20070320134848-40155-bb4355be2ef11bc296cfc8fa22d686e98205c4c4.gz'>
677
+ <name>move snippets/kernel/caller_lines to snippets/ramaze/caller_lines</name>
678
+ </patch>
679
+ <patch author='m.fellinger@gmail.com' date='20070320134757' local_date='Tue Mar 20 22:47:57 JST 2007' inverted='False' hash='20070320134757-40155-cd961d5d61e156dfa00486452b3d3873289a953c.gz'>
680
+ <name>fixing problematic error response in dispatcher</name>
681
+ </patch>
682
+ <patch author='m.fellinger@gmail.com' date='20070320131208' local_date='Tue Mar 20 22:12:08 JST 2007' inverted='False' hash='20070320131208-40155-016c1361cc8aab57b116806c7657564a649f7c6a.gz'>
683
+ <name>remove Kernel#silently</name>
684
+ </patch>
685
+ <patch author='m.fellinger@gmail.com' date='20070320131034' local_date='Tue Mar 20 22:10:34 JST 2007' inverted='False' hash='20070320131034-40155-ef2fc2b756c8ce138ee5be2029f74b8e0ac35f6c.gz'>
686
+ <name>require pp before patching pretty_inspect</name>
687
+ </patch>
688
+ <patch author='m.fellinger@gmail.com' date='20070320131001' local_date='Tue Mar 20 22:10:01 JST 2007' inverted='False' hash='20070320131001-40155-4ece13ad7359349420244182705da0f3b3e47131.gz'>
689
+ <name>move Method#name from snippets/kernel/method to snippets/method/name</name>
690
+ </patch>
691
+ <patch author='m.fellinger@gmail.com' date='20070320130930' local_date='Tue Mar 20 22:09:30 JST 2007' inverted='False' hash='20070320130930-40155-5cdf04dfb6c1a029c903ea00a2e8dfb608c8071b.gz'>
692
+ <name>remove Thread#dead?</name>
693
+ </patch>
694
+ <patch author='m.fellinger@gmail.com' date='20070320130916' local_date='Tue Mar 20 22:09:16 JST 2007' inverted='False' hash='20070320130916-40155-2ad0b7b47202f37bcbad73876ae50c2caa7a8d74.gz'>
695
+ <name>remove snippets/kernel/rescue_require</name>
696
+ </patch>
697
+ <patch author='m.fellinger@gmail.com' date='20070320130839' local_date='Tue Mar 20 22:08:39 JST 2007' inverted='False' hash='20070320130839-40155-f63358b2d719e89d4ca5ac33ef3b6a139f7048b2.gz'>
698
+ <name>move snippets/kernel/self_method =&gt; snippets/kernel/method</name>
699
+ </patch>
700
+ <patch author='m.fellinger@gmail.com' date='20070320130813' local_date='Tue Mar 20 22:08:13 JST 2007' inverted='False' hash='20070320130813-40155-8ce5fe0e2eaa01cbfff240dc351bda477bdaa433.gz'>
701
+ <name>fix Rakefile so that it produces good gems again</name>
702
+ </patch>
703
+ <patch author='m.fellinger@gmail.com' date='20070320130716' local_date='Tue Mar 20 22:07:16 JST 2007' inverted='False' hash='20070320130716-40155-033302aa5bd8a02cc64782af766904f0e0de9c47.gz'>
704
+ <name>move snippets/kernel/autoreload =&gt; snippets/ramaze/autoreload</name>
705
+ </patch>
706
+ <patch author='m.fellinger@gmail.com' date='20070320094640' local_date='Tue Mar 20 18:46:40 JST 2007' inverted='False' hash='20070320094640-40155-a92f27451a887e8e17a2498f371cea701be27c31.gz'>
707
+ <name>don&apos;t R() the passed params to redirect and update docs</name>
708
+ </patch>
709
+ <patch author='m.fellinger@gmail.com' date='20070320082947' local_date='Tue Mar 20 17:29:47 JST 2007' inverted='False' hash='20070320082947-40155-eb82c29769b564416515213a04e0b2e29fef98a4.gz'>
710
+ <name>update tc_helper_redirect</name>
711
+ </patch>
712
+ <patch author='m.fellinger@gmail.com' date='20070320080858' local_date='Tue Mar 20 17:08:58 JST 2007' inverted='False' hash='20070320080858-40155-0c062c4f0ef795ffae130259df4d84e0b441783b.gz'>
713
+ <name>better information about errors in templates</name>
714
+ </patch>
715
+ <patch author='m.fellinger@gmail.com' date='20070320080757' local_date='Tue Mar 20 17:07:57 JST 2007' inverted='False' hash='20070320080757-40155-81446504cf29ba234d5060c68ef9d2b77696884e.gz'>
716
+ <name>better handling of redirections, you can now catch(:redirect){ another_action } to prevent redirection from that path of execution</name>
717
+ </patch>
718
+ <patch author='m.fellinger@gmail.com' date='20070320080724' local_date='Tue Mar 20 17:07:24 JST 2007' inverted='False' hash='20070320080724-40155-9fa72affce33f60cebae714f3f6eb90de22c014a.gz'>
719
+ <name>typo</name>
720
+ </patch>
721
+ <patch author='m.fellinger@gmail.com' date='20070320065312' local_date='Tue Mar 20 15:53:12 JST 2007' inverted='False' hash='20070320065312-40155-bfc7e7953bab340391880f84c07d7b753cd1388b.gz'>
722
+ <name>support custom status-code in redirect and do R() automatically on the params</name>
723
+ </patch>
724
+ <patch author='m.fellinger@gmail.com' date='20070320064319' local_date='Tue Mar 20 15:43:19 JST 2007' inverted='False' hash='20070320064319-40155-7ac2193a77442db7d5dbb194b7c03e26650aeb4a.gz'>
725
+ <name>update Rakefile</name>
726
+ </patch>
727
+ <patch author='m.fellinger@gmail.com' date='20070320062335' local_date='Tue Mar 20 15:23:35 JST 2007' inverted='False' hash='20070320062335-40155-4d924e1ed022156b7ccdb03b044258cbd25d5589.gz'>
728
+ <name>add (c) to OpenidHelper</name>
729
+ </patch>
730
+ <patch author='m.fellinger@gmail.com' date='20070320062305' local_date='Tue Mar 20 15:23:05 JST 2007' inverted='False' hash='20070320062305-40155-c5081d1c54790d7c084c06163f1f72729262b42d.gz'>
731
+ <name>update README</name>
732
+ </patch>
733
+ <patch author='m.fellinger@gmail.com' date='20070319072101' local_date='Mon Mar 19 16:21:01 JST 2007' inverted='False' hash='20070319072101-40155-5b239db302340c39d92230a99c288457a4c95b63.gz'>
734
+ <name>update examples/todolist</name>
735
+ </patch>
736
+ <patch author='m.fellinger@gmail.com' date='20070319072042' local_date='Mon Mar 19 16:20:42 JST 2007' inverted='False' hash='20070319072042-40155-e3d23177820bf496d1b2634cf65b8b3fd240fc7a.gz'>
737
+ <name>update tutorial</name>
738
+ </patch>
739
+ <patch author='m.fellinger@gmail.com' date='20070319065841' local_date='Mon Mar 19 15:58:41 JST 2007' inverted='False' hash='20070319065841-40155-e4f9a56a8a34448cce64e809fd6dc60e791cd633.gz'>
740
+ <name>small improvment to template/ezamar makes methodless actions work again.</name>
741
+ </patch>
742
+ <patch author='m.fellinger@gmail.com' date='20070319064514' local_date='Mon Mar 19 15:45:14 JST 2007' inverted='False' hash='20070319064514-40155-0a5d1842598378f40096871421f005c5eaf109a5.gz'>
743
+ <name>remove helper/template_map</name>
744
+ </patch>
745
+ <patch author='m.fellinger@gmail.com' date='20070319064459' local_date='Mon Mar 19 15:44:59 JST 2007' inverted='False' hash='20070319064459-40155-25379c563b881322c8f5ec76a2ab51db567a2867.gz'>
746
+ <name>update feature-list</name>
747
+ </patch>
748
+ <patch author='m.fellinger@gmail.com' date='20070319030324' local_date='Mon Mar 19 12:03:24 JST 2007' inverted='False' hash='20070319030324-40155-661eb80f2fa03786b9bfd26061c6fd617bd7e4e9.gz'>
749
+ <name>add a Rs method to LinkHelper to make the usual R(self, :foo) stuff into Rs(:foo) and update the tc_helper_stack</name>
750
+ </patch>
751
+ <patch author='m.fellinger@gmail.com' date='20070318231457' local_date='Mon Mar 19 08:14:57 JST 2007' inverted='False' hash='20070318231457-40155-a43abc27457633cd67ef27a50e7a3553f837ae2a.gz'>
752
+ <name>add first implementation of OpenidHelper (yet untested)</name>
753
+ </patch>
754
+ <patch author='m.fellinger@gmail.com' date='20070318225838' local_date='Mon Mar 19 07:58:38 JST 2007' inverted='False' hash='20070318225838-40155-09f950fe33264ee80b6b0871e72efd2485ea4f6b.gz'>
755
+ <name>fix tc_helper_redirect</name>
756
+ </patch>
757
+ <patch author='m.fellinger@gmail.com' date='20070317130925' local_date='Sat Mar 17 22:09:25 JST 2007' inverted='False' hash='20070317130925-40155-f5c9620baf707ceaf8bc57a50b2c68459c27c9ab.gz'>
758
+ <name>0.0.8 as version</name>
759
+ </patch>
760
+ <patch author='m.fellinger@gmail.com' date='20070317130916' local_date='Sat Mar 17 22:09:16 JST 2007' inverted='False' hash='20070317130916-40155-d8ef5a588cd97d076bb717fc7b0693305a6a730b.gz'>
761
+ <name>alias referrer referer</name>
762
+ </patch>
763
+ <patch author='m.fellinger@gmail.com' date='20070316104740' local_date='Fri Mar 16 19:47:40 JST 2007' inverted='False' hash='20070316104740-40155-3ff30184b5b689c6e22b4962078ddc5f579ff644.gz'>
764
+ <name>document CacheHelper</name>
765
+ </patch>
766
+ <patch author='m.fellinger@gmail.com' date='20070316103920' local_date='Fri Mar 16 19:39:20 JST 2007' inverted='False' hash='20070316103920-40155-e334e55a228d23de21063942312cb4e6cc35398b.gz'>
767
+ <name>document FlashHelper</name>
768
+ </patch>
769
+ <patch author='m.fellinger@gmail.com' date='20070316102434' local_date='Fri Mar 16 19:24:34 JST 2007' inverted='False' hash='20070316102434-40155-2a22843ef37c72c12d202ccfb69c6a268925bc1a.gz'>
770
+ <name>cleanup and docs for Ramaze::Request (add values_at for quick params-retrieval)</name>
771
+ </patch>
772
+ <patch author='m.fellinger@gmail.com' date='20070316101618' local_date='Fri Mar 16 19:16:18 JST 2007' inverted='False' hash='20070316101618-40155-14ab729d5f58a46875ceef6d1f2096d1d63ccc9c.gz'>
773
+ <name>some cleanup and documentation for Trinity::Session, it also got a trait[:finalize] as a pipeline of what to do on finalize (finalize_flash only atm)</name>
774
+ </patch>
775
+ <patch author='m.fellinger@gmail.com' date='20070315102134' local_date='Thu Mar 15 19:21:34 JST 2007' inverted='False' hash='20070315102134-40155-7fdda18c58f344cee4d2de08f00b31928dc2ab13.gz'>
776
+ <name>don&apos;t escape the @title of an error twice</name>
777
+ </patch>
778
+ <patch author='m.fellinger@gmail.com' date='20070316071745' local_date='Fri Mar 16 16:17:45 JST 2007' inverted='False' hash='20070316071745-40155-a5b8aeeae3f85fa55b0fe2657366292e1f13101f.gz'>
779
+ <name>less agressive redirect in R/link</name>
780
+ </patch>
781
+ <patch author='m.fellinger@gmail.com' date='20070315055733' local_date='Thu Mar 15 14:57:33 JST 2007' inverted='False' hash='20070315055733-40155-eaf081b3aef7c7490341f117356e1a60d62ccecb.gz'>
782
+ <name>proper inspect in the error-page and adding inspect/pretty_inspect to Global</name>
783
+ </patch>
784
+ <patch author='m.fellinger@gmail.com' date='20070314140946' local_date='Wed Mar 14 23:09:46 JST 2007' inverted='False' hash='20070314140946-40155-cfde2eac6c112681a6e92011269836f09f0d705e.gz'>
785
+ <name>TAG 0.0.8</name>
786
+ </patch>
787
+ <patch author='m.fellinger@gmail.com' date='20070314140907' local_date='Wed Mar 14 23:09:07 JST 2007' inverted='False' hash='20070314140907-40155-834a53cd0f54dbbcac9c04d3bc161c8317994438.gz'>
788
+ <name>newline :)</name>
789
+ </patch>
790
+ <patch author='m.fellinger@gmail.com' date='20070314124425' local_date='Wed Mar 14 21:44:25 JST 2007' inverted='False' hash='20070314124425-40155-df44d33a0d214df6be46ab58bda7b6fc3fdbda41.gz'>
791
+ <name>checking all the caches in tc_session</name>
792
+ </patch>
793
+ <patch author='m.fellinger@gmail.com' date='20070314124359' local_date='Wed Mar 14 21:43:59 JST 2007' inverted='False' hash='20070314124359-40155-5432b1df6d9a8610e73f28a71bd9b1d82d2b75f1.gz'>
794
+ <name>nicer output of specs of helper_auth and tc_session</name>
795
+ </patch>
796
+ <patch author='m.fellinger@gmail.com' date='20070314124339' local_date='Wed Mar 14 21:43:39 JST 2007' inverted='False' hash='20070314124339-40155-39f71216e622360356761bce0ff867c085c59c7f.gz'>
797
+ <name>reimplement Trinity::Session</name>
798
+ </patch>
799
+ <patch author='m.fellinger@gmail.com' date='20070314124258' local_date='Wed Mar 14 21:42:58 JST 2007' inverted='False' hash='20070314124258-40155-a53084b86c0715791f934716ce1ef0133dd88b7b.gz'>
800
+ <name>fixing the caller_lines bug</name>
801
+ </patch>
802
+ <patch author='m.fellinger@gmail.com' date='20070314124244' local_date='Wed Mar 14 21:42:44 JST 2007' inverted='False' hash='20070314124244-40155-6c5d2362aab005bb89a26212c0647575110a9a6a.gz'>
803
+ <name>no rescue in StackHelper anymore</name>
804
+ </patch>
805
+ <patch author='m.fellinger@gmail.com' date='20070314124232' local_date='Wed Mar 14 21:42:32 JST 2007' inverted='False' hash='20070314124232-40155-6333576479886df3920d8b5b45b69a6463d95186.gz'>
806
+ <name>small fix in yaml_store</name>
807
+ </patch>
808
+ <patch author='m.fellinger@gmail.com' date='20070314124220' local_date='Wed Mar 14 21:42:20 JST 2007' inverted='False' hash='20070314124220-40155-efc637b322aa43388fc5bc5c03eda07c3dc3ab14.gz'>
809
+ <name>small nicety in examples/simple</name>
810
+ </patch>
811
+ <patch author='m.fellinger@gmail.com' date='20070314064530' local_date='Wed Mar 14 15:45:30 JST 2007' inverted='False' hash='20070314064530-40155-c023b94c0c2a8a5ff86959b723d0573f732fe573.gz'>
812
+ <name>add &apos;stubs&apos; for CGI and FastCGI - they are not tested at all yet, suggestions for specs welcome</name>
813
+ </patch>
814
+ <patch author='m.fellinger@gmail.com' date='20070314064442' local_date='Wed Mar 14 15:44:42 JST 2007' inverted='False' hash='20070314064442-40155-62913be79152ad9cfb60e9fb4e91ccfb7b02cbb0.gz'>
815
+ <name>remove the actionview_stub from HAML, it&apos;s not needed with HAML 1.5 (make sure you upgrade though)</name>
816
+ </patch>
817
+ <patch author='m.fellinger@gmail.com' date='20070313105043' local_date='Tue Mar 13 19:50:43 JST 2007' inverted='False' hash='20070313105043-40155-0e3ce1a2e432d56ac7bdc88e884de8395a5d9246.gz'>
818
+ <name>remove the ezamar-&apos;feature&apos; ;)</name>
819
+ </patch>
820
+ <patch author='m.fellinger@gmail.com' date='20070313104214' local_date='Tue Mar 13 19:42:14 JST 2007' inverted='False' hash='20070313104214-40155-d0673e2f38a6e335b293ced79ce98e6f86965afa.gz'>
821
+ <name>speed up the ezamar-spec a bit and proper errors for markaby</name>
822
+ </patch>
823
+ <patch author='m.fellinger@gmail.com' date='20070310181905' local_date='Sun Mar 11 03:19:05 JST 2007' inverted='False' hash='20070310181905-40155-8009ac74ac95b29807df48e0db4d23b6aedc4ca2.gz'>
824
+ <name>deleting entities in Store::YAML</name>
825
+ </patch>
826
+ <patch author='m.fellinger@gmail.com' date='20070310180710' local_date='Sun Mar 11 03:07:10 JST 2007' inverted='False' hash='20070310180710-40155-f879c9c6117e437a0862b27294a1223e45160a7a.gz'>
827
+ <name>possibility to #{render} in your controller/templates</name>
828
+ </patch>
829
+ <patch author='m.fellinger@gmail.com' date='20070310162515' local_date='Sun Mar 11 01:25:15 JST 2007' inverted='False' hash='20070310162515-40155-e5b3bf39a2d7fda19b067c9aede2b9b7ede182dd.gz'>
830
+ <name>escape the title of the error-page to show classes properly</name>
831
+ </patch>
832
+ <patch author='m.fellinger@gmail.com' date='20070310150838' local_date='Sun Mar 11 00:08:38 JST 2007' inverted='False' hash='20070310150838-40155-17330bc545d95661f566432a689365b61ff77eac.gz'>
833
+ <name>small improvments to bin/ramaze - output of version and better info when there is nothing to start</name>
834
+ </patch>
835
+ <patch author='m.fellinger@gmail.com' date='20070313044623' local_date='Tue Mar 13 13:46:23 JST 2007' inverted='False' hash='20070313044623-40155-62adee8fd8b3e902270f2f7fa63d017707233234.gz'>
836
+ <name>small improvment in custom_template selection</name>
837
+ </patch>
838
+ <patch author='m.fellinger@gmail.com' date='20070312134155' local_date='Mon Mar 12 22:41:55 JST 2007' inverted='False' hash='20070312134155-40155-3f734d8cee5f919b8a3478cb4b445c5ae35299be.gz'>
839
+ <name>remove debugging-statements</name>
840
+ </patch>
841
+ <patch author='m.fellinger@gmail.com' date='20070312115347' local_date='Mon Mar 12 20:53:47 JST 2007' inverted='False' hash='20070312115347-40155-3eeab99c2c1ebdc9a2df18e8e76a95ab7a348f17.gz'>
842
+ <name>better error-reports from Ezamars transformation</name>
843
+ </patch>
844
+ <patch author='m.fellinger@gmail.com' date='20070312115331' local_date='Mon Mar 12 20:53:31 JST 2007' inverted='False' hash='20070312115331-40155-b909c2b66c14787cf3029f6a81b85e6c27320732.gz'>
845
+ <name>no more errors about #debug? missing from WEBrick</name>
846
+ </patch>
847
+ <patch author='m.fellinger@gmail.com' date='20070312115307' local_date='Mon Mar 12 20:53:07 JST 2007' inverted='False' hash='20070312115307-40155-578164c4c0ce9586fae25c98b6b5e7c9689e3065.gz'>
848
+ <name>improved error-page (minor fixes)</name>
849
+ </patch>
850
+ <patch author='m.fellinger@gmail.com' date='20070312115218' local_date='Mon Mar 12 20:52:18 JST 2007' inverted='False' hash='20070312115218-40155-c7f5a5886d5abc7fad0fe4d7acd9e4dc29a4a0f5.gz'>
851
+ <name>fixing the ezamar example</name>
852
+ </patch>
853
+ <patch author='m.fellinger@gmail.com' date='20070309121500' local_date='Fri Mar 9 21:15:00 JST 2007' inverted='False' hash='20070309121500-40155-30a0fb65734bc0afa2ddc8168baff72940c00e8e.gz'>
854
+ <name>fixing spec_all to report the real number of failed specs</name>
855
+ </patch>
856
+ <patch author='m.fellinger@gmail.com' date='20070309121434' local_date='Fri Mar 9 21:14:34 JST 2007' inverted='False' hash='20070309121434-40155-c2d1f91e85108ab06e6b2c0cdd908f1f69b80e0f.gz'>
857
+ <name>shorter line</name>
858
+ </patch>
859
+ <patch author='m.fellinger@gmail.com' date='20070309102503' local_date='Fri Mar 9 19:25:03 JST 2007' inverted='False' hash='20070309102503-40155-fc7f7eca9d24a9ecb92861f11d7be7da3341829f.gz'>
860
+ <name>don&apos;t assign a FLASH_PREVIOUS when we don&apos;t need to (also add a (c) to pretty_inspect)</name>
861
+ </patch>
862
+ <patch author='m.fellinger@gmail.com' date='20070309100855' local_date='Fri Mar 9 19:08:55 JST 2007' inverted='False' hash='20070309100855-40155-09400be6f382e5b749179b4ceb0f6e8149d53774.gz'>
863
+ <name>fixing FlashHelper (with a new SessionFlash in trinity/session) put the new specs into the old tc_helper_flash</name>
864
+ </patch>
865
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070308133604' local_date='Thu Mar 8 22:36:04 JST 2007' inverted='False' hash='20070308133604-21a65-7cd7c17ab4b89e7ad1bd93ac481cf0603bec1dc5.gz'>
866
+ <name>spec for flash, template finding fix</name>
867
+ <comment>* trait :foo_template =&gt; :bar__foo did break
868
+ * added spec for flash, no fix</comment>
869
+ </patch>
870
+ <patch author='m.fellinger@gmail.com' date='20070308020722' local_date='Thu Mar 8 11:07:22 JST 2007' inverted='False' hash='20070308020722-40155-0eaf04dcef5f61957c457785b698bc3a697eb05c.gz'>
871
+ <name>relax arity-sensitivity, it&apos;s impossbile to get right and shouldn&apos;t block correct parameter-sets</name>
872
+ </patch>
873
+ <patch author='Jonathan Buch &lt;jo@helloit.fi&gt;' date='20070307141601' local_date='Wed Mar 7 23:16:01 JST 2007' inverted='False' hash='20070307141601-21a65-7cb3a9d4560f67971b61520117aaec05030dd557.gz'>
874
+ <name>More specs for params</name>
875
+ </patch>
876
+ <patch author='m.fellinger@gmail.com' date='20070307141117' local_date='Wed Mar 7 23:11:17 JST 2007' inverted='False' hash='20070307141117-40155-ca9c0dcd0a0eecfaa7e0a569ed42003f77cf7a73.gz'>
877
+ <name>add fallback for pretty_inspect</name>
878
+ </patch>
879
+ <patch author='m.fellinger@gmail.com' date='20070306220132' local_date='Wed Mar 7 07:01:32 JST 2007' inverted='False' hash='20070306220132-40155-cecd5e90eecf41f417cc8456ca34398bddb1c3dc.gz'>
880
+ <name>fixing session-problem plus the specs</name>
881
+ </patch>
882
+ <patch author='m.fellinger@gmail.com' date='20070306115716' local_date='Tue Mar 6 20:57:16 JST 2007' inverted='False' hash='20070306115716-40155-84d8b111f741ffc423fb1b9be4cbb035a8b2b9ae.gz'>
883
+ <name>fixing the flash_id</name>
884
+ </patch>
885
+ <patch author='m.fellinger@gmail.com' date='20070306110913' local_date='Tue Mar 6 20:09:13 JST 2007' inverted='False' hash='20070306110913-40155-c8058a080e7d2fd2453a830a2327634d747ee140.gz'>
886
+ <name>informing you about missing elements</name>
887
+ </patch>
888
+ <patch author='m.fellinger@gmail.com' date='20070305221005' local_date='Tue Mar 6 07:10:05 JST 2007' inverted='False' hash='20070305221005-40155-2407cbacc4ad2ce525013593d68da0abc5bec623.gz'>
889
+ <name>add rack in the tc_dependencies</name>
890
+ </patch>
891
+ <patch author='m.fellinger@gmail.com' date='20070305134806' local_date='Mon Mar 5 22:48:06 JST 2007' inverted='False' hash='20070305134806-40155-5c2913122c1a3ce1ff1ec9632ebba3c3d0784796.gz'>
892
+ <name>new custom error-handling, tell me your exception and i tell you where you land</name>
893
+ </patch>
894
+ <patch author='m.fellinger@gmail.com' date='20070305134405' local_date='Mon Mar 5 22:44:05 JST 2007' inverted='False' hash='20070305134405-40155-152e305c20126e89e19748d7640323195d895cf5.gz'>
895
+ <name>temporarily add Helper to Element</name>
896
+ </patch>
897
+ <patch author='m.fellinger@gmail.com' date='20070305131245' local_date='Mon Mar 5 22:12:45 JST 2007' inverted='False' hash='20070305131245-40155-7cb4b0f0a048a78be05f7e12d4d0e36284523fd8.gz'>
898
+ <name>avoid malformed response from the controller</name>
899
+ </patch>
900
+ <patch author='m.fellinger@gmail.com' date='20070305124716' local_date='Mon Mar 5 21:47:16 JST 2007' inverted='False' hash='20070305124716-40155-850eb5a4ec8748c3d9e0b53494445bf2ffa7421c.gz'>
901
+ <name>specs for FlashHelper</name>
902
+ </patch>
903
+ <patch author='m.fellinger@gmail.com' date='20070305124705' local_date='Mon Mar 5 21:47:05 JST 2007' inverted='False' hash='20070305124705-40155-f93c12bc978abb45f4e958af67bdd9f72322f579.gz'>
904
+ <name>add ability to delete specific key from session</name>
905
+ </patch>
906
+ <patch author='m.fellinger@gmail.com' date='20070305124655' local_date='Mon Mar 5 21:46:55 JST 2007' inverted='False' hash='20070305124655-40155-7144746c187bc2c70a16160971c14f2ddca35cf7.gz'>
907
+ <name>improve error-handling in Template::Ezamar</name>
908
+ </patch>
909
+ <patch author='m.fellinger@gmail.com' date='20070305124646' local_date='Mon Mar 5 21:46:46 JST 2007' inverted='False' hash='20070305124646-40155-68084c14551e938ae5e7b1bd333ef9e01aa7c49c.gz'>
910
+ <name>add FlashHelper</name>
911
+ </patch>
912
+ <patch author='m.fellinger@gmail.com' date='20070305095341' local_date='Mon Mar 5 18:53:41 JST 2007' inverted='False' hash='20070305095341-40155-6c775b6fc908399b7460c21ae4c921c85f643a5d.gz'>
913
+ <name>updating some readme chunks</name>
914
+ </patch>
915
+ <patch author='m.fellinger@gmail.com' date='20070304135311' local_date='Sun Mar 4 22:53:11 JST 2007' inverted='False' hash='20070304135311-40155-8ebe25db8e1d18a185d750bda6503c79eb1923c3.gz'>
916
+ <name>handle the case when there are no controllers...</name>
917
+ </patch>
918
+ <patch author='m.fellinger@gmail.com' date='20070304121836' local_date='Sun Mar 4 21:18:36 JST 2007' inverted='False' hash='20070304121836-40155-b5788215ad1b68ab932face972c4a2bd747d52fe.gz'>
919
+ <name>remove setup.rb since i don&apos;t provide any support for it.</name>
920
+ </patch>
921
+ <patch author='m.fellinger@gmail.com' date='20070304120537' local_date='Sun Mar 4 21:05:37 JST 2007' inverted='False' hash='20070304120537-40155-f65af374ea26c5d8a5c40e45a414b9ba6fb11fdb.gz'>
922
+ <name>update Rakefile (dependencies and some tasks)</name>
923
+ </patch>
924
+ <patch author='m.fellinger@gmail.com' date='20070304120119' local_date='Sun Mar 4 21:01:19 JST 2007' inverted='False' hash='20070304120119-40155-c22a25c0033ebae4034a2ba285b697b72096a50d.gz'>
925
+ <name>change the require for rack, make sure you got the gem installed or it&apos;s in your path (or required already)</name>
926
+ </patch>
927
+ <patch author='m.fellinger@gmail.com' date='20070304120103' local_date='Sun Mar 4 21:01:03 JST 2007' inverted='False' hash='20070304120103-40155-5bfcd56d36bfe8e38d1181bb6e8e8eb7ad7a694b.gz'>
928
+ <name>remove vendor/rack since rack has its release out now</name>
929
+ </patch>
930
+ <patch author='m.fellinger@gmail.com' date='20070302193551' local_date='Sat Mar 3 04:35:51 JST 2007' inverted='False' hash='20070302193551-40155-053e0aff70718844740d2da31e6481f8fa749269.gz'>
931
+ <name>controller has to respond to :render</name>
932
+ </patch>
933
+ <patch author='m.fellinger@gmail.com' date='20070302193507' local_date='Sat Mar 3 04:35:07 JST 2007' inverted='False' hash='20070302193507-40155-489a002083deaf8fde41358e756da5751d88a23d.gz'>
934
+ <name>fix lookup for the cache</name>
935
+ </patch>
936
+ <patch author='m.fellinger@gmail.com' date='20070302173825' local_date='Sat Mar 3 02:38:25 JST 2007' inverted='False' hash='20070302173825-40155-5a5d53fbdcc647cb16f7e8b276aaf8403cf355b7.gz'>
937
+ <name>improved error-handling, templating-engines take responsibility now</name>
938
+ </patch>
939
+ <patch author='m.fellinger@gmail.com' date='20070302164838' local_date='Sat Mar 3 01:48:38 JST 2007' inverted='False' hash='20070302164838-40155-c5651c1e23005b145e60fca2bab026edc0dac3f3.gz'>
940
+ <name>fix docs for examples/hello</name>
941
+ </patch>
942
+ <patch author='m.fellinger@gmail.com' date='20070302084911' local_date='Fri Mar 2 17:49:11 JST 2007' inverted='False' hash='20070302084911-40155-d995e6aec3f1a870b5d89728bcd94c28b56faa64.gz'>
943
+ <name>proper namespacing, address everything under Ramaze, don&apos;t rely on the user to include Ramaze in the main-namespace</name>
944
+ </patch>
945
+ <patch author='m.fellinger@gmail.com' date='20070302081832' local_date='Fri Mar 2 17:18:32 JST 2007' inverted='False' hash='20070302081832-40155-3fa49dbf218ac7e6b465525b6c17dbf941b1d3ce.gz'>
946
+ <name>fixing namespace for Informer in adapter/webrick</name>
947
+ </patch>
948
+ <patch author='m.fellinger@gmail.com' date='20070228140619' local_date='Wed Feb 28 23:06:19 JST 2007' inverted='False' hash='20070228140619-40155-059ee31849cdc02baace86a1e3eb107e84dd63f0.gz'>
949
+ <name>rack snapshot</name>
950
+ </patch>
951
+ <patch author='m.fellinger@gmail.com' date='20070226145456' local_date='Mon Feb 26 23:54:56 JST 2007' inverted='False' hash='20070226145456-40155-170b6cf8b11ba0daa21c084eacd7b46383d791da.gz'>
952
+ <name>testrunner should work on windows</name>
953
+ </patch>
954
+ <patch author='m.fellinger@gmail.com' date='20070226141311' local_date='Mon Feb 26 23:13:11 JST 2007' inverted='False' hash='20070226141311-40155-d61bef0f14d87b99c9842503bd2d8ce102b859b0.gz'>
955
+ <name>refactoring the filtering in dispatcher to return early results and do nicer error-handling</name>
956
+ </patch>
957
+ <patch author='m.fellinger@gmail.com' date='20070223151610' local_date='Sat Feb 24 00:16:10 JST 2007' inverted='False' hash='20070223151610-40155-1b6a497033364fe3fa1a33b131719a2d42319fe4.gz'>
958
+ <name>oh phrack, we just require template/ezamar on startup now... no more autorequire-magic :P</name>
959
+ </patch>
960
+ <patch author='m.fellinger@gmail.com' date='20070223094500' local_date='Fri Feb 23 18:45:00 JST 2007' inverted='False' hash='20070223094500-40155-38db3530946bbae80e24a9e2793adb0e8ef4d360.gz'>
961
+ <name>updates to the README</name>
962
+ </patch>
963
+ <patch author='m.fellinger@gmail.com' date='20070223044716' local_date='Fri Feb 23 13:47:16 JST 2007' inverted='False' hash='20070223044716-40155-44602b718aaeef7114c3a3de4490a4121b7aaf19.gz'>
964
+ <name>making it possible to go without Element in AuthHelper</name>
965
+ </patch>
966
+ <patch author='m.fellinger@gmail.com' date='20070223044653' local_date='Fri Feb 23 13:46:53 JST 2007' inverted='False' hash='20070223044653-40155-fd40e57e4513ff13db33dc4d71b371e6e5439057.gz'>
967
+ <name>fixing references to Element in proto and specs</name>
968
+ </patch>
969
+ <patch author='m.fellinger@gmail.com' date='20070223044639' local_date='Fri Feb 23 13:46:39 JST 2007' inverted='False' hash='20070223044639-40155-c2d9697cf360a9a3271ddc8e597a89cbf3324163.gz'>
970
+ <name>fixing references to Element</name>
971
+ </patch>
972
+ <patch author='m.fellinger@gmail.com' date='20070223044532' local_date='Fri Feb 23 13:45:32 JST 2007' inverted='False' hash='20070223044532-40155-8389875df67c7b75e652464c18910d0d51aa0ecc.gz'>
973
+ <name>Morpher and Element moved into module ::Ezamar - please do now class YourElement &lt; Ezamar::Element - this is part of an ongoing effort to extract Ezamar for broader usage</name>
974
+ </patch>
975
+ <patch author='m.fellinger@gmail.com' date='20070222115622' local_date='Thu Feb 22 20:56:22 JST 2007' inverted='False' hash='20070222115622-40155-a2f9c4dd26d7b68bf9481eaaa5263dd309246908.gz'>
976
+ <name>new doc/README from the chunks</name>
977
+ </patch>
978
+ <patch author='m.fellinger@gmail.com' date='20070222115609' local_date='Thu Feb 22 20:56:09 JST 2007' inverted='False' hash='20070222115609-40155-30a043fba93ff1409c775e0a145a784922f2c3c6.gz'>
979
+ <name>proper heading for README</name>
980
+ </patch>
981
+ <patch author='m.fellinger@gmail.com' date='20070222115525' local_date='Thu Feb 22 20:55:25 JST 2007' inverted='False' hash='20070222115525-40155-299dd183790be246fa1914765d30846bfc2fdb51.gz'>
982
+ <name>splitting README into seperate files in doc/readme_chunks</name>
983
+ </patch>
984
+ <patch author='m.fellinger@gmail.com' date='20070222115453' local_date='Thu Feb 22 20:54:53 JST 2007' inverted='False' hash='20070222115453-40155-9cde1fdc2b5e0f6adb6c4106fb192aac92fce6f1.gz'>
985
+ <name>add rake build-readme to build the README from the chunks in doc/readme_chunks</name>
986
+ </patch>
987
+ <patch author='m.fellinger@gmail.com' date='20070222114553' local_date='Thu Feb 22 20:45:53 JST 2007' inverted='False' hash='20070222114553-40155-c9515d5c4c820ab2a532d503ed5f0585269918ab.gz'>
988
+ <name>remove the fluff from trinity/response - soon to be removed altogether</name>
989
+ </patch>
990
+ <patch author='m.fellinger@gmail.com' date='20070222114010' local_date='Thu Feb 22 20:40:10 JST 2007' inverted='False' hash='20070222114010-40155-8f910a4ab5f24fda6743e75e317329b79a6de825.gz'>
991
+ <name>Ramaze::Request =&gt; Rack::Request</name>
992
+ </patch>
993
+ <patch author='m.fellinger@gmail.com' date='20070222113957' local_date='Thu Feb 22 20:39:57 JST 2007' inverted='False' hash='20070222113957-40155-5e9ad32e916034a0bc67548e6ec8233e1037acff.gz'>
994
+ <name>set 404 in Controller#error</name>
995
+ </patch>
996
+ <patch author='m.fellinger@gmail.com' date='20070222113850' local_date='Thu Feb 22 20:38:50 JST 2007' inverted='False' hash='20070222113850-40155-4c58a624061d36438ca3078ef819f67e47f04f2b.gz'>
997
+ <name>proper check for 404 in tc_error</name>
998
+ </patch>
999
+ <patch author='m.fellinger@gmail.com' date='20070222055845' local_date='Thu Feb 22 14:58:45 JST 2007' inverted='False' hash='20070222055845-40155-7f9917e21268ce5d3c27a7c47f7ed17c5455361d.gz'>
1000
+ <name>adapt the specs to take advantage of Context#story</name>
1001
+ </patch>
1002
+ <patch author='m.fellinger@gmail.com' date='20070222055747' local_date='Thu Feb 22 14:57:47 JST 2007' inverted='False' hash='20070222055747-40155-6000102b26e380e059c2aa44a71ae9f91594c115.gz'>
1003
+ <name>adding Context.new with block or Context#story to provide a way for consecutive requests inside a common context.</name>
1004
+ </patch>
1005
+ <patch author='m.fellinger@gmail.com' date='20070222055720' local_date='Thu Feb 22 14:57:20 JST 2007' inverted='False' hash='20070222055720-40155-6762aa4ae50d24fe305e675b85c43077bcf9653e.gz'>
1006
+ <name>using request_uri instead of path_info for StackHelper to preserve params</name>
1007
+ </patch>
1008
+ <patch author='m.fellinger@gmail.com' date='20070221233701' local_date='Thu Feb 22 08:37:01 JST 2007' inverted='False' hash='20070221233701-40155-70a7705dedbfeb98467bf058e799727182ea63f5.gz'>
1009
+ <name>rack snapshot</name>
1010
+ </patch>
1011
+ <patch author='m.fellinger@gmail.com' date='20070221085411' local_date='Wed Feb 21 17:54:11 JST 2007' inverted='False' hash='20070221085411-40155-91ced6572c9e403337d3d378795a10e8a496c147.gz'>
1012
+ <name>fixing spec/tc_controller</name>
1013
+ </patch>
1014
+ <patch author='m.fellinger@gmail.com' date='20070221085309' local_date='Wed Feb 21 17:53:09 JST 2007' inverted='False' hash='20070221085309-40155-a4cf5b577a6715d756e37f04dca34f659c3a62ba.gz'>
1015
+ <name>fixing the first-load-problem which was caused by complicated require-procedures.</name>
1016
+ </patch>
1017
+ <patch author='m.fellinger@gmail.com' date='20070221085239' local_date='Wed Feb 21 17:52:39 JST 2007' inverted='False' hash='20070221085239-40155-2453329905adbed6cc8b5b2cf801a6b7d1136286.gz'>
1018
+ <name>fixing examples/todolist</name>
1019
+ </patch>
1020
+ <patch author='m.fellinger@gmail.com' date='20070221041833' local_date='Wed Feb 21 13:18:33 JST 2007' inverted='False' hash='20070221041833-40155-95f13f4a8d031112c42203d3f9482f301a0df9bb.gz'>
1021
+ <name>fixing Global.cookies = false</name>
1022
+ </patch>
1023
+ <patch author='m.fellinger@gmail.com' date='20070221011649' local_date='Wed Feb 21 10:16:49 JST 2007' inverted='False' hash='20070221011649-40155-909962de4b629049fbab79ff31fdb6475e686030.gz'>
1024
+ <name>snapshot rack</name>
1025
+ </patch>
1026
+ <patch author='m.fellinger@gmail.com' date='20070220102044' local_date='Tue Feb 20 19:20:44 JST 2007' inverted='False' hash='20070220102044-40155-8643e48a8173b599fabbb349f7fe33c5b3ff4342.gz'>
1027
+ <name>add doc/GPL</name>
1028
+ </patch>
1029
+ <patch author='m.fellinger@gmail.com' date='20070220215303' local_date='Wed Feb 21 06:53:03 JST 2007' inverted='False' hash='20070220215303-40155-9fcced2cf123d157e97442c94898b1a4cdd0b956.gz'>
1030
+ <name>support link(&apos;/&apos; :class =&gt; &apos;foo&apos;, :id =&gt; &apos;bar&apos;, :title =&gt; &apos;index&apos;)</name>
1031
+ </patch>
1032
+ <patch author='m.fellinger@gmail.com' date='20070220215234' local_date='Wed Feb 21 06:52:34 JST 2007' inverted='False' hash='20070220215234-40155-da2444bfcf62c8fe7af4cd98fff4e9a14acc0e6c.gz'>
1033
+ <name>small improvments in examples/whywiki</name>
1034
+ </patch>
1035
+ <patch author='m.fellinger@gmail.com' date='20070220213235' local_date='Wed Feb 21 06:32:35 JST 2007' inverted='False' hash='20070220213235-40155-16480312231fd6223ebb4cd653cadfe59a7e0841.gz'>
1036
+ <name>extending examples/element a bit</name>
1037
+ </patch>
1038
+ <patch author='m.fellinger@gmail.com' date='20070220213012' local_date='Wed Feb 21 06:30:12 JST 2007' inverted='False' hash='20070220213012-40155-8c849dd248df529c7076ac5fd53eff19da7e6e68.gz'>
1039
+ <name>fixing examples/caching</name>
1040
+ </patch>
1041
+ <patch author='m.fellinger@gmail.com' date='20070220212457' local_date='Wed Feb 21 06:24:57 JST 2007' inverted='False' hash='20070220212457-40155-c9d05362472c690b8b2c4573dc24cd6deccab52d.gz'>
1042
+ <name>hopefully fixing the issue of first-load problems</name>
1043
+ </patch>
1044
+ <patch author='m.fellinger@gmail.com' date='20070220212100' local_date='Wed Feb 21 06:21:00 JST 2007' inverted='False' hash='20070220212100-40155-235f20da4731f5a0919070a378d899a84acc70f8.gz'>
1045
+ <name>add lib/proto to the lookup-paths for static files</name>
1046
+ </patch>
1047
+ <patch author='m.fellinger@gmail.com' date='20070220135014' local_date='Tue Feb 20 22:50:14 JST 2007' inverted='False' hash='20070220135014-40155-22c49a95aeb6f397a7bf7f0fa967c6c2d6d718ab.gz'>
1048
+ <name>snapshot of rack</name>
1049
+ </patch>
1050
+ <patch author='m.fellinger@gmail.com' date='20070220134934' local_date='Tue Feb 20 22:49:34 JST 2007' inverted='False' hash='20070220134934-40155-4938ab2dbe63d4a3e8fa03794a83f9b41d6844bd.gz'>
1051
+ <name>fixing filters, the third</name>
1052
+ </patch>
1053
+ <patch author='m.fellinger@gmail.com' date='20070220100730' local_date='Tue Feb 20 19:07:30 JST 2007' inverted='False' hash='20070220100730-40155-10c865b7283807e0266d0b8ee3beac5acc3216c5.gz'>
1054
+ <name>change order of filter... again</name>
1055
+ </patch>
1056
+ <patch author='m.fellinger@gmail.com' date='20070220100612' local_date='Tue Feb 20 19:06:12 JST 2007' inverted='False' hash='20070220100612-40155-cfa0942d93d84adfce499087cef874197404d2c2.gz'>
1057
+ <name>change doc/COPYING</name>
1058
+ </patch>
1059
+ <patch author='m.fellinger@gmail.com' date='20070219082714' local_date='Mon Feb 19 17:27:14 JST 2007' inverted='False' hash='20070219082714-40155-1b7b3afb122609a3b8953dbb866809ebc2aeaa3d.gz'>
1060
+ <name>change filter-order for static files to take priority</name>
1061
+ </patch>
1062
+ <patch author='m.fellinger@gmail.com' date='20070219081922' local_date='Mon Feb 19 17:19:22 JST 2007' inverted='False' hash='20070219081922-40155-1027d5cce76752d01684c547b6a14a15083e8fb1.gz'>
1063
+ <name>turn off $VERBOSE again</name>
1064
+ </patch>
1065
+ <patch author='m.fellinger@gmail.com' date='20070220055741' local_date='Tue Feb 20 14:57:41 JST 2007' inverted='False' hash='20070220055741-40155-462f224351ffce19ce59c25bf83bf77be4765a2d.gz'>
1066
+ <name>adding a requirement for rubygems in tc_dependencies (if you don&apos;t have rubygems you don&apos;t have to worry about that anyway)</name>
1067
+ </patch>
1068
+ <patch author='m.fellinger@gmail.com' date='20070220055728' local_date='Tue Feb 20 14:57:28 JST 2007' inverted='False' hash='20070220055728-40155-2826d1cee6e204cb779cc3799e7409dbaa577590.gz'>
1069
+ <name>fixing Global.cache_all</name>
1070
+ </patch>
1071
+ <patch author='m.fellinger@gmail.com' date='20070220054611' local_date='Tue Feb 20 14:46:11 JST 2007' inverted='False' hash='20070220054611-40155-c9d0315bf41bdc69812bdfb159e5f13a8b2d7f9c.gz'>
1072
+ <name>multiple fixes in the examples/blog</name>
1073
+ </patch>
1074
+ <patch author='m.fellinger@gmail.com' date='20070220054514' local_date='Tue Feb 20 14:45:14 JST 2007' inverted='False' hash='20070220054514-40155-52b29898546acd2ef9de65f749dee44655d28c63.gz'>
1075
+ <name>adapting the various specs for the new context/request helper</name>
1076
+ </patch>
1077
+ <patch author='m.fellinger@gmail.com' date='20070220054406' local_date='Tue Feb 20 14:44:06 JST 2007' inverted='False' hash='20070220054406-40155-ebad073160b425ff1d843e66479d9c8da21d1164.gz'>
1078
+ <name>switching the testing-system to a modified version of simple_http, much cleaner :)</name>
1079
+ </patch>
1080
+ <patch author='m.fellinger@gmail.com' date='20070220054311' local_date='Tue Feb 20 14:43:11 JST 2007' inverted='False' hash='20070220054311-40155-16465d8e929cbf064bc3a132726ed9c38e3e0dd4.gz'>
1081
+ <name>refactoring request_tc_helper a little bit</name>
1082
+ </patch>
1083
+ <patch author='m.fellinger@gmail.com' date='20070220054240' local_date='Tue Feb 20 14:42:40 JST 2007' inverted='False' hash='20070220054240-40155-87ce90b880a8ebb8d76e0c2c8f1036ee610fd6ff.gz'>
1084
+ <name>adding session.clear</name>
1085
+ </patch>
1086
+ <patch author='m.fellinger@gmail.com' date='20070220054207' local_date='Tue Feb 20 14:42:07 JST 2007' inverted='False' hash='20070220054207-40155-92a9ee1dbbf7c260ce502e35680255545e15502a.gz'>
1087
+ <name>using our own YAML::Store for store/yaml + some other minor changes</name>
1088
+ </patch>
1089
+ <patch author='m.fellinger@gmail.com' date='20070220054147' local_date='Tue Feb 20 14:41:47 JST 2007' inverted='False' hash='20070220054147-40155-e479494fc840e348b3f5854849c8f6fdc12a1dba.gz'>
1090
+ <name>fixing StackHelper</name>
1091
+ </patch>
1092
+ <patch author='m.fellinger@gmail.com' date='20070220054116' local_date='Tue Feb 20 14:41:16 JST 2007' inverted='False' hash='20070220054116-40155-75ddf0c4fdcb59fe90ed9ce448f8cf7d567bc358.gz'>
1093
+ <name>fixing RedirectHelper</name>
1094
+ </patch>
1095
+ <patch author='m.fellinger@gmail.com' date='20070216192730' local_date='Sat Feb 17 04:27:30 JST 2007' inverted='False' hash='20070216192730-40155-25877232cca9f2bac43cb282dabc9f3db11bca44.gz'>
1096
+ <name>fixing example/caching</name>
1097
+ </patch>
1098
+ <patch author='m.fellinger@gmail.com' date='20070219152947' local_date='Tue Feb 20 00:29:47 JST 2007' inverted='False' hash='20070219152947-40155-6c617b465dd65266cb94a59596623e54c68bf5cf.gz'>
1099
+ <name>fixing serving static files</name>
1100
+ </patch>
1101
+ <patch author='m.fellinger@gmail.com' date='20070219145919' local_date='Mon Feb 19 23:59:19 JST 2007' inverted='False' hash='20070219145919-40155-0c5bac829abec2fec7a20595e7bf0ad965133d8b.gz'>
1102
+ <name>fixing the fix for the fix for the error-bug</name>
1103
+ </patch>
1104
+ <patch author='m.fellinger@gmail.com' date='20070219144231' local_date='Mon Feb 19 23:42:31 JST 2007' inverted='False' hash='20070219144231-40155-f57428c6b2d0a461f3b7e02ea7fcf084ec7ce829.gz'>
1105
+ <name>prevent endless error-erroring</name>
1106
+ </patch>
1107
+ <patch author='m.fellinger@gmail.com' date='20070219053955' local_date='Mon Feb 19 14:39:55 JST 2007' inverted='False' hash='20070219053955-40155-e7337a50d36d7c8d5c42f0c71f6a6b17a57b2561.gz'>
1108
+ <name>removing cruft from trinity/session, some smaller changes in tc_helper_auth... still not working though (last spec failing, most likely due to our messed up Context)</name>
1109
+ </patch>
1110
+ <patch author='manveru@weez-int.com' date='20070219043358' local_date='Mon Feb 19 13:33:58 JST 2007' inverted='False' hash='20070219043358-24576-4673002ba3b23a6bc6c2d13d6789eb676abb983b.gz'>
1111
+ <name>fixing redirection and error-handling, removing cruft from trinity/request (who&apos;d have thought that it would fit into one screenful one day)</name>
1112
+ </patch>
1113
+ <patch author='manveru@weez-int.com' date='20070219043329' local_date='Mon Feb 19 13:33:29 JST 2007' inverted='False' hash='20070219043329-24576-5374a27aa5ccba56116bd5c688ce5551bf9e3f66.gz'>
1114
+ <name>ignore the new vendor/rack for fixes of copyright and spaces</name>
1115
+ </patch>
1116
+ <patch author='manveru@weez-int.com' date='20070219034535' local_date='Mon Feb 19 12:45:35 JST 2007' inverted='False' hash='20070219034535-24576-a4ecca80b899e33ccc0a682a67ec85036187f8b6.gz'>
1117
+ <name>adding rack under lib/ramaze/vendor/rack - until rack got its first release</name>
1118
+ </patch>
1119
+ <patch author='m.fellinger@gmail.com' date='20070218230059' local_date='Mon Feb 19 08:00:59 JST 2007' inverted='False' hash='20070218230059-40155-2ceb4fc2c23503697e38cc014562bec2ecbb77fd.gz'>
1120
+ <name>fixing sessions and spec_helper, removing tc_request_rack</name>
1121
+ </patch>
1122
+ <patch author='m.fellinger@gmail.com' date='20070218130854' local_date='Sun Feb 18 22:08:54 JST 2007' inverted='False' hash='20070218130854-40155-4347cc2fca5c0b0728cfec4463058a60e0628967.gz'>
1123
+ <name>remove provisory rack-adapter, it&apos;s replaced by adapter/mongrel|webrick</name>
1124
+ </patch>
1125
+ <patch author='m.fellinger@gmail.com' date='20070218103229' local_date='Sun Feb 18 19:32:29 JST 2007' inverted='False' hash='20070218103229-40155-ae1fb4f810d7cab5930e189091adad58fefeb0f6.gz'>
1126
+ <name>Switch adapters to work with rack</name>
1127
+ </patch>
1128
+ <patch author='Christian Neukirchen &lt;chneukirchen@gmail.com&gt;' date='20070216211210' local_date='Sat Feb 17 06:12:10 JST 2007' inverted='False' hash='20070216211210-4fc50-de48253dd589fc04f8906f2ca72368dbccd8da87.gz'>
1129
+ <name>Add primitive Rack adapter</name>
1130
+ </patch>
1131
+ <patch author='m.fellinger@gmail.com' date='20070216154943' local_date='Sat Feb 17 00:49:43 JST 2007' inverted='False' hash='20070216154943-40155-004208f83ba5018cf0321f6df5998ff8cf4538ee.gz'>
1132
+ <name>some small fixes and adding MIME-types :D</name>
1133
+ </patch>
1134
+ <patch author='m.fellinger@gmail.com' date='20070216140119' local_date='Fri Feb 16 23:01:19 JST 2007' inverted='False' hash='20070216140119-40155-34ea2d813d1cd1a003f05e0179896adeff6dea81.gz'>
1135
+ <name>adding cleanup for tc_cache to Rakefile</name>
1136
+ </patch>
1137
+ <patch author='m.fellinger@gmail.com' date='20070216140047' local_date='Fri Feb 16 23:00:47 JST 2007' inverted='False' hash='20070216140047-40155-7a0712ad01528f1769b877bff606d3eb5d452cb6.gz'>
1138
+ <name>implementing PUT/DELETE for WEBrick plus neccesary abstraction in trinity/request</name>
1139
+ </patch>
1140
+ <patch author='m.fellinger@gmail.com' date='20070216135912' local_date='Fri Feb 16 22:59:12 JST 2007' inverted='False' hash='20070216135912-40155-17b97ae67b86ff285a24756552ee0577d35b5d31.gz'>
1141
+ <name>adding the files neccesary for the up/download specs, splitting the tc_request into tc_request_mongrel and tc_request_webrick</name>
1142
+ </patch>
1143
+ <patch author='m.fellinger@gmail.com' date='20070216123146' local_date='Fri Feb 16 21:31:46 JST 2007' inverted='False' hash='20070216123146-40155-219950717f4cca953828906042ea029e659036d7.gz'>
1144
+ <name>add doc/ProjectInfo for coming switch to ratchets</name>
1145
+ </patch>
1146
+ <patch author='m.fellinger@gmail.com' date='20070216122702' local_date='Fri Feb 16 21:27:02 JST 2007' inverted='False' hash='20070216122702-40155-aab92f1e5fa4a074b30243db0a833267c0992621.gz'>
1147
+ <name>major rewrite of dispatcher, affecting the controller-lookup and the adapters, this is much, much cleaner now, though not perfect yet - but the first step of many.</name>
1148
+ </patch>
1149
+ <patch author='manveru@weez-int.com' date='20070216040141' local_date='Fri Feb 16 13:01:41 JST 2007' inverted='False' hash='20070216040141-24576-f3905dae3484a294857e80a46346b0a6c00c2bca.gz'>
1150
+ <name>avoid repetition in the subclasses of Template</name>
1151
+ </patch>
1152
+ <patch author='manveru@weez-int.com' date='20070216040117' local_date='Fri Feb 16 13:01:17 JST 2007' inverted='False' hash='20070216040117-24576-ea93f2432ccefdd2f57b9959fa8b9a79e0e7838b.gz'>
1153
+ <name>add spec/tc_dependencies to make sure we don&apos;t leak any gems into the vanilla ramaze</name>
1154
+ </patch>
1155
+ <patch author='manveru@weez-int.com' date='20070216040041' local_date='Fri Feb 16 13:00:41 JST 2007' inverted='False' hash='20070216040041-24576-8adfc7d58b18f06a645a18b885698e91136c5a5a.gz'>
1156
+ <name>adding store/yaml for an abstracted version of YAML::Store + corresponding specs.</name>
1157
+ </patch>
1158
+ <patch author='m.fellinger@gmail.com' date='20070216044906' local_date='Fri Feb 16 13:49:06 JST 2007' inverted='False' hash='20070216044906-40155-7a52a1c4af833d6c228204dd399235a1c17049c7.gz'>
1159
+ <name>fixing the issues with send_file temporarily</name>
1160
+ </patch>
1161
+ <patch author='m.fellinger@gmail.com' date='20070213093923' local_date='Tue Feb 13 18:39:23 JST 2007' inverted='False' hash='20070213093923-40155-f4810fbfb2b7667389749e1d367cd8b3832db139.gz'>
1162
+ <name>add specs for methods on a controller like this__is__a__method which translates to this/is/a/method</name>
1163
+ </patch>
1164
+ <patch author='m.fellinger@gmail.com' date='20070215145848' local_date='Thu Feb 15 23:58:48 JST 2007' inverted='False' hash='20070215145848-40155-cf81d3d080f0be28bbd063eaa7d313a15e546050.gz'>
1165
+ <name>temorarily deactivate the new template-mapping</name>
1166
+ </patch>
1167
+ <patch author='m.fellinger@gmail.com' date='20070215144933' local_date='Thu Feb 15 23:49:33 JST 2007' inverted='False' hash='20070215144933-40155-335a2ec2ce683ade5b37a576d060a647bee840f2.gz'>
1168
+ <name>fixing missing end</name>
1169
+ </patch>
1170
+ <patch author='m.fellinger@gmail.com' date='20070215144808' local_date='Thu Feb 15 23:48:08 JST 2007' inverted='False' hash='20070215144808-40155-8537769834f734d041ecc467691ce86dc25786e0.gz'>
1171
+ <name>autoload Element/Morpher when referenced</name>
1172
+ </patch>
1173
+ <patch author='manveru@weez-int.com' date='20070215101331' local_date='Thu Feb 15 19:13:31 JST 2007' inverted='False' hash='20070215101331-24576-158a57d9a8587653b20a3a8144865f6218381abb.gz'>
1174
+ <name>removing the alias of Ramaze::start to Ramaze::new to avoid nasty bugs when Ramaze is included into Object</name>
1175
+ </patch>
1176
+ <patch author='manveru@weez-int.com' date='20070215101304' local_date='Thu Feb 15 19:13:04 JST 2007' inverted='False' hash='20070215101304-24576-bfdc716d26bbf727bf16ad6a66afbe0a46866446.gz'>
1177
+ <name>adding some more docs for templating</name>
1178
+ </patch>
1179
+ <patch author='manveru@weez-int.com' date='20070215042622' local_date='Thu Feb 15 13:26:22 JST 2007' inverted='False' hash='20070215042622-24576-1bf16c90a346fcc05249c0034f0a653d880eaaba.gz'>
1180
+ <name>first partial implementation of template_maps</name>
1181
+ </patch>
1182
+ <patch author='manveru@weez-int.com' date='20070215041927' local_date='Thu Feb 15 13:19:27 JST 2007' inverted='False' hash='20070215041927-24576-539cf3b572d56fa83b9084f2891dbdbc5ce95c41.gz'>
1183
+ <name>add support for actions of the double__underscore__way</name>
1184
+ </patch>
1185
+ <patch author='manveru@weez-int.com' date='20070214103145' local_date='Wed Feb 14 19:31:45 JST 2007' inverted='False' hash='20070214103145-24576-51f09f8d14624298aaf65eec774fe7305cc1e7e6.gz'>
1186
+ <name>updating FAQ</name>
1187
+ </patch>
1188
+ <patch author='manveru@weez-int.com' date='20070214094606' local_date='Wed Feb 14 18:46:06 JST 2007' inverted='False' hash='20070214094606-24576-3ed43b02817789db9f294caaa1c5fa322ee0b760.gz'>
1189
+ <name>documenting another couple of classes</name>
1190
+ </patch>
1191
+ <patch author='manveru@weez-int.com' date='20070214094558' local_date='Wed Feb 14 18:45:58 JST 2007' inverted='False' hash='20070214094558-24576-19f01dfeb0302579fc02e501479de6e6a7ad5df2.gz'>
1192
+ <name>documenting dispatcher fully</name>
1193
+ </patch>
1194
+ <patch author='manveru@weez-int.com' date='20070214094548' local_date='Wed Feb 14 18:45:48 JST 2007' inverted='False' hash='20070214094548-24576-75398e87187c469aff3765cdf32e1abeef88a197.gz'>
1195
+ <name>documenting cache/memcached</name>
1196
+ </patch>
1197
+ <patch author='manveru@weez-int.com' date='20070214094536' local_date='Wed Feb 14 18:45:36 JST 2007' inverted='False' hash='20070214094536-24576-03096ba2d40b99759af9fd7d9b7ff460b53b01e3.gz'>
1198
+ <name>adding further docs to adapter/mongrel</name>
1199
+ </patch>
1200
+ <patch author='manveru@weez-int.com' date='20070214094451' local_date='Wed Feb 14 18:44:51 JST 2007' inverted='False' hash='20070214094451-24576-def8b6cfd73511bd4c91b281565d0456f3eb1bd7.gz'>
1201
+ <name>fixing AuthHelper</name>
1202
+ </patch>
1203
+ <patch author='manveru@weez-int.com' date='20070213105752' local_date='Tue Feb 13 19:57:52 JST 2007' inverted='False' hash='20070213105752-24576-1f30799a4c5c8f3d2b5cbc870b952f53f6c22b75.gz'>
1204
+ <name>fixing the examples and adapting lib/proto for the new Controller</name>
1205
+ </patch>
1206
+ <patch author='manveru@weez-int.com' date='20070213105725' local_date='Tue Feb 13 19:57:25 JST 2007' inverted='False' hash='20070213105725-24576-8dd3666a3f558d237e584df58d332869788a87d6.gz'>
1207
+ <name>add xhtml as default extension for Ezamar</name>
1208
+ </patch>
1209
+ <patch author='manveru@weez-int.com' date='20070213062556' local_date='Tue Feb 13 15:25:56 JST 2007' inverted='False' hash='20070213062556-24576-6c618c1372d2f187651328f21f7388500e208d5a.gz'>
1210
+ <name>fixing flawed references to Template::Rezamar in the docs.</name>
1211
+ </patch>
1212
+ <patch author='manveru@weez-int.com' date='20070213062320' local_date='Tue Feb 13 15:23:20 JST 2007' inverted='False' hash='20070213062320-24576-d5a8654c206772146a030492136bb932c92aedfb.gz'>
1213
+ <name>fixing the tutorial for new implementation</name>
1214
+ </patch>
1215
+ <patch author='manveru@weez-int.com' date='20070213062059' local_date='Tue Feb 13 15:20:59 JST 2007' inverted='False' hash='20070213062059-24576-9e60d1e2c3911b7c874dbab9cb84c411b2b0126e.gz'>
1216
+ <name>rescue the Timeout::Error we get when a request takes too long in a test.</name>
1217
+ </patch>
1218
+ <patch author='manveru@weez-int.com' date='20070213062025' local_date='Tue Feb 13 15:20:25 JST 2007' inverted='False' hash='20070213062025-24576-a05dcc82d16a8f925a5ecf2f8d6da16e4a918e98.gz'>
1219
+ <name>documenting all undocumented methods, some classes/modules still lacking docs.</name>
1220
+ </patch>
1221
+ <patch author='manveru@weez-int.com' date='20070213061937' local_date='Tue Feb 13 15:19:37 JST 2007' inverted='False' hash='20070213061937-24576-b47ff96bab59e5438d561b809a654abadeb03daf.gz'>
1222
+ <name>fixing AspectHelper and with that subsequently AuthHelper.</name>
1223
+ </patch>
1224
+ <patch author='m.fellinger@gmail.com' date='20070213044559' local_date='Tue Feb 13 13:45:59 JST 2007' inverted='False' hash='20070213044559-40155-3da8aaf69bbfdad0949cc02da9b85347981c5c07.gz'>
1225
+ <name>rewrite of spec/spec_all and fixing a typo in spec/spec_helper</name>
1226
+ </patch>
1227
+ <patch author='m.fellinger@gmail.com' date='20070212235606' local_date='Tue Feb 13 08:56:06 JST 2007' inverted='False' hash='20070212235606-40155-9b626afff9fe734b07ee0eddec8f6ee4a17e2187.gz'>
1228
+ <name>make example/caching|hello|simple run again</name>
1229
+ </patch>
1230
+ <patch author='m.fellinger@gmail.com' date='20070212235549' local_date='Tue Feb 13 08:55:49 JST 2007' inverted='False' hash='20070212235549-40155-06c92e93c293e959cca59a30d0e22d37232e014d.gz'>
1231
+ <name>execute(*tasks) instead of execute *tasks</name>
1232
+ </patch>
1233
+ <patch author='m.fellinger@gmail.com' date='20070212235510' local_date='Tue Feb 13 08:55:10 JST 2007' inverted='False' hash='20070212235510-40155-2234d344ca046ec81e2d9924571dd4661f03fb4f.gz'>
1234
+ <name>get rid of warnings in ezamar/engine - it still should be written more elegant though.</name>
1235
+ </patch>
1236
+ <patch author='m.fellinger@gmail.com' date='20070212235448' local_date='Tue Feb 13 08:54:48 JST 2007' inverted='False' hash='20070212235448-40155-7bd9895b795e512280af84dc36baf1b68dc27ac0.gz'>
1237
+ <name>don&apos;t require aquire twice.</name>
1238
+ </patch>
1239
+ <patch author='m.fellinger@gmail.com' date='20070212235356' local_date='Tue Feb 13 08:53:56 JST 2007' inverted='False' hash='20070212235356-40155-fe71a05b171aad1efa6dc093a2a9efd03441a288.gz'>
1240
+ <name>had a double definition of the request_path method for webrick-requests.</name>
1241
+ </patch>
1242
+ <patch author='m.fellinger@gmail.com' date='20070212235313' local_date='Tue Feb 13 08:53:13 JST 2007' inverted='False' hash='20070212235313-40155-64ce22315d5bc71f0f66963de3a8384f70cbebe2.gz'>
1243
+ <name>set the default of bin/ramaze and spec_all to output warnings.</name>
1244
+ </patch>
1245
+ <patch author='m.fellinger@gmail.com' date='20070212235035' local_date='Tue Feb 13 08:50:35 JST 2007' inverted='False' hash='20070212235035-40155-8436e5e9605f06c244578bd7fb48e88414b0daeb.gz'>
1246
+ <name>use our own methods for showing the usage, less hacky and avoids warnings</name>
1247
+ </patch>
1248
+ <patch author='manveru@weez-int.com' date='20070212151906' local_date='Tue Feb 13 00:19:06 JST 2007' inverted='False' hash='20070212151906-24576-a89ca7c8957b00734d95d2c149b3c257f7a96872.gz'>
1249
+ <name>make AspectHelper not bail out at start.</name>
1250
+ </patch>
1251
+ <patch author='manveru@weez-int.com' date='20070212151844' local_date='Tue Feb 13 00:18:44 JST 2007' inverted='False' hash='20070212151844-24576-6e5dda203be529459ae6adaf6a4122d14dd4e688.gz'>
1252
+ <name>define #current on the actual Response-object</name>
1253
+ </patch>
1254
+ <patch author='manveru@weez-int.com' date='20070212151246' local_date='Tue Feb 13 00:12:46 JST 2007' inverted='False' hash='20070212151246-24576-c6eecdba031e29f930308ee19aebfa2344bc8081.gz'>
1255
+ <name>This patch is HUGE, introducing real controllers and making the templating-engines even more uniform and modular, selection of the engine now based on file-extension or and/or a trait, fixing all tests (except AspectHelper and AuthHelper which relies on that), moving the Ezamar-engine out of the usual templating (so you can use it for your own evil plans) and quite some other stuff... this rewrite didn&apos;t work out to be very atomic, but the effects are.</name>
1256
+ </patch>
1257
+ <patch author='manveru@weez-int.com' date='20070212151152' local_date='Tue Feb 13 00:11:52 JST 2007' inverted='False' hash='20070212151152-24576-030fe7e4ed1912a7e263e9e6d2170db678986a8b.gz'>
1258
+ <name>make the rdoc-tasks a bit nicer and add doc/FAQ</name>
1259
+ </patch>
1260
+ <patch author='manveru@weez-int.com' date='20070212040114' local_date='Mon Feb 12 13:01:14 JST 2007' inverted='False' hash='20070212040114-24576-82f18dcaab3f5f63fcf09fc08d89f65fe60ff33c.gz'>
1261
+ <name>add doc/FAQ</name>
1262
+ </patch>
1263
+ <patch author='manveru@weez-int.com' date='20070212022604' local_date='Mon Feb 12 11:26:04 JST 2007' inverted='False' hash='20070212022604-24576-775738d39d6ad129a37099b55db2cf9330a86069.gz'>
1264
+ <name>Ramaze::Template::Ramaze =&gt; Ramaze::Template::Ezamar - renaming the templating to get rid of confusion and provide a name to talk about when one means the templating.</name>
1265
+ </patch>
1266
+ <patch author='manveru@weez-int.com' date='20070212012156' local_date='Mon Feb 12 10:21:56 JST 2007' inverted='False' hash='20070212012156-24576-646313dc8de990a226fe433f7c05f884ceda5d25.gz'>
1267
+ <name>add hint about installation to tutorial/todolist</name>
1268
+ </patch>
1269
+ <patch author='m.fellinger@gmail.com' date='20070210222307' local_date='Sun Feb 11 07:23:07 JST 2007' inverted='False' hash='20070210222307-40155-d337073634e76d004daeb0fbc87f4be1529864eb.gz'>
1270
+ <name>remove allison from the repository again.</name>
1271
+ </patch>
1272
+ <patch author='m.fellinger@gmail.com' date='20070209204350' local_date='Sat Feb 10 05:43:50 JST 2007' inverted='False' hash='20070209204350-40155-5c712a1f0e79024175b1a7c899275da59935a63e.gz'>
1273
+ <name>fixing specs for tc_helper_feed for broken hpricot</name>
1274
+ </patch>
1275
+ <patch author='m.fellinger@gmail.com' date='20070209204325' local_date='Sat Feb 10 05:43:25 JST 2007' inverted='False' hash='20070209204325-40155-def25b368d432a38257ff7cfb4471b69120f6c7b.gz'>
1276
+ <name>using ramaze/store/default for proto</name>
1277
+ </patch>
1278
+ <patch author='manveru@weez-int.com' date='20070209150214' local_date='Sat Feb 10 00:02:14 JST 2007' inverted='False' hash='20070209150214-24576-52b92ec0f8b76c3cc40c872c77e6821ec1b8e615.gz'>
1279
+ <name>fix issue when having a symbol as Global.cache for sessions.</name>
1280
+ </patch>
1281
+ <patch author='manveru@weez-int.com' date='20070209150156' local_date='Sat Feb 10 00:01:56 JST 2007' inverted='False' hash='20070209150156-24576-b3f526cc8dab56f46adaec831d03c00ce61d3243.gz'>
1282
+ <name>better error-handling for Template::Ramaze</name>
1283
+ </patch>
1284
+ <patch author='manveru@weez-int.com' date='20070209150144' local_date='Sat Feb 10 00:01:44 JST 2007' inverted='False' hash='20070209150144-24576-9e2429df9b20ec785b385f49b9e8b51a41e597c0.gz'>
1285
+ <name>set @action for Template::Ramaze</name>
1286
+ </patch>
1287
+ <patch author='manveru@weez-int.com' date='20070209150054' local_date='Sat Feb 10 00:00:54 JST 2007' inverted='False' hash='20070209150054-24576-cbcfeeaa91206614cbc0c477784cf6fe23eaed1c.gz'>
1288
+ <name>extending Store::Default and adding corresponding specs and docs.</name>
1289
+ </patch>
1290
+ <patch author='manveru@weez-int.com' date='20070209150031' local_date='Sat Feb 10 00:00:31 JST 2007' inverted='False' hash='20070209150031-24576-febe5cc78b36ee8fce246ee88bb7fc60beafcf59.gz'>
1291
+ <name>add the doc/tutorial/todolist.txt</name>
1292
+ </patch>
1293
+ <patch author='manveru@weez-int.com' date='20070209145958' local_date='Fri Feb 9 23:59:58 JST 2007' inverted='False' hash='20070209145958-24576-d8fb64d3555afc75e7181e866b5d155bf915bb7d.gz'>
1294
+ <name>add the example/todolist</name>
1295
+ </patch>
1296
+ <patch author='manveru@weez-int.com' date='20070209114406' local_date='Fri Feb 9 20:44:06 JST 2007' inverted='False' hash='20070209114406-24576-65d2d89f49dfc2d01c55a1ae22fc10d321f752be.gz'>
1297
+ <name>add Store::Default#empty?</name>
1298
+ </patch>
1299
+ <patch author='manveru@weez-int.com' date='20070208041709' local_date='Thu Feb 8 13:17:09 JST 2007' inverted='False' hash='20070208041709-24576-3baa650f7e0a0b69a5623d769df121e9e105d68a.gz'>
1300
+ <name>adding doc/INSTALL</name>
1301
+ </patch>
1302
+ <patch author='manveru@weez-int.com' date='20070208041409' local_date='Thu Feb 8 13:14:09 JST 2007' inverted='False' hash='20070208041409-24576-524154c557cdf67078ec995312f29a6646828cb0.gz'>
1303
+ <name>fixing and extending amrita2 templating, adding the example for it.</name>
1304
+ </patch>
1305
+ <patch author='manveru@weez-int.com' date='20070206135203' local_date='Tue Feb 6 22:52:03 JST 2007' inverted='False' hash='20070206135203-24576-bd859a1c3221351d7399ce084ad26d4f0413e200.gz'>
1306
+ <name>fixing a bug in feed-helper and hiding a bug in current hpricot... (0.5) - need to file a bug-report :(</name>
1307
+ </patch>
1308
+ <patch author='m.fellinger@gmail.com' date='20070208234309' local_date='Fri Feb 9 08:43:09 JST 2007' inverted='False' hash='20070208234309-40155-a68e9c1bae9843e4f608a50438392860783e8c6e.gz'>
1309
+ <name>a bit nicer output if the test is skipped due to dependencies</name>
1310
+ </patch>
1311
+ <patch author='m.fellinger@gmail.com' date='20070208234248' local_date='Fri Feb 9 08:42:48 JST 2007' inverted='False' hash='20070208234248-40155-494fd64636cac0e829c8f1599c8e93efff362881.gz'>
1312
+ <name>add the testfile for send_file</name>
1313
+ </patch>
1314
+ <patch author='m.fellinger@gmail.com' date='20070208234157' local_date='Fri Feb 9 08:41:57 JST 2007' inverted='False' hash='20070208234157-40155-c6a6a67505c18b8277f5220ffcf7f66d604251f1.gz'>
1315
+ <name>fixing send_file for mongrel-adapter.</name>
1316
+ </patch>
1317
+ <patch author='m.fellinger@gmail.com' date='20070208090136' local_date='Thu Feb 8 18:01:36 JST 2007' inverted='False' hash='20070208090136-40155-c4892de82ff0b4883b3205790fddd712aa2f76d5.gz'>
1318
+ <name>TAG 0.0.7</name>
1319
+ </patch>
1320
+ <patch author='m.fellinger@gmail.com' date='20070208090122' local_date='Thu Feb 8 18:01:22 JST 2007' inverted='False' hash='20070208090122-40155-a0a6b92716245b324b3c5dbefbb266d4a1539e6a.gz'>
1321
+ <name>update changelog</name>
1322
+ </patch>
1323
+ <patch author='m.fellinger@gmail.com' date='20070208021846' local_date='Thu Feb 8 11:18:46 JST 2007' inverted='False' hash='20070208021846-40155-7eb6b058a584e4ff5f80523f1341e4fa50877f7b.gz'>
1324
+ <name>this fixes some issues with rubygems/rdoc</name>
1325
+ </patch>
1326
+ <patch author='m.fellinger@gmail.com' date='20070208012849' local_date='Thu Feb 8 10:28:49 JST 2007' inverted='False' hash='20070208012849-40155-d996fd7230d663a55d5386b6e9bc2cc971639939.gz'>
1327
+ <name>little hack for RDoc::usage so it will work with a gem too.</name>
1328
+ </patch>
1329
+ <patch author='m.fellinger@gmail.com' date='20070207163146' local_date='Thu Feb 8 01:31:46 JST 2007' inverted='False' hash='20070207163146-40155-44d80dd3ae4cadc238da051e97b5394a60a80163.gz'>
1330
+ <name>add rspec as dependency</name>
1331
+ </patch>
1332
+ <patch author='m.fellinger@gmail.com' date='20070207162113' local_date='Thu Feb 8 01:21:13 JST 2007' inverted='False' hash='20070207162113-40155-df9d295cf01dbaca65ddd8771d9f19f474876dfb.gz'>
1333
+ <name>nicer exit</name>
1334
+ </patch>
1335
+ <patch author='m.fellinger@gmail.com' date='20070207103710' local_date='Wed Feb 7 19:37:10 JST 2007' inverted='False' hash='20070207103710-40155-d3900a2d2dfa6995f1084db04bde5dd849c180ed.gz'>
1336
+ <name>remove foul language ;)</name>
1337
+ </patch>
1338
+ <patch author='m.fellinger@gmail.com' date='20070207103604' local_date='Wed Feb 7 19:36:04 JST 2007' inverted='False' hash='20070207103604-40155-f857f67aa0dfe7d2149d789caff2fb27bc033f55.gz'>
1339
+ <name>added :distribute task and fixed a small typo</name>
1340
+ </patch>
1341
+ <patch author='m.fellinger@gmail.com' date='20070207100725' local_date='Wed Feb 7 19:07:25 JST 2007' inverted='False' hash='20070207100725-40155-c9491df6925ce7ef8acf4c8162b6da8b7f30dd2e.gz'>
1342
+ <name>TAG 0.0.6</name>
1343
+ </patch>
1344
+ <patch author='m.fellinger@gmail.com' date='20070207100654' local_date='Wed Feb 7 19:06:54 JST 2007' inverted='False' hash='20070207100654-40155-959aa7804608a4690d217bd909199a9b1b27e5da.gz'>
1345
+ <name>0.0.6</name>
1346
+ </patch>
1347
+ <patch author='m.fellinger@gmail.com' date='20070207100638' local_date='Wed Feb 7 19:06:38 JST 2007' inverted='False' hash='20070207100638-40155-0b85ba280e683a28fad4779c3c7eaa44aef6d2b1.gz'>
1348
+ <name>working around a bug in Hpricot 0.5</name>
1349
+ </patch>
1350
+ <patch author='m.fellinger@gmail.com' date='20070207100624' local_date='Wed Feb 7 19:06:24 JST 2007' inverted='False' hash='20070207100624-40155-9766f1bbe70f225fdd55b1a760ca25d4ed212d12.gz'>
1351
+ <name>update changelog</name>
1352
+ </patch>
1353
+ <patch author='m.fellinger@gmail.com' date='20070207100215' local_date='Wed Feb 7 19:02:15 JST 2007' inverted='False' hash='20070207100215-40155-2b7cd7831ce97f5e809ac63a8723ec78dad9ac09.gz'>
1354
+ <name>this introduces a new startup/shutdown hook system</name>
1355
+ </patch>
1356
+ <patch author='m.fellinger@gmail.com' date='20070207100052' local_date='Wed Feb 7 19:00:52 JST 2007' inverted='False' hash='20070207100052-40155-9931928eb8b767460a94db686516b4224effd4d8.gz'>
1357
+ <name>update changelog, fixing Rakefile and making bin/ramaze a bit nicer.</name>
1358
+ </patch>
1359
+ <patch author='m.fellinger@gmail.com' date='20070206144403' local_date='Tue Feb 6 23:44:03 JST 2007' inverted='False' hash='20070206144403-40155-99ad8dfb6dbd593caab1f3e074766c92391f830a.gz'>
1360
+ <name>fixing typo in Rakefile</name>
1361
+ </patch>
1362
+ <patch author='m.fellinger@gmail.com' date='20070206082923' local_date='Tue Feb 6 17:29:23 JST 2007' inverted='False' hash='20070206082923-40155-a0994bd9e797cf5b3dc50380f281b7108813fd6a.gz'>
1363
+ <name>adding documentation for all traits.</name>
1364
+ </patch>
1365
+ <patch author='m.fellinger@gmail.com' date='20070206082909' local_date='Tue Feb 6 17:29:09 JST 2007' inverted='False' hash='20070206082909-40155-1625f72161cf0fa43da7f091207538c62eef62f0.gz'>
1366
+ <name>improving Hash#keys_to_sym</name>
1367
+ </patch>
1368
+ <patch author='m.fellinger@gmail.com' date='20070206082842' local_date='Tue Feb 6 17:28:42 JST 2007' inverted='False' hash='20070206082842-40155-b350e1c6e2b45b71712a3ceb9214a7414a1d688d.gz'>
1369
+ <name>adding the files for the allison-template</name>
1370
+ </patch>
1371
+ <patch author='m.fellinger@gmail.com' date='20070206082825' local_date='Tue Feb 6 17:28:25 JST 2007' inverted='False' hash='20070206082825-40155-cb16d9e4728c6afe2c955e715a7fd089d0ffaaf4.gz'>
1372
+ <name>add rake allison for the improved allison rdoc-template</name>
1373
+ </patch>
1374
+ <patch author='m.fellinger@gmail.com' date='20070206034237' local_date='Tue Feb 6 12:42:37 JST 2007' inverted='False' hash='20070206034237-40155-cb936ab4e3483df6b27781a296fadd0c979078f0.gz'>
1375
+ <name>fixing minor typos in the README, removing ramaze.xcf and fixing require hpricot in tc_helper_feed</name>
1376
+ </patch>
1377
+ <patch author='manveru@weez-int.com' date='20070206070835' local_date='Tue Feb 6 16:08:35 JST 2007' inverted='False' hash='20070206070835-24576-1beea81399731ae15d341b38d93285c680c48e95.gz'>
1378
+ <name>add a post install message for the gem and add documentation for Tool::Create</name>
1379
+ </patch>
1380
+ <patch author='manveru@weez-int.com' date='20070206045117' local_date='Tue Feb 6 13:51:17 JST 2007' inverted='False' hash='20070206045117-24576-7b753d1b8870c87852831e19353d6f3abca72462.gz'>
1381
+ <name>handle referer for mongrel too</name>
1382
+ </patch>
1383
+ <patch author='manveru@weez-int.com' date='20070206045029' local_date='Tue Feb 6 13:50:29 JST 2007' inverted='False' hash='20070206045029-24576-d7957104a31e0a0ca8e7e124f7b085e65c7c4f3d.gz'>
1384
+ <name>remove the require coderay in error.rb main-body, this is done dynamically and with a proper rescue in the error-method instead, therefor removing the shown dependecy in rake dependencies</name>
1385
+ </patch>
1386
+ <patch author='manveru@weez-int.com' date='20070206044903' local_date='Tue Feb 6 13:49:03 JST 2007' inverted='False' hash='20070206044903-24576-ae6983b8519e29f6e0a0b154ff1af0a813edeab0.gz'>
1387
+ <name>fixing rake rdoc, adding rake readme2html and adding rake as dependency</name>
1388
+ </patch>
1389
+ <patch author='manveru@weez-int.com' date='20070204143454' local_date='Sun Feb 4 23:34:54 JST 2007' inverted='False' hash='20070204143454-24576-9c234c67ad7fa1045848cce01a0e85c0900e3c88.gz'>
1390
+ <name>adding some more methods to Store::Default</name>
1391
+ </patch>
1392
+ <patch author='manveru@weez-int.com' date='20070204135029' local_date='Sun Feb 4 22:50:29 JST 2007' inverted='False' hash='20070204135029-24576-8bf93c67ee2d8158ce780597c8783ae544a279a3.gz'>
1393
+ <name>finally make ramaze --create project work</name>
1394
+ </patch>
1395
+ <patch author='m.fellinger@gmail.com' date='20070205023034' local_date='Mon Feb 5 11:30:34 JST 2007' inverted='False' hash='20070205023034-40155-9f0ac02adfddfbaf4ee71b7f704c7afd8060900c.gz'>
1396
+ <name>minor changes to README</name>
1397
+ </patch>
1398
+ <patch author='m.fellinger@gmail.com' date='20070205022341' local_date='Mon Feb 5 11:23:41 JST 2007' inverted='False' hash='20070205022341-40155-e6879f003de5e97da7c12e855d4aff8dccbf5180.gz'>
1399
+ <name>adding todo</name>
1400
+ </patch>
1401
+ <patch author='m.fellinger@gmail.com' date='20070205022321' local_date='Mon Feb 5 11:23:21 JST 2007' inverted='False' hash='20070205022321-40155-8fce195adb7816ebd248754a0cf031e80b9a7d75.gz'>
1402
+ <name>update documentation for Global</name>
1403
+ </patch>
1404
+ <patch author='m.fellinger@gmail.com' date='20070205022313' local_date='Mon Feb 5 11:23:13 JST 2007' inverted='False' hash='20070205022313-40155-66532e27f01bc7dd6e52eab102388533252577f3.gz'>
1405
+ <name>update doc/TODO</name>
1406
+ </patch>
1407
+ <patch author='m.fellinger@gmail.com' date='20070205022125' local_date='Mon Feb 5 11:21:25 JST 2007' inverted='False' hash='20070205022125-40155-51285875e1ff363f3ceb3e450bc4b066cae0f039.gz'>
1408
+ <name>little patch to rake todolist</name>
1409
+ </patch>
1410
+ <patch author='manveru@weez-int.com' date='20070202234515' local_date='Sat Feb 3 08:45:15 JST 2007' inverted='False' hash='20070202234515-24576-a6b1af2822b94e4631a66aefa834720613850016.gz'>
1411
+ <name>adding testcase_requires in spec_helper to have a standard way of saying whether a testcase is supposed to pass at all, also fixing a little issue with require-path for ramaze and problematic lookup of Ramaze::Helper in haml (it&apos;s extended anyway)</name>
1412
+ </patch>
1413
+ <patch author='manveru@weez-int.com' date='20070202230937' local_date='Sat Feb 3 08:09:37 JST 2007' inverted='False' hash='20070202230937-24576-c301e39bdfc5ef669a4349edc847db638b876e1f.gz'>
1414
+ <name>use proto/public for static lookup, not lib/public</name>
1415
+ </patch>
1416
+ <patch author='manveru@weez-int.com' date='20070202230925' local_date='Sat Feb 3 08:09:25 JST 2007' inverted='False' hash='20070202230925-24576-0d490e9857d5b8ffcfd7202be50a2c378e67e9ba.gz'>
1417
+ <name>fixing logger for files</name>
1418
+ </patch>
1419
+ <patch author='manveru@weez-int.com' date='20070202230746' local_date='Sat Feb 3 08:07:46 JST 2007' inverted='False' hash='20070202230746-24576-951a6741faeeb38ab67daef66ba8761c13c0f721.gz'>
1420
+ <name>adds the other stuff for lib/proto, just a very simple little hello-world app with most of the structure of a fully grown application and some example configurations.</name>
1421
+ </patch>
1422
+ <patch author='manveru@weez-int.com' date='20070202230726' local_date='Sat Feb 3 08:07:26 JST 2007' inverted='False' hash='20070202230726-24576-e8f221f86d7722d63c1ba77501dd187916641b65.gz'>
1423
+ <name>move lib/public to lib/proto/public</name>
1424
+ </patch>
1425
+ <patch author='manveru@weez-int.com' date='20070202230633' local_date='Sat Feb 3 08:06:33 JST 2007' inverted='False' hash='20070202230633-24576-1a7b51068da0077f4ecd7fa7c7e56a7cf9aa227d.gz'>
1426
+ <name>add tool/create and change the bin/ramaze for ramaze --create myapp, which basically copies the proto-directory from lib/proto</name>
1427
+ </patch>
1428
+ <patch author='manveru@weez-int.com' date='20070202230618' local_date='Sat Feb 3 08:06:18 JST 2007' inverted='False' hash='20070202230618-24576-edee49f544e8722f0fac10bec4b7164cecdd6224.gz'>
1429
+ <name>uh, forgot the source of these two files</name>
1430
+ </patch>
1431
+ <patch author='manveru@weez-int.com' date='20070202230532' local_date='Sat Feb 3 08:05:32 JST 2007' inverted='False' hash='20070202230532-24576-52220a624d38d32da6257138b8db45b7c1b1e141.gz'>
1432
+ <name>add the snippets for Hash and Symbol</name>
1433
+ </patch>
1434
+ <patch author='manveru@weez-int.com' date='20070202230501' local_date='Sat Feb 3 08:05:01 JST 2007' inverted='False' hash='20070202230501-24576-92fab41339f6644edf093624cf819c06aa605db5.gz'>
1435
+ <name>update Rakefile for testing and superior options for rdoc</name>
1436
+ </patch>
1437
+ <patch author='manveru@weez-int.com' date='20070202230342' local_date='Sat Feb 3 08:03:42 JST 2007' inverted='False' hash='20070202230342-24576-aa74103b501ef592d64c7b3777d5d3054aa20df9.gz'>
1438
+ <name>remove lib/test</name>
1439
+ </patch>
1440
+ <patch author='manveru@weez-int.com' date='20070202230245' local_date='Sat Feb 3 08:02:45 JST 2007' inverted='False' hash='20070202230245-24576-474965b2a6a2de643f10dffe06e91af813a9bed2.gz'>
1441
+ <name>move lib/test/request_maker into the rake-task request</name>
1442
+ </patch>
1443
+ <patch author='manveru@weez-int.com' date='20070202230203' local_date='Sat Feb 3 08:02:03 JST 2007' inverted='False' hash='20070202230203-24576-8af58d778cf4789016c83e9c739622e394f024b0.gz'>
1444
+ <name>patch the specs to work in the new directory</name>
1445
+ </patch>
1446
+ <patch author='manveru@weez-int.com' date='20070202230121' local_date='Sat Feb 3 08:01:21 JST 2007' inverted='False' hash='20070202230121-24576-4912d7b6b51af70dc9d237d365c5e03ea39be63f.gz'>
1447
+ <name>move test_helper to spec/spec_helper and all_tests to spec_all</name>
1448
+ </patch>
1449
+ <patch author='manveru@weez-int.com' date='20070202230050' local_date='Sat Feb 3 08:00:50 JST 2007' inverted='False' hash='20070202230050-24576-156303e03432f775dd55549ca6375d971e362505.gz'>
1450
+ <name>move test to spec</name>
1451
+ </patch>
1452
+ <patch author='manveru@weez-int.com' date='20070202194539' local_date='Sat Feb 3 04:45:39 JST 2007' inverted='False' hash='20070202194539-24576-47291eaaf56ac2b78043c3e7c2b91ab4bb835171.gz'>
1453
+ <name>tons of little changes to make dispatcher work again, also adding support for defining your Global.inform_to in a YAML file (&apos;stdout&apos;, &apos;stderr&apos;, :stdout, :stderr or a filename)</name>
1454
+ </patch>
1455
+ <patch author='m.fellinger@gmail.com' date='20070202121446' local_date='Fri Feb 2 21:14:46 JST 2007' inverted='False' hash='20070202121446-40155-0b1783d42d6999796441b84c3a5bdba1414fbbc9.gz'>
1456
+ <name>yet another typo</name>
1457
+ </patch>
1458
+ <patch author='m.fellinger@gmail.com' date='20070202121338' local_date='Fri Feb 2 21:13:38 JST 2007' inverted='False' hash='20070202121338-40155-b70023906770aceede7970cbb810cd26b6ee121f.gz'>
1459
+ <name>typo</name>
1460
+ </patch>
1461
+ <patch author='m.fellinger@gmail.com' date='20070202121210' local_date='Fri Feb 2 21:12:10 JST 2007' inverted='False' hash='20070202121210-40155-18d6b161ebfae091ca21e155747356821afaaead.gz'>
1462
+ <name>document String#snake_case</name>
1463
+ </patch>
1464
+ <patch author='m.fellinger@gmail.com' date='20070202121103' local_date='Fri Feb 2 21:11:03 JST 2007' inverted='False' hash='20070202121103-40155-93c6ac701e0673f967b22a9ce4f48dc3d17997fc.gz'>
1465
+ <name>docu for String#camel_case</name>
1466
+ </patch>
1467
+ <patch author='m.fellinger@gmail.com' date='20070202120729' local_date='Fri Feb 2 21:07:29 JST 2007' inverted='False' hash='20070202120729-40155-dec31a9a29ef5bd61d0c424901db76039e4e998d.gz'>
1468
+ <name>MAJOR update to README ;) - now it should be a lot more RDoc-able</name>
1469
+ </patch>
1470
+ <patch author='m.fellinger@gmail.com' date='20070202113937' local_date='Fri Feb 2 20:39:37 JST 2007' inverted='False' hash='20070202113937-40155-c1f13cae777babe5af33dab04f0d6a6d84eb2d84.gz'>
1471
+ <name>update docs for Template::Amrita2</name>
1472
+ </patch>
1473
+ <patch author='m.fellinger@gmail.com' date='20070202113747' local_date='Fri Feb 2 20:37:47 JST 2007' inverted='False' hash='20070202113747-40155-9b695a4e8387396f61f10ed781f0a50d6ad7bec1.gz'>
1474
+ <name>remove the Template::Stupid</name>
1475
+ </patch>
1476
+ <patch author='m.fellinger@gmail.com' date='20070202113316' local_date='Fri Feb 2 20:33:16 JST 2007' inverted='False' hash='20070202113316-40155-36f7226f5879fba29116e79c39b1c76b2b5b12f0.gz'>
1477
+ <name>document some more snippets</name>
1478
+ </patch>
1479
+ <patch author='m.fellinger@gmail.com' date='20070202112454' local_date='Fri Feb 2 20:24:54 JST 2007' inverted='False' hash='20070202112454-40155-4f6f1fcf25ad045284d7b3ac988c6cc588dc607a.gz'>
1480
+ <name>adding docs for OpenStruct#temp</name>
1481
+ </patch>
1482
+ <patch author='m.fellinger@gmail.com' date='20070202112046' local_date='Fri Feb 2 20:20:46 JST 2007' inverted='False' hash='20070202112046-40155-cda3644f432692d927aa74715265c553ba047bc1.gz'>
1483
+ <name>add the last bits of code and documentation for request/response/session (mostly the ::current method)</name>
1484
+ </patch>
1485
+ <patch author='m.fellinger@gmail.com' date='20070202112007' local_date='Fri Feb 2 20:20:07 JST 2007' inverted='False' hash='20070202112007-40155-ad930839e0cc40851158720b11ad438e1d28f09c.gz'>
1486
+ <name>a little bit nicer API in Dispatcher, but most importantly, fully documented!</name>
1487
+ </patch>
1488
+ <patch author='m.fellinger@gmail.com' date='20070201082641' local_date='Thu Feb 1 17:26:41 JST 2007' inverted='False' hash='20070201082641-40155-e57a5740226916373935987b20f9f92010f9d01b.gz'>
1489
+ <name>something broke... now reading the template extra-early... this should give us better ways to do action-compiles later on...</name>
1490
+ </patch>
1491
+ <patch author='m.fellinger@gmail.com' date='20070201074813' local_date='Thu Feb 1 16:48:13 JST 2007' inverted='False' hash='20070201074813-40155-0799de2cc03f8f88fc4010fe4e6720d6996e2073.gz'>
1492
+ <name>Ramaze::Template::Element =&gt; Ramaze::Element</name>
1493
+ </patch>
1494
+ <patch author='manveru@weez-int.com' date='20070202053226' local_date='Fri Feb 2 14:32:26 JST 2007' inverted='False' hash='20070202053226-24576-d939fa4c0b1b587396f6ec6b4b9bc79fef49292e.gz'>
1495
+ <name>first draft of documentation for dispatcher</name>
1496
+ </patch>
1497
+ <patch author='manveru@weez-int.com' date='20070202052448' local_date='Fri Feb 2 14:24:48 JST 2007' inverted='False' hash='20070202052448-24576-ff374ec375721b68d62233e93821b25bd604877e.gz'>
1498
+ <name>completing documentation of ramaze.rb and lib/test/test_helper</name>
1499
+ </patch>
1500
+ <patch author='manveru@weez-int.com' date='20070202052419' local_date='Fri Feb 2 14:24:19 JST 2007' inverted='False' hash='20070202052419-24576-4a534476bcf808bf6c3340685cecd7a928d369fa.gz'>
1501
+ <name>completing documentation for Ramaze::Template</name>
1502
+ </patch>
1503
+ <patch author='manveru@weez-int.com' date='20070202052407' local_date='Fri Feb 2 14:24:07 JST 2007' inverted='False' hash='20070202052407-24576-7e4e31f2620ed81f00ba6f49164bca2b7c218b6e.gz'>
1504
+ <name>minor changes and full documenation for Gestalt</name>
1505
+ </patch>
1506
+ <patch author='manveru@weez-int.com' date='20070202052342' local_date='Fri Feb 2 14:23:42 JST 2007' inverted='False' hash='20070202052342-24576-2afb8771c7513aff81d47752b07fca833ebd1bde.gz'>
1507
+ <name>completing documentation of adapter/mongrel adapter/webrick</name>
1508
+ </patch>
1509
+ <patch author='manveru@weez-int.com' date='20070202050144' local_date='Fri Feb 2 14:01:44 JST 2007' inverted='False' hash='20070202050144-24576-5c66c74ce510c96c29bcf1c01ea8fcdcd2dd9ae0.gz'>
1510
+ <name>taking advantage of a custom external config-file... i won&apos;t build an automatic loading of that file since it&apos;s just a oneliner to load it. this is for the blog-example</name>
1511
+ </patch>
1512
+ <patch author='manveru@weez-int.com' date='20070202050101' local_date='Fri Feb 2 14:01:01 JST 2007' inverted='False' hash='20070202050101-24576-7518fdf968496f18cc61e32297551f71c4fd0492.gz'>
1513
+ <name>support for mapping controllers as symbols/strings, looking up the constants on startup.</name>
1514
+ </patch>
1515
+ <patch author='manveru@weez-int.com' date='20070201134706' local_date='Thu Feb 1 22:47:06 JST 2007' inverted='False' hash='20070201134706-24576-ddc8dec75a438380bf6e994032f9f067f33734a5.gz'>
1516
+ <name>testing redirect_referer in tc_helper_redirect</name>
1517
+ </patch>
1518
+ <patch author='manveru@weez-int.com' date='20070201134616' local_date='Thu Feb 1 22:46:16 JST 2007' inverted='False' hash='20070201134616-24576-544c3c96e92eb7d65bb76cdbdf8213f26e9876b5.gz'>
1519
+ <name>updating tc_helper_auth for the different ways to set the auth_table</name>
1520
+ </patch>
1521
+ <patch author='manveru@weez-int.com' date='20070201134530' local_date='Thu Feb 1 22:45:30 JST 2007' inverted='False' hash='20070201134530-24576-cd9afe40de15b383a5b98f151db77420eba8e656.gz'>
1522
+ <name>this adds the possibility to add a base url for the context (like path to a controller)... nasty, nasty stuff</name>
1523
+ </patch>
1524
+ <patch author='manveru@weez-int.com' date='20070201134501' local_date='Thu Feb 1 22:45:01 JST 2007' inverted='False' hash='20070201134501-24576-9e837b755ace3f6cb5c9a2b1aaf7caf87b6f4d20.gz'>
1525
+ <name>make rake all_tests compatible for tinderbox and a little bit prettier</name>
1526
+ </patch>
1527
+ <patch author='manveru@weez-int.com' date='20070201134415' local_date='Thu Feb 1 22:44:15 JST 2007' inverted='False' hash='20070201134415-24576-508578747821f0af4040734c9aa4f918909c0f3a.gz'>
1528
+ <name>use request.referer and add request.local_net? from nitro</name>
1529
+ </patch>
1530
+ <patch author='manveru@weez-int.com' date='20070201134332' local_date='Thu Feb 1 22:43:32 JST 2007' inverted='False' hash='20070201134332-24576-9d8b0f74e5b12fe9aa6782ab4d77aadf8d9a92c7.gz'>
1531
+ <name>restructuring and documenting AuthHelper</name>
1532
+ </patch>
1533
+ <patch author='manveru@weez-int.com' date='20070201134311' local_date='Thu Feb 1 22:43:11 JST 2007' inverted='False' hash='20070201134311-24576-8167b1a3a4c943de108ced80458e306ba0ca4395.gz'>
1534
+ <name>use ancestral_trait for aspects</name>
1535
+ </patch>
1536
+ <patch author='manveru@weez-int.com' date='20070201134253' local_date='Thu Feb 1 22:42:53 JST 2007' inverted='False' hash='20070201134253-24576-8c7bc8f68d36b77a48465b1727313472ae51c868.gz'>
1537
+ <name>add documentation for the Rakefile tasks</name>
1538
+ </patch>
1539
+ <patch author='manveru@weez-int.com' date='20070201114042' local_date='Thu Feb 1 20:40:42 JST 2007' inverted='False' hash='20070201114042-24576-938a0e81bd311131720bd534f5e81bf76f44ebce.gz'>
1540
+ <name>remove a bit of debugging-info from AspectHelper</name>
1541
+ </patch>
1542
+ <patch author='manveru@weez-int.com' date='20070201113936' local_date='Thu Feb 1 20:39:36 JST 2007' inverted='False' hash='20070201113936-24576-c6a05aef67ede351cc3b5f89c05f4d50df54309a.gz'>
1543
+ <name>adding stack functionality in the AuthHelper by default. So once you are logged in, you will be redirected back to the last known position.</name>
1544
+ </patch>
1545
+ <patch author='manveru@weez-int.com' date='20070201113905' local_date='Thu Feb 1 20:39:05 JST 2007' inverted='False' hash='20070201113905-24576-4e6d42240723b4c1bd4b09b6232b672673d81f2c.gz'>
1546
+ <name>simplify the code in helper.rb a little bit</name>
1547
+ </patch>
1548
+ <patch author='manveru@weez-int.com' date='20070131133316' local_date='Wed Jan 31 22:33:16 JST 2007' inverted='False' hash='20070131133316-24576-880d1e9594a126a331a046ee178b3c3ab4226a9c.gz'>
1549
+ <name>small updates to the README again, adding some links.</name>
1550
+ </patch>
1551
+ <patch author='manveru@weez-int.com' date='20070131132235' local_date='Wed Jan 31 22:22:35 JST 2007' inverted='False' hash='20070131132235-24576-94661b0ed61f794223734cb90383af280572c874.gz'>
1552
+ <name>adding the Liquid templating-engine (Template::Liquid) complete with tests and example.</name>
1553
+ </patch>
1554
+ <patch author='manveru@weez-int.com' date='20070131131959' local_date='Wed Jan 31 22:19:59 JST 2007' inverted='False' hash='20070131131959-24576-fc4d927b7f6dbcec5a8c075f74c91fc287e3f2e8.gz'>
1555
+ <name>little fixes for Haml (examples/templates) and adding the option to pass your own haml_options or set a trait... also some docs for transform.</name>
1556
+ </patch>
1557
+ <patch author='manveru@weez-int.com' date='20070131043506' local_date='Wed Jan 31 13:35:06 JST 2007' inverted='False' hash='20070131043506-24576-c7dd24afb7c2aa15a7b81af091ff164a9933448f.gz'>
1558
+ <name>another Inform =&gt; Informer for erubis and amrita2</name>
1559
+ </patch>
1560
+ <patch author='manveru@weez-int.com' date='20070131043418' local_date='Wed Jan 31 13:34:18 JST 2007' inverted='False' hash='20070131043418-24576-ca053d6edb0bbe801707e20caab9bcc34f78ab79.gz'>
1561
+ <name>adding Haml example in examples/templates</name>
1562
+ </patch>
1563
+ <patch author='manveru@weez-int.com' date='20070131040647' local_date='Wed Jan 31 13:06:47 JST 2007' inverted='False' hash='20070131040647-24576-23354e8ad60f5267dccca56ff6d8a1b66d33e10d.gz'>
1564
+ <name>updating README</name>
1565
+ </patch>
1566
+ <patch author='manveru@weez-int.com' date='20070131040526' local_date='Wed Jan 31 13:05:26 JST 2007' inverted='False' hash='20070131040526-24576-9b63997061b7275f8d6e6c6f515888eff7b27aca.gz'>
1567
+ <name>adding Haml Templating-engine. (Template::Haml)</name>
1568
+ </patch>
1569
+ <patch author='manveru@weez-int.com' date='20070130160922' local_date='Wed Jan 31 01:09:22 JST 2007' inverted='False' hash='20070130160922-24576-b261054d7a025d5397c28697255a9d5b3589105a.gz'>
1570
+ <name>add a tc_error</name>
1571
+ </patch>
1572
+ <patch author='manveru@weez-int.com' date='20070130160650' local_date='Wed Jan 31 01:06:50 JST 2007' inverted='False' hash='20070130160650-24576-3fdcad46d29db7dac9742dccdf9c959a5b8605a9.gz'>
1573
+ <name>fixing Element =&gt; Template::Element</name>
1574
+ </patch>
1575
+ <patch author='manveru@weez-int.com' date='20070130135816' local_date='Tue Jan 30 22:58:16 JST 2007' inverted='False' hash='20070130135816-24576-c10a7c19c75dab81a3764adc57aa5c6747003898.gz'>
1576
+ <name>limiting the backtrace for the errorpage to 0..20 to make it speedier, requiring coderay</name>
1577
+ </patch>
1578
+ <patch author='manveru@weez-int.com' date='20070130135728' local_date='Tue Jan 30 22:57:28 JST 2007' inverted='False' hash='20070130135728-24576-950fe34569e22d56fcecfbcff0cefca9a663cc2c.gz'>
1579
+ <name>putting Element and Morpher in the Ramaze::Template namespace, prefixing the Ramaze::BASEDIR</name>
1580
+ </patch>
1581
+ <patch author='manveru@weez-int.com' date='20070130135700' local_date='Tue Jan 30 22:57:00 JST 2007' inverted='False' hash='20070130135700-24576-422300b0d972204974dc66d76e005384053abb7d.gz'>
1582
+ <name>fixing dispatcher errorhandling for webrick... was broken, as usual.</name>
1583
+ </patch>
1584
+ <patch author='manveru@weez-int.com' date='20070130135626' local_date='Tue Jan 30 22:56:26 JST 2007' inverted='False' hash='20070130135626-24576-eade02d0c0bd5acb76420366bb3017ad7ffe4e27.gz'>
1585
+ <name>adapt the errorpage and give it really neat new CodeRay highlighting, the old one was b0rken ages ago.</name>
1586
+ </patch>
1587
+ <patch author='manveru@weez-int.com' date='20070130124215' local_date='Tue Jan 30 21:42:15 JST 2007' inverted='False' hash='20070130124215-24576-162c03c18339ca7c297e9bef1635261e160e1255.gz'>
1588
+ <name>use Informer in the templating to avoid confusion with the error method on the controller and of Inform (which will need to search for a new naming-scheme, i fear)</name>
1589
+ </patch>
1590
+ <patch author='manveru@weez-int.com' date='20070130124106' local_date='Tue Jan 30 21:41:06 JST 2007' inverted='False' hash='20070130124106-24576-7ce4794f753a52f8f1c0ec1d8c529bcf53e5a153.gz'>
1591
+ <name>template.rb gets a new trait, the :public which points per default to ramazes public directory, we extend the paths searched to this directory, some more general cleanup as well.</name>
1592
+ </patch>
1593
+ <patch author='manveru@weez-int.com' date='20070130123913' local_date='Tue Jan 30 21:39:13 JST 2007' inverted='False' hash='20070130123913-24576-0f4ddd7be71b573d8945c4fabe3251f6a2df3810.gz'>
1594
+ <name>just a little nicety ;)</name>
1595
+ </patch>
1596
+ <patch author='manveru@weez-int.com' date='20070130123824' local_date='Tue Jan 30 21:38:24 JST 2007' inverted='False' hash='20070130123824-24576-d7f57873b3745ae816ff526ba440a67fc6a6a73a.gz'>
1597
+ <name>remove the old errorpage-cruft from the error.rb, it will in future serve for some general errors that Ramaze will use.</name>
1598
+ </patch>
1599
+ <patch author='manveru@weez-int.com' date='20070130123752' local_date='Tue Jan 30 21:37:52 JST 2007' inverted='False' hash='20070130123752-24576-e8c877bf3d47ef2aec858bb07faddb50cb0aafd0.gz'>
1600
+ <name>make dispatcher aware of error-handling (not just that hardcoded errorpage-stuff</name>
1601
+ </patch>
1602
+ <patch author='manveru@weez-int.com' date='20070130123700' local_date='Tue Jan 30 21:37:00 JST 2007' inverted='False' hash='20070130123700-24576-836141ff9c76efd5b23dcb2efa00a1d00cc72f94.gz'>
1603
+ <name>create the new error.xhtml and error.css in order to finally get some sane structure in error-handling.</name>
1604
+ </patch>
1605
+ <patch author='manveru@weez-int.com' date='20070130110037' local_date='Tue Jan 30 20:00:37 JST 2007' inverted='False' hash='20070130110037-24576-d5912bb3d13e83f6b69cd0322555adfd4f7bb437.gz'>
1606
+ <name>show the error-message as well when Template.transform fails.</name>
1607
+ </patch>
1608
+ <patch author='manveru@weez-int.com' date='20070130110010' local_date='Tue Jan 30 20:00:10 JST 2007' inverted='False' hash='20070130110010-24576-0a586fc8642b8b8e9371a0ba0cde028a344a592c.gz'>
1609
+ <name>remove Template from the pipeline again, just causing problems with multiple evaluation.</name>
1610
+ </patch>
1611
+ <patch author='manveru@weez-int.com' date='20070130105915' local_date='Tue Jan 30 19:59:15 JST 2007' inverted='False' hash='20070130105915-24576-f857da21ced2d144d8bda717df0e43053f350325.gz'>
1612
+ <name>splitting out Element.transform into multiple methods, this is the preparation to make it a bit more... itelligent :)</name>
1613
+ </patch>
1614
+ <patch author='manveru@weez-int.com' date='20070129145938' local_date='Mon Jan 29 23:59:38 JST 2007' inverted='False' hash='20070129145938-24576-47c824088167e58de83db2b5a69623ccb89b5ca1.gz'>
1615
+ <name>_yet_ another way how webrick handles cookies... this is getting tiresome :P</name>
1616
+ </patch>
1617
+ <patch author='manveru@weez-int.com' date='20070129145914' local_date='Mon Jan 29 23:59:14 JST 2007' inverted='False' hash='20070129145914-24576-4f802d08d65bd58b90022d770769bf2e17fd7db9.gz'>
1618
+ <name>if the action is a symbol convert to string before escaping</name>
1619
+ </patch>
1620
+ <patch author='manveru@weez-int.com' date='20070129145826' local_date='Mon Jan 29 23:58:26 JST 2007' inverted='False' hash='20070129145826-24576-9c890042dc1d2eec8f1b7fa0f0a22f86fa1e4707.gz'>
1621
+ <name>changes to morpher and rearranging the pipeline... evaluating twice should be avoided somehow...</name>
1622
+ </patch>
1623
+ <patch author='manveru@weez-int.com' date='20070129145759' local_date='Mon Jan 29 23:57:59 JST 2007' inverted='False' hash='20070129145759-24576-0c27649db00dc3fae45c5f7a280716f00eb28f47.gz'>
1624
+ <name>vast upgrade of AuthHelper</name>
1625
+ </patch>
1626
+ <patch author='manveru@weez-int.com' date='20070129145730' local_date='Mon Jan 29 23:57:30 JST 2007' inverted='False' hash='20070129145730-24576-21e444be3f99e86dea73987e1503e4e4a63a88c6.gz'>
1627
+ <name>support different arity for pre-aspects</name>
1628
+ </patch>
1629
+ <patch author='manveru@weez-int.com' date='20070129145711' local_date='Mon Jan 29 23:57:11 JST 2007' inverted='False' hash='20070129145711-24576-fd5326ea9833fac1499800f6b341542e56c12125.gz'>
1630
+ <name>final version of the blog (for the time being, as always ;)</name>
1631
+ </patch>
1632
+ <patch author='manveru@weez-int.com' date='20070129133200' local_date='Mon Jan 29 22:32:00 JST 2007' inverted='False' hash='20070129133200-24576-03932278237fb360a0abcfc70261dcbf67d50214.gz'>
1633
+ <name>remove the pointers to EntryController and remove the list.xhtml</name>
1634
+ </patch>
1635
+ <patch author='manveru@weez-int.com' date='20070129132849' local_date='Mon Jan 29 22:28:49 JST 2007' inverted='False' hash='20070129132849-24576-ef49dcde3779b1409490983633533728ece280c0.gz'>
1636
+ <name>remove the EntryController and use MainController instead</name>
1637
+ </patch>
1638
+ <patch author='manveru@weez-int.com' date='20070129132705' local_date='Mon Jan 29 22:27:05 JST 2007' inverted='False' hash='20070129132705-24576-3f541202d7836f576da6e4f8f36caff5d5c2cf4d.gz'>
1639
+ <name>move the templates for the wiki to the root template-folder</name>
1640
+ </patch>
1641
+ <patch author='manveru@weez-int.com' date='20070129132538' local_date='Mon Jan 29 22:25:38 JST 2007' inverted='False' hash='20070129132538-24576-22268aa3edc2f1d15bcf51f9d0c20d4204a83214.gz'>
1642
+ <name>use the cleaner Global.setup instead of direct assignment</name>
1643
+ </patch>
1644
+ <patch author='manveru@weez-int.com' date='20070129132520' local_date='Mon Jan 29 22:25:20 JST 2007' inverted='False' hash='20070129132520-24576-7e17bcd8609f50469c74edf7a9f8cd93fd13cd60.gz'>
1645
+ <name>fixing session for non-POST</name>
1646
+ </patch>
1647
+ <patch author='manveru@weez-int.com' date='20070129132444' local_date='Mon Jan 29 22:24:44 JST 2007' inverted='False' hash='20070129132444-24576-bf67fb336e42d84aaba446b0952dc10d65b8f97a.gz'>
1648
+ <name>remove the old index of blog, we&apos;ll implement that more minimalistic</name>
1649
+ </patch>
1650
+ <patch author='manveru@weez-int.com' date='20070129131727' local_date='Mon Jan 29 22:17:27 JST 2007' inverted='False' hash='20070129131727-24576-a66575f778bd1da20ca04d728aa387a74ae3415c.gz'>
1651
+ <name>remove miniwiki and move microwiki to whywiki</name>
1652
+ </patch>
1653
+ <patch author='m.fellinger@gmail.com' date='20070129122246' local_date='Mon Jan 29 21:22:46 JST 2007' inverted='False' hash='20070129122246-40155-a4c5ef5aecb0f5388a2fdbec09c13a54d1a9d8ca.gz'>
1654
+ <name>huuge patch (kinda) to support cookies via POST with Net::HTTP to webrick, improves some tests and remove tc_helper_crud</name>
1655
+ </patch>
1656
+ <patch author='m.fellinger@gmail.com' date='20070129122224' local_date='Mon Jan 29 21:22:24 JST 2007' inverted='False' hash='20070129122224-40155-42feff85adbb40ddb9ad1ed145a21e1419f912bf.gz'>
1657
+ <name>prevent stack from answering if the stack is empty</name>
1658
+ </patch>
1659
+ <patch author='m.fellinger@gmail.com' date='20070129122206' local_date='Mon Jan 29 21:22:06 JST 2007' inverted='False' hash='20070129122206-40155-f305e08dd0cf53137467bd0c82af9cc231a8b2c9.gz'>
1660
+ <name>little typo, forgot comma ;)</name>
1661
+ </patch>
1662
+ <patch author='m.fellinger@gmail.com' date='20070129111442' local_date='Mon Jan 29 20:14:42 JST 2007' inverted='False' hash='20070129111442-40155-7923abdfc25bd4dcd361ff8d6059f270f2666d0e.gz'>
1663
+ <name>uhm... remove model... again? :)</name>
1664
+ </patch>
1665
+ <patch author='m.fellinger@gmail.com' date='20070129111357' local_date='Mon Jan 29 20:13:57 JST 2007' inverted='False' hash='20070129111357-40155-ac3b80fe5606fa79cea9f56fa623f4a13864a4ce.gz'>
1666
+ <name>removing the CrudHelper stuff again, it&apos;s just confusing and quite worthless in practice.</name>
1667
+ </patch>
1668
+ <patch author='m.fellinger@gmail.com' date='20070129111002' local_date='Mon Jan 29 20:10:02 JST 2007' inverted='False' hash='20070129111002-40155-bd6063fe7aec18a3e66df1139a2cb8e7564a8e7c.gz'>
1669
+ <name>little fix in tc_helper_form in case Og isn&apos;t there.</name>
1670
+ </patch>
1671
+ <patch author='m.fellinger@gmail.com' date='20070129110927' local_date='Mon Jan 29 20:09:27 JST 2007' inverted='False' hash='20070129110927-40155-c2541632d3bcf041bdefb977a1afcada58a5c91f.gz'>
1672
+ <name>as promised, using throw(:respond) now to do redirection properly</name>
1673
+ </patch>
1674
+ <patch author='m.fellinger@gmail.com' date='20070129110739' local_date='Mon Jan 29 20:07:39 JST 2007' inverted='False' hash='20070129110739-40155-6500d52900a8b59581f84084113562f285f938c2.gz'>
1675
+ <name>adding a new option Global.cookies to turn sending cookies on and off... also we are now catching :respond to break out of a request/response cycle early (this will be used for redirection)</name>
1676
+ </patch>
1677
+ <patch author='m.fellinger@gmail.com' date='20070129110636' local_date='Mon Jan 29 20:06:36 JST 2007' inverted='False' hash='20070129110636-40155-b78138ed93b50f1f71294485f5eae2eaa0b92375.gz'>
1678
+ <name>alias Ramaze.start with Ramaze.new</name>
1679
+ </patch>
1680
+ <patch author='m.fellinger@gmail.com' date='20070129110613' local_date='Mon Jan 29 20:06:13 JST 2007' inverted='False' hash='20070129110613-40155-240856bf0eb27e11e8da1d0014f8b586f61c100e.gz'>
1681
+ <name>a little more explanation in the examples/hello</name>
1682
+ </patch>
1683
+ <patch author='m.fellinger@gmail.com' date='20070129110539' local_date='Mon Jan 29 20:05:39 JST 2007' inverted='False' hash='20070129110539-40155-7f6f052ddaa1afa69f8180784fe7d7731fc765cc.gz'>
1684
+ <name>adding ramaze --console for starting up an irb-session while the server runs in the background</name>
1685
+ </patch>
1686
+ <patch author='m.fellinger@gmail.com' date='20070129074105' local_date='Mon Jan 29 16:41:05 JST 2007' inverted='False' hash='20070129074105-40155-785b2fa8836a78c102bb601beceb5fa63f85312b.gz'>
1687
+ <name>Ramaze.autoreload instead of Kernel.autoreload</name>
1688
+ </patch>
1689
+ <patch author='manveru@weez-int.com' date='20070128224946' local_date='Mon Jan 29 07:49:46 JST 2007' inverted='False' hash='20070128224946-24576-42523555640d444930f5f4bc3399c703fed7fbb6.gz'>
1690
+ <name>small change to make ancestral_trait work for the current instance as well.</name>
1691
+ </patch>
1692
+ <patch author='manveru@weez-int.com' date='20070129060328' local_date='Mon Jan 29 15:03:28 JST 2007' inverted='False' hash='20070129060328-24576-466a0627a229e8630b644c8428da8166bc30b804.gz'>
1693
+ <name>the adapter should return only one thread to watch...</name>
1694
+ </patch>
1695
+ <patch author='manveru@weez-int.com' date='20070129055606' local_date='Mon Jan 29 14:56:06 JST 2007' inverted='False' hash='20070129055606-24576-89a120f7641405570fe02a8f7e5a81a94fdaa392.gz'>
1696
+ <name>implement multiple ports for webrick + tests</name>
1697
+ </patch>
1698
+ <patch author='manveru@weez-int.com' date='20070129055546' local_date='Mon Jan 29 14:55:46 JST 2007' inverted='False' hash='20070129055546-24576-9893f32f041667ceea3c833e00be40146f6d5de1.gz'>
1699
+ <name>implement for mongrel + tests</name>
1700
+ </patch>
1701
+ <patch author='manveru@weez-int.com' date='20070129055424' local_date='Mon Jan 29 14:54:24 JST 2007' inverted='False' hash='20070129055424-24576-59c787f82c60f2535904e0bdae9f670dc1e9f4da.gz'>
1702
+ <name>first step in supporting startup for multiple servers at once (ramaze -p 7000..7010) via a new Global.ports that is taken from Global.port (which loses in significance... but it&apos;s only of value before startup anyway</name>
1703
+ </patch>
1704
+ <patch author='manveru@weez-int.com' date='20070128064611' local_date='Sun Jan 28 15:46:11 JST 2007' inverted='False' hash='20070128064611-24576-0dc0311f651522770f0bcb31a13b20388ba9f3a9.gz'>
1705
+ <name>add documentation and fix minor bugs in ramaze, ramaze/global and ramaze/inform</name>
1706
+ </patch>
1707
+ <patch author='manveru@weez-int.com' date='20070128063408' local_date='Sun Jan 28 15:34:08 JST 2007' inverted='False' hash='20070128063408-24576-97d41106d08d1acb12e035194827db25a3bb443a.gz'>
1708
+ <name>document ramaze/template and remove the require of ramaze/model</name>
1709
+ </patch>
1710
+ <patch author='manveru@weez-int.com' date='20070128063341' local_date='Sun Jan 28 15:33:41 JST 2007' inverted='False' hash='20070128063341-24576-752d2aeca905a245c6e516a49fdb410e91acacf7.gz'>
1711
+ <name>it should be :transform_pipeline, not :template_pipeline</name>
1712
+ </patch>
1713
+ <patch author='manveru@weez-int.com' date='20070128062935' local_date='Sun Jan 28 15:29:35 JST 2007' inverted='False' hash='20070128062935-24576-02fada48e1eda356be89f66fbd423367b8762969.gz'>
1714
+ <name>remove lib/ramaze/model.rb - nowhere used anyway :P</name>
1715
+ </patch>
1716
+ <patch author='manveru@weez-int.com' date='20070128062730' local_date='Sun Jan 28 15:27:30 JST 2007' inverted='False' hash='20070128062730-24576-928d3c2f5a2d1c22c91ffe6bd1dda721fa767821.gz'>
1717
+ <name>documentation for adapter/mongrel, adapter/webrick, AuthHelper and CacheHelper</name>
1718
+ </patch>
1719
+ <patch author='manveru@weez-int.com' date='20070128062224' local_date='Sun Jan 28 15:22:24 JST 2007' inverted='False' hash='20070128062224-24576-133fca66573a56f6c6ded2d2515bbd6fa983f816.gz'>
1720
+ <name>set the default method for mongrels log-method to Informer#&lt;&lt;</name>
1721
+ </patch>
1722
+ <patch author='manveru@weez-int.com' date='20070128060137' local_date='Sun Jan 28 15:01:37 JST 2007' inverted='False' hash='20070128060137-24576-ba38ef71ae7b6a7dd9cd272f382e3d6f4493ab77.gz'>
1723
+ <name>documentation for: FeedHelper, StackHelper and FormHelper</name>
1724
+ </patch>
1725
+ <patch author='manveru@weez-int.com' date='20070128052800' local_date='Sun Jan 28 14:28:00 JST 2007' inverted='False' hash='20070128052800-24576-c4755add980ff49d9972f1b57e002bf0589770e8.gz'>
1726
+ <name>remove #instance? was a nice hack but we don&apos;t use it anywhere</name>
1727
+ </patch>
1728
+ <patch author='manveru@weez-int.com' date='20070128052703' local_date='Sun Jan 28 14:27:03 JST 2007' inverted='False' hash='20070128052703-24576-d970e7e79c613a6d613de0698a469685b21621f3.gz'>
1729
+ <name>fixing rake undocmented... missed out some methods and added some too much</name>
1730
+ </patch>
1731
+ <patch author='manveru@weez-int.com' date='20070128052514' local_date='Sun Jan 28 14:25:14 JST 2007' inverted='False' hash='20070128052514-24576-8122c9a4f185f779395753d2b2721ca073318318.gz'>
1732
+ <name>remove test/tc_helper, it was just a copy of test/tc_helper_redirect ... makes my autocomplete a little bit faster ;)</name>
1733
+ </patch>
1734
+ <patch author='manveru@weez-int.com' date='20070128052453' local_date='Sun Jan 28 14:24:53 JST 2007' inverted='False' hash='20070128052453-24576-11ffa37d62ddc84a268b94458d7bb34a95563fd0.gz'>
1735
+ <name>use head instead of @head in the response</name>
1736
+ </patch>
1737
+ <patch author='manveru@weez-int.com' date='20070128052400' local_date='Sun Jan 28 14:24:00 JST 2007' inverted='False' hash='20070128052400-24576-af270d647e45ce1a7bef01e0f132ee822e6a1b2f.gz'>
1738
+ <name>template/ramaze uses render_action instead of render_method... another ancestral_trait</name>
1739
+ </patch>
1740
+ <patch author='manveru@weez-int.com' date='20070128052343' local_date='Sun Jan 28 14:23:43 JST 2007' inverted='False' hash='20070128052343-24576-96253659d877891b493f20c4f03f0f79f62d012b.gz'>
1741
+ <name>docs for template/markaby</name>
1742
+ </patch>
1743
+ <patch author='manveru@weez-int.com' date='20070128052314' local_date='Sun Jan 28 14:23:14 JST 2007' inverted='False' hash='20070128052314-24576-e184cbb339a1ebb8848cda59c35cb216cda5559b.gz'>
1744
+ <name>replace the clumsy ancestors_trait by ancestral_trait</name>
1745
+ </patch>
1746
+ <patch author='manveru@weez-int.com' date='20070128052228' local_date='Sun Jan 28 14:22:28 JST 2007' inverted='False' hash='20070128052228-24576-0f4f5f9ee2f24c858fcfe517dedb0441bf742714.gz'>
1747
+ <name>a little bit of docs for store/default - still pondering about removing it since it&apos;s not used anywhere... also remove the [] and []= method, they should be handled by method_missing anyway.</name>
1748
+ </patch>
1749
+ <patch author='manveru@weez-int.com' date='20070128052107' local_date='Sun Jan 28 14:21:07 JST 2007' inverted='False' hash='20070128052107-24576-6a8f8683f27f2456e6fac94f813f1c65dbc04bb1.gz'>
1750
+ <name>changes for Object#trait, adding docs and replacing the ancestors_trait with the ancestral_trait method, it yields an hash that consists of all the traits of the ancestors</name>
1751
+ </patch>
1752
+ <patch author='manveru@weez-int.com' date='20070128052024' local_date='Sun Jan 28 14:20:24 JST 2007' inverted='False' hash='20070128052024-24576-c53ff8cc9d489c69726e84ed866036e765da87c6.gz'>
1753
+ <name>Ramaze::Informer instead of Ramaze::Inform for autoreload output</name>
1754
+ </patch>
1755
+ <patch author='manveru@weez-int.com' date='20070128052010' local_date='Sun Jan 28 14:20:10 JST 2007' inverted='False' hash='20070128052010-24576-acb4b3ac915e2b7279b0230282b1d6d896fd4452.gz'>
1756
+ <name>make Informer respond to &lt;&lt; for WEBrick</name>
1757
+ </patch>
1758
+ <patch author='manveru@weez-int.com' date='20070128051910' local_date='Sun Jan 28 14:19:10 JST 2007' inverted='False' hash='20070128051910-24576-b0d26706c8f797f8bbe068872163f8097153ac09.gz'>
1759
+ <name>it&apos;s Global.inform_ ... no Hash anymore for easier defaults</name>
1760
+ </patch>
1761
+ <patch author='manveru@weez-int.com' date='20070128051824' local_date='Sun Jan 28 14:18:24 JST 2007' inverted='False' hash='20070128051824-24576-4a0e04dab2fe9c7461dba7beecad5ff324895244.gz'>
1762
+ <name>new defaults for Global plus a little bit of documentation-stubs... we really should make a seperate documentation in doc/ for the options.</name>
1763
+ </patch>
1764
+ <patch author='manveru@weez-int.com' date='20070128051704' local_date='Sun Jan 28 14:17:04 JST 2007' inverted='False' hash='20070128051704-24576-a05f7d1ba95b836e34875fb3da42231ecbbedfb3.gz'>
1765
+ <name>check for the :benchmark tag in the adapter</name>
1766
+ </patch>
1767
+ <patch author='manveru@weez-int.com' date='20070128051642' local_date='Sun Jan 28 14:16:42 JST 2007' inverted='False' hash='20070128051642-24576-919846fd193f51f7a0d5dd5ba83dad522d007651.gz'>
1768
+ <name>make mongrel log as #debug instead of info</name>
1769
+ </patch>
1770
+ <patch author='manveru@weez-int.com' date='20070128051613' local_date='Sun Jan 28 14:16:13 JST 2007' inverted='False' hash='20070128051613-24576-ec7a856d9d1e6aaacb04e17012dff2e01c916fa1.gz'>
1771
+ <name>Global.autoreload is now a simple integer, no mapping of modes to integers, since we don&apos;t have modes anymore</name>
1772
+ </patch>
1773
+ <patch author='manveru@weez-int.com' date='20070128051530' local_date='Sun Jan 28 14:15:30 JST 2007' inverted='False' hash='20070128051530-24576-a5b734e727e78b5f9aade1029ca00328e6b94793.gz'>
1774
+ <name>close the thing Inform logs to at shutdown</name>
1775
+ </patch>
1776
+ <patch author='manveru@weez-int.com' date='20070128051440' local_date='Sun Jan 28 14:14:40 JST 2007' inverted='False' hash='20070128051440-24576-2312a528fb8ca95e56590425439035e8052f7eaa.gz'>
1777
+ <name>small change, in case the adapter doesn&apos;t respond to #stop</name>
1778
+ </patch>
1779
+ <patch author='manveru@weez-int.com' date='20070128051330' local_date='Sun Jan 28 14:13:30 JST 2007' inverted='False' hash='20070128051330-24576-6f37fedf4c8dd74f8f4a1b093e27422102629e86.gz'>
1780
+ <name>little change in examples/element</name>
1781
+ </patch>
1782
+ <patch author='manveru@weez-int.com' date='20070128051218' local_date='Sun Jan 28 14:12:18 JST 2007' inverted='False' hash='20070128051218-24576-8f9fbc2043a4ebafe09abf7c1535f8c72ce48fe1.gz'>
1783
+ <name>adjust the bin/ramaze for the new Inform and use RDocs parser for the output of help, version and copyright.</name>
1784
+ </patch>
1785
+ <patch author='manveru@weez-int.com' date='20070126142253' local_date='Fri Jan 26 23:22:53 JST 2007' inverted='False' hash='20070126142253-24576-5ae54817371b5928daa59a4c49b6afc2908b0721.gz'>
1786
+ <name>typo</name>
1787
+ </patch>
1788
+ <patch author='manveru@weez-int.com' date='20070126142220' local_date='Fri Jan 26 23:22:20 JST 2007' inverted='False' hash='20070126142220-24576-d023b87c298f42ad24ad7afe322549d1d07eea2b.gz'>
1789
+ <name>move init_global a bit forward so it&apos;s available right from the start.</name>
1790
+ </patch>
1791
+ <patch author='manveru@weez-int.com' date='20070126142129' local_date='Fri Jan 26 23:21:29 JST 2007' inverted='False' hash='20070126142129-24576-2e2e18f0ee3c3e73011bef9159335aa88a163e16.gz'>
1792
+ <name>update the Global for the new Inform</name>
1793
+ </patch>
1794
+ <patch author='manveru@weez-int.com' date='20070126142041' local_date='Fri Jan 26 23:20:41 JST 2007' inverted='False' hash='20070126142041-24576-1cc476303c8ea497138624708baf90786a041eff.gz'>
1795
+ <name>patch the rest of the system for the new Inform</name>
1796
+ </patch>
1797
+ <patch author='manveru@weez-int.com' date='20070126141948' local_date='Fri Jan 26 23:19:48 JST 2007' inverted='False' hash='20070126141948-24576-06e1f603efd9c4d23a0c4f66f3b57384a6bccb50.gz'>
1798
+ <name>rewrite Inform to be tag-based and a lot simpler :)</name>
1799
+ </patch>
1800
+ <patch author='manveru@weez-int.com' date='20070126045242' local_date='Fri Jan 26 13:52:42 JST 2007' inverted='False' hash='20070126045242-24576-a108da26923ef48b047b385e0415c82e978f400f.gz'>
1801
+ <name>finally set a default mapping to {} at require Global</name>
1802
+ </patch>
1803
+ <patch author='manveru@weez-int.com' date='20070126045217' local_date='Fri Jan 26 13:52:17 JST 2007' inverted='False' hash='20070126045217-24576-30e2351f51e122e6c66bbb6af432c0b4998c51c5.gz'>
1804
+ <name>prevent errors in case we pass Coderay some empty piece of code</name>
1805
+ </patch>
1806
+ <patch author='manveru@weez-int.com' date='20070126045113' local_date='Fri Jan 26 13:51:13 JST 2007' inverted='False' hash='20070126045113-24576-f666e607a35b6658cc76518d931c42763e1555fe.gz'>
1807
+ <name>supporting mongrels send_file, should give some decent speedups.</name>
1808
+ </patch>
1809
+ <patch author='manveru@weez-int.com' date='20070125045255' local_date='Thu Jan 25 13:52:55 JST 2007' inverted='False' hash='20070125045255-24576-cb85453c73c45dc7c1c22874569c991bf6957dfd.gz'>
1810
+ <name>append a newline to the output of CrudHelper... makes CLI-use easier</name>
1811
+ </patch>
1812
+ <patch author='manveru@weez-int.com' date='20070125045220' local_date='Thu Jan 25 13:52:20 JST 2007' inverted='False' hash='20070125045220-24576-eaac3ff7f85fb2b76b07aa1ccb5c1309c05d24a1.gz'>
1813
+ <name>add the examples/crud.rb to show how to use the CrudHelper</name>
1814
+ </patch>
1815
+ <patch author='manveru@weez-int.com' date='20070124112855' local_date='Wed Jan 24 20:28:55 JST 2007' inverted='False' hash='20070124112855-24576-e35bd36b3bdefe42e2a7895973e33a543ce9ca2a.gz'>
1816
+ <name>for subsequent starts of ramaze in tests we finally have the :fake_start option that updates the Global but doesn&apos;t do much else, so that the original instance can just continue to work, i like the implementation... but our Global slowly gets stuffed :)</name>
1817
+ </patch>
1818
+ <patch author='manveru@weez-int.com' date='20070124112616' local_date='Wed Jan 24 20:26:16 JST 2007' inverted='False' hash='20070124112616-24576-978a548da5195e5590442521199ac378841a79fa.gz'>
1819
+ <name>big change also to the way Global is set up, new method init_global on Ramaze that sets up the Global as usual but now also preserves the mappings set before the start of ramaze and just adds new mappings that you pass on start, gives the CrudHelper the ability to set up a mapping for your Store... you can change the name of the mapping with &apos;crud =&gt; YourStore, :name =&gt; &quot;blah&quot;&apos; which maps to /blah...</name>
1820
+ </patch>
1821
+ <patch author='manveru@weez-int.com' date='20070124112241' local_date='Wed Jan 24 20:22:41 JST 2007' inverted='False' hash='20070124112241-24576-f20a20daeb235937e04f4459c8a76b4e231a1b02.gz'>
1822
+ <name>rewrite of CrudHelper, now it only converts your Store into a kind of Controller, extends it with Trinity and defines the ::handle_request method (yay for ducktyping), it just sets up a proxy and you can define your own &apos;route&apos;, which request should send what method.</name>
1823
+ </patch>
1824
+ <patch author='manveru@weez-int.com' date='20070124055015' local_date='Wed Jan 24 14:50:15 JST 2007' inverted='False' hash='20070124055015-24576-fee62cf7c7c46df1dd8c3d55b4a2c8613d23048b.gz'>
1825
+ <name>introduce custom morphs and add even more docs... ratio must be 2:1 by now :)</name>
1826
+ </patch>
1827
+ <patch author='manveru@weez-int.com' date='20070123120916' local_date='Tue Jan 23 21:09:16 JST 2007' inverted='False' hash='20070123120916-24576-699c640f0a78c8549ed16d7d99fc90be252f9e9a.gz'>
1828
+ <name>adding documentation for Morpher#transform and making the rescue a lot better.</name>
1829
+ </patch>
1830
+ <patch author='manveru@weez-int.com' date='20070123113433' local_date='Tue Jan 23 20:34:33 JST 2007' inverted='False' hash='20070123113433-24576-4e7a8efef0ad3a0503f96132dde700d024b1ba2c.gz'>
1831
+ <name>rearrange tc_heper_form to resemble tc_morpher in regard to the require-failsafe</name>
1832
+ </patch>
1833
+ <patch author='manveru@weez-int.com' date='20070123113232' local_date='Tue Jan 23 20:32:32 JST 2007' inverted='False' hash='20070123113232-24576-549a431ca699e17da1f79d6523f7cc05bdf60f67.gz'>
1834
+ <name>add template/ramaze/morpher and tests for it, it requires hpricot at the moment but got a graceful fallback that just won&apos;t process morphers... maybe i can whip up a pure ruby variant later, but the code using hpricot is just sweet :)</name>
1835
+ </patch>
1836
+ <patch author='manveru@weez-int.com' date='20070123113041' local_date='Tue Jan 23 20:30:41 JST 2007' inverted='False' hash='20070123113041-24576-ba3208f41902b034f445bb26c754ae52d6cd5947.gz'>
1837
+ <name>add test for headers in tc_request and add a method for raw_get that gives you the original object from open() back</name>
1838
+ </patch>
1839
+ <patch author='manveru@weez-int.com' date='20070120181656' local_date='Sun Jan 21 03:16:56 JST 2007' inverted='False' hash='20070120181656-24576-99a33e2479a492a2b206fb764ad6b87ee1d9a975.gz'>
1840
+ <name>remove cruft from helper/feed</name>
1841
+ </patch>
1842
+ <patch author='manveru@weez-int.com' date='20070122122519' local_date='Mon Jan 22 21:25:19 JST 2007' inverted='False' hash='20070122122519-24576-bb3d5073f6c4784cd5d41316077d0539c86d896a.gz'>
1843
+ <name>CrudHelper and testcase</name>
1844
+ </patch>
1845
+ <patch author='manveru@weez-int.com' date='20070122105621' local_date='Mon Jan 22 19:56:21 JST 2007' inverted='False' hash='20070122105621-24576-53703676eaa3337aa686dbc3d356025fbc39686c.gz'>
1846
+ <name>fixing tons of typos in the README</name>
1847
+ </patch>
1848
+ <patch author='manveru@weez-int.com' date='20070122104642' local_date='Mon Jan 22 19:46:42 JST 2007' inverted='False' hash='20070122104642-24576-5a249aaf8c19c24d3687888a4d6a4b0430513078.gz'>
1849
+ <name>fail gently on require rubygems... we probably should remove that requires completly...</name>
1850
+ </patch>
1851
+ <patch author='manveru@weez-int.com' date='20070122083932' local_date='Mon Jan 22 17:39:32 JST 2007' inverted='False' hash='20070122083932-24576-dcecaf33c8b19d77dcb6cb481bf92580cc1b7806.gz'>
1852
+ <name>add some more tests for the previous bug (request.params instead of request.query)</name>
1853
+ </patch>
1854
+ <patch author='manveru@weez-int.com' date='20070122083228' local_date='Mon Jan 22 17:32:28 JST 2007' inverted='False' hash='20070122083228-24576-fc065f9c33f6709d3aa4c02b22c82d355ce6a84c.gz'>
1855
+ <name>fix request[key] and request[key] = value</name>
1856
+ </patch>
1857
+ <patch author='manveru@weez-int.com' date='20070122082843' local_date='Mon Jan 22 17:28:43 JST 2007' inverted='False' hash='20070122082843-24576-c2dffa74378a182b2db419317297094d57bb0f44.gz'>
1858
+ <name>add an example for the usage of Element in examples/element.rb</name>
1859
+ </patch>
1860
+ <patch author='manveru@weez-int.com' date='20070122054516' local_date='Mon Jan 22 14:45:16 JST 2007' inverted='False' hash='20070122054516-24576-d09d43cb77489a5b3c8078ba0970e5a1b39ed35f.gz'>
1861
+ <name>make tc_request pass again, request.body.read instead</name>
1862
+ </patch>
1863
+ <patch author='manveru@weez-int.com' date='20070122054259' local_date='Mon Jan 22 14:42:59 JST 2007' inverted='False' hash='20070122054259-24576-26061b2a420e4d6bd35e8c081e84f3b3e4ff0fc1.gz'>
1864
+ <name>fixing helper/feed</name>
1865
+ </patch>
1866
+ <patch author='manveru@weez-int.com' date='20070122054010' local_date='Mon Jan 22 14:40:10 JST 2007' inverted='False' hash='20070122054010-24576-7b6e6f49733eb0cfe1c3eeba4bc31e39cadc39d8.gz'>
1867
+ <name>add exitstatus checking for all_tests</name>
1868
+ </patch>
1869
+ <patch author='manveru@weez-int.com' date='20070122053725' local_date='Mon Jan 22 14:37:25 JST 2007' inverted='False' hash='20070122053725-24576-73c813eecfcdfa84c766cce63a1d30d09620b722.gz'>
1870
+ <name>reimplementation of Element, making code a bit cleaner (but longer... and possibly harder to understand?) also adding some tests for &lt;Element /&gt;</name>
1871
+ </patch>
1872
+ <patch author='manveru@weez-int.com' date='20070119123952' local_date='Fri Jan 19 21:39:52 JST 2007' inverted='False' hash='20070119123952-24576-348a50faf0dba69411d8ebf0247ff095dd7bb1a0.gz'>
1873
+ <name>document lib/test/test_helper</name>
1874
+ </patch>
1875
+ <patch author='manveru@weez-int.com' date='20070119123931' local_date='Fri Jan 19 21:39:31 JST 2007' inverted='False' hash='20070119123931-24576-eda376ed3223200ee3220510b49893969e6bf07f.gz'>
1876
+ <name>document lib/test/all_tests</name>
1877
+ </patch>
1878
+ <patch author='manveru@weez-int.com' date='20070119123915' local_date='Fri Jan 19 21:39:15 JST 2007' inverted='False' hash='20070119123915-24576-9eb7937f1dc9aa9a47ed064141aa6da873052674.gz'>
1879
+ <name>document tool/tidy</name>
1880
+ </patch>
1881
+ <patch author='manveru@weez-int.com' date='20070119123855' local_date='Fri Jan 19 21:38:55 JST 2007' inverted='False' hash='20070119123855-24576-012ffb2a637e66553a590dc83775d50246690cb6.gz'>
1882
+ <name>complete documentation of template/ramaze/element</name>
1883
+ </patch>
1884
+ <patch author='manveru@weez-int.com' date='20070119123823' local_date='Fri Jan 19 21:38:23 JST 2007' inverted='False' hash='20070119123823-24576-05bf11c0f907927c901158ad9a0429bc9328b029.gz'>
1885
+ <name>add/remove documentation from snippets/kernel/self_method</name>
1886
+ </patch>
1887
+ <patch author='manveru@weez-int.com' date='20070119121330' local_date='Fri Jan 19 21:13:30 JST 2007' inverted='False' hash='20070119121330-24576-79b5352919b51e2b49d22485b3b0addd6b28390e.gz'>
1888
+ <name>change rake uncommented to rake undocumented</name>
1889
+ </patch>
1890
+ <patch author='manveru@weez-int.com' date='20070119121226' local_date='Fri Jan 19 21:12:26 JST 2007' inverted='False' hash='20070119121226-24576-1478c2fd4ad508b34291144353e5c2d268f01565.gz'>
1891
+ <name>document all of Inform</name>
1892
+ </patch>
1893
+ <patch author='manveru@weez-int.com' date='20070119120727' local_date='Fri Jan 19 21:07:27 JST 2007' inverted='False' hash='20070119120727-24576-b18c442caaccc22b928d8e1a06dd7215e63ed246.gz'>
1894
+ <name>document all of Trinity</name>
1895
+ </patch>
1896
+ <patch author='manveru@weez-int.com' date='20070119120714' local_date='Fri Jan 19 21:07:14 JST 2007' inverted='False' hash='20070119120714-24576-df5b3464ad970407f487353a44938f3aa71ab7b3.gz'>
1897
+ <name>document all of trinity/session</name>
1898
+ </patch>
1899
+ <patch author='manveru@weez-int.com' date='20070119120656' local_date='Fri Jan 19 21:06:56 JST 2007' inverted='False' hash='20070119120656-24576-fd95a797c43da245775f4f468ffde5acc2f1eaf4.gz'>
1900
+ <name>document all of trinity/response</name>
1901
+ </patch>
1902
+ <patch author='manveru@weez-int.com' date='20070119120634' local_date='Fri Jan 19 21:06:34 JST 2007' inverted='False' hash='20070119120634-24576-40f23758111fb666fcd5d3e4a92aef65f04d4a58.gz'>
1903
+ <name>document all of trinity/request</name>
1904
+ </patch>
1905
+ <patch author='manveru@weez-int.com' date='20070119120542' local_date='Fri Jan 19 21:05:42 JST 2007' inverted='False' hash='20070119120542-24576-5cd141d60bb9d09807210080f67090534655b543.gz'>
1906
+ <name>don&apos;t include the dot-graph here (yet), also show all methods (private, protected)</name>
1907
+ </patch>
1908
+ <patch author='manveru@weez-int.com' date='20070119111025' local_date='Fri Jan 19 20:10:25 JST 2007' inverted='False' hash='20070119111025-24576-a5fef5deae4558caa8df89412610ba60a05014f8.gz'>
1909
+ <name>new rake todolist and the file it generates</name>
1910
+ </patch>
1911
+ <patch author='manveru@weez-int.com' date='20070119053144' local_date='Fri Jan 19 14:31:44 JST 2007' inverted='False' hash='20070119053144-24576-e62aaeb8f72b76a0409a8ac9aa17ee2835e6e9b0.gz'>
1912
+ <name>add support for CDATA in FeedHelper, add some more tests and add from_xml to parse the class in again (just basic yet, no nested niceties)</name>
1913
+ </patch>
1914
+ <patch author='manveru@weez-int.com' date='20070119045411' local_date='Fri Jan 19 13:54:11 JST 2007' inverted='False' hash='20070119045411-24576-38f39012fc5bceb038ace1a7f5845dc98ae2a96a.gz'>
1915
+ <name>extending FeedHelper and testcase, now attributes to tags are possible... (just for the enclosing class for now)</name>
1916
+ </patch>
1917
+ <patch author='manveru@weez-int.com' date='20070119043257' local_date='Fri Jan 19 13:32:57 JST 2007' inverted='False' hash='20070119043257-24576-0e38d2f79096fd5c07a8ed6696dd4d2d5b90f894.gz'>
1918
+ <name>don&apos;t duplicate body by reading it, the user can always see it with request.body.read in the controller.</name>
1919
+ </patch>
1920
+ <patch author='manveru@weez-int.com' date='20070118151358' local_date='Fri Jan 19 00:13:58 JST 2007' inverted='False' hash='20070118151358-24576-5c3767256f65d97b02f0882ae70a75d6490faee3.gz'>
1921
+ <name>set the trinity-methods to private, we don&apos;t want them to be accessable</name>
1922
+ </patch>
1923
+ <patch author='manveru@weez-int.com' date='20070118151104' local_date='Fri Jan 19 00:11:04 JST 2007' inverted='False' hash='20070118151104-24576-82129a08ec44dfab90d7d769a9980454cb157c14.gz'>
1924
+ <name>ignore memcached in the tests if it&apos;s not installed</name>
1925
+ </patch>
1926
+ <patch author='manveru@weez-int.com' date='20070118135749' local_date='Thu Jan 18 22:57:49 JST 2007' inverted='False' hash='20070118135749-24576-f78466f58b35061f49dbaad1424a0475d807d041.gz'>
1927
+ <name>fixing the controller-method-lookup</name>
1928
+ </patch>
1929
+ <patch author='m.fellinger@gmail.com' date='20070118032454' local_date='Thu Jan 18 12:24:54 JST 2007' inverted='False' hash='20070118032454-40155-41011e19e7f1f32ded8171972e309b1511974988.gz'>
1930
+ <name>patching method-lookup for controllers... now it should be possible to expose public methods via helper-methods... have to test this first though.</name>
1931
+ </patch>
1932
+ <patch author='m.fellinger@gmail.com' date='20070117025621' local_date='Wed Jan 17 11:56:21 JST 2007' inverted='False' hash='20070117025621-40155-2f988e0cc5de663a0dc0eb52a7ec9ab3108dbd80.gz'>
1933
+ <name>rephrase message on startup...</name>
1934
+ </patch>
1935
+ <patch author='manveru@weez-int.com' date='20070118134418' local_date='Thu Jan 18 22:44:18 JST 2007' inverted='False' hash='20070118134418-24576-c52e9a5aa16f8c71ae7eca5ee04f57c2c80ebd74.gz'>
1936
+ <name>remove the useless invalidate_cache method from CacheHelper</name>
1937
+ </patch>
1938
+ <patch author='manveru@weez-int.com' date='20070118134314' local_date='Thu Jan 18 22:43:14 JST 2007' inverted='False' hash='20070118134314-24576-15ced3002c9aec61c01835b12fe0dc04be259137.gz'>
1939
+ <name>make rake record a bit less annoying ;)</name>
1940
+ </patch>
1941
+ <patch author='manveru@weez-int.com' date='20070118134147' local_date='Thu Jan 18 22:41:47 JST 2007' inverted='False' hash='20070118134147-24576-3817f8b1daef8c88648969e764288937e58f775b.gz'>
1942
+ <name>add example/caching.rb</name>
1943
+ </patch>
1944
+ <patch author='manveru@weez-int.com' date='20070118132807' local_date='Thu Jan 18 22:28:07 JST 2007' inverted='False' hash='20070118132807-24576-e46ec041fd95f627cae1a5956449b06a0a4dcf5f.gz'>
1945
+ <name>total reimplementation of caching, the CacheHelper now finally works (added testcase) for both actions (based on action(*params)) and values, this is a giant step for ramaze, since proper caching is a key to serving fast. The implementation might not be perfect yet, but some real-life testing will show if the current API and use-cases are worth anything, for now i&apos;m very satisfied :)</name>
1946
+ </patch>
1947
+ <patch author='manveru@weez-int.com' date='20070118122501' local_date='Thu Jan 18 21:25:01 JST 2007' inverted='False' hash='20070118122501-24576-5a900817b63e8cd5f806c1ad1ff39b6e4ee9fb77.gz'>
1948
+ <name>test/tc_aspect.rb =&gt; test/tc_helper_aspect.rb</name>
1949
+ </patch>
1950
+ <patch author='manveru@weez-int.com' date='20070118114316' local_date='Thu Jan 18 20:43:16 JST 2007' inverted='False' hash='20070118114316-24576-1097772a8c73894a54cf9ad6dc790736224b8864.gz'>
1951
+ <name>provide a little anonymous gulp-class to catch the stuff Og sends out in the testcase, finally the rake test looks pretty enough :)</name>
1952
+ </patch>
1953
+ <patch author='manveru@weez-int.com' date='20070118113335' local_date='Thu Jan 18 20:33:35 JST 2007' inverted='False' hash='20070118113335-24576-4eced7c8e62629aeaee3531dc5c4bdb9b5fa599e.gz'>
1954
+ <name>add Kernel#silently, to temporarly turn off warnings on reassinging constants and use it in session.rb</name>
1955
+ </patch>
1956
+ <patch author='manveru@weez-int.com' date='20070118045048' local_date='Thu Jan 18 13:50:48 JST 2007' inverted='False' hash='20070118045048-24576-b360d41291f66c715399311261bc5cc9f23daad2.gz'>
1957
+ <name>add/remove some todos</name>
1958
+ </patch>
1959
+ <patch author='manveru@weez-int.com' date='20070118044942' local_date='Thu Jan 18 13:49:42 JST 2007' inverted='False' hash='20070118044942-24576-fa5ef84c88e7e4d39648788934b9fd41c6d23f41.gz'>
1960
+ <name>introduce caching now for sessions as well, setting the adapter for tc_request back to mongrel since webrick doesn&apos;t implement PUT (fix that too)</name>
1961
+ </patch>
1962
+ <patch author='manveru@weez-int.com' date='20070118043536' local_date='Thu Jan 18 13:35:36 JST 2007' inverted='False' hash='20070118043536-24576-63aa5f80d0f29ecb8bdff4b9f1bfe354b386022a.gz'>
1963
+ <name>add test for PUT, we need to find a way to do a DELETE-request, possibly with Net::HTTP? (also investigate other ways not to rely on curl for PUT)</name>
1964
+ </patch>
1965
+ <patch author='manveru@weez-int.com' date='20070118043519' local_date='Thu Jan 18 13:35:19 JST 2007' inverted='False' hash='20070118043519-24576-1b9efab63d9bc604af391881b0ffecba70c0baf3.gz'>
1966
+ <name>rewrite tc_helper_feed</name>
1967
+ </patch>
1968
+ <patch author='manveru@weez-int.com' date='20070118043458' local_date='Thu Jan 18 13:34:58 JST 2007' inverted='False' hash='20070118043458-24576-22fb437bd2226a3bdbc3ac3ce4ecc54c7de1382f.gz'>
1969
+ <name>better implementation of the tc_global, it would fail on slow or busy systems</name>
1970
+ </patch>
1971
+ <patch author='manveru@weez-int.com' date='20070118043429' local_date='Thu Jan 18 13:34:29 JST 2007' inverted='False' hash='20070118043429-24576-989c6deebb1321ef6b65c4ef5071876647c4a3b9.gz'>
1972
+ <name>support PUT and DELETE</name>
1973
+ </patch>
1974
+ <patch author='manveru@weez-int.com' date='20070118043357' local_date='Thu Jan 18 13:33:57 JST 2007' inverted='False' hash='20070118043357-24576-6d19ed6d5f6e39e3c29022542dd7dcb1bed25758.gz'>
1975
+ <name>rewrite FeedHelper, still not functional, but a lot nicer to build XML from objects</name>
1976
+ </patch>
1977
+ <patch author='manveru@weez-int.com' date='20070116151830' local_date='Wed Jan 17 00:18:30 JST 2007' inverted='False' hash='20070116151830-24576-ae319597395d82c3fa934594661286655b82830b.gz'>
1978
+ <name>provide some info about where the adapter attempts to connect... also fix debugging-output in tests</name>
1979
+ </patch>
1980
+ <patch author='manveru@weez-int.com' date='20070116151806' local_date='Wed Jan 17 00:18:06 JST 2007' inverted='False' hash='20070116151806-24576-3d8e5c78956e291136f88ab31eadec6477d778ff.gz'>
1981
+ <name>remove require of fastthread, they finally fixed it</name>
1982
+ </patch>
1983
+ <patch author='manveru@weez-int.com' date='20070116151748' local_date='Wed Jan 17 00:17:48 JST 2007' inverted='False' hash='20070116151748-24576-5692ff620fcd517e7c858dcfa5f934c0fcec47af.gz'>
1984
+ <name>add handling of multipart (file-uploads)</name>
1985
+ </patch>
1986
+ <patch author='manveru@weez-int.com' date='20070115121742' local_date='Mon Jan 15 21:17:42 JST 2007' inverted='False' hash='20070115121742-24576-208a754006489ec99c2e4a31048723453e0e29bd.gz'>
1987
+ <name>all_tests gives _much_ prettier and more informative output... still gotta use systemu for catching that nasty output from Og though...</name>
1988
+ </patch>
1989
+ <patch author='manveru@weez-int.com' date='20070115121655' local_date='Mon Jan 15 21:16:55 JST 2007' inverted='False' hash='20070115121655-24576-8557c8b173d8b0852b35fc13de552db91dc9120a.gz'>
1990
+ <name>redirect takes now a :status argument, for your very own redirect-status-code</name>
1991
+ </patch>
1992
+ <patch author='manveru@weez-int.com' date='20070115115316' local_date='Mon Jan 15 20:53:16 JST 2007' inverted='False' hash='20070115115316-24576-9eadd2a9e5cdb568b1efd2a114d1eba9e8aed5d0.gz'>
1993
+ <name>fix the spaces ;)</name>
1994
+ </patch>
1995
+ <patch author='manveru@weez-int.com' date='20070115115243' local_date='Mon Jan 15 20:52:43 JST 2007' inverted='False' hash='20070115115243-24576-c3eeb86292231021fb2a33e51d5a1e14fd35ae4f.gz'>
1996
+ <name>run fix-end-spaces and add-copyright before rake record</name>
1997
+ </patch>
1998
+ <patch author='manveru@weez-int.com' date='20070115115045' local_date='Mon Jan 15 20:50:45 JST 2007' inverted='False' hash='20070115115045-24576-0290e96c1de624b2d8a15c19a6414fc5b3c1b53c.gz'>
1999
+ <name>rake fix-end-spaces, new task to remove spaces at end of line where not needed ;)</name>
2000
+ </patch>
2001
+ <patch author='manveru@weez-int.com' date='20070115115029' local_date='Mon Jan 15 20:50:29 JST 2007' inverted='False' hash='20070115115029-24576-2ba869ab5d71cb14ff51d278cb129b7354094d54.gz'>
2002
+ <name>add a .each method to GlobalStruct</name>
2003
+ </patch>
2004
+ <patch author='manveru@weez-int.com' date='20070115114821' local_date='Mon Jan 15 20:48:21 JST 2007' inverted='False' hash='20070115114821-24576-7bf7ab46595c6e706f02e61fe43461fadffcca87.gz'>
2005
+ <name>a much POLSer way of working with the bin/ramaze, options from the CLI are not overwritten by options in your app anymore... also ignores start from your app if you use this command.</name>
2006
+ </patch>
2007
+ <patch author='manveru@weez-int.com' date='20070115054243' local_date='Mon Jan 15 14:42:43 JST 2007' inverted='False' hash='20070115054243-24576-5211f2b982783cadf59f3c004b1290c4f880b08b.gz'>
2008
+ <name>add rake patchsize to show how many patches we got</name>
2009
+ </patch>
2010
+ <patch author='manveru@weez-int.com' date='20070115051549' local_date='Mon Jan 15 14:15:49 JST 2007' inverted='False' hash='20070115051549-24576-802f2a1473d097dbff728b4a8185f849624fed58.gz'>
2011
+ <name>nicer handling of SIGINT</name>
2012
+ </patch>
2013
+ <patch author='manveru@weez-int.com' date='20070114001050' local_date='Sun Jan 14 09:10:50 JST 2007' inverted='False' hash='20070114001050-24576-fe82597dd6a8be4403d8e79467553d2375855b01.gz'>
2014
+ <name>add example/microwiki, like miniwiki but total reimplementation using Template::Ramaze, should do one for every templating-engine to show usage</name>
2015
+ </patch>
2016
+ <patch author='manveru@weez-int.com' date='20070114001008' local_date='Sun Jan 14 09:10:08 JST 2007' inverted='False' hash='20070114001008-24576-5ea329235663eddf25031c3b00aff321d9c3354b.gz'>
2017
+ <name>run tests per default on port 7007 and only on 127.0.0.1, avoids interfering with running apps</name>
2018
+ </patch>
2019
+ <patch author='manveru@weez-int.com' date='20070114000948' local_date='Sun Jan 14 09:09:48 JST 2007' inverted='False' hash='20070114000948-24576-99353e66bab5c91de5fe4533147427cd6a7de723.gz'>
2020
+ <name>improve shutdown</name>
2021
+ </patch>
2022
+ <patch author='manveru@weez-int.com' date='20070114000924' local_date='Sun Jan 14 09:09:24 JST 2007' inverted='False' hash='20070114000924-24576-9c490d167fa29ff53985a91c3c3ed610a4814cbe.gz'>
2023
+ <name>rearrange and add the Global parameters a little bit</name>
2024
+ </patch>
2025
+ <patch author='manveru@weez-int.com' date='20070114000856' local_date='Sun Jan 14 09:08:56 JST 2007' inverted='False' hash='20070114000856-24576-22b0e003a6443248bd78f63d8b46430607def093.gz'>
2026
+ <name>provide a content_type for the error-page... old bug, need to add some tests for the errorpage...</name>
2027
+ </patch>
2028
+ <patch author='manveru@weez-int.com' date='20070114000833' local_date='Sun Jan 14 09:08:33 JST 2007' inverted='False' hash='20070114000833-24576-f5fe7707a7ebb8fdc48fc0a30130cb38021a8543.gz'>
2029
+ <name>clean the setting of response/request/sessions a little bit</name>
2030
+ </patch>
2031
+ <patch author='manveru@weez-int.com' date='20070114000744' local_date='Sun Jan 14 09:07:44 JST 2007' inverted='False' hash='20070114000744-24576-cd22832aa8a075a36e9fc2a422f939ba0b10b0d8.gz'>
2032
+ <name>CGI.unescape all parameters of GET/POST</name>
2033
+ </patch>
2034
+ <patch author='manveru@weez-int.com' date='20070114000639' local_date='Sun Jan 14 09:06:39 JST 2007' inverted='False' hash='20070114000639-24576-b7fde45766faac56db2748e2dbb69d153ea57808.gz'>
2035
+ <name>use method_missing to catch all the transactions for YAML::Store, cleans the API quite a bit and provides more functionality</name>
2036
+ </patch>
2037
+ <patch author='manveru@weez-int.com' date='20070113222857' local_date='Sun Jan 14 07:28:57 JST 2007' inverted='False' hash='20070113222857-24576-ea0610320a27d1e6aeb4fe25ed868b4665b4162e.gz'>
2038
+ <name>TAG 0.0.5</name>
2039
+ </patch>
2040
+ <patch author='manveru@weez-int.com' date='20070113222833' local_date='Sun Jan 14 07:28:33 JST 2007' inverted='False' hash='20070113222833-24576-3ac798fdc28734e06e2173f2aa94b282833a8c04.gz'>
2041
+ <name>Ramaze 0.0.5</name>
2042
+ </patch>
2043
+ <patch author='manveru@weez-int.com' date='20070113222804' local_date='Sun Jan 14 07:28:04 JST 2007' inverted='False' hash='20070113222804-24576-9061ac2849999835cb150856ab3337b0a996278a.gz'>
2044
+ <name>update CHANGELOG</name>
2045
+ </patch>
2046
+ <patch author='manveru@weez-int.com' date='20070113222720' local_date='Sun Jan 14 07:27:20 JST 2007' inverted='False' hash='20070113222720-24576-058db8e6676d43310f6881353ab9b7b9e33b4a39.gz'>
2047
+ <name>added changelog task that updates doc/CHANGELOG based on doc/changes.txt (from rake changes)</name>
2048
+ </patch>
2049
+ <patch author='manveru@weez-int.com' date='20070113222615' local_date='Sun Jan 14 07:26:15 JST 2007' inverted='False' hash='20070113222615-24576-e7f9df93b433bedf3ed40f18ed7a2bf63141c566.gz'>
2050
+ <name>ran add-copyright once again</name>
2051
+ </patch>
2052
+ <patch author='manveru@weez-int.com' date='20070113222050' local_date='Sun Jan 14 07:20:50 JST 2007' inverted='False' hash='20070113222050-24576-8dab86ca54a3496bf2c5dc2f5e537c7de06af900.gz'>
2053
+ <name>update README a bit</name>
2054
+ </patch>
2055
+ <patch author='manveru@weez-int.com' date='20070113215317' local_date='Sun Jan 14 06:53:17 JST 2007' inverted='False' hash='20070113215317-24576-4389bc2dee8ec6084f73b5e35196ac3137b8ec17.gz'>
2056
+ <name>update and extend testcases for tc_cache</name>
2057
+ </patch>
2058
+ <patch author='manveru@weez-int.com' date='20070113215254' local_date='Sun Jan 14 06:52:54 JST 2007' inverted='False' hash='20070113215254-24576-7eeb6d290e4438d33c2993767d8c3b2d2b79973a.gz'>
2059
+ <name>change Rakefile to sweep out cache.yaml and run rake clean after rake test</name>
2060
+ </patch>
2061
+ <patch author='manveru@weez-int.com' date='20070113214914' local_date='Sun Jan 14 06:49:14 JST 2007' inverted='False' hash='20070113214914-24576-52e5077ba48e5c4cc223ef64d70f04197e8c6083.gz'>
2062
+ <name>finally added and integrated caching, possible caches for now are YAML::Store, usual Hash (for one instance only) and MemCache, the respective objects are YAMLStoreCache, MemoryCache and MemcachedCache, you can set them with Global.cache = respective_class before startup, there is no functionality yet to change this during runtime, but you could Ramaze.const_set(&apos;Cache&apos;, YourClass.new) since Ramze::Cache is the usual instance. See the testcases and documentation for more information on the usage</name>
2063
+ </patch>
2064
+ <patch author='manveru@weez-int.com' date='20070112221207' local_date='Sat Jan 13 07:12:07 JST 2007' inverted='False' hash='20070112221207-24576-c11b96b3c6449f8e45e10ce6b47de5aa200b8835.gz'>
2065
+ <name>add tc_feed_helper</name>
2066
+ </patch>
2067
+ <patch author='manveru@weez-int.com' date='20070112221156' local_date='Sat Jan 13 07:11:56 JST 2007' inverted='False' hash='20070112221156-24576-950f035ff589020e1d5cc854452e624bed41fb5c.gz'>
2068
+ <name>add tc_cache</name>
2069
+ </patch>
2070
+ <patch author='manveru@weez-int.com' date='20070112221128' local_date='Sat Jan 13 07:11:28 JST 2007' inverted='False' hash='20070112221128-24576-ed1ffca38fc36687ba107284f8ca4d05fcf91895.gz'>
2071
+ <name>autoreload now has its own method on Ramaze and can be turned off by Global.autoreload = false</name>
2072
+ </patch>
2073
+ <patch author='manveru@weez-int.com' date='20070112221051' local_date='Sat Jan 13 07:10:51 JST 2007' inverted='False' hash='20070112221051-24576-9480a0f8252617c69436b77715778c40a0a5bbca.gz'>
2074
+ <name>require &apos;ramaze/cache&apos; (not yet used)</name>
2075
+ </patch>
2076
+ <patch author='manveru@weez-int.com' date='20070112221020' local_date='Sat Jan 13 07:10:20 JST 2007' inverted='False' hash='20070112221020-24576-0fd835c2e44e96569d3a98126cf66ff587dc02f6.gz'>
2077
+ <name>use Set instead of Array for the Controllers</name>
2078
+ </patch>
2079
+ <patch author='manveru@weez-int.com' date='20070112220933' local_date='Sat Jan 13 07:09:33 JST 2007' inverted='False' hash='20070112220933-24576-98d0c10d48fb337b785bf61c5aefd540489233e8.gz'>
2080
+ <name>finally fix the problem of having another application running (we can detect it now!)</name>
2081
+ </patch>
2082
+ <patch author='manveru@weez-int.com' date='20070112220901' local_date='Sat Jan 13 07:09:01 JST 2007' inverted='False' hash='20070112220901-24576-944e02de99670c78635f1f05da83ad4baef5c047.gz'>
2083
+ <name>use Set instead of Array in autoreload... makes it a bit nicer</name>
2084
+ </patch>
2085
+ <patch author='manveru@weez-int.com' date='20070112220821' local_date='Sat Jan 13 07:08:21 JST 2007' inverted='False' hash='20070112220821-24576-9dbb187a2519ef4e3ec4e1408f378f5f432097e2.gz'>
2086
+ <name>fix FeedHelper, had one &lt;feed&gt; too much</name>
2087
+ </patch>
2088
+ <patch author='manveru@weez-int.com' date='20070112220750' local_date='Sat Jan 13 07:07:50 JST 2007' inverted='False' hash='20070112220750-24576-ea6e8046ec7ebe581b39dcc203149c86ff892834.gz'>
2089
+ <name>first version of (real) cache</name>
2090
+ </patch>
2091
+ <patch author='manveru@weez-int.com' date='20070111140053' local_date='Thu Jan 11 23:00:53 JST 2007' inverted='False' hash='20070111140053-24576-a4a481ee0394ad2fbc3ac5bac81fdda611c1bdf2.gz'>
2092
+ <name>simple CacheHelper</name>
2093
+ </patch>
2094
+ <patch author='manveru@weez-int.com' date='20070111154308' local_date='Fri Jan 12 00:43:08 JST 2007' inverted='False' hash='20070111154308-24576-46a4f2ef4a976209d6b7a3e0eaff09f4a30fa202.gz'>
2095
+ <name>fix Rakefile</name>
2096
+ </patch>
2097
+ <patch author='manveru@weez-int.com' date='20070111153503' local_date='Fri Jan 12 00:35:03 JST 2007' inverted='False' hash='20070111153503-24576-e82d1086db1358e2906c99cbc5c4d59df5ee63c0.gz'>
2098
+ <name>add some more tasks, :record and :changes (record calls changes)</name>
2099
+ </patch>
2100
+ <patch author='manveru@weez-int.com' date='20070111152819' local_date='Fri Jan 12 00:28:19 JST 2007' inverted='False' hash='20070111152819-24576-3ee0ba818907e1fd7ff88dcb4468539aded50f42.gz'>
2101
+ <name>added tasks changes-xml and changes-text to the Rakefile, stores the current changes into textual format for further use :)</name>
2102
+ </patch>
2103
+ <patch author='manveru@weez-int.com' date='20070109051911' local_date='Tue Jan 9 14:19:11 JST 2007' inverted='False' hash='20070109051911-24576-c0af02d2711f95ef4c6eec065aa52d437cd99a48.gz'>
2104
+ <name>add the template for the tc_template_ramaze</name>
2105
+ </patch>
2106
+ <patch author='manveru@weez-int.com' date='20070109051722' local_date='Tue Jan 9 14:17:22 JST 2007' inverted='False' hash='20070109051722-24576-5785fac19cb9d8f6b76614b3ff3d9c8acfd682d2.gz'>
2107
+ <name>support template-only actions for Template::Ramaze, now you can just put a file with the appropiate name in your template-directory and it doesn&apos;t need a seperate method in your controller... this does not work yet with multiple arguments</name>
2108
+ </patch>
2109
+ <patch author='manveru@weez-int.com' date='20070108133833' local_date='Mon Jan 8 22:38:33 JST 2007' inverted='False' hash='20070108133833-24576-096802207952d35ebc835fc1fc608c5c9debba02.gz'>
2110
+ <name>stop some squeaking of the wheel and added a little comment of the why</name>
2111
+ </patch>
2112
+ <patch author='manveru@weez-int.com' date='20070108083821' local_date='Mon Jan 8 17:38:21 JST 2007' inverted='False' hash='20070108083821-24576-9761fc8ad27b1a80ccfb8840052b26d346d4e051.gz'>
2113
+ <name>fix feed.rb _again_</name>
2114
+ </patch>
2115
+ <patch author='manveru@weez-int.com' date='20070108093714' local_date='Mon Jan 8 18:37:14 JST 2007' inverted='False' hash='20070108093714-24576-915471406e335626ae1acd91f494a4afecba254a.gz'>
2116
+ <name>check before undef method id in Feed::Bag, that makes it better suited for autoreload</name>
2117
+ </patch>
2118
+ <patch author='manveru@weez-int.com' date='20070108091530' local_date='Mon Jan 8 18:15:30 JST 2007' inverted='False' hash='20070108091530-24576-a09127f65a0f5ccba5939666b555a3a7f21de9c7.gz'>
2119
+ <name>escape the stuff we get (possibly dangerous)</name>
2120
+ </patch>
2121
+ <patch author='manveru@weez-int.com' date='20070108072802' local_date='Mon Jan 8 16:28:02 JST 2007' inverted='False' hash='20070108072802-24576-b8c839df01e5bdcbab57a26c2febe3d77649d8dd.gz'>
2122
+ <name>serious extension of TCFormHelper</name>
2123
+ </patch>
2124
+ <patch author='manveru@weez-int.com' date='20070108072746' local_date='Mon Jan 8 16:27:46 JST 2007' inverted='False' hash='20070108072746-24576-bd648b1b1b51780138be436842ca2eed948af641.gz'>
2125
+ <name>remove useless code in ramaze.rb</name>
2126
+ </patch>
2127
+ <patch author='manveru@weez-int.com' date='20070108072647' local_date='Mon Jan 8 16:26:47 JST 2007' inverted='False' hash='20070108072647-24576-7f634b0d99c83c598e486c7d83542d55ccb1d5f3.gz'>
2128
+ <name>critical, log error when one happens on render! not just recall (which is a bad thing... we should keep a record to avoid loops in case of errors... horrible DoS :|</name>
2129
+ </patch>
2130
+ <patch author='manveru@weez-int.com' date='20070108072633' local_date='Mon Jan 8 16:26:33 JST 2007' inverted='False' hash='20070108072633-24576-79c87aa8a9db278bb0f74c960442a52b0f46c6ee.gz'>
2131
+ <name>make error-output prettier</name>
2132
+ </patch>
2133
+ <patch author='manveru@weez-int.com' date='20070108072549' local_date='Mon Jan 8 16:25:49 JST 2007' inverted='False' hash='20070108072549-24576-4b5f48a22f940ebc51173708999901a6becc630d.gz'>
2134
+ <name>FormHelper now handles Date and works! (total rewrite of the option-handling)</name>
2135
+ </patch>
2136
+ <patch author='manveru@weez-int.com' date='20070108072522' local_date='Mon Jan 8 16:25:22 JST 2007' inverted='False' hash='20070108072522-24576-466210c245a605bc7b77f8bc42825f6a498881d4.gz'>
2137
+ <name>add &apos;docs&apos; in the FeedHelper :)</name>
2138
+ </patch>
2139
+ <patch author='manveru@weez-int.com' date='20070108072457' local_date='Mon Jan 8 16:24:57 JST 2007' inverted='False' hash='20070108072457-24576-7c95a247af946f8bf3517c3068691fa2538981ab.gz'>
2140
+ <name>little prettification in dispatcher</name>
2141
+ </patch>
2142
+ <patch author='manveru@weez-int.com' date='20070108035509' local_date='Mon Jan 8 12:55:09 JST 2007' inverted='False' hash='20070108035509-24576-6936c5da01dbe880fe16205d8d8810e23eff2fbe.gz'>
2143
+ <name>fixed test (for rcov)</name>
2144
+ </patch>
2145
+ <patch author='manveru@weez-int.com' date='20070108035419' local_date='Mon Jan 8 12:54:19 JST 2007' inverted='False' hash='20070108035419-24576-a81e0688e0f0e3f001724d1dea781da4adef4491.gz'>
2146
+ <name>not yet completed rewrite of form-helper</name>
2147
+ </patch>
2148
+ <patch author='manveru@weez-int.com' date='20070108035345' local_date='Mon Jan 8 12:53:45 JST 2007' inverted='False' hash='20070108035345-24576-1daf0729be788f2bbf4fcbdf8f01c51155ec74e3.gz'>
2149
+ <name>extend FormHelper test</name>
2150
+ </patch>
2151
+ <patch author='manveru@weez-int.com' date='20070108024452' local_date='Mon Jan 8 11:44:52 JST 2007' inverted='False' hash='20070108024452-24576-2ff2099bfc8229bb1a83a58ff7e0e5e9548b9bfe.gz'>
2152
+ <name>Session.current added</name>
2153
+ </patch>
2154
+ <patch author='manveru@weez-int.com' date='20070108024427' local_date='Mon Jan 8 11:44:27 JST 2007' inverted='False' hash='20070108024427-24576-4a8b959a5daacf5d7eb83ce3fd69e2620da0d3d1.gz'>
2155
+ <name>fix Inform, make output a bit nicer again</name>
2156
+ </patch>
2157
+ <patch author='manveru@weez-int.com' date='20070108024324' local_date='Mon Jan 8 11:43:24 JST 2007' inverted='False' hash='20070108024324-24576-9cbba429c67a6051cb2ad453cff4286ad496d61e.gz'>
2158
+ <name>two fixes, use AuthHelper::PASSWORD rather than a preset one (still defaults to &apos;passwort&apos;)</name>
2159
+ </patch>
2160
+ <patch author='manveru@weez-int.com' date='20070108024302' local_date='Mon Jan 8 11:43:02 JST 2007' inverted='False' hash='20070108024302-24576-d1533125143ec70b043fb5c4819256641872f8a5.gz'>
2161
+ <name>inform on using cached version</name>
2162
+ </patch>
2163
+ <patch author='manveru@weez-int.com' date='20070105141428' local_date='Fri Jan 5 23:14:28 JST 2007' inverted='False' hash='20070105141428-24576-ca5c64fe9bda2ee3215527a971604e423fdd6723.gz'>
2164
+ <name>fix OpenStruct#temp</name>
2165
+ </patch>
2166
+ <patch author='manveru@weez-int.com' date='20070105003732' local_date='Fri Jan 5 09:37:32 JST 2007' inverted='False' hash='20070105003732-24576-2119617ad5ef93bc089ab0c3059d513903a2ec1f.gz'>
2167
+ <name>changes in Template::Ramaze again, mostly passing filenames to eval</name>
2168
+ </patch>
2169
+ <patch author='manveru@weez-int.com' date='20070104213543' local_date='Fri Jan 5 06:35:43 JST 2007' inverted='False' hash='20070104213543-24576-3966e2f75348a7fd22d99ce72ad577607f77c726.gz'>
2170
+ <name>add a very simple AuthHelper</name>
2171
+ </patch>
2172
+ <patch author='manveru@weez-int.com' date='20070105151047' local_date='Sat Jan 6 00:10:47 JST 2007' inverted='False' hash='20070105151047-24576-767be4341a5c2a0f805ba235f91c4fa586e13166.gz'>
2173
+ <name>some comfy changes in Inform</name>
2174
+ </patch>
2175
+ <patch author='manveru@weez-int.com' date='20070105150740' local_date='Sat Jan 6 00:07:40 JST 2007' inverted='False' hash='20070105150740-24576-eb29fbafc9523bc5642deca931eb08a6acea3ee0.gz'>
2176
+ <name>first implementation of FeedHelper</name>
2177
+ </patch>
2178
+ <patch author='manveru@weez-int.com' date='20070104235627' local_date='Fri Jan 5 08:56:27 JST 2007' inverted='False' hash='20070104235627-24576-70f76cf25447d146adf2210aa5efbcf5170b03e4.gz'>
2179
+ <name>add copyright to files that still lack it</name>
2180
+ </patch>
2181
+ <patch author='manveru@weez-int.com' date='20070104235609' local_date='Fri Jan 5 08:56:09 JST 2007' inverted='False' hash='20070104235609-24576-3f48adc30f0f2b7062a366eaf1695e558e5e2a55.gz'>
2182
+ <name>rake add_copyright adds copyright to files that don&apos;t have it :)</name>
2183
+ </patch>
2184
+ <patch author='manveru@weez-int.com' date='20070104212748' local_date='Fri Jan 5 06:27:48 JST 2007' inverted='False' hash='20070104212748-24576-8d76f00664ae054010310b6b3865cda4f353212a.gz'>
2185
+ <name>stub for a TC to send a file.</name>
2186
+ </patch>
2187
+ <patch author='manveru@weez-int.com' date='20070104212648' local_date='Fri Jan 5 06:26:48 JST 2007' inverted='False' hash='20070104212648-24576-be08820e35c463b6e070653e643659369236a7a2.gz'>
2188
+ <name>patch the parsing of GET/POST parameters again... accidentially used escape instead of unescape :P</name>
2189
+ </patch>
2190
+ <patch author='manveru@weez-int.com' date='20070104212607' local_date='Fri Jan 5 06:26:07 JST 2007' inverted='False' hash='20070104212607-24576-a92d8d85934f998dc95ef985c393e2ae986c445a.gz'>
2191
+ <name>this little patch uses the ability of erubis to eval with a filename to give better error-reports</name>
2192
+ </patch>
2193
+ <patch author='manveru@weez-int.com' date='20070103184710' local_date='Thu Jan 4 03:47:10 JST 2007' inverted='False' hash='20070103184710-24576-7c4d62222ec480fac7b1bac35e5b6ebf353c5f0e.gz'>
2194
+ <name>fixing POST-requests</name>
2195
+ </patch>
2196
+ <patch author='manveru@weez-int.com' date='20070103184650' local_date='Thu Jan 4 03:46:50 JST 2007' inverted='False' hash='20070103184650-24576-2a283b9cec9d91f72b8de891b7dacae5dca337af.gz'>
2197
+ <name>add String.camel_case String.snake_case</name>
2198
+ </patch>
2199
+ <patch author='manveru@weez-int.com' date='20070102053224' local_date='Tue Jan 2 14:32:24 JST 2007' inverted='False' hash='20070102053224-24576-3905ed91dbe56f577c18857742f1f0af55e90034.gz'>
2200
+ <name>smaller changes not really worth mentioning :P</name>
2201
+ </patch>
2202
+ <patch author='manveru@weez-int.com' date='20070102053202' local_date='Tue Jan 2 14:32:02 JST 2007' inverted='False' hash='20070102053202-24576-893e8f3b01133710bb99932b01598dbe45cfbf59.gz'>
2203
+ <name>pass on parameter-parsing to CGI.parse</name>
2204
+ </patch>
2205
+ <patch author='manveru@weez-int.com' date='20070102053123' local_date='Tue Jan 2 14:31:23 JST 2007' inverted='False' hash='20070102053123-24576-a0021bb29eea25c2098aae3a518ec89bb787ce06.gz'>
2206
+ <name>set an instance variable instead of checking for arity of render-method (@hash) for Elements</name>
2207
+ </patch>
2208
+ <patch author='manveru@weez-int.com' date='20070102053059' local_date='Tue Jan 2 14:30:59 JST 2007' inverted='False' hash='20070102053059-24576-7cde4e0010db78f09746d1118a1c2ea9aee27841.gz'>
2209
+ <name>fix form-helper in case there is no control</name>
2210
+ </patch>
2211
+ <patch author='manveru@weez-int.com' date='20070102053036' local_date='Tue Jan 2 14:30:36 JST 2007' inverted='False' hash='20070102053036-24576-e1c7ec940eb535e61c40bbcd3c40a86f8b5f29ca.gz'>
2212
+ <name>fix url for stylesheet of error-page</name>
2213
+ </patch>
2214
+ <patch author='manveru@weez-int.com' date='20070102010321' local_date='Tue Jan 2 10:03:21 JST 2007' inverted='False' hash='20070102010321-24576-91db6b7003d233503039b1345046846625ca2f34.gz'>
2215
+ <name>don&apos;t break this test if we got no Og... suboptimal :|</name>
2216
+ </patch>
2217
+ <patch author='manveru@weez-int.com' date='20070102010117' local_date='Tue Jan 2 10:01:17 JST 2007' inverted='False' hash='20070102010117-24576-ed943528b8966dff9f273735af2df11ff61b36b5.gz'>
2218
+ <name>rewrite the usage of the render-method a bit to be clear :)</name>
2219
+ </patch>
2220
+ <patch author='manveru@weez-int.com' date='20070101105547' local_date='Mon Jan 1 19:55:47 JST 2007' inverted='False' hash='20070101105547-24576-491110b3103e3bace146c0349d289ea5ccf9f24b.gz'>
2221
+ <name>extending tc_session</name>
2222
+ </patch>
2223
+ <patch author='manveru@weez-int.com' date='20061231221012' local_date='Mon Jan 1 07:10:12 JST 2007' inverted='False' hash='20061231221012-24576-9c3022fa32c03d8df5b2ee8953d77d84f3334eb8.gz'>
2224
+ <name>fix ramaze for fastthread-require... and split shutdown into shutoff/shutdown for more granularity</name>
2225
+ </patch>
2226
+ <patch author='manveru@weez-int.com' date='20061231220908' local_date='Mon Jan 1 07:09:08 JST 2007' inverted='False' hash='20061231220908-24576-f9d102ffc884eaa907a7aa2e716075548539d2d6.gz'>
2227
+ <name>add the rake uncommented task, this is a very simple method that shows you which methods are not documented yet (alpha phase, it&apos;s got loads of bugs... but is quite helpful already just as a rough overview)</name>
2228
+ </patch>
2229
+ <patch author='manveru@weez-int.com' date='20061231220820' local_date='Mon Jan 1 07:08:20 JST 2007' inverted='False' hash='20061231220820-24576-8f29fcb0f527d0d99bace61e2797558b3326ea19.gz'>
2230
+ <name>modify all the testcases to fit the new ramaze-method inside context... also split tc_adapter into tc_adapter_mongrel/tc_adapter_webrick</name>
2231
+ </patch>
2232
+ <patch author='manveru@weez-int.com' date='20061231220537' local_date='Mon Jan 1 07:05:37 JST 2007' inverted='False' hash='20061231220537-24576-1c2ffdc3d64eb0b74e29fd643a220b7b58cfa0f2.gz'>
2233
+ <name>huge change to the test_helper... no more ramaze{} but ramaze() - this will shield us from future pain and is also a lot nicer for integration into RSpec</name>
2234
+ </patch>
2235
+ <patch author='manveru@weez-int.com' date='20061231143343' local_date='Sun Dec 31 23:33:43 JST 2006' inverted='False' hash='20061231143343-24576-86eb49098c67e0e9feccd625908c286c5100bef6.gz'>
2236
+ <name>fixing a rather serious bug in the Element, only consider an Element if you really find the class for it and this class responds to :render</name>
2237
+ </patch>
2238
+ <patch author='manveru@weez-int.com' date='20061231143251' local_date='Sun Dec 31 23:32:51 JST 2006' inverted='False' hash='20061231143251-24576-a5926199a1edb9a494d1b0738bd8c22a2267a79f.gz'>
2239
+ <name>big changes again in the form-helper... added loads of options, most are used in the testcases (that still have to be expanded, but they give a good idea of what is possible now)</name>
2240
+ </patch>
2241
+ <patch author='manveru@weez-int.com' date='20061231143222' local_date='Sun Dec 31 23:32:22 JST 2006' inverted='False' hash='20061231143222-24576-582f769d3fc6fb550a49ed515b9a4287512a833c.gz'>
2242
+ <name>added OpenStruct#temp to create temporary copies just with an updated table</name>
2243
+ </patch>
2244
+ <patch author='manveru@weez-int.com' date='20061229215713' local_date='Sat Dec 30 06:57:13 JST 2006' inverted='False' hash='20061229215713-24576-b7eccd6836abb2e12e60c106ebcf5c403342f25b.gz'>
2245
+ <name>support for element-parameters and some tests for it</name>
2246
+ </patch>
2247
+ <patch author='manveru@weez-int.com' date='20061229120142' local_date='Fri Dec 29 21:01:42 JST 2006' inverted='False' hash='20061229120142-24576-c45c4a78067077715e6470d3c6f4bfa5a9ab3d1c.gz'>
2248
+ <name>forgot one Logger =&gt; Inform in autoreload</name>
2249
+ </patch>
2250
+ <patch author='manveru@weez-int.com' date='20061229050020' local_date='Fri Dec 29 14:00:20 JST 2006' inverted='False' hash='20061229050020-24576-d75c30ae2de9b6879249144e7480b7bc4b1d5ce5.gz'>
2251
+ <name>Ramaze::Logger =&gt; Ramaze::Inform - avoid clashes with the tons of other Logger thingies out there</name>
2252
+ </patch>
2253
+ <patch author='manveru@weez-int.com' date='20061229044223' local_date='Fri Dec 29 13:42:23 JST 2006' inverted='False' hash='20061229044223-24576-1a5a38aaf3cca193d87a2b9555296d8393439a3b.gz'>
2254
+ <name>fix tc_tidy</name>
2255
+ </patch>
2256
+ <patch author='manveru@weez-int.com' date='20061229042519' local_date='Fri Dec 29 13:25:19 JST 2006' inverted='False' hash='20061229042519-24576-8efa60e45158d3be1d73e7d1bab871abadaef3df.gz'>
2257
+ <name>change from digest/sha1 to digest/sha2 - would someone explain me what this does?</name>
2258
+ </patch>
2259
+ <patch author='manveru@weez-int.com' date='20061229042448' local_date='Fri Dec 29 13:24:48 JST 2006' inverted='False' hash='20061229042448-24576-43cbf0032533123a496d5d9e195a484d309851ba.gz'>
2260
+ <name>fixing diverse issues with latest rubygems update</name>
2261
+ </patch>
2262
+ <patch author='manveru@weez-int.com' date='20061225220115' local_date='Tue Dec 26 07:01:15 JST 2006' inverted='False' hash='20061225220115-24576-daa3911f0a5251f5ca2eddbb4ef4021cdd35dafa.gz'>
2263
+ <name>give the markaby-templates in the miniwiki-example the proper ext.</name>
2264
+ </patch>
2265
+ <patch author='manveru@weez-int.com' date='20061224185203' local_date='Mon Dec 25 03:52:03 JST 2006' inverted='False' hash='20061224185203-24576-402921469773d5267a409a499d0cf75158e66701.gz'>
2266
+ <name>stop autoreload from failing from some mysterious bug...</name>
2267
+ </patch>
2268
+ <patch author='manveru@weez-int.com' date='20061224185118' local_date='Mon Dec 25 03:51:18 JST 2006' inverted='False' hash='20061224185118-24576-6a1a2f791307059f1728575d0bf51347e974a366.gz'>
2269
+ <name>fix the error-page to work with the new template-implementation... also remove the old Gestalt-code, it&apos;s in darcs anyway</name>
2270
+ </patch>
2271
+ <patch author='manveru@weez-int.com' date='20061222202835' local_date='Sat Dec 23 05:28:35 JST 2006' inverted='False' hash='20061222202835-24576-efa7faf59716776caafa94dbb395e03b6654aa27.gz'>
2272
+ <name>blog/template/entry/list.rmze</name>
2273
+ </patch>
2274
+ <patch author='manveru@weez-int.com' date='20061222202747' local_date='Sat Dec 23 05:27:47 JST 2006' inverted='False' hash='20061222202747-24576-163ceccd23488b00f97467d83b6751c4446b5619.gz'>
2275
+ <name>snippet/kernel/rescue_require.rb</name>
2276
+ </patch>
2277
+ <patch author='manveru@weez-int.com' date='20061222202617' local_date='Sat Dec 23 05:26:17 JST 2006' inverted='False' hash='20061222202617-24576-c492a52fdf76cde4ddd80de5ba63c601d428118c.gz'>
2278
+ <name>additional specification for tc_element</name>
2279
+ </patch>
2280
+ <patch author='manveru@weez-int.com' date='20061222202604' local_date='Sat Dec 23 05:26:04 JST 2006' inverted='False' hash='20061222202604-24576-597ef9c9339dd2399d2fe9d1e61744e20c69eb74.gz'>
2281
+ <name>add test/tc_aspect</name>
2282
+ </patch>
2283
+ <patch author='manveru@weez-int.com' date='20061222202458' local_date='Sat Dec 23 05:24:58 JST 2006' inverted='False' hash='20061222202458-24576-f7fae2b11381c7c4b3abf88f11cce591d46eed88.gz'>
2284
+ <name>restructure test_helper for fastthread...</name>
2285
+ </patch>
2286
+ <patch author='manveru@weez-int.com' date='20061222202438' local_date='Sat Dec 23 05:24:38 JST 2006' inverted='False' hash='20061222202438-24576-d7cf015ca6d76f288f9e1b5dd6b7fc553e451b39.gz'>
2287
+ <name>reimplementation of session... mainly better hash</name>
2288
+ </patch>
2289
+ <patch author='manveru@weez-int.com' date='20061222202206' local_date='Sat Dec 23 05:22:06 JST 2006' inverted='False' hash='20061222202206-24576-1109e3788084c5710913bad64a9e5da1a67ac580.gz'>
2290
+ <name>typo</name>
2291
+ </patch>
2292
+ <patch author='manveru@weez-int.com' date='20061222202115' local_date='Sat Dec 23 05:21:15 JST 2006' inverted='False' hash='20061222202115-24576-fb8d96ee6b195bcfbca39631ae22dbbf1b1f4ad8.gz'>
2293
+ <name>fix a serious bug with the HEREDOC in the template/ramaze... if we don&apos;t prefix a character it will break if the hash starts with a number (oddly enough, this happens very seldom)</name>
2294
+ </patch>
2295
+ <patch author='manveru@weez-int.com' date='20061222202024' local_date='Sat Dec 23 05:20:24 JST 2006' inverted='False' hash='20061222202024-24576-10c77cd5a616bce6802cdaee4db8b0247d0a0dbd.gz'>
2296
+ <name>add the helper/aspect</name>
2297
+ </patch>
2298
+ <patch author='manveru@weez-int.com' date='20061222202010' local_date='Sat Dec 23 05:20:10 JST 2006' inverted='False' hash='20061222202010-24576-025bde1952eba390b306a52367d66c09070ad0a8.gz'>
2299
+ <name>prepare the helper for addition of aspect</name>
2300
+ </patch>
2301
+ <patch author='manveru@weez-int.com' date='20061222201853' local_date='Sat Dec 23 05:18:53 JST 2006' inverted='False' hash='20061222201853-24576-1053005e603ff2c70be6fe5f87d1601b4681a42f.gz'>
2302
+ <name>do not load fastthread in adapter/mongrel, if it has not been required so far by ramaze.rb it&apos;s too late already and we get only an annoying warning.</name>
2303
+ </patch>
2304
+ <patch author='manveru@weez-int.com' date='20061222201812' local_date='Sat Dec 23 05:18:12 JST 2006' inverted='False' hash='20061222201812-24576-769648f51d7e0e5702e7d6dbce720c60cdd5eabf.gz'>
2305
+ <name>minor restructuring for ramaze.rb requires (mainly cause of fastthread)</name>
2306
+ </patch>
2307
+ <patch author='manveru@weez-int.com' date='20061222180239' local_date='Sat Dec 23 03:02:39 JST 2006' inverted='False' hash='20061222180239-24576-ba35413d840a2a5ac43314721ba034f7545dfba1.gz'>
2308
+ <name>fix problem for fastthread-require, it has to be loaded before everything else (especially mongrel and/or thread)</name>
2309
+ </patch>
2310
+ <patch author='manveru@weez-int.com' date='20061220073340' local_date='Wed Dec 20 16:33:40 JST 2006' inverted='False' hash='20061220073340-24576-cecc476ada007a720a069c5967818a2af5af229c.gz'>
2311
+ <name>fix tc_template_ramaze for the restructuring (you don&apos;t have to call transform() in the controller anymore)</name>
2312
+ </patch>
2313
+ <patch author='manveru@weez-int.com' date='20061220073311' local_date='Wed Dec 20 16:33:11 JST 2006' inverted='False' hash='20061220073311-24576-12e64767021bffe30a8e14c3fbe8f52f59916f32.gz'>
2314
+ <name>move the trap... now that i know that it uses continuations we should propably use a different technique...</name>
2315
+ </patch>
2316
+ <patch author='manveru@weez-int.com' date='20061220073017' local_date='Wed Dec 20 16:30:17 JST 2006' inverted='False' hash='20061220073017-24576-68c8110772a4e46b611595effe820fb6386a9987.gz'>
2317
+ <name>make find_template private, fix the :transform_pipeline and add a little comment</name>
2318
+ </patch>
2319
+ <patch author='manveru@weez-int.com' date='20061220073003' local_date='Wed Dec 20 16:30:03 JST 2006' inverted='False' hash='20061220073003-24576-9d105515be2033eed5c954fe3e173ee20ecdc632.gz'>
2320
+ <name>fixing Element for passing parameters</name>
2321
+ </patch>
2322
+ <patch author='manveru@weez-int.com' date='20061220072834' local_date='Wed Dec 20 16:28:34 JST 2006' inverted='False' hash='20061220072834-24576-e18b781726f66c88c95189c09c7af7f59a784c29.gz'>
2323
+ <name>restructuring of the ramaze-templating... looks a lot nicer and is a whole lot more modular... preparing to change for the use of render() in templates</name>
2324
+ </patch>
2325
+ <patch author='manveru@weez-int.com' date='20061220072611' local_date='Wed Dec 20 16:26:11 JST 2006' inverted='False' hash='20061220072611-24576-a41945cae6f3b55871471526f73bfda79d020463.gz'>
2326
+ <name>simplify the dispatcher a little bit, splitting the fill_out into respond_file and resopnd_action, so we can use it from the Templating for relookup of actions on different controllers</name>
2327
+ </patch>
2328
+ <patch author='manveru@weez-int.com' date='20061220072555' local_date='Wed Dec 20 16:25:55 JST 2006' inverted='False' hash='20061220072555-24576-235f778bd944b9b843be246ac1e904976f616ca2.gz'>
2329
+ <name>little change in the README</name>
2330
+ </patch>
2331
+ <patch author='manveru@weez-int.com' date='20061218060950' local_date='Mon Dec 18 15:09:50 JST 2006' inverted='False' hash='20061218060950-24576-9a5938f442b1f4dc787275e6af30944236f45505.gz'>
2332
+ <name>adding trait[:transform_pipeline] to Ramaze... this still is very buggy :|</name>
2333
+ </patch>
2334
+ <patch author='manveru@weez-int.com' date='20061218060851' local_date='Mon Dec 18 15:08:51 JST 2006' inverted='False' hash='20061218060851-24576-754c19cf3fe0c0380fb6bdd03b227c8485205423.gz'>
2335
+ <name>first implementation of ancestor_trait, which searches the ancestors for a trait... this should be made default in a bit</name>
2336
+ </patch>
2337
+ <patch author='manveru@weez-int.com' date='20061218060749' local_date='Mon Dec 18 15:07:49 JST 2006' inverted='False' hash='20061218060749-24576-0863f3fb8b2366f650805034fefdeb50c2f3a777.gz'>
2338
+ <name>fixes some problems with autoreload when the path/file is b0rken</name>
2339
+ </patch>
2340
+ <patch author='manveru@weez-int.com' date='20061218052403' local_date='Mon Dec 18 14:24:03 JST 2006' inverted='False' hash='20061218052403-24576-68567a7fc67b05055ee9ed99457506b4ebb020e4.gz'>
2341
+ <name>remove method_missing from Logger... it overwrites alle method_missings everywhere!!!</name>
2342
+ </patch>
2343
+ <patch author='manveru@weez-int.com' date='20061218052132' local_date='Mon Dec 18 14:21:32 JST 2006' inverted='False' hash='20061218052132-24576-90afbbc402b44054bb65af318f5f777ae9b1bcb2.gz'>
2344
+ <name>do not run setup_global in the bin/ramaze anymore, just pass them along... also fixes a problem for method-missing... error doesn&apos;t take multiple arguments (string/error-object only)</name>
2345
+ </patch>
2346
+ <patch author='manveru@weez-int.com' date='20061215131843' local_date='Fri Dec 15 22:18:43 JST 2006' inverted='False' hash='20061215131843-24576-72afc5548f2c108921800adb6582a25415c01ce1.gz'>
2347
+ <name>removed the Timout for the total ramaze{} block for testing, added Ramaze.shutdown for the teardown (still commented, it has nasty side-effects)</name>
2348
+ </patch>
2349
+ <patch author='manveru@weez-int.com' date='20061215131647' local_date='Fri Dec 15 22:16:47 JST 2006' inverted='False' hash='20061215131647-24576-14c3bd0d14c5f6b86ec2f209ef76e3cd08fde7c0.gz'>
2350
+ <name>tiny updates to ramaze.rb, rewrite of the shutdown method... it still is very fragile though... Mongrel seems to do magic to threads beyond my knowledge</name>
2351
+ </patch>
2352
+ <patch author='manveru@weez-int.com' date='20061215131544' local_date='Fri Dec 15 22:15:44 JST 2006' inverted='False' hash='20061215131544-24576-e31e0dcba3812a0e55113a85b9c212aa775c3bee.gz'>
2353
+ <name>use the new Logger-capabilities to finally catch the stuff WEBrick has thrown long enough to STDOUT</name>
2354
+ </patch>
2355
+ <patch author='manveru@weez-int.com' date='20061215131445' local_date='Fri Dec 15 22:14:45 JST 2006' inverted='False' hash='20061215131445-24576-00b7c64d2d658b1dc7843e1343cad0a57ce9834c.gz'>
2356
+ <name>Logger.puts is no longer private, added also &lt;&lt; as an alias... additionally it can be sneaked into usual Logger-systems and take them over :P</name>
2357
+ </patch>
2358
+ <patch author='manveru@weez-int.com' date='20061215131358' local_date='Fri Dec 15 22:13:58 JST 2006' inverted='False' hash='20061215131358-24576-0fc9f93f296edf97df83487f6855d3797edf8eb9.gz'>
2359
+ <name>a little bit nicer adapters by use of class &lt;&lt; self ... also added a stop-method for future use</name>
2360
+ </patch>
2361
+ <patch author='manveru@weez-int.com' date='20061215131210' local_date='Fri Dec 15 22:12:10 JST 2006' inverted='False' hash='20061215131210-24576-cdd86e7baeed638049947e60b964ed652ee9cbef.gz'>
2362
+ <name>rewrite of the tc_global for the new structure</name>
2363
+ </patch>
2364
+ <patch author='manveru@weez-int.com' date='20061215131100' local_date='Fri Dec 15 22:11:00 JST 2006' inverted='False' hash='20061215131100-24576-096d0c89d4a831806e737436e914be6dd3ad397c.gz'>
2365
+ <name>reimplementation of Global - should be a lot saner and simpler now ;)</name>
2366
+ </patch>
2367
+ <patch author='manveru@weez-int.com' date='20061215055938' local_date='Fri Dec 15 14:59:38 JST 2006' inverted='False' hash='20061215055938-24576-d846a55cc04ee8c33c3f9d219b609cdfd9df4ac2.gz'>
2368
+ <name>do not require digest/sha1 in session.rb - it is not used for calculating sessions</name>
2369
+ </patch>
2370
+ <patch author='manveru@weez-int.com' date='20061215055232' local_date='Fri Dec 15 14:52:32 JST 2006' inverted='False' hash='20061215055232-24576-b1ee011cbbbe7de23592aff292c4b9f26c5f239e.gz'>
2371
+ <name>this moves handle_elements into the ramaze/element.rb and names it transform, it handles arity of an render-method in the elements and passes optional parameters when given... this will give us a hard time when handling arbitary objects... :P</name>
2372
+ </patch>
2373
+ <patch author='manveru@weez-int.com' date='20061215055127' local_date='Fri Dec 15 14:51:27 JST 2006' inverted='False' hash='20061215055127-24576-f901ae58c0663ae1838bb689fac184b0963bdb65.gz'>
2374
+ <name>some minor changes regarding logging... there has still to be done a lot (esp webrick and logging to files)</name>
2375
+ </patch>
2376
+ <patch author='manveru@weez-int.com' date='20061215054837' local_date='Fri Dec 15 14:48:37 JST 2006' inverted='False' hash='20061215054837-24576-b6b4d46a3c84e720c8e8b4c622c2e6f6d8f6bb38.gz'>
2377
+ <name>this moves all global-stuff into the global.rb - makes ramaze.rb a lot nicer ;) - also added some more tests</name>
2378
+ </patch>
2379
+ <patch author='manveru@weez-int.com' date='20061215052021' local_date='Fri Dec 15 14:20:21 JST 2006' inverted='False' hash='20061215052021-24576-741bb1b56d0fd279df0e04a6dd52848dc2fcecab.gz'>
2380
+ <name>patching Global further, we move the defaults in here since they only clutter the ramaze.rb and make handling difficult</name>
2381
+ </patch>
2382
+ <patch author='manveru@weez-int.com' date='20061215051934' local_date='Fri Dec 15 14:19:34 JST 2006' inverted='False' hash='20061215051934-24576-466de8c7589f2ece25445e68da444eb1ac44ee9b.gz'>
2383
+ <name>do not raise on initialize of Global... it just looks odd ;)</name>
2384
+ </patch>
2385
+ <patch author='manveru@weez-int.com' date='20061215051856' local_date='Fri Dec 15 14:18:56 JST 2006' inverted='False' hash='20061215051856-24576-bfff5ec033d41cac50683384c3ae1d10c23b65eb.gz'>
2386
+ <name>do not timeout requests anymore...</name>
2387
+ </patch>
2388
+ <patch author='manveru@weez-int.com' date='20061215051808' local_date='Fri Dec 15 14:18:08 JST 2006' inverted='False' hash='20061215051808-24576-c7f3b41f874946be50b311abeaa219c04df1388d.gz'>
2389
+ <name>give mongrel a proper way to handle logging</name>
2390
+ </patch>
2391
+ <patch author='manveru@weez-int.com' date='20061214133716' local_date='Thu Dec 14 22:37:16 JST 2006' inverted='False' hash='20061214133716-24576-e9d184fdda4efb66de2ab545f412545462762db2.gz'>
2392
+ <name>convert the action to a string since we might get symbols as well, and remove some other useless debugging-info</name>
2393
+ </patch>
2394
+ <patch author='manveru@weez-int.com' date='20061214133640' local_date='Thu Dec 14 22:36:40 JST 2006' inverted='False' hash='20061214133640-24576-93cc62368dc5158a4b50878c413333c008c1e296.gz'>
2395
+ <name>trying to use #{render} and it seems to work, mostly</name>
2396
+ </patch>
2397
+ <patch author='manveru@weez-int.com' date='20061214053146' local_date='Thu Dec 14 14:31:46 JST 2006' inverted='False' hash='20061214053146-24576-a81301d126e12828b2aa37e404223bcc137b11d6.gz'>
2398
+ <name>removing some unneeded debugging-info from the template-file lookup</name>
2399
+ </patch>
2400
+ <patch author='manveru@weez-int.com' date='20061214053101' local_date='Thu Dec 14 14:31:01 JST 2006' inverted='False' hash='20061214053101-24576-8fe72205bebc9182820f39c4bedfd90327baba71.gz'>
2401
+ <name>making the blog-example a good deal neater... next up: sidebar ;)</name>
2402
+ </patch>
2403
+ <patch author='manveru@weez-int.com' date='20061213132254' local_date='Wed Dec 13 22:22:54 JST 2006' inverted='False' hash='20061213132254-24576-8233efb2ab7b3da5123ce212224f653c016f4a84.gz'>
2404
+ <name>remove the test for the amrita-controller, it&apos;s not neccesary anymore since we have an own testsuite for it...</name>
2405
+ </patch>
2406
+ <patch author='manveru@weez-int.com' date='20061213131859' local_date='Wed Dec 13 22:18:59 JST 2006' inverted='False' hash='20061213131859-24576-d84c7a759fb0b4a9e8952be86564fa46431ba77b.gz'>
2407
+ <name>fixing the testcases for templates... for some templates we used to use $0 as root, which would be lethal would it be a real application and it was started with the bin/ramaze - i removed that oddity and require it to have the real path, not relative to the first file</name>
2408
+ </patch>
2409
+ <patch author='manveru@weez-int.com' date='20061213131826' local_date='Wed Dec 13 22:18:26 JST 2006' inverted='False' hash='20061213131826-24576-a67fcb73e5a4f41525521403ed65554f03ca3e09.gz'>
2410
+ <name>simplify template/ramaze by inheriting from Template</name>
2411
+ </patch>
2412
+ <patch author='manveru@weez-int.com' date='20061213131710' local_date='Wed Dec 13 22:17:10 JST 2006' inverted='False' hash='20061213131710-24576-30d831a9ae76a40ff635052fddeaadab75ddf43a.gz'>
2413
+ <name>move the Element in its own file... template/ramaze/element - which also introduces a default way of extending templating-engines with new classes</name>
2414
+ </patch>
2415
+ <patch author='manveru@weez-int.com' date='20061213131630' local_date='Wed Dec 13 22:16:30 JST 2006' inverted='False' hash='20061213131630-24576-162f52864cb69ececc0a6781369b7bde3c687084.gz'>
2416
+ <name>simplify template/markaby by inheriting from Template</name>
2417
+ </patch>
2418
+ <patch author='manveru@weez-int.com' date='20061213131606' local_date='Wed Dec 13 22:16:06 JST 2006' inverted='False' hash='20061213131606-24576-1ecf9f0ad26c418d7c2b29c16789b0414c55f830.gz'>
2419
+ <name>simplify template/erubis by inheriting from Template</name>
2420
+ </patch>
2421
+ <patch author='manveru@weez-int.com' date='20061213131531' local_date='Wed Dec 13 22:15:31 JST 2006' inverted='False' hash='20061213131531-24576-b9ae0f37dfeadca099512343c2ba3b7bb75b90d4.gz'>
2422
+ <name>simplify the template/amrita2 by inheriting from Template</name>
2423
+ </patch>
2424
+ <patch author='manveru@weez-int.com' date='20061213131428' local_date='Wed Dec 13 22:14:28 JST 2006' inverted='False' hash='20061213131428-24576-d808de48816f4ca51bf84d94b8efaaedc0cb7dcf.gz'>
2425
+ <name>this introduces Ramaze::Template::Template - it&apos;s a really stupid name, but i couldn&apos;t come up with anything better... this is the first step in slacking down the templates (they are really not DRY anymore)</name>
2426
+ </patch>
2427
+ <patch author='manveru@weez-int.com' date='20061213131230' local_date='Wed Dec 13 22:12:30 JST 2006' inverted='False' hash='20061213131230-24576-cbad11280f1027edaf22c644a9f7fb4a9afed1a0.gz'>
2428
+ <name>a neat little hack to see if an object is an &apos;instance&apos; or not... though every object is an instance not every object responds to :new (which makes the distinction class/instance for me)</name>
2429
+ </patch>
2430
+ <patch author='manveru@weez-int.com' date='20061213131146' local_date='Wed Dec 13 22:11:46 JST 2006' inverted='False' hash='20061213131146-24576-163e4be7aedc581baa2e81f2ba9368aba41ebacc.gz'>
2431
+ <name>set the priority for the handling thread really high... should give it some advantages over the autoreload-thread in case of high load</name>
2432
+ </patch>
2433
+ <patch author='manveru@weez-int.com' date='20061213131040' local_date='Wed Dec 13 22:10:40 JST 2006' inverted='False' hash='20061213131040-24576-56d062f9586595f76a2c483e28ae3d58cabdd500.gz'>
2434
+ <name>equalize the testcases for templates with the prefix tc_template_ (just for ramaze, which was tc_template.rb till now)</name>
2435
+ </patch>
2436
+ <patch author='manveru@weez-int.com' date='20061213130635' local_date='Wed Dec 13 22:06:35 JST 2006' inverted='False' hash='20061213130635-24576-08175edea73e0abd8ac439d902e95f053bc49668.gz'>
2437
+ <name>small update to the Rakefile... testing task-dependencies :P</name>
2438
+ </patch>
2439
+ <patch author='manveru@weez-int.com' date='20061213100951' local_date='Wed Dec 13 19:09:51 JST 2006' inverted='False' hash='20061213100951-24576-6a3aa670111bad625267d5cb702df1a0b4d1457a.gz'>
2440
+ <name>wielding all the power of ramaze, the blog-example is coming along very very well, it uses elements and form-helper now, you can add/delete/edit entries... more to come ;)</name>
2441
+ </patch>
2442
+ <patch author='manveru@weez-int.com' date='20061213100912' local_date='Wed Dec 13 19:09:12 JST 2006' inverted='False' hash='20061213100912-24576-5b170628f4ef56cb70316a41fdbf9af825f00a23.gz'>
2443
+ <name>adding an Element for the blog-example... makes overall design a _lot_ nicer :)</name>
2444
+ </patch>
2445
+ <patch author='manveru@weez-int.com' date='20061213100849' local_date='Wed Dec 13 19:08:49 JST 2006' inverted='False' hash='20061213100849-24576-d31935cdb462618b133cbd0d0553df041e1b2354.gz'>
2446
+ <name>giving the blog-example a &apos;nice&apos; stylesheet</name>
2447
+ </patch>
2448
+ <patch author='manveru@weez-int.com' date='20061213100759' local_date='Wed Dec 13 19:07:59 JST 2006' inverted='False' hash='20061213100759-24576-df4e7e6907346297b7365daf796177511e66e959.gz'>
2449
+ <name>various fixes for the lookup of template/ramaze templates</name>
2450
+ </patch>
2451
+ <patch author='manveru@weez-int.com' date='20061213100719' local_date='Wed Dec 13 19:07:19 JST 2006' inverted='False' hash='20061213100719-24576-d07b782cb6262dc7907f12416791267f79850a1f.gz'>
2452
+ <name>added implementation of element-handling into the template/ramaze, will add lots of docs later as well.</name>
2453
+ </patch>
2454
+ <patch author='manveru@weez-int.com' date='20061213100658' local_date='Wed Dec 13 19:06:58 JST 2006' inverted='False' hash='20061213100658-24576-a28c0d9b16da2b9a1a68b1834dff6f306562fcb5.gz'>
2455
+ <name>added the basic structure of Element... maybe put this in its own file later</name>
2456
+ </patch>
2457
+ <patch author='manveru@weez-int.com' date='20061213100544' local_date='Wed Dec 13 19:05:44 JST 2006' inverted='False' hash='20061213100544-24576-babc00e0c8ee38483850caad2a7fc237f99f8e95.gz'>
2458
+ <name>rewrite of form-helper... should rename it since it works only with Og currently</name>
2459
+ </patch>
2460
+ <patch author='manveru@weez-int.com' date='20061213100507' local_date='Wed Dec 13 19:05:07 JST 2006' inverted='False' hash='20061213100507-24576-800b804c68e5db2cdcc88cd8a0ec275d314208f2.gz'>
2461
+ <name>added a very basic testcases for how Element should work</name>
2462
+ </patch>
2463
+ <patch author='manveru@weez-int.com' date='20061213044928' local_date='Wed Dec 13 13:49:28 JST 2006' inverted='False' hash='20061213044928-24576-2957c74e83fa68db7aa4db7ba1655ab4c2611933.gz'>
2464
+ <name>do not use .rmze templates for markaby, only .mab - this should be done for the other templating-systems as well.</name>
2465
+ </patch>
2466
+ <patch author='manveru@weez-int.com' date='20061213044848' local_date='Wed Dec 13 13:48:48 JST 2006' inverted='False' hash='20061213044848-24576-f250e2c4e07a1a1a32656767b0127f13db03469d.gz'>
2467
+ <name>some experiments with the helper-facility in markaby... not really working yet, but we&apos;re getting there</name>
2468
+ </patch>
2469
+ <patch author='manveru@weez-int.com' date='20061213044820' local_date='Wed Dec 13 13:48:20 JST 2006' inverted='False' hash='20061213044820-24576-1e09b9525818ae1a8f9858576c8d27535e7cf0a4.gz'>
2470
+ <name>do not rescue in markaby anymore, this is done already by markaby itself and it just obfuscates the error-report</name>
2471
+ </patch>
2472
+ <patch author='manveru@weez-int.com' date='20061213044744' local_date='Wed Dec 13 13:47:44 JST 2006' inverted='False' hash='20061213044744-24576-5525d76b08916c41838e549a9931f3700e352b5d.gz'>
2473
+ <name>better handling of the instance-variable-collection, due to the .flatten it used to break if it encounters and empty array as value</name>
2474
+ </patch>
2475
+ <patch author='manveru@weez-int.com' date='20061213044638' local_date='Wed Dec 13 13:46:38 JST 2006' inverted='False' hash='20061213044638-24576-0ea7f381e423570c998f1450406b4348c13883ff.gz'>
2476
+ <name>the error-page used to break when it meets a (eval) in the backtrace, make it just ignore them (may add some more information later)</name>
2477
+ </patch>
2478
+ <patch author='manveru@weez-int.com' date='20061213044613' local_date='Wed Dec 13 13:46:13 JST 2006' inverted='False' hash='20061213044613-24576-97c9af17e25b27ad1b17615cc214af37f3bacd86.gz'>
2479
+ <name>make ramaze run again, the helper/form really messed things up due to some syntax-errors</name>
2480
+ </patch>
2481
+ <patch author='manveru@weez-int.com' date='20061213044541' local_date='Wed Dec 13 13:45:41 JST 2006' inverted='False' hash='20061213044541-24576-99ab8cebc1bd47d03db4ee73b4613b0966a91de9.gz'>
2482
+ <name>unification of the examples/template</name>
2483
+ </patch>
2484
+ <patch author='manveru@weez-int.com' date='20061213044459' local_date='Wed Dec 13 13:44:59 JST 2006' inverted='False' hash='20061213044459-24576-f71a430caf363ab766681fd3ba1bb532326456b4.gz'>
2485
+ <name>introducing examples/templates/template_markaby (not yet working due to some odd bugs using helpers)</name>
2486
+ </patch>
2487
+ <patch author='manveru@weez-int.com' date='20061212125215' local_date='Tue Dec 12 21:52:15 JST 2006' inverted='False' hash='20061212125215-24576-42767785f81dfd73ca2e6d73bbf87b810ede9f42.gz'>
2488
+ <name>now, that&apos;s finally a nice README :)</name>
2489
+ </patch>
2490
+ <patch author='manveru@weez-int.com' date='20061212114444' local_date='Tue Dec 12 20:44:44 JST 2006' inverted='False' hash='20061212114444-24576-817d5898abfaeab9b715406f9f48185fd306587b.gz'>
2491
+ <name>fixing the tests for the templates to use the template_root</name>
2492
+ </patch>
2493
+ <patch author='manveru@weez-int.com' date='20061212114348' local_date='Tue Dec 12 20:43:48 JST 2006' inverted='False' hash='20061212114348-24576-a31d08453aeec9bbb2acd8df2bd02d00c28702f0.gz'>
2494
+ <name>this fixes the template-lookup for ramaze, it&apos;s now also possible to use trait :template_root in the controller, please read the rdoc for more infos and a small example</name>
2495
+ </patch>
2496
+ <patch author='manveru@weez-int.com' date='20061212114302' local_date='Tue Dec 12 20:43:02 JST 2006' inverted='False' hash='20061212114302-24576-b3f178023f3cb7efa7293c31b027eb0c2837f272.gz'>
2497
+ <name>small cosmetic update</name>
2498
+ </patch>
2499
+ <patch author='manveru@weez-int.com' date='20061211152655' local_date='Tue Dec 12 00:26:55 JST 2006' inverted='False' hash='20061211152655-24576-376ca819f9be3c5c7650c418f5daffb9953f4565.gz'>
2500
+ <name>LOTS of testcases added for markaby</name>
2501
+ </patch>
2502
+ <patch author='manveru@weez-int.com' date='20061211152457' local_date='Tue Dec 12 00:24:57 JST 2006' inverted='False' hash='20061211152457-24576-804f9e41a822a70848cfda1b0b5ee07d4771a902.gz'>
2503
+ <name>this patch makes Template::Ramaze some magnitudes faster and adds some better security for the case someone is funny and tries to hack the HEREDOC</name>
2504
+ </patch>
2505
+ <patch author='manveru@weez-int.com' date='20061211152429' local_date='Tue Dec 12 00:24:29 JST 2006' inverted='False' hash='20061211152429-24576-d2a776a878537655f7ce10de068157f12d69622d.gz'>
2506
+ <name>major upgrade for Markaby, should be finally running now :)</name>
2507
+ </patch>
2508
+ <patch author='manveru@weez-int.com' date='20061211152333' local_date='Tue Dec 12 00:23:33 JST 2006' inverted='False' hash='20061211152333-24576-1dc0fea672356ed06f44333b443aaad482f99432.gz'>
2509
+ <name>class-lookup in the error-template was a bit wrong</name>
2510
+ </patch>
2511
+ <patch author='manveru@weez-int.com' date='20061211152319' local_date='Tue Dec 12 00:23:19 JST 2006' inverted='False' hash='20061211152319-24576-221dc843cd47c8634ba7cba0c28f0354584e38d8.gz'>
2512
+ <name>added Error::Template</name>
2513
+ </patch>
2514
+ <patch author='manveru@weez-int.com' date='20061211142702' local_date='Mon Dec 11 23:27:02 JST 2006' inverted='False' hash='20061211142702-24576-04dd712af492a06808ed83e0f77748f3a4390cd5.gz'>
2515
+ <name>a little beautification :P</name>
2516
+ </patch>
2517
+ <patch author='manveru@weez-int.com' date='20061211142604' local_date='Mon Dec 11 23:26:04 JST 2006' inverted='False' hash='20061211142604-24576-292e350a2200866953cc1f9c3db25009ca764ba8.gz'>
2518
+ <name>lots of additions/changes in the tc_helper_link to reflect the changes made</name>
2519
+ </patch>
2520
+ <patch author='manveru@weez-int.com' date='20061211142529' local_date='Mon Dec 11 23:25:29 JST 2006' inverted='False' hash='20061211142529-24576-a592b7181c1a8f5e4f9332cba277e3c480673fdf.gz'>
2521
+ <name>set the @action instance-variable for use in templates (the examples use it quite a bit, so i thought it would be useful)</name>
2522
+ </patch>
2523
+ <patch author='manveru@weez-int.com' date='20061211142503' local_date='Mon Dec 11 23:25:03 JST 2006' inverted='False' hash='20061211142503-24576-53086b8c73584cbd9ebcc978dd2706c451cf4f0d.gz'>
2524
+ <name>require helper.rb in template.rb</name>
2525
+ </patch>
2526
+ <patch author='manveru@weez-int.com' date='20061211142432' local_date='Mon Dec 11 23:24:32 JST 2006' inverted='False' hash='20061211142432-24576-5679aa4cecefdf93cc3e6a7344d38fedb670221a.gz'>
2527
+ <name>Trinity -&gt; Helper update for template/stupid (no idea if we need that one at all anymore...)</name>
2528
+ </patch>
2529
+ <patch author='manveru@weez-int.com' date='20061211142322' local_date='Mon Dec 11 23:23:22 JST 2006' inverted='False' hash='20061211142322-24576-03c9bba6db7ef6cbc0d20545855fad9f51fa2fc1.gz'>
2530
+ <name>a little bit of moving around in Template::Ramaze, same changes for Helper instead of Trinity and removal of the helper-method for use in other templating-systems</name>
2531
+ </patch>
2532
+ <patch author='manveru@weez-int.com' date='20061211142206' local_date='Mon Dec 11 23:22:06 JST 2006' inverted='False' hash='20061211142206-24576-87a1cc9e733a8435597badaac7222caf8fb00757.gz'>
2533
+ <name>Ramaze::Helper instead of Trinity for template/markaby</name>
2534
+ </patch>
2535
+ <patch author='manveru@weez-int.com' date='20061211142040' local_date='Mon Dec 11 23:20:40 JST 2006' inverted='False' hash='20061211142040-24576-9c2d492a21f7df4a952763fc5ef0d0a67a160c55.gz'>
2536
+ <name>this adds the transform-method for conformity to Template::Erubis, also improved the template-lookup quite a bit and using Ramaze::Helper instead of Trinity</name>
2537
+ </patch>
2538
+ <patch author='manveru@weez-int.com' date='20061211141949' local_date='Mon Dec 11 23:19:49 JST 2006' inverted='False' hash='20061211141949-24576-6e0e2b9e3a03eca5fc8553bac801e3eed456380a.gz'>
2539
+ <name>use Ramaze::Helper instead of Trinity in template/amrita2</name>
2540
+ </patch>
2541
+ <patch author='manveru@weez-int.com' date='20061211141842' local_date='Mon Dec 11 23:18:42 JST 2006' inverted='False' hash='20061211141842-24576-ed9dce6741fdd876e4d321ce8741aa7a03d05ef7.gz'>
2542
+ <name>further improvments in the LinkHelper, not only can you now just pass self instead of self.class, but it also supports get-parameters in the ?foo=bar style - link(self, :foo =&gt; :bar)</name>
2543
+ </patch>
2544
+ <patch author='manveru@weez-int.com' date='20061211141824' local_date='Mon Dec 11 23:18:24 JST 2006' inverted='False' hash='20061211141824-24576-89ce322e71e24ae5e9571572a6ba9f810a8455a8.gz'>
2545
+ <name>use Helper instead of Trinity in Ramaze::Controller</name>
2546
+ </patch>
2547
+ <patch author='manveru@weez-int.com' date='20061211141739' local_date='Mon Dec 11 23:17:39 JST 2006' inverted='False' hash='20061211141739-24576-bb07ee9690dda258ebddb8c59e6cc7e67aa636f3.gz'>
2548
+ <name>this puts the helper-method into its own module that also includes Trinity for convinience</name>
2549
+ </patch>
2550
+ <patch author='manveru@weez-int.com' date='20061211141529' local_date='Mon Dec 11 23:15:29 JST 2006' inverted='False' hash='20061211141529-24576-e0ff8960e41753290fbc43a935bf4361dd0d9d66.gz'>
2551
+ <name>added examples for templating in ramaze and erubis, more to come</name>
2552
+ </patch>
2553
+ <patch author='manveru@weez-int.com' date='20061211055911' local_date='Mon Dec 11 14:59:11 JST 2006' inverted='False' hash='20061211055911-24576-d11750388d4dd543442240328e132970a2e96fd2.gz'>
2554
+ <name>added template/markaby with some tests (not all pass yet... lunchtime is just too short :)</name>
2555
+ </patch>
2556
+ <patch author='manveru@weez-int.com' date='20061210092841' local_date='Sun Dec 10 18:28:41 JST 2006' inverted='False' hash='20061210092841-24576-e8c73430e0fca4d714801855bcd35a8337724115.gz'>
2557
+ <name>added testcase for link :title</name>
2558
+ </patch>
2559
+ <patch author='manveru@weez-int.com' date='20061210092759' local_date='Sun Dec 10 18:27:59 JST 2006' inverted='False' hash='20061210092759-24576-a8d43ccb36d27eee2d54f0b2b9ea55868ff55a85.gz'>
2560
+ <name>change from load()ing the helpers to require()ing them, so we can update them via autoreload as well (load doesn&apos;t add to the $LOADED_FEATURES...)</name>
2561
+ </patch>
2562
+ <patch author='manveru@weez-int.com' date='20061210092718' local_date='Sun Dec 10 18:27:18 JST 2006' inverted='False' hash='20061210092718-24576-890d4ea7159187858d3f984c9807055410e2c070.gz'>
2563
+ <name>added redirect_referer to the RedirectHelper - it redirects you directly to where you come from.</name>
2564
+ </patch>
2565
+ <patch author='manveru@weez-int.com' date='20061208165738' local_date='Sat Dec 9 01:57:38 JST 2006' inverted='False' hash='20061208165738-24576-f896790c7138fcbfc7b389f65a732f8caeb7a675.gz'>
2566
+ <name>small fix for the LinkHelper - would&apos;t use :title proper if given more than &apos;/&apos;</name>
2567
+ </patch>
2568
+ <patch author='manveru@weez-int.com' date='20061208165624' local_date='Sat Dec 9 01:56:24 JST 2006' inverted='False' hash='20061208165624-24576-ed6219b10ea14bbad0e198b775081ebac19393a0.gz'>
2569
+ <name>this is the first stub for the new FormHelper, no real documentation or functionality here yet, mostly a summary of ideas that i need to reevaluate [ok... in reality my notebook ran out of power ;]</name>
2570
+ </patch>
2571
+ <patch author='manveru@weez-int.com' date='20061208165451' local_date='Sat Dec 9 01:54:51 JST 2006' inverted='False' hash='20061208165451-24576-61b02fbf5dcdbbe1c5dc4aabf9826c9cee0155a5.gz'>
2572
+ <name>vast extension of the example/blog - added some templates and stuff to the controller, this will use the FormHelper (that i will stub soon)</name>
2573
+ </patch>
2574
+ <patch author='manveru@weez-int.com' date='20061208164948' local_date='Sat Dec 9 01:49:48 JST 2006' inverted='False' hash='20061208164948-24576-f125f7b1bac37d879f07c6155e380422b1b7e9fc.gz'>
2575
+ <name>added a simple testsuite for the blog-example, nothing too heavy yet.</name>
2576
+ </patch>
2577
+ <patch author='manveru@weez-int.com' date='20061207140910' local_date='Thu Dec 7 23:09:10 JST 2006' inverted='False' hash='20061207140910-24576-7cede75bd5111ea6761a9902e1aba9f7c42da368.gz'>
2578
+ <name>oops, almost forgot to check in this file :)</name>
2579
+ </patch>
2580
+ <patch author='manveru@weez-int.com' date='20061207133353' local_date='Thu Dec 7 22:33:53 JST 2006' inverted='False' hash='20061207133353-24576-1fde840672d06036389a33baac9c8e4c95a49c24.gz'>
2581
+ <name>a new error-page, totally implemented in Template::Ramaze instead of Gestalt, left the Gestalt one in there commented, not sure what i should do with it... use it as an example? (might horrify people though ;)</name>
2582
+ </patch>
2583
+ <patch author='manveru@weez-int.com' date='20061207133238' local_date='Thu Dec 7 22:32:38 JST 2006' inverted='False' hash='20061207133238-24576-88c4ca7d132ad0d6879fa639ed3bd6ee1b414718.gz'>
2584
+ <name>Template::Ramaze.transform now takes an optional binding, gotta make this API nicer, since it also takes optional ivs... maybe :binding =&gt; binding, :ivs =&gt; {} - oh, and commented the nasty #[] for the time being</name>
2585
+ </patch>
2586
+ <patch author='manveru@weez-int.com' date='20061207120957' local_date='Thu Dec 7 21:09:57 JST 2006' inverted='False' hash='20061207120957-24576-5b092dd38ccb13b5915638cb857152bb6e126e75.gz'>
2587
+ <name>use STATUS_CODE lookup instead of the direct error-codes</name>
2588
+ </patch>
2589
+ <patch author='manveru@weez-int.com' date='20061207120235' local_date='Thu Dec 7 21:02:35 JST 2006' inverted='False' hash='20061207120235-24576-86b79229c11358f7242e4bca6ce10cfedb1d8660.gz'>
2590
+ <name>tc_session should use the new get/eget of Context</name>
2591
+ </patch>
2592
+ <patch author='manveru@weez-int.com' date='20061207120225' local_date='Thu Dec 7 21:02:25 JST 2006' inverted='False' hash='20061207120225-24576-baae0875051f4eb0f60924d837d5ba3b94a922ae.gz'>
2593
+ <name>tc_helper_stack - added a logged_in? to the controller and doing more extensive testing for get and post using the new abilities of Context</name>
2594
+ </patch>
2595
+ <patch author='manveru@weez-int.com' date='20061207115836' local_date='Thu Dec 7 20:58:36 JST 2006' inverted='False' hash='20061207115836-24576-8b28a3652695dc4afd47fb7d985e48b3840de41b.gz'>
2596
+ <name>Context now uses eget/get instead of reqest/erequest to be look more like get(); also added post/epost, this is lots of fun ahead :)</name>
2597
+ </patch>
2598
+ <patch author='manveru@weez-int.com' date='20061207113520' local_date='Thu Dec 7 20:35:20 JST 2006' inverted='False' hash='20061207113520-24576-5a8c1f5f17fe8dbc3f9368b61e716b405d723212.gz'>
2599
+ <name>added test/tc_helper_stack - this is tests the new call/answer behaviour that works just like the one in nitro. please check the test for further understanding.</name>
2600
+ </patch>
2601
+ <patch author='manveru@weez-int.com' date='20061207113431' local_date='Thu Dec 7 20:34:31 JST 2006' inverted='False' hash='20061207113431-24576-662da43e7d776fc8ed4a4286a470ca4bb76014fe.gz'>
2602
+ <name>moving Context into test_helper - it is used to mock sessions</name>
2603
+ </patch>
2604
+ <patch author='manveru@weez-int.com' date='20061207113315' local_date='Thu Dec 7 20:33:15 JST 2006' inverted='False' hash='20061207113315-24576-ec17e5d830a4e48d49da415ef32cd15d56ee7b61.gz'>
2605
+ <name>changing link_raw to R - you can also set titles now with link(:foo, :title =&gt; &apos;foo&apos;)</name>
2606
+ </patch>
2607
+ <patch author='manveru@weez-int.com' date='20061207105849' local_date='Thu Dec 7 19:58:49 JST 2006' inverted='False' hash='20061207105849-24576-1c8047593ac3a8fb699299cc98d8683b1ef5efea.gz'>
2608
+ <name>split tc_helper into tc_helper_redirect and tc_helper_link</name>
2609
+ </patch>
2610
+ <patch author='manveru@weez-int.com' date='20061207103627' local_date='Thu Dec 7 19:36:27 JST 2006' inverted='False' hash='20061207103627-24576-d0282a2396028efb8c1485a3d17ab75b7764aa5d.gz'>
2611
+ <name>huuge update for the testcases... to make it more testing-friendly we gotta use different controller-classes for each testcase, also the update of Global didn&apos;t allow a change of the used adapter, this is fixed now.</name>
2612
+ </patch>
2613
+ <patch author='manveru@weez-int.com' date='20061207103610' local_date='Thu Dec 7 19:36:10 JST 2006' inverted='False' hash='20061207103610-24576-9874109fe49ae4ad61f8b83fe1f580462b144803.gz'>
2614
+ <name>update todo for template/ramaze</name>
2615
+ </patch>
2616
+ <patch author='manveru@weez-int.com' date='20061207103534' local_date='Thu Dec 7 19:35:34 JST 2006' inverted='False' hash='20061207103534-24576-41b2c1f801a57b0bda9e653377f257498f293165.gz'>
2617
+ <name>remove todo &apos;add host&apos; for webrick, we do that since ages already ;)</name>
2618
+ </patch>
2619
+ <patch author='manveru@weez-int.com' date='20061207103459' local_date='Thu Dec 7 19:34:59 JST 2006' inverted='False' hash='20061207103459-24576-37171552e1305005d9c442f08b846374af07dc88.gz'>
2620
+ <name>some addtional changes... i really gotta fix the rcov-task...</name>
2621
+ </patch>
2622
+ <patch author='manveru@weez-int.com' date='20061207103226' local_date='Thu Dec 7 19:32:26 JST 2006' inverted='False' hash='20061207103226-24576-87865dd8cd231f85f66873e2fd78fe533ab6d32b.gz'>
2623
+ <name>make output of rake todo a little bit nicer</name>
2624
+ </patch>
2625
+ <patch author='manveru@weez-int.com' date='20061206134157' local_date='Wed Dec 6 22:41:57 JST 2006' inverted='False' hash='20061206134157-24576-d6a690490b673820cd3dc3c9d46edb9b127a095b.gz'>
2626
+ <name>TAG 0.0.4</name>
2627
+ </patch>
2628
+ <patch author='manveru@weez-int.com' date='20061206134108' local_date='Wed Dec 6 22:41:08 JST 2006' inverted='False' hash='20061206134108-24576-4282e7dc585a247da6639d0d283cedbffc593b33.gz'>
2629
+ <name>dump version to 0.0.4 the first really nice and stable release</name>
2630
+ </patch>
2631
+ <patch author='manveru@weez-int.com' date='20061206134005' local_date='Wed Dec 6 22:40:05 JST 2006' inverted='False' hash='20061206134005-24576-bb082dec1a4b518ff0076cdc2630d6045735890b.gz'>
2632
+ <name>don&apos;t pretty-inspect Global at startup anymore</name>
2633
+ </patch>
2634
+ <patch author='manveru@weez-int.com' date='20061206133845' local_date='Wed Dec 6 22:38:45 JST 2006' inverted='False' hash='20061206133845-24576-8ca1965261247871e2fe2a7fe6f953af8e50fa70.gz'>
2635
+ <name>we now have a proper interaction with Global via the bin/ramaze</name>
2636
+ <comment>
2637
+ Usage: ramaze [switches] startfile [arguments]
2638
+ -a, --adapter=ADAPTER select an adapter [mongrel|webrick]
2639
+ -m, --mongrel use mongrel to process requests
2640
+ -w, --webrick the default
2641
+
2642
+ --mode=LEVEL set the running-mode
2643
+ -b, --benchmark full logging with benchmarks, autoreload 5
2644
+ -d, --debug the default, full logging, autoreload 5
2645
+ -t, --stage log infos/errors, autoreload 10
2646
+ -l, --live log errors, autoreload 20
2647
+ -s, --silent no logging, autoreload 40
2648
+
2649
+ -o, --host which host should ramaze listen for requests
2650
+ default is 0.0.0.0
2651
+ -p, --port what port should ramaze use
2652
+ default is 7000
2653
+
2654
+ -n, --no-errorpage don&apos;t use the default errorpage of ramaze
2655
+ helpful if you want to make sure noone can
2656
+ ever see your code by accident or for testing
2657
+ --template-root set a custom template-root for the whole
2658
+ application, please note that ~ is not
2659
+ expanded to your home-directory
2660
+ --autoreload=N set how frequent ramaze should search for
2661
+ updated files in your application
2662
+ default depends on the (-mode)
2663
+ -r, --run-loose don&apos;t take control after startup.
2664
+ this is useful for testcases.
2665
+ --cache use the simple caching based on the signature
2666
+ of your requests (experimental)
2667
+ --tidy run Tool::Tidy over text/html output
2668
+
2669
+ -h, --help print this help
2670
+ -v, --version print the version
2671
+ -c, --copyright print the copyrith
2672
+
2673
+ Please report bugs to &lt;m.fellinger at gmail.com&gt;
2674
+ </comment>
2675
+ </patch>
2676
+ <patch author='manveru@weez-int.com' date='20061206133813' local_date='Wed Dec 6 22:38:13 JST 2006' inverted='False' hash='20061206133813-24576-6dce17428ed19906a98b2a14b1c37dd24196f222.gz'>
2677
+ <name>added doc/COPYING and doc/COPYING.ja from the ruby-distribution</name>
2678
+ </patch>
2679
+ <patch author='manveru@weez-int.com' date='20061206133708' local_date='Wed Dec 6 22:37:08 JST 2006' inverted='False' hash='20061206133708-24576-fcf82ac5174a5d918f96d4e65ccceac6e3d4d26a.gz'>
2680
+ <name>added copyright to all .rb files</name>
2681
+ </patch>
2682
+ <patch author='manveru@weez-int.com' date='20061206113034' local_date='Wed Dec 6 20:30:34 JST 2006' inverted='False' hash='20061206113034-24576-a395fce09ddc23bb68c80610a72ca616b01f7858.gz'>
2683
+ <name>improved tc_controller a little bit</name>
2684
+ </patch>
2685
+ <patch author='manveru@weez-int.com' date='20061206113012' local_date='Wed Dec 6 20:30:12 JST 2006' inverted='False' hash='20061206113012-24576-31993b23e711472159cc057d829e1c3e973f5e8d.gz'>
2686
+ <name>tc_adapter should use get() instead of its own calling of open</name>
2687
+ </patch>
2688
+ <patch author='manveru@weez-int.com' date='20061206112955' local_date='Wed Dec 6 20:29:55 JST 2006' inverted='False' hash='20061206112955-24576-b9af6099f93bd4b35e501586e1b0498806819cdc.gz'>
2689
+ <name>default test-adapter is mongrel again, enables out-of-the-box testing</name>
2690
+ </patch>
2691
+ <patch author='manveru@weez-int.com' date='20061206112710' local_date='Wed Dec 6 20:27:10 JST 2006' inverted='False' hash='20061206112710-24576-e061d8819a2e5396172cc13e30b2882304c3a569.gz'>
2692
+ <name>wrapping webricks server.start in a Thread.new{} again, this provides proper handling of it again. also the default-response status is now 500</name>
2693
+ </patch>
2694
+ <patch author='manveru@weez-int.com' date='20061206112643' local_date='Wed Dec 6 20:26:43 JST 2006' inverted='False' hash='20061206112643-24576-bc45f9f12b80d65d8e7f64cc5115cedcb05cef0f.gz'>
2695
+ <name>removed the params/parse_params from adapter/webrick they will be handled in trinity/request now</name>
2696
+ </patch>
2697
+ <patch author='manveru@weez-int.com' date='20061206112201' local_date='Wed Dec 6 20:22:01 JST 2006' inverted='False' hash='20061206112201-24576-08f23e0306da128e5360e47514ee2ae9c8615ee4.gz'>
2698
+ <name>moved the get?/post? methods into trinity/request also added put? and delete? for REST</name>
2699
+ </patch>
2700
+ <patch author='manveru@weez-int.com' date='20061205063636' local_date='Tue Dec 5 15:36:36 JST 2006' inverted='False' hash='20061205063636-24576-ef1043e3fbf7be7c28578f7a1237cebad912f7a6.gz'>
2701
+ <name>add tests for private methods to the controller</name>
2702
+ </patch>
2703
+ <patch author='manveru@weez-int.com' date='20061205063615' local_date='Tue Dec 5 15:36:15 JST 2006' inverted='False' hash='20061205063615-24576-df3c94bbe4e222c0b2999a5216c47d1cbb3b2e45.gz'>
2704
+ <name>raise error if no template is found in amrita2</name>
2705
+ </patch>
2706
+ <patch author='manveru@weez-int.com' date='20061205063604' local_date='Tue Dec 5 15:36:04 JST 2006' inverted='False' hash='20061205063604-24576-08bf8b503129efbd2eea3d498dec6205edbc989a.gz'>
2707
+ <name>small typo in the blog-template</name>
2708
+ </patch>
2709
+ <patch author='manveru@weez-int.com' date='20061204141148' local_date='Mon Dec 4 23:11:48 JST 2006' inverted='False' hash='20061204141148-24576-3898f168984ca49d0bf046c7848f35df38ed18af.gz'>
2710
+ <name>a rather huge structural change, we extract Trinity from Dispatcher and give it its own file, controller subsequently only exists as an optional Controller-namespace and to identify Controllers. moved request/response/session into their own trinity-directory. also changed the require to something plain, simple and maybe stupid, but every parser and reader will thank me ;)</name>
2711
+ </patch>
2712
+ <patch author='manveru@weez-int.com' date='20061204134749' local_date='Mon Dec 4 22:47:49 JST 2006' inverted='False' hash='20061204134749-24576-83f87c2a7eef014941842d7a33da41fd3743d535.gz'>
2713
+ <name>added extensions .ephp .ec .ejava .escheme .eprl .ejs - i have no idea yet how to implement them, but as a simple reminder ;)</name>
2714
+ </patch>
2715
+ <patch author='manveru@weez-int.com' date='20061204134208' local_date='Mon Dec 4 22:42:08 JST 2006' inverted='False' hash='20061204134208-24576-70c322035031b8984dd95470a5a503e0705bf1d2.gz'>
2716
+ <name>change default-mode for tests to :debug</name>
2717
+ </patch>
2718
+ <patch author='manveru@weez-int.com' date='20061204134152' local_date='Mon Dec 4 22:41:52 JST 2006' inverted='False' hash='20061204134152-24576-dc29f7c553e1f0777fbd95669c583d009d99ec44.gz'>
2719
+ <name>do not catch errors in the test_helper anymore, everything seems fine now</name>
2720
+ </patch>
2721
+ <patch author='manveru@weez-int.com' date='20061204134116' local_date='Mon Dec 4 22:41:16 JST 2006' inverted='False' hash='20061204134116-24576-a8544e90217a4fce6d2a23960dac37b31ecb1ba0.gz'>
2722
+ <name>changed the require-path to match the new require-style inside the testcases</name>
2723
+ </patch>
2724
+ <patch author='manveru@weez-int.com' date='20061204134030' local_date='Mon Dec 4 22:40:30 JST 2006' inverted='False' hash='20061204134030-24576-08cfad61e7c032d5746b67216d54dac5eee51ec1.gz'>
2725
+ <name>removed the non-working requireing of each testcase (which was previously commented out anyway)</name>
2726
+ </patch>
2727
+ <patch author='manveru@weez-int.com' date='20061204134010' local_date='Mon Dec 4 22:40:10 JST 2006' inverted='False' hash='20061204134010-24576-78e51ad12c8f122b51966f879f97265aec472217.gz'>
2728
+ <name>added Template::Erubis</name>
2729
+ </patch>
2730
+ <patch author='manveru@weez-int.com' date='20061204133904' local_date='Mon Dec 4 22:39:04 JST 2006' inverted='False' hash='20061204133904-24576-dc64ca8c729206cf2b54d46871db1dfeccbf1249.gz'>
2731
+ <name>rewrote Template::Amrita2 in the way the implementation of Erubis worked out, a lot cleaner and straight-forward. will have to minimize the overhead of find_file though.</name>
2732
+ </patch>
2733
+ <patch author='manveru@weez-int.com' date='20061204133400' local_date='Mon Dec 4 22:34:00 JST 2006' inverted='False' hash='20061204133400-24576-9c4e043ad75fcdfd76fbf8b247d8656a8d638ca9.gz'>
2734
+ <name>moved the controller out of the blog/main.rb to blog/src/controller.rb and added an EntryController to take advantage of Og</name>
2735
+ </patch>
2736
+ <patch author='manveru@weez-int.com' date='20061204133234' local_date='Mon Dec 4 22:32:34 JST 2006' inverted='False' hash='20061204133234-24576-c6b1933b1ed3d42d3964205425ba46b135d75890.gz'>
2737
+ <name>added an index.rmze with the first extensive ramaze-template to the blog-example - it&apos;s supposed to list all the entries</name>
2738
+ </patch>
2739
+ <patch author='manveru@weez-int.com' date='20061204132812' local_date='Mon Dec 4 22:28:12 JST 2006' inverted='False' hash='20061204132812-24576-60e37b33e6fea59118e38f9050d732daa27b00a1.gz'>
2740
+ <name>prepare for erubis</name>
2741
+ </patch>
2742
+ <patch author='manveru@weez-int.com' date='20061204132739' local_date='Mon Dec 4 22:27:39 JST 2006' inverted='False' hash='20061204132739-24576-8ae5bfa21d1d2ac3b3b051a4b1c914d617d4c2a0.gz'>
2743
+ <name>avoid aliasing Kernel#method twice</name>
2744
+ </patch>
2745
+ <patch author='manveru@weez-int.com' date='20061204132715' local_date='Mon Dec 4 22:27:15 JST 2006' inverted='False' hash='20061204132715-24576-4d92d3f355c776fe2bbb0026ae84ddf1e658682f.gz'>
2746
+ <name>added tc_template_erubis and it passes :)</name>
2747
+ </patch>
2748
+ <patch author='manveru@weez-int.com' date='20061204132655' local_date='Mon Dec 4 22:26:55 JST 2006' inverted='False' hash='20061204132655-24576-c038fa5bdeb3f72ff89bd358f475c9cdc5b7c9c7.gz'>
2749
+ <name>moved tc_amrita2 to test/</name>
2750
+ </patch>
2751
+ <patch author='manveru@weez-int.com' date='20061204132637' local_date='Mon Dec 4 22:26:37 JST 2006' inverted='False' hash='20061204132637-24576-299d18cc595fe81491bf9bbf9900b7925664ea3b.gz'>
2752
+ <name>sane trait for the controller</name>
2753
+ </patch>
2754
+ <patch author='manveru@weez-int.com' date='20061204132534' local_date='Mon Dec 4 22:25:34 JST 2006' inverted='False' hash='20061204132534-24576-a98328e95be9f7412fcd6e7122e66eb0e6927345.gz'>
2755
+ <name>change all the requires to require a bit different... (insiede test only - it is now required that you run the tests from ../test which gives the whole thing a bit more substance)</name>
2756
+ </patch>
2757
+ <patch author='manveru@weez-int.com' date='20061204132455' local_date='Mon Dec 4 22:24:55 JST 2006' inverted='False' hash='20061204132455-24576-d174a61db4ab562dbecf6d8824510794dcf61746.gz'>
2758
+ <name>add a simple template for erubis (standard-extension .rhtml)</name>
2759
+ </patch>
2760
+ <patch author='manveru@weez-int.com' date='20061204132349' local_date='Mon Dec 4 22:23:49 JST 2006' inverted='False' hash='20061204132349-24576-341f111d32e3a0bb432b0664c1f084b4ed1eeb70.gz'>
2761
+ <name>rearrange the stuff inside test/template - move the tests in the basedir and use it soley for templates, less confusion, more efficient (just a bit uglier filenames :)</name>
2762
+ </patch>
2763
+ <patch author='manveru@weez-int.com' date='20061204132251' local_date='Mon Dec 4 22:22:51 JST 2006' inverted='False' hash='20061204132251-24576-ef38c5adcbff2bf9912d3db510de77036cf7cfc8.gz'>
2764
+ <name>give the standard-return-code of 500 if none is set.</name>
2765
+ </patch>
2766
+ <patch author='manveru@weez-int.com' date='20061203235715' local_date='Mon Dec 4 08:57:15 JST 2006' inverted='False' hash='20061203235715-24576-2a45dc09d253d1f86aa0a829091d6d92ec397a6f.gz'>
2767
+ <name>added a rcov-task to Rakefil and changed from catching only timeout to everything in the test_helper</name>
2768
+ </patch>
2769
+ <patch author='manveru@weez-int.com' date='20061201135919' local_date='Fri Dec 1 22:59:19 JST 2006' inverted='False' hash='20061201135919-24576-dee34104a59167c90abe6e2c52808afe7f9b4761.gz'>
2770
+ <name>changed all testcases from usage of #[] to #{}</name>
2771
+ </patch>
2772
+ <patch author='manveru@weez-int.com' date='20061201135900' local_date='Fri Dec 1 22:59:00 JST 2006' inverted='False' hash='20061201135900-24576-4597c2f40c9cbaf3d9a9a328eb8eafb00a2c59c7.gz'>
2773
+ <name>extended the tc_template</name>
2774
+ </patch>
2775
+ <patch author='manveru@weez-int.com' date='20061201135807' local_date='Fri Dec 1 22:58:07 JST 2006' inverted='False' hash='20061201135807-24576-2fd312a5af9907eb0ca9536707d2c34c3c0abc97.gz'>
2776
+ <name>LOADS of documentation for the template/ramaze and better implementation of the transform (avoiding easily used variables)</name>
2777
+ </patch>
2778
+ <patch author='manveru@weez-int.com' date='20061201135724' local_date='Fri Dec 1 22:57:24 JST 2006' inverted='False' hash='20061201135724-24576-867ded137fe97fb943f20a2a271091420c0a26c3.gz'>
2779
+ <name>minor patch for the case that autoreload doesn&apos;t get a valid interval</name>
2780
+ </patch>
2781
+ <patch author='manveru@weez-int.com' date='20061201135707' local_date='Fri Dec 1 22:57:07 JST 2006' inverted='False' hash='20061201135707-24576-f17d3acf391a7551a2984bea18c8b594816fb90c.gz'>
2782
+ <name>documentation for helpers</name>
2783
+ </patch>
2784
+ <patch author='manveru@weez-int.com' date='20061201124302' local_date='Fri Dec 1 21:43:02 JST 2006' inverted='False' hash='20061201124302-24576-2c68dbf9495fe6db2db51efe8af7150257a31899.gz'>
2785
+ <name>added a pretty good coverage of the helpers in test/tc_helper.rb</name>
2786
+ </patch>
2787
+ <patch author='manveru@weez-int.com' date='20061201124212' local_date='Fri Dec 1 21:42:12 JST 2006' inverted='False' hash='20061201124212-24576-39e0fe46e21d123ab4794515dd6521e398e6c235.gz'>
2788
+ <name>output of &lt;?r ?&gt; is no longer considered worthwhile, would have strange effects on arr.each or some other iterators who return self</name>
2789
+ </patch>
2790
+ <patch author='manveru@weez-int.com' date='20061201124110' local_date='Fri Dec 1 21:41:10 JST 2006' inverted='False' hash='20061201124110-24576-43e772e6349f4ba3b936529ad120ff944105fc4b.gz'>
2791
+ <name>adding a helper method to Template::Ramaze, use it like: helper :link, :redirect</name>
2792
+ </patch>
2793
+ <patch author='manveru@weez-int.com' date='20061201123529' local_date='Fri Dec 1 21:35:29 JST 2006' inverted='False' hash='20061201123529-24576-09ebb1ce66a9df67405ef36267173e375d2e7e9b.gz'>
2794
+ <name>redirect is now a helper too</name>
2795
+ <comment>
2796
+ like LinkHelper, but even simpler
2797
+
2798
+ RedirectHelper actually takes advantage of LinkHelper.link_raw to build the links
2799
+ it redirects to.
2800
+ It doesn&apos;t do much else than this:
2801
+ setting a status-code of 303 and a head[&apos;Location&apos;] = link
2802
+ returning some nice text for visitors who insist on ignoring those hints :P
2803
+
2804
+ example of usage:
2805
+ redirect MainController
2806
+ redirect MainController, :foo
2807
+ redirect &apos;foo/bar&apos;
2808
+
2809
+ still todo:
2810
+ - setting custom status-code, it ignores any preset ones at the moment
2811
+ - maybe some more options, like a delay</comment>
2812
+ </patch>
2813
+ <patch author='manveru@weez-int.com' date='20061201122435' local_date='Fri Dec 1 21:24:35 JST 2006' inverted='False' hash='20061201122435-24576-e9ea29f3c4db1e49f7c770ecbce1f1d5ba1540ca.gz'>
2814
+ <name>added the LinkHelper, the first of the helpers</name>
2815
+ <comment>
2816
+ it is included into the Template::Ramaze by default
2817
+
2818
+ this helper tries to get along without any major magic, the only &apos;magic&apos;
2819
+ thing is that it looks up controller-paths if you pass it a controller
2820
+ the text shown is always the last segmet of the finished link from split(&apos;/&apos;)
2821
+
2822
+ usage is pretty much shown in test/tc_helper
2823
+ however, to give you some idea of how it actually works, some examples:
2824
+
2825
+ link MainController, :foo #=&gt; &apos;&lt;a href=&quot;/foo&quot;&gt;foo&lt;/a&gt;&apos;
2826
+ link MinorController, :foo #=&gt; &apos;&lt;a href=&quot;/minor/foo&quot;&gt;foo&lt;/a&gt;&apos;
2827
+ link MinorController, :foo, :bar #=&gt; &apos;&lt;a href=&quot;/minor/foo/bar&quot;&gt;bar&lt;/a&gt;&apos;
2828
+ link MainController, :foo, :raw =&gt; true #=&gt; &apos;/foo&apos;
2829
+
2830
+ link_raw MainController, :foo #=&gt; &apos;/foo&apos;
2831
+ link_raw MinorController, :foo #=&gt; &apos;/minor/foo&apos;
2832
+ link_raw MinorController, :foo, :bar #=&gt; &apos;/minor/foo/bar&apos;
2833
+
2834
+ still todo:
2835
+ - handling of no passed parameters
2836
+ - setting of a custom link-title, possibly images as well
2837
+ - setting of id or class
2838
+ - taking advantae of Gestalt to build links
2839
+ - lots of other minor niceties, for the moment i&apos;m only concerned to keep
2840
+ it as simple as possible
2841
+ </comment>
2842
+ </patch>
2843
+ <patch author='manveru@weez-int.com' date='20061201122319' local_date='Fri Dec 1 21:23:19 JST 2006' inverted='False' hash='20061201122319-24576-71d5f39a771ea968b0a3e5d0f73eab8e493ab06d.gz'>
2844
+ <name>total rewrite of the mongrel-adapter, passing around less stuff and making it a lot more readable</name>
2845
+ </patch>
2846
+ <patch author='manveru@weez-int.com' date='20061201122054' local_date='Fri Dec 1 21:20:54 JST 2006' inverted='False' hash='20061201122054-24576-d1fa97034ae9ea611ed9a39a08a4b56ccfba348a.gz'>
2847
+ <name>major update to the blog-example, it now works with Og and has a cleaner structure, also some simple templating and multiple controllers</name>
2848
+ </patch>
2849
+ <patch author='manveru@weez-int.com' date='20061201122023' local_date='Fri Dec 1 21:20:23 JST 2006' inverted='False' hash='20061201122023-24576-56d924fe14faf1e08ef020c74b53df16e286648a.gz'>
2850
+ <name>update rake clean to delete leftover vim-tempfiles and data.db</name>
2851
+ </patch>
2852
+ <patch author='manveru@weez-int.com' date='20061130125341' local_date='Thu Nov 30 21:53:41 JST 2006' inverted='False' hash='20061130125341-24576-9541c93556026db3db3123b83abc50865f4d1007.gz'>
2853
+ <name>commenting out the testcase for #[]! - this should not be used anymore, for now.</name>
2854
+ </patch>
2855
+ <patch author='manveru@weez-int.com' date='20061130125252' local_date='Thu Nov 30 21:52:52 JST 2006' inverted='False' hash='20061130125252-24576-17fe4989a620aa67090eaf9a9711a323a746ad02.gz'>
2856
+ <name>remark about the odd behaviour of the return of a POST, suddenly it just didn&apos;t fail anymore, and i have no idea how to reproduce it.</name>
2857
+ </patch>
2858
+ <patch author='manveru@weez-int.com' date='20061130125208' local_date='Thu Nov 30 21:52:08 JST 2006' inverted='False' hash='20061130125208-24576-2e45a7e759ff8111f845ad2e248ee9023e379bf2.gz'>
2859
+ <name>the raise just changes too often, this time i just check for raise - maybe we get more consistent behaviour later on, but for now i&apos;ll let it be</name>
2860
+ </patch>
2861
+ <patch author='manveru@weez-int.com' date='20061130125152' local_date='Thu Nov 30 21:51:52 JST 2006' inverted='False' hash='20061130125152-24576-95afffa00b124fbae5e3eac882a40c06440eb3ed.gz'>
2862
+ <name>extended tc_global</name>
2863
+ </patch>
2864
+ <patch author='manveru@weez-int.com' date='20061130125120' local_date='Thu Nov 30 21:51:20 JST 2006' inverted='False' hash='20061130125120-24576-319a9eb88178b815f5736251ab2906e486b892c7.gz'>
2865
+ <name>the test_helper methods have now sane timeouts to make things fail faster</name>
2866
+ </patch>
2867
+ <patch author='manveru@weez-int.com' date='20061130125047' local_date='Thu Nov 30 21:50:47 JST 2006' inverted='False' hash='20061130125047-24576-3a918ae7cc19dfad8e912835808681beb1ccf4d2.gz'>
2868
+ <name>just another way to run the tests, commented due to non-functionality</name>
2869
+ </patch>
2870
+ <patch author='manveru@weez-int.com' date='20061130125010' local_date='Thu Nov 30 21:50:10 JST 2006' inverted='False' hash='20061130125010-24576-f73309df659821c73f329fb115ea9d936a0e4bd6.gz'>
2871
+ <name>marking the adapter-thread with [:task] = :adapter to make killing easier</name>
2872
+ </patch>
2873
+ <patch author='manveru@weez-int.com' date='20061130124937' local_date='Thu Nov 30 21:49:37 JST 2006' inverted='False' hash='20061130124937-24576-67fa78f7d2764e9f819b2647e7682179ff5832d3.gz'>
2874
+ <name>give Global responsibility for update itself, makes ramaze.rb cleaner</name>
2875
+ </patch>
2876
+ <patch author='manveru@weez-int.com' date='20061130124915' local_date='Thu Nov 30 21:49:15 JST 2006' inverted='False' hash='20061130124915-24576-441b9beca60d91f18f431e09d89d1e990da8ced0.gz'>
2877
+ <name>comment about the bad behaviour of #[] in templates</name>
2878
+ </patch>
2879
+ <patch author='manveru@weez-int.com' date='20061130124821' local_date='Thu Nov 30 21:48:21 JST 2006' inverted='False' hash='20061130124821-24576-e1e0b147e9ba26218ec0668b2415ded03f22c0eb.gz'>
2880
+ <name>marking the autoreload-thread with the new Thread.current[:task] = :autoreload - to make them easier to identify... all threads in Ramaze should have a [:task] from now on</name>
2881
+ </patch>
2882
+ <patch author='manveru@weez-int.com' date='20061130124734' local_date='Thu Nov 30 21:47:34 JST 2006' inverted='False' hash='20061130124734-24576-1026799de5bcbc779f5583c6d287b408223afd1b.gz'>
2883
+ <name>give poor request a request.params for get/post parameters (post has precendence)</name>
2884
+ </patch>
2885
+ <patch author='manveru@weez-int.com' date='20061130124709' local_date='Thu Nov 30 21:47:09 JST 2006' inverted='False' hash='20061130124709-24576-41671176acced0d5aacac8c311ef8234ac6b76cd.gz'>
2886
+ <name>replacing Global with something totally new, we should create dynamic methods though to get some minor speedup</name>
2887
+ </patch>
2888
+ <patch author='manveru@weez-int.com' date='20061130124503' local_date='Thu Nov 30 21:45:03 JST 2006' inverted='False' hash='20061130124503-24576-3b84e18859dfbce63014adf9ef7313accff2fef8.gz'>
2889
+ <name>do not use start in examples/simple</name>
2890
+ </patch>
2891
+ <patch author='manveru@weez-int.com' date='20061130065356' local_date='Thu Nov 30 15:53:56 JST 2006' inverted='False' hash='20061130065356-24576-326ba1783830a40cf06239ac0af10629c1dedc2b.gz'>
2892
+ <name>embedding tc_amrita2 correctly into a ramaze{} block</name>
2893
+ </patch>
2894
+ <patch author='manveru@weez-int.com' date='20061130065347' local_date='Thu Nov 30 15:53:47 JST 2006' inverted='False' hash='20061130065347-24576-172ae7b3b839533b8039d01bf3895d2e4e63fbf6.gz'>
2895
+ <name>typo</name>
2896
+ </patch>
2897
+ <patch author='manveru@weez-int.com' date='20061130065308' local_date='Thu Nov 30 15:53:08 JST 2006' inverted='False' hash='20061130065308-24576-a5493e92f6f343dfc4f7b71700e2d3cfb3c43244.gz'>
2898
+ <name>adding net/http to test_helper and make some text nicer ;)</name>
2899
+ </patch>
2900
+ <patch author='manveru@weez-int.com' date='20061130065233' local_date='Thu Nov 30 15:52:33 JST 2006' inverted='False' hash='20061130065233-24576-6651d828dcfa5e254dc6b8a6da55a2c4921dc7e8.gz'>
2901
+ <name>this is a fix in case some testcase just hangs, at least you will know which one does</name>
2902
+ </patch>
2903
+ <patch author='manveru@weez-int.com' date='20061130065134' local_date='Thu Nov 30 15:51:34 JST 2006' inverted='False' hash='20061130065134-24576-84a485d1fd9deab33e5d19b04940797f985ae92e.gz'>
2904
+ <name>finally fixed the adapter-startup, at least for mongrel... still very weird issues with webrick</name>
2905
+ </patch>
2906
+ <patch author='manveru@weez-int.com' date='20061130065049' local_date='Thu Nov 30 15:50:49 JST 2006' inverted='False' hash='20061130065049-24576-3feaca6c1a68f14d843027d5af21b479eac0e179.gz'>
2907
+ <name>start a new process on rake test, avoids possible side-effects</name>
2908
+ </patch>
2909
+ <patch author='manveru@weez-int.com' date='20061130054152' local_date='Thu Nov 30 14:41:52 JST 2006' inverted='False' hash='20061130054152-24576-cf6e6c414eab116904eff5ec4db10ce58aeb0067.gz'>
2910
+ <name>patching the testcases to fit in the new way of testing</name>
2911
+ </patch>
2912
+ <patch author='manveru@weez-int.com' date='20061130054058' local_date='Thu Nov 30 14:40:58 JST 2006' inverted='False' hash='20061130054058-24576-0b287de75c7d0aac92070a988b93f234a84e9ffa.gz'>
2913
+ <name>we add a nice testing-block called ramaze, you pass it a hash for startup-options and a block and it does setup/teardown... specify-driven would take too long and is too verbose</name>
2914
+ </patch>
2915
+ <patch author='manveru@weez-int.com' date='20061130054042' local_date='Thu Nov 30 14:40:42 JST 2006' inverted='False' hash='20061130054042-24576-9d7663c71529d86a63443ded206477c542a86727.gz'>
2916
+ <name>nicer output of all_tests</name>
2917
+ </patch>
2918
+ <patch author='manveru@weez-int.com' date='20061130053957' local_date='Thu Nov 30 14:39:57 JST 2006' inverted='False' hash='20061130053957-24576-b699ae715c143bbce44da8eb0316d2b09dbd4043.gz'>
2919
+ <name>this should improve the startup-behaviour for the adapters... there must be bugs lurking in there though.</name>
2920
+ </patch>
2921
+ <patch author='manveru@weez-int.com' date='20061130053854' local_date='Thu Nov 30 14:38:54 JST 2006' inverted='False' hash='20061130053854-24576-73d04ac85fd59e5bfc42fb78cb42542bb8e3389f.gz'>
2922
+ <name>update the global nicer on startup, we have no idea what the user passes or has set already, so be very careful as well (not you, ramaze)</name>
2923
+ </patch>
2924
+ <patch author='manveru@weez-int.com' date='20061130053814' local_date='Thu Nov 30 14:38:14 JST 2006' inverted='False' hash='20061130053814-24576-d581596f95c69725da93208475edeb55789f2d0d.gz'>
2925
+ <name>kill all threads except for main on exit... i need some way to get out nicely without exit...</name>
2926
+ </patch>
2927
+ <patch author='manveru@weez-int.com' date='20061130053725' local_date='Thu Nov 30 14:37:25 JST 2006' inverted='False' hash='20061130053725-24576-d82bba94ff016013e4d1a1306371ebce6d0b6048.gz'>
2928
+ <name>this is a major improvment for the Template::Ramaze - passing (almost) all tests, just slight problems with #[] still</name>
2929
+ </patch>
2930
+ <patch author='manveru@weez-int.com' date='20061130053655' local_date='Thu Nov 30 14:36:55 JST 2006' inverted='False' hash='20061130053655-24576-0e6fbef144c83ebbe5b6044f657634ee258471ae.gz'>
2931
+ <name>slightly more expressive code in response-creation</name>
2932
+ </patch>
2933
+ <patch author='manveru@weez-int.com' date='20061130053633' local_date='Thu Nov 30 14:36:33 JST 2006' inverted='False' hash='20061130053633-24576-cb60db9810bc802131df0e48ddc6bc05057d4e96.gz'>
2934
+ <name>no thread in thread anymore for webrick</name>
2935
+ </patch>
2936
+ <patch author='manveru@weez-int.com' date='20061130053507' local_date='Thu Nov 30 14:35:07 JST 2006' inverted='False' hash='20061130053507-24576-72104887a36ee5f633ad3059c73cf612155f6c12.gz'>
2937
+ <name>just start up ramaze, we ignore the problem that it might be started already since we never can be sure and people would partially build trust on it despite that fact - so as a rule, don&apos;t start your files manually if you want bin/ramaze to start it</name>
2938
+ </patch>
2939
+ <patch author='manveru@weez-int.com' date='20061129084401' local_date='Wed Nov 29 17:44:01 JST 2006' inverted='False' hash='20061129084401-24576-effe72a2333fdd7e8406e7c6fa5ed25b6d5e55a8.gz'>
2940
+ <name>added the templates for the tc_template in test/template/</name>
2941
+ </patch>
2942
+ <patch author='manveru@weez-int.com' date='20061129062205' local_date='Wed Nov 29 15:22:05 JST 2006' inverted='False' hash='20061129062205-24576-bed7cc467a8fff8e09f5d3feec06fc0fcf2d58e6.gz'>
2943
+ <name>major change in the templating... now using &lt;%= %&gt; &lt;% %&gt; &lt;?r ?&gt; #[] - this needs some extensive testing and is not fully done yet, but getting there...</name>
2944
+ </patch>
2945
+ <patch author='manveru@weez-int.com' date='20061129062143' local_date='Wed Nov 29 15:21:43 JST 2006' inverted='False' hash='20061129062143-24576-dd582ee4d41cbb5c8d7f33dad3ecdeaca6d5c1b6.gz'>
2946
+ <name>added tc_template</name>
2947
+ </patch>
2948
+ <patch author='manveru@weez-int.com' date='20061128124422' local_date='Tue Nov 28 21:44:22 JST 2006' inverted='False' hash='20061128124422-24576-578264d9af2a67333d626c3c8939fc56bc4036d7.gz'>
2949
+ <name>this improves the templating a tiny bit... however #[]! still fails, we need some serious regex-magic here.</name>
2950
+ </patch>
2951
+ <patch author='manveru@weez-int.com' date='20061128123321' local_date='Tue Nov 28 21:33:21 JST 2006' inverted='False' hash='20061128123321-24576-d6d799dca04ccfd29db1398542cfa659a906e6e0.gz'>
2952
+ <name>saner tc_store</name>
2953
+ </patch>
2954
+ <patch author='manveru@weez-int.com' date='20061128123232' local_date='Tue Nov 28 21:32:32 JST 2006' inverted='False' hash='20061128123232-24576-8682d2b7daf5260eb3a1ccdea2aefa116a9ed502.gz'>
2955
+ <name>improved templating further, now, if a template-file is given and returns something useful we discard the stuff from the controller-method and use that instead</name>
2956
+ </patch>
2957
+ <patch author='manveru@weez-int.com' date='20061128123209' local_date='Tue Nov 28 21:32:09 JST 2006' inverted='False' hash='20061128123209-24576-774b85e3da1ad963382263cc6f7e078867d38c5e.gz'>
2958
+ <name>touch the db before initializing the default-store</name>
2959
+ </patch>
2960
+ <patch author='manveru@weez-int.com' date='20061128123149' local_date='Tue Nov 28 21:31:49 JST 2006' inverted='False' hash='20061128123149-24576-938ef1ea72579ae68d5a3dc42cdeae4b0722b6bd.gz'>
2961
+ <name>minor patch for mongrel-cookies</name>
2962
+ </patch>
2963
+ <patch author='manveru@weez-int.com' date='20061128115759' local_date='Tue Nov 28 20:57:59 JST 2006' inverted='False' hash='20061128115759-24576-f56cb5673a4c4e2bdd36b8d0ccd2b628aa6b965a.gz'>
2964
+ <name>added a mostly-stub for the new blog-example</name>
2965
+ </patch>
2966
+ <patch author='manveru@weez-int.com' date='20061128115713' local_date='Tue Nov 28 20:57:13 JST 2006' inverted='False' hash='20061128115713-24576-8c079cf1798ae3af461602e5bde1b1010c8285db.gz'>
2967
+ <name>added the default-store, this is just a very simple wrapper over YAML::Store and doesn&apos;t offer anything really... just to satisfy the tests</name>
2968
+ </patch>
2969
+ <patch author='manveru@weez-int.com' date='20061128115620' local_date='Tue Nov 28 20:56:20 JST 2006' inverted='False' hash='20061128115620-24576-d33dc5c7cf6ae44b87d25be45c15b1e288f8629c.gz'>
2970
+ <name>move the test-request-methods over from test_get/test_post/request to get/post</name>
2971
+ </patch>
2972
+ <patch author='manveru@weez-int.com' date='20061128115456' local_date='Tue Nov 28 20:54:56 JST 2006' inverted='False' hash='20061128115456-24576-34d3bd1974a786b508f26fe1976c463eb4568da8.gz'>
2973
+ <name>update to test_helper, now using get/post instead of test_get/test_post or request</name>
2974
+ </patch>
2975
+ <patch author='manveru@weez-int.com' date='20061128115326' local_date='Tue Nov 28 20:53:26 JST 2006' inverted='False' hash='20061128115326-24576-5a713f8aebf499b765319581a1f017009e69aebc.gz'>
2976
+ <name>Template::Ramaze now supports extremly simple templating with #[expr] - more to come</name>
2977
+ </patch>
2978
+ <patch author='manveru@weez-int.com' date='20061128115313' local_date='Tue Nov 28 20:53:13 JST 2006' inverted='False' hash='20061128115313-24576-282dc5fc58a033d058491733f301de62325039a0.gz'>
2979
+ <name>fixing sessions for webrick</name>
2980
+ </patch>
2981
+ <patch author='manveru@weez-int.com' date='20061128115254' local_date='Tue Nov 28 20:52:54 JST 2006' inverted='False' hash='20061128115254-24576-c9f7d7eec18e252e9a8e6f6cf86b8168827fe332.gz'>
2982
+ <name>updated README with coderay-info</name>
2983
+ </patch>
2984
+ <patch author='manveru@weez-int.com' date='20061128115122' local_date='Tue Nov 28 20:51:22 JST 2006' inverted='False' hash='20061128115122-24576-4f48b9e2ba6c202f443e55ab95e2b0e2d19e119a.gz'>
2985
+ <name>don&apos;t be so verbose about missing coderay, if someone wants it we should mention it in the README</name>
2986
+ </patch>
2987
+ <patch author='manveru@weez-int.com' date='20061128114931' local_date='Tue Nov 28 20:49:31 JST 2006' inverted='False' hash='20061128114931-24576-d88903712e7f7b1c0ce1bfdc0daac85bcb2f3803.gz'>
2988
+ <name>moving from ann to trait</name>
2989
+ </patch>
2990
+ <patch author='manveru@weez-int.com' date='20061128114737' local_date='Tue Nov 28 20:47:37 JST 2006' inverted='False' hash='20061128114737-24576-c9d32edce1540a7262357b9aa775c589befd358d.gz'>
2991
+ <name>just a FIXME</name>
2992
+ </patch>
2993
+ <patch author='manveru@weez-int.com' date='20061128114548' local_date='Tue Nov 28 20:45:48 JST 2006' inverted='False' hash='20061128114548-24576-2af8615dff8474340b2a2c61cb5b7da63ad0ef11.gz'>
2994
+ <name>lots of improved compatibility between the mongrel and webrick adapter, added respone.content_type</name>
2995
+ </patch>
2996
+ <patch author='manveru@weez-int.com' date='20061128114454' local_date='Tue Nov 28 20:44:54 JST 2006' inverted='False' hash='20061128114454-24576-7d969b5ef2de10c47a93196a0387fd8c93d3e80b.gz'>
2997
+ <name>Socket.do_not_reverse_lookup = true # for OSX</name>
2998
+ </patch>
2999
+ <patch author='manveru@weez-int.com' date='20061128114306' local_date='Tue Nov 28 20:43:06 JST 2006' inverted='False' hash='20061128114306-24576-c4ce41d80cdc8db34437e57de5ecb193856ecf23.gz'>
3000
+ <name>removed some debugging-info about timeouted</name>
3001
+ </patch>
3002
+ <patch author='manveru@weez-int.com' date='20061128114234' local_date='Tue Nov 28 20:42:34 JST 2006' inverted='False' hash='20061128114234-24576-95c3a4b2c857854b70640b01413e5359b3092f72.gz'>
3003
+ <name>added small doc-snippets to the simple example about error-page</name>
3004
+ </patch>
3005
+ <patch author='manveru@weez-int.com' date='20061128114210' local_date='Tue Nov 28 20:42:10 JST 2006' inverted='False' hash='20061128114210-24576-75f18c03141123a11bfc5637ba6bbd744238ef82.gz'>
3006
+ <name>added indication which file is ran by bin/ramaze</name>
3007
+ </patch>
3008
+ <patch author='manveru@weez-int.com' date='20061128114047' local_date='Tue Nov 28 20:40:47 JST 2006' inverted='False' hash='20061128114047-24576-a71ceb4cd64b003c9824b6d9604072c3b5f0c9e2.gz'>
3009
+ <name>simplified ann, which is now trait (should be double speed ;)</name>
3010
+ </patch>
3011
+ <patch author='manveru@weez-int.com' date='20061128114002' local_date='Tue Nov 28 20:40:02 JST 2006' inverted='False' hash='20061128114002-24576-c5948cd8bf1de192088765d269752d143b1b4971.gz'>
3012
+ <name>moved add.rb to traits.rb to avoid conflicts with facets (used by Og)</name>
3013
+ </patch>
3014
+ <patch author='manveru@weez-int.com' date='20061124053707' local_date='Fri Nov 24 14:37:07 JST 2006' inverted='False' hash='20061124053707-24576-cc01d59ab77751947a4688113373b8fc35217feb.gz'>
3015
+ <name>added a testcase for sum (from example/simple)</name>
3016
+ </patch>
3017
+ <patch author='manveru@weez-int.com' date='20061124053632' local_date='Fri Nov 24 14:36:32 JST 2006' inverted='False' hash='20061124053632-24576-4e9fd7c953c61721090e5eef01e8a535b93168c6.gz'>
3018
+ <name>added a timeout if the port is already used, otherwise it would retry indefinitly</name>
3019
+ </patch>
3020
+ <patch author='manveru@weez-int.com' date='20061124053215' local_date='Fri Nov 24 14:32:15 JST 2006' inverted='False' hash='20061124053215-24576-cc76e90d83ffec1a963cb404fc417b0a05f1cfc7.gz'>
3021
+ <name>change the default-adapter to webrick for all the poor lads who don&apos;t have mongrel yet</name>
3022
+ </patch>
3023
+ <patch author='manveru@weez-int.com' date='20061124053113' local_date='Fri Nov 24 14:31:13 JST 2006' inverted='False' hash='20061124053113-24576-00ac67df09b04b9a37f24a294508eff2c07e908a.gz'>
3024
+ <name>added lots of docs and further examples in examples/simple.rb</name>
3025
+ </patch>
3026
+ <patch author='manveru@weez-int.com' date='20061124051106' local_date='Fri Nov 24 14:11:06 JST 2006' inverted='False' hash='20061124051106-24576-c5b5e438b2795d55a234b174516cba57d9748d26.gz'>
3027
+ <name>added some more docs to hello.rb</name>
3028
+ </patch>
3029
+ <patch author='manveru@weez-int.com' date='20061122105027' local_date='Wed Nov 22 19:50:27 JST 2006' inverted='False' hash='20061122105027-24576-4858fce5a0c424effb2b7aaf0801db7c6ca90092.gz'>
3030
+ <name>upgrade of rspec to 0.7</name>
3031
+ </patch>
3032
+ <patch author='manveru@weez-int.com' date='20061105110904' local_date='Sun Nov 5 20:09:04 JST 2006' inverted='False' hash='20061105110904-24576-c7950d6dfe945b88363bd18e3fcc5ea2d000c81f.gz'>
3033
+ <name>updated CHANGELOG and a bit of docu in tidy</name>
3034
+ </patch>
3035
+ <patch author='manveru@weez-int.com' date='20061105084420' local_date='Sun Nov 5 17:44:20 JST 2006' inverted='False' hash='20061105084420-24576-ae877f052c46d55275fdcd64f1a002f8602e02a0.gz'>
3036
+ <name>more efficient lookup of the libtidy.so, still relying on `locate`, but you can set it yourself now with Ramaze::Tool::Tidy.ann[:path]</name>
3037
+ </patch>
3038
+ <patch author='manveru@weez-int.com' date='20061105084238' local_date='Sun Nov 5 17:42:38 JST 2006' inverted='False' hash='20061105084238-24576-4cfe60620ab0812cf40c85aa98bc2dfac44487d8.gz'>
3039
+ <name>fixing the amrita2 controller to find the correct path for templates (ann[:template_root] to override it)</name>
3040
+ </patch>
3041
+ <patch author='manveru@weez-int.com' date='20061105084202' local_date='Sun Nov 5 17:42:02 JST 2006' inverted='False' hash='20061105084202-24576-fcc9178331d7cbaf692e069258012fba8377ffb8.gz'>
3042
+ <name>patches to dispatcher, proper handling of caching and actionless controllers in case of / =&gt; index</name>
3043
+ </patch>
3044
+ <patch author='manveru@weez-int.com' date='20061105084015' local_date='Sun Nov 5 17:40:15 JST 2006' inverted='False' hash='20061105084015-24576-23fc564f0e60b159f166a1f709f7cde84dcde6db.gz'>
3045
+ <name>fixing the tc_controller and added the amrita template for the controller testcase, also added the annotation for template_root</name>
3046
+ </patch>
3047
+ <patch author='manveru@weez-int.com' date='20061105045758' local_date='Sun Nov 5 13:57:58 JST 2006' inverted='False' hash='20061105045758-24576-c1838562211181eedc16670417b184b1303e5344.gz'>
3048
+ <name>updated the Rakefile and changed to version 0.0.3 - one todo marked as done</name>
3049
+ </patch>
3050
+ <patch author='manveru@weez-int.com' date='20061102151331' local_date='Fri Nov 3 00:13:31 JST 2006' inverted='False' hash='20061102151331-24576-5a6764dff4072696b78203210a0ae54e6536461e.gz'>
3051
+ <name>changed the amrita testcase to work</name>
3052
+ </patch>
3053
+ <patch author='manveru@weez-int.com' date='20061102151316' local_date='Fri Nov 3 00:13:16 JST 2006' inverted='False' hash='20061102151316-24576-e619addc8ed3470edb7221673b7f33fecfd13f9a.gz'>
3054
+ <name>default testmode is now :live instead of :silent</name>
3055
+ </patch>
3056
+ <patch author='manveru@weez-int.com' date='20061102151244' local_date='Fri Nov 3 00:12:44 JST 2006' inverted='False' hash='20061102151244-24576-dd45d3f9eb0ffb00ead035cfeca5eb1fdd819566.gz'>
3057
+ <name>added a simple YAMLstore... to be replaced by the real thing</name>
3058
+ </patch>
3059
+ <patch author='manveru@weez-int.com' date='20061102151229' local_date='Fri Nov 3 00:12:29 JST 2006' inverted='False' hash='20061102151229-24576-1c80e8f0f83ec1a382dc815ce1727c539dcfbb74.gz'>
3060
+ <name>the dispatcher respects actionless controllers now (Amrita2)</name>
3061
+ </patch>
3062
+ <patch author='manveru@weez-int.com' date='20061102151047' local_date='Fri Nov 3 00:10:47 JST 2006' inverted='False' hash='20061102151047-24576-d497f66bae4ab0974229dd3882b81fbd8a5deb81.gz'>
3063
+ <name>added trinity in most places and using the annotations now, also a bit of cleanup</name>
3064
+ </patch>
3065
+ <patch author='manveru@weez-int.com' date='20061102151013' local_date='Fri Nov 3 00:10:13 JST 2006' inverted='False' hash='20061102151013-24576-ee5d9388a75d258ec1286f2e399921527894bdc2.gz'>
3066
+ <name>added trinity, to be extracted</name>
3067
+ </patch>
3068
+ <patch author='manveru@weez-int.com' date='20061102151005' local_date='Fri Nov 3 00:10:05 JST 2006' inverted='False' hash='20061102151005-24576-067f8051720fe84dd0660f09fe203fc1bec915ae.gz'>
3069
+ <name>added self_method</name>
3070
+ </patch>
3071
+ <patch author='manveru@weez-int.com' date='20061102150953' local_date='Fri Nov 3 00:09:53 JST 2006' inverted='False' hash='20061102150953-24576-ca227487f5fdbf19271ab046fc98567ee07dbe16.gz'>
3072
+ <name>added new Annotation</name>
3073
+ </patch>
3074
+ <patch author='manveru@weez-int.com' date='20061102150926' local_date='Fri Nov 3 00:09:26 JST 2006' inverted='False' hash='20061102150926-24576-cd8c129632050e6de3cbd5c46d9076b633a4a455.gz'>
3075
+ <name>added favicon and logo</name>
3076
+ </patch>
3077
+ <patch author='manveru@weez-int.com' date='20061031230049' local_date='Wed Nov 1 08:00:49 JST 2006' inverted='False' hash='20061031230049-24576-3acf683085b4b3c4ab276140c3a602519ad8bdb5.gz'>
3078
+ <name>added testcases for controller and templating of amrita2/ramaze - they still have to be made passing</name>
3079
+ </patch>
3080
+ <patch author='manveru@weez-int.com' date='20061026103945' local_date='Thu Oct 26 19:39:45 JST 2006' inverted='False' hash='20061026103945-24576-6159bfe96816f121a00054ed20fb1b738a9a2032.gz'>
3081
+ <name>added a setup for tc_adapter, makes it a bit slower but a lot better</name>
3082
+ </patch>
3083
+ <patch author='manveru@weez-int.com' date='20061026102922' local_date='Thu Oct 26 19:29:22 JST 2006' inverted='False' hash='20061026102922-24576-661cf9b7966cf375e853e1595d02f3d75b86f76b.gz'>
3084
+ <name>after fix in mongrel, this should work nice again and the tcs should pass</name>
3085
+ </patch>
3086
+ <patch author='manveru@weez-int.com' date='20061026102900' local_date='Thu Oct 26 19:29:00 JST 2006' inverted='False' hash='20061026102900-24576-79190fabb0beca28f93cad45b3e76ebd954647bd.gz'>
3087
+ <name>more elegant tc_gestalt</name>
3088
+ </patch>
3089
+ <patch author='manveru@weez-int.com' date='20061026102835' local_date='Thu Oct 26 19:28:35 JST 2006' inverted='False' hash='20061026102835-24576-09721be53c0e7508d0581ce08b9e4679146e4d84.gz'>
3090
+ <name>finish up in the ramaze.rb and bring together the loose ends</name>
3091
+ </patch>
3092
+ <patch author='manveru@weez-int.com' date='20061026102812' local_date='Thu Oct 26 19:28:12 JST 2006' inverted='False' hash='20061026102812-24576-22d819e851717aed3698279761dd1d8efc66996b.gz'>
3093
+ <name>rewrote the ramaze-template</name>
3094
+ </patch>
3095
+ <patch author='manveru@weez-int.com' date='20061026102716' local_date='Thu Oct 26 19:27:16 JST 2006' inverted='False' hash='20061026102716-24576-63b3cde5609155ca72b923ef44c684d1dc795681.gz'>
3096
+ <name>autoreload is now a method in Ramaze and i added a Global.autoreload hash that holds the autoreload-times for the hashes, additionally there is the new :benchmark mode</name>
3097
+ </patch>
3098
+ <patch author='manveru@weez-int.com' date='20061026102608' local_date='Thu Oct 26 19:26:08 JST 2006' inverted='False' hash='20061026102608-24576-f31e199b1329811c418432c6972b978bae516758.gz'>
3099
+ <name>added pretty_inspect to the response to fit better into the new error-page</name>
3100
+ </patch>
3101
+ <patch author='manveru@weez-int.com' date='20061026102558' local_date='Thu Oct 26 19:25:58 JST 2006' inverted='False' hash='20061026102558-24576-ac1e4ec56d19be5fcca0312c07ead73c5e7813bd.gz'>
3102
+ <name>implemented the logger-todos</name>
3103
+ </patch>
3104
+ <patch author='manveru@weez-int.com' date='20061026102455' local_date='Thu Oct 26 19:24:55 JST 2006' inverted='False' hash='20061026102455-24576-3c7588c6ce9516f5e37f972e90eacb6fbc78ecc0.gz'>
3105
+ <name>Gestalt is now no subclass of BlankSlate anymore... it was unneccesary and just complicating the whole code. using the simple p-hack again</name>
3106
+ </patch>
3107
+ <patch author='manveru@weez-int.com' date='20061026102420' local_date='Thu Oct 26 19:24:20 JST 2006' inverted='False' hash='20061026102420-24576-61b4abe190225e85a630ca51a00a1ce67977df28.gz'>
3108
+ <name>a really huge update to the errorpage again... remember to remove the logo ;)</name>
3109
+ </patch>
3110
+ <patch author='manveru@weez-int.com' date='20061026102354' local_date='Thu Oct 26 19:23:54 JST 2006' inverted='False' hash='20061026102354-24576-079eca22359aae7b1317be0002c16b74800700ba.gz'>
3111
+ <name>added a timeout to the dispatcher and removed some annoying return-statements</name>
3112
+ </patch>
3113
+ <patch author='manveru@weez-int.com' date='20061026102334' local_date='Thu Oct 26 19:23:34 JST 2006' inverted='False' hash='20061026102334-24576-fd3b6dfbcab79f38423a757ac978052989623f5c.gz'>
3114
+ <name>added response method to controller-prototype</name>
3115
+ </patch>
3116
+ <patch author='manveru@weez-int.com' date='20061026102317' local_date='Thu Oct 26 19:23:17 JST 2006' inverted='False' hash='20061026102317-24576-6f7fc2109be50cbfb056778b84d110de5ef998b5.gz'>
3117
+ <name>adapter have now the possibilities to bench requests when mode is :benchmark</name>
3118
+ </patch>
3119
+ <patch author='manveru@weez-int.com' date='20061026102058' local_date='Thu Oct 26 19:20:58 JST 2006' inverted='False' hash='20061026102058-24576-6f548ce0f468adc2671882170eef1703844e1fe5.gz'>
3120
+ <name>updated the miniwiki to use YAML::Store and work correctly in general</name>
3121
+ </patch>
3122
+ <patch author='manveru@weez-int.com' date='20061023103640' local_date='Mon Oct 23 19:36:40 JST 2006' inverted='False' hash='20061023103640-24576-0357d3cc918bf90496275c7cada7b0f8feb5efeb.gz'>
3123
+ <name>added a testcase for params and proper handling of the errors now. (thanks mfp)</name>
3124
+ </patch>
3125
+ <patch author='manveru@weez-int.com' date='20061023103629' local_date='Mon Oct 23 19:36:29 JST 2006' inverted='False' hash='20061023103629-24576-6d548d6243386512f388e354ba3ed80472d5c804.gz'>
3126
+ <name>output the error if tidy fails</name>
3127
+ </patch>
3128
+ <patch author='manveru@weez-int.com' date='20061023103605' local_date='Mon Oct 23 19:36:05 JST 2006' inverted='False' hash='20061023103605-24576-120725f1544929040ed223296818142419705d52.gz'>
3129
+ <name>adding __instance_variable_set__ to Gestalt to better handle iv without evaling</name>
3130
+ </patch>
3131
+ <patch author='manveru@weez-int.com' date='20061023103522' local_date='Mon Oct 23 19:35:22 JST 2006' inverted='False' hash='20061023103522-24576-78200640ca24506d1803f08c25f6c52b9e6d1d3b.gz'>
3132
+ <name>better handling of CodeRay inside error-template</name>
3133
+ </patch>
3134
+ <patch author='manveru@weez-int.com' date='20061023103449' local_date='Mon Oct 23 19:34:49 JST 2006' inverted='False' hash='20061023103449-24576-2057246bbfc218e63d4d9c230b03f4401b977a8e.gz'>
3135
+ <name>little cleanup and adding documentation in the error-page</name>
3136
+ </patch>
3137
+ <patch author='manveru@weez-int.com' date='20061023103426' local_date='Mon Oct 23 19:34:26 JST 2006' inverted='False' hash='20061023103426-24576-e765c3165f9090da22f8bc9e83f87b3457ace892.gz'>
3138
+ <name>proper handling of -1 params</name>
3139
+ </patch>
3140
+ <patch author='manveru@weez-int.com' date='20061023103354' local_date='Mon Oct 23 19:33:54 JST 2006' inverted='False' hash='20061023103354-24576-b1b4201f860a3928ff58efc1730c151793d98356.gz'>
3141
+ <name>adding proper params-handling for webrick, (very very bad proper handling)</name>
3142
+ </patch>
3143
+ <patch author='manveru@weez-int.com' date='20061023103323' local_date='Mon Oct 23 19:33:23 JST 2006' inverted='False' hash='20061023103323-24576-0fa45116c79902b3f20c369b2641177aaa27ee4d.gz'>
3144
+ <name>remove the require &apos;rubygems&apos; and error-handling from the adapter itself, that is handled one level lower</name>
3145
+ </patch>
3146
+ <patch author='manveru@weez-int.com' date='20061023103303' local_date='Mon Oct 23 19:33:03 JST 2006' inverted='False' hash='20061023103303-24576-5ea5c82b19b3188196dfb81f3f2fb3abf6b0a368.gz'>
3147
+ <name>added a default in public/css/coderay.css since i will use it quite often.</name>
3148
+ </patch>
3149
+ <patch author='manveru@weez-int.com' date='20061023103203' local_date='Mon Oct 23 19:32:03 JST 2006' inverted='False' hash='20061023103203-24576-b0cc501d93344a6952c1c05e3e7d9a10fc86b33d.gz'>
3150
+ <name>first templates for Ramaze (called .rmze) and a proper working miniwiki-example - very very simplistic, but does its job so far</name>
3151
+ </patch>
3152
+ <patch author='manveru@weez-int.com' date='20061023103135' local_date='Mon Oct 23 19:31:35 JST 2006' inverted='False' hash='20061023103135-24576-e22832473f53de0d7670c9fb63024f9f5bb9e9e0.gz'>
3153
+ <name>yay for my new miniwiki example :)</name>
3154
+ </patch>
3155
+ <patch author='manveru@weez-int.com' date='20061023080105' local_date='Mon Oct 23 17:01:05 JST 2006' inverted='False' hash='20061023080105-24576-f381d47d4b30b36693c7865b4ce84e22c3465940.gz'>
3156
+ <name>use webrick in the miniwiki</name>
3157
+ </patch>
3158
+ <patch author='manveru@weez-int.com' date='20061023075757' local_date='Mon Oct 23 16:57:57 JST 2006' inverted='False' hash='20061023075757-24576-a84532c4148882ca0d549255331f5c614f49217c.gz'>
3159
+ <name>added codray-highlighting (if installed) and inspecting of request/session/response/global</name>
3160
+ </patch>
3161
+ <patch author='manveru@weez-int.com' date='20061023072309' local_date='Mon Oct 23 16:23:09 JST 2006' inverted='False' hash='20061023072309-24576-b581f58d9e1401d53dce3e334a9ab82eea6b8990.gz'>
3162
+ <name>better handling if the adapter is not found and don&apos;t kill the autoreload-threads anymore</name>
3163
+ </patch>
3164
+ <patch author='manveru@weez-int.com' date='20061023072117' local_date='Mon Oct 23 16:21:17 JST 2006' inverted='False' hash='20061023072117-24576-e2f1c72e8c7231eb601fb82a533596bb63406ce9.gz'>
3165
+ <name>update of the Global defaults (most important, added Global.logger[:timestamp|:prefix_(info|error|debug)]</name>
3166
+ </patch>
3167
+ <patch author='manveru@weez-int.com' date='20061023072033' local_date='Mon Oct 23 16:20:33 JST 2006' inverted='False' hash='20061023072033-24576-cc8a8581a76ce14f701e83cd6c17866e65f6d77d.gz'>
3168
+ <name>replaced autoreload with the new one (and some settings for the reload-speed based on the Global.mode</name>
3169
+ </patch>
3170
+ <patch author='manveru@weez-int.com' date='20061023071953' local_date='Mon Oct 23 16:19:53 JST 2006' inverted='False' hash='20061023071953-24576-af82791891fdedb20c955af46f89ad437b368581.gz'>
3171
+ <name>replaced the Module.autoload with a require beforehand... the other way just added complexitiy though it&apos;s a nice thing :)</name>
3172
+ </patch>
3173
+ <patch author='manveru@weez-int.com' date='20061023071844' local_date='Mon Oct 23 16:18:44 JST 2006' inverted='False' hash='20061023071844-24576-a5b2abb72a51c14ec805c8334b1ed31ec603c0b1.gz'>
3174
+ <name>usage of Tidy.tidy now possible</name>
3175
+ </patch>
3176
+ <patch author='manveru@weez-int.com' date='20061023071822' local_date='Mon Oct 23 16:18:22 JST 2006' inverted='False' hash='20061023071822-24576-d4afbe14513f69a3c575b04223449bb87e6f8d00.gz'>
3177
+ <name>reimplementation of autoreload</name>
3178
+ </patch>
3179
+ <patch author='manveru@weez-int.com' date='20061023071742' local_date='Mon Oct 23 16:17:42 JST 2006' inverted='False' hash='20061023071742-24576-4688f80cd2377ae52ca676d2c0da58d6d5c6c33a.gz'>
3180
+ <name>little update in the request, in case there is no @request.params (webrick)</name>
3181
+ </patch>
3182
+ <patch author='manveru@weez-int.com' date='20061023071643' local_date='Mon Oct 23 16:16:43 JST 2006' inverted='False' hash='20061023071643-24576-d4e2a63b87ae2bbebcf2d8c95a8b0646a24b79ee.gz'>
3183
+ <name>rather large update to the error-page... not fully finished i fear - but i added CSS so it&apos;s going to be nicer to change :)</name>
3184
+ </patch>
3185
+ <patch author='manveru@weez-int.com' date='20061023071615' local_date='Mon Oct 23 16:16:15 JST 2006' inverted='False' hash='20061023071615-24576-a26c07559de9543505a27e72291427e6a7e9b5b0.gz'>
3186
+ <name>better use of the Logger in the dispatcher</name>
3187
+ </patch>
3188
+ <patch author='manveru@weez-int.com' date='20061023071312' local_date='Mon Oct 23 16:13:12 JST 2006' inverted='False' hash='20061023071312-24576-0a323bacd01c6f8a45449ee97fda41b4d53e5c79.gz'>
3189
+ <name>a rather huge update to the logger, introducing the Global.logger hash to easily define your own favorite settings, also we got a Timestamp now! :)</name>
3190
+ </patch>
3191
+ <patch author='manveru@weez-int.com' date='20061023071149' local_date='Mon Oct 23 16:11:49 JST 2006' inverted='False' hash='20061023071149-24576-3f9b6e35f22bebf729935b08834161ed89ccf6d8.gz'>
3192
+ <name>updates to the mongrel-adapter, better rescue for rubygems/mongrel and nicer usage of Tidy</name>
3193
+ </patch>
3194
+ <patch author='manveru@weez-int.com' date='20061023071110' local_date='Mon Oct 23 16:11:10 JST 2006' inverted='False' hash='20061023071110-24576-16b0f36f4ad027119db05cffa7082ff5d1cdf210.gz'>
3195
+ <name>small updates to the simple example</name>
3196
+ </patch>
3197
+ <patch author='manveru@weez-int.com' date='20061023070843' local_date='Mon Oct 23 16:08:43 JST 2006' inverted='False' hash='20061023070843-24576-3b8bcffc5d74a971061820d3f1743e54cb8e6663.gz'>
3198
+ <name>added the webrick-adapter, it&apos;s not perfect, but works smooth so far</name>
3199
+ </patch>
3200
+ <patch author='manveru@weez-int.com' date='20061023070746' local_date='Mon Oct 23 16:07:46 JST 2006' inverted='False' hash='20061023070746-24576-eb3526725305cf535de10cfccfbb5173ecb61baa.gz'>
3201
+ <name>added testcase for the adapters (tc_adapter) [mongrel|webrick] so far</name>
3202
+ </patch>
3203
+ <patch author='manveru@weez-int.com' date='20061023001327' local_date='Mon Oct 23 09:13:27 JST 2006' inverted='False' hash='20061023001327-24576-3f62a51a21ad2cd666ff89f6a06b5b239b1c7290.gz'>
3204
+ <name>moved the HTTP-status codes to http_status.rb from dispatcher.rb</name>
3205
+ </patch>
3206
+ <patch author='manveru@weez-int.com' date='20061022233305' local_date='Mon Oct 23 08:33:05 JST 2006' inverted='False' hash='20061022233305-24576-20eb8e89ca8bd8c1678f5269abb1328e62dff11c.gz'>
3207
+ <name>small typo in Logger.debug output (&apos;d-&apos; instead of &apos;d&apos;)</name>
3208
+ </patch>
3209
+ <patch author='manveru@weez-int.com' date='20061022232914' local_date='Mon Oct 23 08:29:14 JST 2006' inverted='False' hash='20061022232914-24576-fbb77a2eaec984379f91970b4081b4738d8554cf.gz'>
3210
+ <name>added stub for miniwiki</name>
3211
+ </patch>
3212
+ <patch author='manveru@weez-int.com' date='20061020095528' local_date='Fri Oct 20 18:55:28 JST 2006' inverted='False' hash='20061020095528-24576-19e9b3176ab87640477aec162af3de28828516f6.gz'>
3213
+ <name>one todo gone, one added</name>
3214
+ </patch>
3215
+ <patch author='manveru@weez-int.com' date='20061020095140' local_date='Fri Oct 20 18:51:40 JST 2006' inverted='False' hash='20061020095140-24576-69b4c6abb17aeb5834037e76c21183028286b5b4.gz'>
3216
+ <name>an ultimate patch... this addes lots of documentation, rewrite of the Response to be Struct instead of OpenStruct (17 times faster) and also some minor tweaks all over the place, notable also the change of the logger-format</name>
3217
+ </patch>
3218
+ <patch author='manveru@weez-int.com' date='20061020095038' local_date='Fri Oct 20 18:50:38 JST 2006' inverted='False' hash='20061020095038-24576-8fbf7031f18371411a151f078b8ab9472b03ac09.gz'>
3219
+ <name>minor updates to the testcases, somehow i should fix the tc_params on the errors... but that takes a bit more time, otherwise just removed the sleeps that are now handled by ramaze</name>
3220
+ </patch>
3221
+ <patch author='manveru@weez-int.com' date='20061020094835' local_date='Fri Oct 20 18:48:35 JST 2006' inverted='False' hash='20061020094835-24576-c98db6dad7da219d902ea6ccb978187de945bbd1.gz'>
3222
+ <name>small fixes to the simple example</name>
3223
+ </patch>
3224
+ <patch author='manveru@weez-int.com' date='20061020055355' local_date='Fri Oct 20 14:53:55 JST 2006' inverted='False' hash='20061020055355-24576-a59971a947da75ded66d4c1eb7027973a5514aa8.gz'>
3225
+ <name>added new rake task, todo - it scrapes the source for TODO markers and prints them out.</name>
3226
+ </patch>
3227
+ <patch author='manveru@weez-int.com' date='20061020015034' local_date='Fri Oct 20 10:50:34 JST 2006' inverted='False' hash='20061020015034-24576-94c04d6bc74188e46080fdaac9ce8ebb5a5a9c44.gz'>
3228
+ <name>added documentation and Gestalt.build, which takes a block instead of Gestalt.new</name>
3229
+ </patch>
3230
+ <patch author='manveru@weez-int.com' date='20061020074936' local_date='Fri Oct 20 16:49:36 JST 2006' inverted='False' hash='20061020074936-24576-34047b2902f87ca6caef2947c6527622ea07371a.gz'>
3231
+ <name>cleaned up the tests a bit and updated the test-runner to show some summary</name>
3232
+ </patch>
3233
+ <patch author='manveru@weez-int.com' date='20061019101812' local_date='Thu Oct 19 19:18:12 JST 2006' inverted='False' hash='20061019101812-24576-abaa8c913f6745c6b5e226dedfb9909c1cd4ab28.gz'>
3234
+ <name>loooooots of documentation (which is not displayed on rdoc due to some very weird behaviour</name>
3235
+ </patch>
3236
+ <patch author='manveru@weez-int.com' date='20061019101649' local_date='Thu Oct 19 19:16:49 JST 2006' inverted='False' hash='20061019101649-24576-064c9ac034d74e7403f4e52476596be1858f4214.gz'>
3237
+ <name>a new and simple way to react on signals, default is SIGINT, it executes Ramaze.shutdown which in turn kills the adapter, to change the signal listened on change Global.shutdown_trap</name>
3238
+ </patch>
3239
+ <patch author='manveru@weez-int.com' date='20061019101454' local_date='Thu Oct 19 19:14:54 JST 2006' inverted='False' hash='20061019101454-24576-89917752c0248201f94e838e6308a9eec7170697.gz'>
3240
+ <name>very minor cleanup of some methods...</name>
3241
+ </patch>
3242
+ <patch author='manveru@weez-int.com' date='20061019101440' local_date='Thu Oct 19 19:14:40 JST 2006' inverted='False' hash='20061019101440-24576-52192a721f48f7eb5cc3b03faa5502acab15d4d9.gz'>
3243
+ <name>added an rdoc-task to the Rakefile</name>
3244
+ </patch>
3245
+ <patch author='manveru@weez-int.com' date='20061019101418' local_date='Thu Oct 19 19:14:18 JST 2006' inverted='False' hash='20061019101418-24576-34aa15dc0f39b04bfc84abc3684f56a2fb2f73fa.gz'>
3246
+ <name>moved README and CHANGELOG to the new /doc dir</name>
3247
+ </patch>
3248
+ <patch author='manveru@weez-int.com' date='20061019101326' local_date='Thu Oct 19 19:13:26 JST 2006' inverted='False' hash='20061019101326-24576-2988f9eedd67f97ecb633d4fa3cbb538878379b4.gz'>
3249
+ <name>tidy takes now an hash of options and i added extensive documentation ... could use some more though (removed require for rubygems)</name>
3250
+ </patch>
3251
+ <patch author='manveru@weez-int.com' date='20061018102723' local_date='Wed Oct 18 19:27:23 JST 2006' inverted='False' hash='20061018102723-24576-77f1be9584c827b6d426da3028eb61098b74e58a.gz'>
3252
+ <name>lots of smaller changes, extracted tidy from the mongrel-adapter to a new dir named tool - where most helper-stuff should go to.</name>
3253
+ </patch>
3254
+ <patch author='manveru@weez-int.com' date='20061018102704' local_date='Wed Oct 18 19:27:04 JST 2006' inverted='False' hash='20061018102704-24576-6e88db4ad07478c9ab15109baa7c6f3ea627b1c7.gz'>
3255
+ <name>updates to global.rb - stuff that doesn&apos;t make sense for a singleton</name>
3256
+ </patch>
3257
+ <patch author='manveru@weez-int.com' date='20061018102531' local_date='Wed Oct 18 19:25:31 JST 2006' inverted='False' hash='20061018102531-24576-7ead1a10b878da74432ee9a486f70e4913e1bf50.gz'>
3258
+ <name>revised most testcases and added tc_global and tc_tidy</name>
3259
+ </patch>
3260
+ <patch author='manveru@weez-int.com' date='20061018102516' local_date='Wed Oct 18 19:25:16 JST 2006' inverted='False' hash='20061018102516-24576-3fb27188123aa715a5b9416514236baa6abf5b31.gz'>
3261
+ <name>added rcov-task</name>
3262
+ </patch>
3263
+ <patch author='manveru@weez-int.com' date='20061018073637' local_date='Wed Oct 18 16:36:37 JST 2006' inverted='False' hash='20061018073637-24576-ca7abb0c33836ec0e1b0b0be0e7e5bffd56957f1.gz'>
3264
+ <name>use String#/ instead of File.join</name>
3265
+ </patch>
3266
+ <patch author='manveru@weez-int.com' date='20061018073504' local_date='Wed Oct 18 16:35:04 JST 2006' inverted='False' hash='20061018073504-24576-593fec2a45a643754add93819605e2eaf400ce87.gz'>
3267
+ <name>much better handling of restarts and stuff by joining still running mongrel-threads</name>
3268
+ </patch>
3269
+ <patch author='manveru@weez-int.com' date='20061018073441' local_date='Wed Oct 18 16:34:41 JST 2006' inverted='False' hash='20061018073441-24576-96875beb2e109b6ac60e6d4e217ca619c896a47b.gz'>
3270
+ <name>remove the gostruct.rb</name>
3271
+ </patch>
3272
+ <patch author='manveru@weez-int.com' date='20061018073408' local_date='Wed Oct 18 16:34:08 JST 2006' inverted='False' hash='20061018073408-24576-d45bbc27597d52c50b800fd9f793a2491689147d.gz'>
3273
+ <name>update to README</name>
3274
+ </patch>
3275
+ <patch author='manveru@weez-int.com' date='20061018073323' local_date='Wed Oct 18 16:33:23 JST 2006' inverted='False' hash='20061018073323-24576-7d163911c6978c8e823578e1ef0eddbc55fcb2e7.gz'>
3276
+ <name>removing the global openstruct and just use Global...</name>
3277
+ </patch>
3278
+ <patch author='manveru@weez-int.com' date='20061018063448' local_date='Wed Oct 18 15:34:48 JST 2006' inverted='False' hash='20061018063448-24576-6f8ce35c41a8b98fd2b962676eceaed00ad2de29.gz'>
3279
+ <name>removing the default-adapter because it&apos;s useless and not used</name>
3280
+ </patch>
3281
+ <patch author='manveru@weez-int.com' date='20061018045750' local_date='Wed Oct 18 13:57:50 JST 2006' inverted='False' hash='20061018045750-24576-29989025604cb34ad7d345676b846134fd7ace8d.gz'>
3282
+ <name>removed a bit of debugging-info from tc_session</name>
3283
+ </patch>
3284
+ <patch author='manveru@weez-int.com' date='20061018045514' local_date='Wed Oct 18 13:55:14 JST 2006' inverted='False' hash='20061018045514-24576-22aea5163f4812b2d9a47c376e0a2c411411a5d8.gz'>
3285
+ <name>this drives in the last nail to support sessions, also speeds up requests a tiny weeny bit ;)</name>
3286
+ </patch>
3287
+ <patch author='manveru@weez-int.com' date='20061018045404' local_date='Wed Oct 18 13:54:04 JST 2006' inverted='False' hash='20061018045404-24576-a89e5116c705ccc4f2db902adf84284d3a76ba59.gz'>
3288
+ <name>controller now accesses the Thread#[] to get request/session</name>
3289
+ </patch>
3290
+ <patch author='manveru@weez-int.com' date='20061018045323' local_date='Wed Oct 18 13:53:23 JST 2006' inverted='False' hash='20061018045323-24576-2151f9a8def074019f5e1e22bc76eab15cfe9501.gz'>
3291
+ <name>split up the response in mongrel into set_out and set_head</name>
3292
+ </patch>
3293
+ <patch author='manveru@weez-int.com' date='20061018045311' local_date='Wed Oct 18 13:53:11 JST 2006' inverted='False' hash='20061018045311-24576-c8f10e542ee9725de8d88265e6d76f82338b0e4a.gz'>
3294
+ <name>added ramaze/session</name>
3295
+ </patch>
3296
+ <patch author='manveru@weez-int.com' date='20061018045241' local_date='Wed Oct 18 13:52:41 JST 2006' inverted='False' hash='20061018045241-24576-db782614deab5143c65a57540ce1075d33d1cd9a.gz'>
3297
+ <name>added a session-testcase</name>
3298
+ </patch>
3299
+ <patch author='manveru@weez-int.com' date='20061017005207' local_date='Tue Oct 17 09:52:07 JST 2006' inverted='False' hash='20061017005207-24576-619b3ed216e129e6784e0df75b71a2e5258bf84b.gz'>
3300
+ <name>updated CHANGELOG</name>
3301
+ </patch>
3302
+ <patch author='manveru@weez-int.com' date='20061017005130' local_date='Tue Oct 17 09:51:30 JST 2006' inverted='False' hash='20061017005130-24576-5b9b427a53262dd1d97f1e687b8f4e5e449160bd.gz'>
3303
+ <name>TAG Ramaze 0.0.2</name>
3304
+ </patch>
3305
+ <patch author='manveru@weez-int.com' date='20061017005051' local_date='Tue Oct 17 09:50:51 JST 2006' inverted='False' hash='20061017005051-24576-34cc5a6bc2140d5ccc509d8049df518143e68e5b.gz'>
3306
+ <name>tagged 0.0.2 - next version will support sessions (hopefully :)</name>
3307
+ </patch>
3308
+ <patch author='manveru@weez-int.com' date='20061017005036' local_date='Tue Oct 17 09:50:36 JST 2006' inverted='False' hash='20061017005036-24576-a1c6ac15dc88e79feec5fdf66fbe45d73d61a8c6.gz'>
3309
+ <name>updated the readmy and rakefile-description a bit</name>
3310
+ </patch>
3311
+ <patch author='manveru@weez-int.com' date='20061017005013' local_date='Tue Oct 17 09:50:13 JST 2006' inverted='False' hash='20061017005013-24576-8a57d631b20d349496d0085dee61efb68bfc3ac3.gz'>
3312
+ <name>added Ramaze::VERSION</name>
3313
+ </patch>
3314
+ <patch author='manveru@weez-int.com' date='20061017004700' local_date='Tue Oct 17 09:47:00 JST 2006' inverted='False' hash='20061017004700-24576-0094275284029d933bd51b3000624c2969c7222b.gz'>
3315
+ <name>added a SIGINT-trap to cleanly shutdown</name>
3316
+ </patch>
3317
+ <patch author='manveru@weez-int.com' date='20061017002931' local_date='Tue Oct 17 09:29:31 JST 2006' inverted='False' hash='20061017002931-24576-44a09aed17080c434293b50f8cffd1c1ac9dc61b.gz'>
3318
+ <name>added test/tc_request [passes]</name>
3319
+ </patch>
3320
+ <patch author='manveru@weez-int.com' date='20061017002900' local_date='Tue Oct 17 09:29:00 JST 2006' inverted='False' hash='20061017002900-24576-6f69e5ccb72e9617a2a94e5ef1a56803163ac8c7.gz'>
3321
+ <name>further improvment to the testcase-runner and setting default Global.error_page to true</name>
3322
+ </patch>
3323
+ <patch author='manveru@weez-int.com' date='20061016111833' local_date='Mon Oct 16 20:18:33 JST 2006' inverted='False' hash='20061016111833-24576-7beda7981ee79b690eead9606ad9c5e2bc25d49a.gz'>
3324
+ <name>and everything passes now...</name>
3325
+ </patch>
3326
+ <patch author='manveru@weez-int.com' date='20061016085259' local_date='Mon Oct 16 17:52:59 JST 2006' inverted='False' hash='20061016085259-24576-11419575110cc2c9c93a36d0c7c65a98ca43aef8.gz'>
3327
+ <name>patching the test-runner to shut down ramaze before it is run again from the next testcase...</name>
3328
+ </patch>
3329
+ <patch author='manveru@weez-int.com' date='20061016084809' local_date='Mon Oct 16 17:48:09 JST 2006' inverted='False' hash='20061016084809-24576-9fd4522b04e9ea4a4714d9e4788984ff8ff97c8c.gz'>
3330
+ <name>huuuuge patch, perfect error-handling, better automagic controller-mapping, superb tidy-functionlity, even the params-testcase passes again :P - to turn on tidy, set Global.tidy to true</name>
3331
+ </patch>
3332
+ <patch author='manveru@weez-int.com' date='20061016023942' local_date='Mon Oct 16 11:39:42 JST 2006' inverted='False' hash='20061016023942-24576-ffc5de652400ec8a87573427a01e22dad09ef84c.gz'>
3333
+ <name>added snippets for String#/</name>
3334
+ </patch>
3335
+ <patch author='manveru@weez-int.com' date='20061016023847' local_date='Mon Oct 16 11:38:47 JST 2006' inverted='False' hash='20061016023847-24576-8a1e324f1ebaf574fb0552c903e9ec945e50999a.gz'>
3336
+ <name>added caller_lines in the snippets</name>
3337
+ </patch>
3338
+ <patch author='manveru@weez-int.com' date='20061016010851' local_date='Mon Oct 16 10:08:51 JST 2006' inverted='False' hash='20061016010851-24576-4d900262c21ad9f98a960b847da2ba17401546de.gz'>
3339
+ <name>a new snapshot with some more tests and lots of bugs fixed... also working now on the pluggable templating again.</name>
3340
+ </patch>
3341
+ <patch author='manveru@weez-int.com' date='20061015045332' local_date='Sun Oct 15 13:53:32 JST 2006' inverted='False' hash='20061015045332-24576-958fb23e713aa01be23e2c96e98bf69dde2aa3c6.gz'>
3342
+ <name>this fixes a bug that lead to problems if you don&apos;t define a mapping</name>
3343
+ </patch>
3344
+ <patch author='manveru@weez-int.com' date='20061015045219' local_date='Sun Oct 15 13:52:19 JST 2006' inverted='False' hash='20061015045219-24576-3ac2d9f1e510309318a6734a7573b1064fdcdd3e.gz'>
3345
+ <name>this introduces a new Global.running_adapter, for later easy access outside of Ramaze - should add some methods to check if the adapter is running and the like</name>
3346
+ </patch>
3347
+ <patch author='manveru@weez-int.com' date='20061015045146' local_date='Sun Oct 15 13:51:46 JST 2006' inverted='False' hash='20061015045146-24576-8fb2017d887ceeace4830cfa9d6ac0ae18dcc0b5.gz'>
3348
+ <name>by default, require &apos;pp&apos;, i think it&apos;s far too useful not to be available all the time</name>
3349
+ </patch>
3350
+ <patch author='manveru@weez-int.com' date='20061015045047' local_date='Sun Oct 15 13:50:47 JST 2006' inverted='False' hash='20061015045047-24576-980739fa2284a6cad04b4f334c3f40e686fc0bf2.gz'>
3351
+ <name>some more info in the CHANGELOG, this will only be updated in releases from now on, the information comes from darcs anyway</name>
3352
+ </patch>
3353
+ <patch author='manveru@weez-int.com' date='20061015044910' local_date='Sun Oct 15 13:49:10 JST 2006' inverted='False' hash='20061015044910-24576-dbd3921ba8f813803fc20747e6e00ba34824eacd.gz'>
3354
+ <name>changed hello.rb to fit in with the use of the ramaze-binary</name>
3355
+ </patch>
3356
+ <patch author='manveru@weez-int.com' date='20061015044830' local_date='Sun Oct 15 13:48:30 JST 2006' inverted='False' hash='20061015044830-24576-7518c69d0c2004cfcc1334c4f6d4c68a196e7d82.gz'>
3357
+ <name>updated the Rakefile to prodcue some more useful stuff :) - also knows about the executable &apos;ramaze&apos; now</name>
3358
+ </patch>
3359
+ <patch author='manveru@weez-int.com' date='20061015044720' local_date='Sun Oct 15 13:47:20 JST 2006' inverted='False' hash='20061015044720-24576-dfce66187761c324c7030206d4ed85eec3669d95.gz'>
3360
+ <name>updated the README a bit, more to come</name>
3361
+ </patch>
3362
+ <patch author='manveru@weez-int.com' date='20061015044454' local_date='Sun Oct 15 13:44:54 JST 2006' inverted='False' hash='20061015044454-24576-aa5cb8a03956388df81a6ce391b4c2958322dcc5.gz'>
3363
+ <name>added an ramaze executable</name>
3364
+ <comment>it can be found in bin/ramaze and you use it like that:
3365
+
3366
+ $ cd example
3367
+ $ ls
3368
+ main.rb
3369
+ $ ramaze
3370
+
3371
+ which will in turn run the main.rb
3372
+ you can give ramaze a parameter for the run-file, more sophisticated parameters are not included (yet)
3373
+ </comment>
3374
+ </patch>
3375
+ <patch author='manveru@weez-int.com' date='20061013192249' local_date='Sat Oct 14 04:22:49 JST 2006' inverted='False' hash='20061013192249-24576-fd3038740faf09e21c38c79749f9d5b3978b4be1.gz'>
3376
+ <name>initialize</name>
3377
+ </patch>
3378
+ </changelog>