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,6 @@
1
+ Following persons have contributed to Ramaze:
2
+
3
+ Christian Neukirchen - chneukirchen@gmail.com
4
+ Clive - clive@crous.co.za
5
+ Jonathan Buch - jo@helloit.fi
6
+ Michael Fellinger - manveru@weez-int.com
@@ -1,3 +1,1324 @@
1
+ Fri May 11 21:08:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
+ tagged 0.1.0
3
+
4
+ Fri May 11 20:55:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
5
+ * update README with latest chunks
6
+
7
+ Fri May 11 20:52:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
8
+ * some patches to the rake-stuff, BASEDIR was messed up and some other things were outdated
9
+
10
+ Fri May 11 20:42:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
11
+ * remove Tidy and Localize form the Action pipeline (fix the spec and remove some spaces)
12
+
13
+ Fri May 11 20:30:11 JST 2007 Jonathan Buch <jo@helloit.fi>
14
+ * Update localization tool
15
+
16
+ Fri May 11 19:20:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
17
+ * a couple of updates for the readme_chunks
18
+
19
+ Fri May 11 17:12:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
20
+ * move bl_Og to blog
21
+
22
+ Fri May 11 16:10:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
23
+ * remove the old blog example
24
+
25
+ Fri May 11 16:01:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
26
+ * 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.
27
+
28
+ Fri May 11 15:25:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
29
+ * update announcement
30
+
31
+ Fri May 11 01:35:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
32
+ * remove some spelling-mistakes in announcement
33
+
34
+ Thu May 10 14:47:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
35
+ * don't use an additional .reverse for the session-key
36
+
37
+ Thu May 10 14:45:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
38
+ * Informer again, flush the output if possible, that makes it possible to tail -f if you pipe to a logfile
39
+
40
+ Thu May 10 14:41:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
41
+ * check for .tty? when deciding whether we should colorize or not.
42
+
43
+ Thu May 10 14:30:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
44
+ * intelligent logging of errors in Dispatcher::Error, omitting repeated backtraces
45
+
46
+ Wed May 9 19:53:18 JST 2007 Jonathan Buch <jo@helloit.fi>
47
+ * Change Rs() to use Controller.current instead of self
48
+
49
+ Wed May 9 19:42:54 JST 2007 m.fellinger@gmail.com
50
+ * add Controller::current and an experimental spec of how to do render_partial
51
+
52
+ Wed May 9 19:31:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
53
+ * fixing Controller::template_paths and Controller::resolve_template
54
+
55
+ Wed May 9 18:50:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
56
+ * tons of small fixes and improvments, Inform.debug won't inspect anymore if it's already a string, proper error-handling with sweet 500'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.....
57
+
58
+ Wed May 9 14:26:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
59
+ * add and use snippets/struct/fill
60
+
61
+ Wed May 9 14:01:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
62
+ * improve pattern_cache for Controller
63
+
64
+ Wed May 9 13:16:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
65
+ * make the caching spec a bit more robust
66
+
67
+ Wed May 9 12:59:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
68
+ * fixing some weirdness and verbosity
69
+
70
+ Tue May 8 16:14:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
71
+ * add workaround if we run specs and don't want their modules in our controller
72
+
73
+ Wed May 9 12:53:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
74
+ * disable two specs so we pass all specs - these are about error-handling but right now it's not clear what the distinction between 404 and 500 is anymore.
75
+
76
+ Wed May 9 12:52:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
77
+ * some minor changes
78
+
79
+ Wed May 9 12:51:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
80
+ * big extension of spec/ramaze/controller
81
+
82
+ Wed May 9 12:50:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
83
+ * add ramaze/controller to the spec layout again
84
+
85
+ Wed May 9 12:50:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
86
+ * fixing some spaces
87
+
88
+ Wed May 9 12:49:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
89
+ * include the spec dir to the fix-end-spaces task
90
+
91
+ Wed May 9 12:48:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
92
+ * fix/extend the template_resolving spec
93
+
94
+ Wed May 9 12:47:32 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
95
+ * add some modules to ignore as actions in the spec/helper setup
96
+
97
+ Wed May 9 12:46:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
98
+ * fix template/ezamar file-lookup is done for it, no need to do it again
99
+
100
+ Wed May 9 12:46:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
101
+ * fix helper/aspect for the new Controller
102
+
103
+ Wed May 9 12:45:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
104
+ * better handling of Dispatcher::File - we should cache the lookup-paths
105
+
106
+ Wed May 9 12:45:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
107
+ * let the Dispatcher::Error respect Global.error_page
108
+
109
+ Wed May 9 12:44:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
110
+ * 90% rewrite of controller/action/template lookup in Controller
111
+
112
+ Wed May 9 12:43:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
113
+ * move Global.controllers setup into the DEFAULT of Global
114
+
115
+ Wed May 9 12:41:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
116
+ * add the Action Struct, nothing fancy but it should act from now on as container for actions ramaze-wide, most likely we'll extend it with binding and optional controller, it only propagates inside controller.rb and helper/aspect.rb atm
117
+
118
+ Wed May 9 12:41:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
119
+ * remove the proto/public/404.jpg we cannot distribute something that doesn't belong to us.
120
+
121
+ Tue May 8 19:31:16 JST 2007 Jonathan Buch <jo@helloit.fi>
122
+ * Add 'template resolving' controller spec
123
+
124
+ Tue May 8 16:00:58 JST 2007 m.fellinger@gmail.com
125
+ * some small updates on the previous patch
126
+
127
+ Tue May 8 02:46:00 JST 2007 clive@crous.co.za
128
+ * Add a few specs for the base ramaze template class
129
+
130
+ Sun May 6 19:08:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
131
+ * doc and typo in bl_Og/main.rb
132
+
133
+ Sun May 6 08:32:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
134
+ * huge patch consisting of 171 hunks that provide huge improvments both to ramazes core and the whole spec-system, which is now mock-based
135
+
136
+ Sun May 6 08:22:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
137
+ * fixing the template_root for the example templates
138
+
139
+ Sun May 6 05:24:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
140
+ * make some helper-methods private
141
+
142
+ Sun May 6 04:56:06 JST 2007 m.fellinger@gmail.com
143
+ * make bin/ramaze compatible to ruby1.9
144
+
145
+ Sat May 5 18:26:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
146
+ * clean files of the SpecLayout in a seperate step
147
+
148
+ Sat May 5 01:14:01 JST 2007 m.fellinger@gmail.com
149
+ * add example/bl_Og from entropy
150
+
151
+ Fri May 4 21:02:41 JST 2007 clive@crous.co.za
152
+ * Add a spec for testing Markaby links
153
+
154
+ Fri May 4 20:40:31 JST 2007 clive@crous.co.za
155
+ * Add my surname
156
+
157
+ Fri May 4 17:04:16 JST 2007 m.fellinger@gmail.com
158
+ * improving performance in controller lookup
159
+
160
+ Fri May 4 15:40:02 JST 2007 m.fellinger@gmail.com
161
+ * remove special handling of action 'error', it's not needed anymore
162
+
163
+ Fri May 4 04:37:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
164
+ * split up the Rakefile and put parts into rake_tasks
165
+
166
+ Fri May 4 04:25:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
167
+ * add the rake authors task that generates the doc/AUTHORS
168
+
169
+ Fri May 4 03:53:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
170
+ * add the template specs to the default specs
171
+
172
+ Fri May 4 03:51:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
173
+ * get rid of the failures we sometimes get for webrick by explicit require
174
+
175
+ Fri May 4 03:48:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
176
+ * fixing extensions lookup order, it doesn't allow much modification yet, but should work for most common cases
177
+
178
+ Fri May 4 03:45:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
179
+ * fix the markaby example, 'this' should be a symbol
180
+
181
+ Fri May 4 03:42:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
182
+ * remove the old template from the haml-example
183
+
184
+ Fri May 4 02:47:19 JST 2007 m.fellinger@gmail.com
185
+ * update dependencies, rspec now 0.9.1
186
+
187
+ Fri May 4 02:38:25 JST 2007 m.fellinger@gmail.com
188
+ * fixing the template examples and add specs
189
+
190
+ Fri May 4 01:18:50 JST 2007 m.fellinger@gmail.com
191
+ * remove old stuff from Template::Markaby
192
+
193
+ Fri May 4 01:14:52 JST 2007 m.fellinger@gmail.com
194
+ * fixing instances-variable passing for markaby
195
+
196
+ Fri May 4 01:01:29 JST 2007 m.fellinger@gmail.com
197
+ * remove some of the debugging-code from markaby
198
+
199
+ Fri May 4 00:57:01 JST 2007 m.fellinger@gmail.com
200
+ * fix automapping
201
+
202
+ Wed May 2 15:09:42 JST 2007 m.fellinger@gmail.com
203
+ * update proto configs
204
+
205
+ Thu May 3 01:56:24 JST 2007 m.fellinger@gmail.com
206
+ * fixing the markaby example
207
+
208
+ Tue May 1 20:16:37 JST 2007 m.fellinger@gmail.com
209
+ * update spec/dependencies to include syntax
210
+
211
+ Tue May 1 20:14:47 JST 2007 m.fellinger@gmail.com
212
+ * exit specs if rspec is < 0.9.0
213
+
214
+ Tue May 1 20:01:50 JST 2007 m.fellinger@gmail.com
215
+ * add spec/helper/layout and use it in spec/all - this is hopefully the last in a series of refactorings for the spec-framework
216
+
217
+ Tue May 1 20:00:17 JST 2007 m.fellinger@gmail.com
218
+ * add spec for inform/informer and inform/syslog
219
+
220
+ Tue May 1 18:36:10 JST 2007 m.fellinger@gmail.com
221
+ * update dependency-versions for gemspec
222
+
223
+ Tue May 1 17:55:55 JST 2007 m.fellinger@gmail.com
224
+ * convert specs from 0.8.x to 0.9
225
+
226
+ Tue May 1 17:25:33 JST 2007 m.fellinger@gmail.com
227
+ * update global.rb for ruby1.9
228
+
229
+ Tue May 1 16:09:00 JST 2007 m.fellinger@gmail.com
230
+ * update spec/all into a less hackish and easier configurable design, running all specs including examples
231
+
232
+ Tue May 1 14:56:39 JST 2007 m.fellinger@gmail.com
233
+ * add helpers to spec/all
234
+
235
+ Tue May 1 14:05:24 JST 2007 m.fellinger@gmail.com
236
+ * add spec for FileHelper
237
+
238
+ Tue May 1 14:04:37 JST 2007 m.fellinger@gmail.com
239
+ * add (c) to FileHelper
240
+
241
+ Tue May 1 14:03:39 JST 2007 m.fellinger@gmail.com
242
+ * updating Rakefile to add a newline after (c)
243
+
244
+ Tue May 1 13:57:14 JST 2007 m.fellinger@gmail.com
245
+ * adding specs for a couple of the simple examples
246
+
247
+ Tue May 1 01:06:56 JST 2007 m.fellinger@gmail.com
248
+ * adding FileHelper, no specs for it yet but added it to default-helpers
249
+
250
+ Tue May 1 01:05:05 JST 2007 m.fellinger@gmail.com
251
+ * add Controller::map to make the 'trait :map => "/foo"' nicer, use it like: 'map "/foo", "/bar"'
252
+
253
+ Tue May 1 01:02:50 JST 2007 m.fellinger@gmail.com
254
+ * adding some startup-information about controllers
255
+
256
+ Sun Apr 29 22:31:16 JST 2007 Jonathan Buch <jo@helloit.fi>
257
+ * small fixes to loggers
258
+
259
+ Sun Apr 29 19:38:15 JST 2007 m.fellinger@gmail.com
260
+ * add the missing helper/markaby
261
+
262
+ Sun Apr 29 19:36:58 JST 2007 m.fellinger@gmail.com
263
+ * minor rewrite of Template::Markaby and its spec
264
+
265
+ Sun Apr 29 19:35:37 JST 2007 m.fellinger@gmail.com
266
+ * some modifications to make LinkHelper work with markaby, it's a bit ugly right now...
267
+
268
+ Sun Apr 29 19:33:21 JST 2007 m.fellinger@gmail.com
269
+ * 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
270
+
271
+ Sun Apr 29 19:32:08 JST 2007 m.fellinger@gmail.com
272
+ * improving example for markaby a bit, it's not working yet though, have to talk with the markaby-folks
273
+
274
+ Sun Apr 29 18:49:11 JST 2007 m.fellinger@gmail.com
275
+ * fixing some (c)s
276
+
277
+ Fri Apr 27 17:10:42 JST 2007 clive@crous.co.za
278
+ * use '--partial' for darcs get
279
+
280
+ Sat Apr 28 02:33:31 JST 2007 m.fellinger@gmail.com
281
+ * putting Ramaze::Inform assignment into Global.setup again
282
+
283
+ Fri Apr 27 22:14:18 JST 2007 m.fellinger@gmail.com
284
+ * move checking for automap into Controller
285
+
286
+ Fri Apr 27 22:12:24 JST 2007 m.fellinger@gmail.com
287
+ * huge refactoring of logging, this needs extensive review
288
+
289
+ Fri Apr 27 21:51:38 JST 2007 m.fellinger@gmail.com
290
+ * add map for examples/hello as well
291
+
292
+ Fri Apr 27 21:49:49 JST 2007 m.fellinger@gmail.com
293
+ * fixing examples/element - we need mappings now
294
+
295
+ Fri Apr 27 21:48:22 JST 2007 m.fellinger@gmail.com
296
+ * fixing a non-critical behaviour where Ezamar would throw an error if it cannot find a template but an action is there.
297
+
298
+ Fri Apr 27 20:35:37 JST 2007 m.fellinger@gmail.com
299
+ * adding Object#class_trait for better lookup of traits defined in the class of the current instance
300
+
301
+ Thu Apr 26 22:55:24 JST 2007 m.fellinger@gmail.com
302
+ * rewrite of notification_hub and xosd
303
+
304
+ Thu Apr 26 21:35:36 JST 2007 m.fellinger@gmail.com
305
+ * removing the spaces that kashia introduced so nice in the last patch
306
+
307
+ Thu Apr 26 21:28:34 JST 2007 Jonathan Buch <jo@helloit.fi>
308
+ * Add NotificationHub, Growl, Xosd Loggers
309
+ This is a preliminary patch, especially the Xosd is not tested.
310
+
311
+ Wed Apr 25 08:30:56 JST 2007 m.fellinger@gmail.com
312
+ * better report about errors in the ezamar pipeline, please note that the browser will still show 'no such action', but the console will inform you about all real errors (this has to improve further)
313
+
314
+ Wed Apr 25 08:29:35 JST 2007 m.fellinger@gmail.com
315
+ * little change in blog example
316
+
317
+ Tue Apr 24 23:54:29 JST 2007 clive@crous.co.za
318
+ * Add a response message for deleting "no such entry" in the blog example
319
+
320
+ Tue Apr 24 23:38:54 JST 2007 clive@crous.co.za
321
+ * session result message is by id instead of class in the blog example, and disappears after 1.5 seconds
322
+
323
+ Tue Apr 24 22:41:05 JST 2007 clive@crous.co.za
324
+ * emphasise titles displayed within results for the blog example
325
+
326
+ Tue Apr 24 22:29:56 JST 2007 clive@crous.co.za
327
+ * Show session result if applicable
328
+
329
+ Tue Apr 24 21:57:33 JST 2007 clive@crous.co.za
330
+ * Replace all references to oid with eid in the blog example.
331
+
332
+ Wed Apr 25 01:23:00 JST 2007 m.fellinger@gmail.com
333
+ * limit sessions to 1000 per IP, also makes inspecting ObjectSpace easier
334
+
335
+ Tue Apr 24 07:55:08 JST 2007 m.fellinger@gmail.com
336
+ * add Global.test_connections to switch testing connections via TCPSocket on startup.
337
+
338
+ Mon Apr 23 01:24:47 JST 2007 m.fellinger@gmail.com
339
+ * replace some stuff in spec for CacheHelper to be more readable
340
+
341
+ Mon Apr 23 01:07:05 JST 2007 m.fellinger@gmail.com
342
+ * s/Context/Browser/ for specs, Context could be confused with the meaning of context of RSpec.
343
+
344
+ Mon Apr 23 00:51:46 JST 2007 m.fellinger@gmail.com
345
+ * add doc/meta/announcement.txt as a template for announcements - would be thankful for reviews and corrections.
346
+
347
+ Sun Apr 22 21:28:52 JST 2007 m.fellinger@gmail.com
348
+ * move configuration/internals from doc/readme_chunks to doc/meta
349
+
350
+ Thu Apr 19 13:26:26 JST 2007 m.fellinger@gmail.com
351
+ * move out SpecWrap to spec/helper/wrap and add a little fix to commonize
352
+
353
+ Thu Apr 19 17:45:08 JST 2007 m.fellinger@gmail.com
354
+ * fixing tutorial and examples/element
355
+
356
+ Thu Apr 19 17:40:19 JST 2007 m.fellinger@gmail.com
357
+ * Element doesn't use @hash anymore, instead the keys are set to instance-variables directly, please take car, this causes breakage
358
+
359
+ Wed Apr 18 18:06:57 JST 2007 m.fellinger@gmail.com
360
+ * total restructure of spec
361
+
362
+ Tue Apr 17 22:05:01 JST 2007 m.fellinger@gmail.com
363
+ * remove the rescue Object from tool/localize
364
+
365
+ Tue Apr 17 22:03:40 JST 2007 m.fellinger@gmail.com
366
+ * rename Global.inform to Global.informer to respect what class it is pointing to
367
+
368
+ Tue Apr 17 22:00:30 JST 2007 m.fellinger@gmail.com
369
+ * add backtrace to Informer#error again
370
+
371
+ Tue Apr 17 21:56:04 JST 2007 m.fellinger@gmail.com
372
+ * adding readme_chunks/internals.txt
373
+
374
+ Tue Apr 17 14:54:01 JST 2007 m.fellinger@gmail.com
375
+ * update configuration.txt and remove useless :cache_actions from Global
376
+
377
+ Mon Apr 16 23:05:03 JST 2007 m.fellinger@gmail.com
378
+ * add doc/readme_chunks/configuration.txt - just a first draft and to be completed
379
+
380
+ Mon Apr 16 23:03:12 JST 2007 m.fellinger@gmail.com
381
+ * adding implementation and specs for tool/localize (we _need_ docs for that)
382
+
383
+ Mon Apr 16 23:01:15 JST 2007 m.fellinger@gmail.com
384
+ * a couple of fixes and adding missing stuff to Global
385
+
386
+ Sun Apr 15 20:01:50 JST 2007 Jonathan Buch <jo@helloit.fi>
387
+ * Logger fixes
388
+
389
+ Sun Apr 15 07:07:27 JST 2007 m.fellinger@gmail.com
390
+ * define $context_runner
391
+
392
+ Sun Apr 15 07:05:55 JST 2007 m.fellinger@gmail.com
393
+ * getting rid of warnings in SimpleHTTP
394
+
395
+ Sun Apr 15 07:02:23 JST 2007 m.fellinger@gmail.com
396
+ * don't define #get twice in the spec requester
397
+
398
+ Sun Apr 15 07:00:52 JST 2007 m.fellinger@gmail.com
399
+ * get rid of the warning about redefinition of aquire
400
+
401
+ Sun Apr 15 06:59:47 JST 2007 m.fellinger@gmail.com
402
+ * get rid of the redefinition of #each... do an actual check first (for 1.9)
403
+
404
+ Sun Apr 15 06:56:52 JST 2007 m.fellinger@gmail.com
405
+ * huge refactoring of the Inform system for better configurability, this changes lots of small things in lots of places, but nothing too invasive
406
+
407
+ Sun Apr 15 06:55:28 JST 2007 m.fellinger@gmail.com
408
+ * adapt error.zmr to new inform system
409
+
410
+ Fri Apr 13 10:57:34 JST 2007 m.fellinger@gmail.com
411
+ * add support for nested params
412
+
413
+ Fri Apr 13 10:43:26 JST 2007 m.fellinger@gmail.com
414
+ * pass $: as -I over in spec_all
415
+
416
+ Fri Apr 13 10:40:59 JST 2007 m.fellinger@gmail.com
417
+ * GlobalInformer Inform in the og-gulper
418
+
419
+ Mon Apr 9 18:33:38 JST 2007 m.fellinger@gmail.com
420
+ * add systemu to optional dependencies
421
+
422
+ Mon Apr 9 18:27:24 JST 2007 m.fellinger@gmail.com
423
+ * better implementation of String#each (for 1.9 only)
424
+
425
+ Thu Apr 12 20:22:04 JST 2007 m.fellinger@gmail.com
426
+ * Informer => Inform
427
+
428
+ Wed Apr 11 19:26:23 JST 2007 m.fellinger@gmail.com
429
+ * brand new controller lookup on startup - use YourController.mapping to get its mapping :)
430
+
431
+ Wed Apr 11 18:40:59 JST 2007 m.fellinger@gmail.com
432
+ * fixing (c)
433
+
434
+ Wed Apr 11 18:38:03 JST 2007 m.fellinger@gmail.com
435
+ * fixing logger.rb by adding Informer
436
+
437
+ Wed Apr 11 17:42:09 JST 2007 Jonathan Buch <jo@helloit.fi>
438
+ * add missing logger.rb for informer change
439
+
440
+ Wed Apr 11 17:25:26 JST 2007 Jonathan Buch <jo@helloit.fi>
441
+ * Make logger configurable
442
+ Included loggers:
443
+ * GlobalInformer (standard)
444
+ * Analogger [Kirk Haines]
445
+ * Syslog
446
+
447
+ Wed Apr 11 14:26:08 JST 2007 m.fellinger@gmail.com
448
+ * filter for Dispatcher::Action
449
+
450
+ Wed Apr 11 14:23:44 JST 2007 m.fellinger@gmail.com
451
+ * new implementation of autoreload, not in usage yet, but it should boost performance and reliability (and avoid the awkward double-thread
452
+
453
+ Wed Apr 11 13:22:31 JST 2007 m.fellinger@gmail.com
454
+ * replace the aquire with a verbose way... snippets were not added to the $:/$"
455
+
456
+ Wed Apr 11 13:03:49 JST 2007 m.fellinger@gmail.com
457
+ * extending Global for setting and add a trait-link to tidy
458
+
459
+ Wed Apr 11 13:01:29 JST 2007 m.fellinger@gmail.com
460
+ * better implementation of tidy... only use it for debugging, it's leaking memory
461
+
462
+ Wed Apr 11 12:58:52 JST 2007 m.fellinger@gmail.com
463
+ * remove the post_dispatch from Dispatcher
464
+
465
+ Tue Apr 10 13:58:08 JST 2007 m.fellinger@gmail.com
466
+ * a couple of changes in Global, we can now collect the traits inside Global transparently (finally modular configuration)
467
+
468
+ Tue Apr 10 00:57:20 JST 2007 m.fellinger@gmail.com
469
+ * use class-methods instead of instantination in the Dispatcher for speed
470
+
471
+ Mon Apr 9 21:25:49 JST 2007 m.fellinger@gmail.com
472
+ * extremly brutal refactoring of Dispatcher, it lacks a bit of elegance right now, but it is the right way
473
+
474
+ Mon Apr 9 17:59:52 JST 2007 m.fellinger@gmail.com
475
+ * a couple of small changes for compatibility with 1.9
476
+
477
+ Mon Apr 9 16:11:33 JST 2007 m.fellinger@gmail.com
478
+ * small refactoring for Inform#error
479
+
480
+ Mon Apr 9 17:00:40 JST 2007 m.fellinger@gmail.com
481
+ * small fixes for YARV
482
+
483
+ Mon Apr 9 06:36:11 JST 2007 m.fellinger@gmail.com
484
+ * exitstatus 0/1 for spec_all so the darcs hook can see if it's passing - finally automated recording-joy :)
485
+
486
+ Mon Apr 9 06:34:29 JST 2007 m.fellinger@gmail.com
487
+ * darcs hook
488
+
489
+ Sun Apr 8 19:11:03 JST 2007 m.fellinger@gmail.com
490
+ * fixing flash for memcached
491
+
492
+ Sun Apr 8 19:10:48 JST 2007 m.fellinger@gmail.com
493
+ * add rake patchstat
494
+
495
+ Sun Apr 8 02:33:23 JST 2007 m.fellinger@gmail.com
496
+ * allow request[:foo] to access request.params['foo']
497
+
498
+ Sat Apr 7 01:24:10 JST 2007 m.fellinger@gmail.com
499
+ * add Inform::warn
500
+
501
+ Sat Apr 7 01:23:38 JST 2007 m.fellinger@gmail.com
502
+ * check the template-dir mapping on startup for each controller
503
+
504
+ Sat Apr 7 00:30:29 JST 2007 m.fellinger@gmail.com
505
+ * a bit more elaborate but much safer handling of exceptions in Ezamar
506
+
507
+ Fri Apr 6 00:24:03 JST 2007 m.fellinger@gmail.com
508
+ * experiments in adapter.rb - please review
509
+
510
+ Fri Apr 6 00:22:58 JST 2007 m.fellinger@gmail.com
511
+ * refactor of request/response/dispatcher/adapter (be careful, tidy broke)
512
+
513
+ Thu Apr 5 14:19:20 JST 2007 m.fellinger@gmail.com
514
+ * little cleanup
515
+
516
+ Fri Apr 6 04:06:52 JST 2007 m.fellinger@gmail.com
517
+ * better error-reporting for usual NoMethodError in controller/template
518
+
519
+ Wed Apr 4 23:51:14 JST 2007 m.fellinger@gmail.com
520
+ * use normal blocks instead of Symbol#to_proc, there was some weird error in Informer#debug
521
+
522
+ Wed Apr 4 23:50:54 JST 2007 m.fellinger@gmail.com
523
+ * fixing the usage of meth_debug, replacing it with normal debug
524
+
525
+ Wed Apr 4 23:46:24 JST 2007 m.fellinger@gmail.com
526
+ * add helper/inform
527
+
528
+ Wed Apr 4 13:21:22 JST 2007 m.fellinger@gmail.com
529
+ * yet another possible refactor of Inform, thinking about just using Informer instead, the modules functionality is not used anywhere.
530
+
531
+ Wed Apr 4 01:39:37 JST 2007 m.fellinger@gmail.com
532
+ * adding --console and --backtrace as startup-options for the bin/ramaze, improving error-reports for gone-wrong requires on startup
533
+
534
+ Tue Apr 3 21:13:19 JST 2007 m.fellinger@gmail.com
535
+ * update doc/TODO
536
+
537
+ Tue Apr 3 21:12:51 JST 2007 m.fellinger@gmail.com
538
+ * fix rake task todolist
539
+
540
+ Tue Apr 3 21:01:11 JST 2007 m.fellinger@gmail.com
541
+ * huge refactoring of Inform for better handling of colors and nicer code
542
+
543
+ Tue Apr 3 20:57:22 JST 2007 m.fellinger@gmail.com
544
+ * remove some debugging from examples/blog
545
+
546
+ Tue Apr 3 16:58:55 JST 2007 m.fellinger@gmail.com
547
+ * s/Global/Ramaze::Global in adapter.rb
548
+
549
+ Tue Apr 3 15:23:02 JST 2007 m.fellinger@gmail.com
550
+ * add further colors/styles to snippets/string/color
551
+
552
+ Tue Apr 3 15:22:35 JST 2007 m.fellinger@gmail.com
553
+ * avoid warning on reload of Inform / don't define Informer twice
554
+
555
+ Tue Apr 3 15:17:42 JST 2007 m.fellinger@gmail.com
556
+ * added simple colorizer for Inform - can be activated by Global.inform_color = true / added String#red/yellow/green to snippets/String/color
557
+
558
+ Tue Apr 3 15:14:54 JST 2007 m.fellinger@gmail.com
559
+ * 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
560
+
561
+ Mon Apr 2 00:32:32 JST 2007 m.fellinger@gmail.com
562
+ tagged 0.0.9
563
+
564
+ Mon Apr 2 00:31:45 JST 2007 m.fellinger@gmail.com
565
+ * 0.0.9
566
+
567
+ Mon Apr 2 00:31:28 JST 2007 m.fellinger@gmail.com
568
+ * fixing (c)
569
+
570
+ Sun Apr 1 19:14:36 JST 2007 Jonathan Buch <jo@helloit.fi>
571
+ * beautify code block css in tutorial
572
+
573
+ Sun Apr 1 18:39:20 JST 2007 m.fellinger@gmail.com
574
+ * typos, proper encoding and doctype for the tutorial
575
+
576
+ Sun Apr 1 18:15:55 JST 2007 m.fellinger@gmail.com
577
+ * add tutorial/todolist.html
578
+
579
+ Sun Apr 1 18:15:31 JST 2007 m.fellinger@gmail.com
580
+ * update tutorial/todolist - bluecloth instead of rdoc
581
+
582
+ Sun Apr 1 18:15:09 JST 2007 m.fellinger@gmail.com
583
+ * update the principles chunk
584
+
585
+ Sun Apr 1 18:13:34 JST 2007 m.fellinger@gmail.com
586
+ * add a tutorial2html to the rakefile
587
+
588
+ Sat Mar 31 01:55:36 JST 2007 m.fellinger@gmail.com
589
+ * close all inform_to on exit
590
+
591
+ Fri Mar 30 22:23:29 JST 2007 m.fellinger@gmail.com
592
+ * fixing the ramaze call in the two failing specs
593
+
594
+ Fri Mar 30 22:22:55 JST 2007 m.fellinger@gmail.com
595
+ * define a new Request#fullpath (in latest rack, not yet released)
596
+
597
+ Fri Mar 30 21:54:57 JST 2007 m.fellinger@gmail.com
598
+ * improving spec_all further, correct align of errors and information when a spec yields no usable output
599
+
600
+ Fri Mar 30 21:40:28 JST 2007 m.fellinger@gmail.com
601
+ * change default in spec_helper to webrick instead of mongrel
602
+
603
+ Fri Mar 30 21:24:03 JST 2007 m.fellinger@gmail.com
604
+ * add attempt to require rubygems to spec_all
605
+
606
+ Fri Mar 30 21:08:13 JST 2007 m.fellinger@gmail.com
607
+ * add the spec/public/error404.xhtml and adapt the tc_error, static error-pages are now definetly working
608
+
609
+ Fri Mar 30 21:06:59 JST 2007 m.fellinger@gmail.com
610
+ * replace Term::ANSIColor and the stubs with a small actual implementation
611
+
612
+ Fri Mar 30 20:36:11 JST 2007 m.fellinger@gmail.com
613
+ * allow multiple 'pipes' for Global.inform_to, just give it an array (backwards-compatible)
614
+
615
+ Fri Mar 30 20:35:59 JST 2007 m.fellinger@gmail.com
616
+ * updating tc_error
617
+
618
+ Fri Mar 30 20:35:28 JST 2007 m.fellinger@gmail.com
619
+ * getting rid of a warning about redefining Traits
620
+
621
+ Fri Mar 30 20:34:44 JST 2007 m.fellinger@gmail.com
622
+ * Sanitizing error-handling for non-existant static error-page
623
+
624
+ Thu Mar 29 23:39:24 JST 2007 m.fellinger@gmail.com
625
+ * fixing Inform, it did wrong matching for $stderr/$stdout
626
+
627
+ Mon Mar 26 23:25:25 JST 2007 m.fellinger@gmail.com
628
+ * add example for nitroform
629
+
630
+ Mon Mar 26 23:24:58 JST 2007 m.fellinger@gmail.com
631
+ * add a first stub for helper/nitroform - there seem to be some odd problems
632
+
633
+ Mon Mar 26 23:23:52 JST 2007 m.fellinger@gmail.com
634
+ * don't raise when we can't find the file wanted by caller_lines
635
+
636
+ Sun Mar 25 01:03:01 JST 2007 m.fellinger@gmail.com
637
+ * fix Kernel#aquire (by lasso)
638
+
639
+ Sat Mar 24 05:06:45 JST 2007 m.fellinger@gmail.com
640
+ * improve handling of missing actions, now raising NoActionError
641
+
642
+ Fri Mar 23 06:16:18 JST 2007 m.fellinger@gmail.com
643
+ * fix serving static files on windows (hopefully)
644
+
645
+ Thu Mar 22 13:09:26 JST 2007 m.fellinger@gmail.com
646
+ * remove the useless _openid_consumer_service from the session afterwards
647
+
648
+ Thu Mar 22 13:09:12 JST 2007 m.fellinger@gmail.com
649
+ * add examples/identity
650
+
651
+ Thu Mar 22 13:00:12 JST 2007 m.fellinger@gmail.com
652
+ * fixing IdentityHelper so that it works
653
+
654
+ Thu Mar 22 12:59:45 JST 2007 m.fellinger@gmail.com
655
+ * move helper/openid to helper/identity
656
+
657
+ Wed Mar 21 12:11:22 JST 2007 m.fellinger@gmail.com
658
+ * add ::create_with(hash) to store/yaml
659
+
660
+ Wed Mar 21 12:11:02 JST 2007 m.fellinger@gmail.com
661
+ * show the real error from Template::Ezamar
662
+
663
+ Wed Mar 21 12:10:21 JST 2007 m.fellinger@gmail.com
664
+ * make the error parsing a lot more robust and fault-tolerant
665
+
666
+ Tue Mar 20 22:51:06 JST 2007 m.fellinger@gmail.com
667
+ * adapt Controller#error for the new caller_lines/caller_info
668
+
669
+ Tue Mar 20 22:50:26 JST 2007 m.fellinger@gmail.com
670
+ * extracting caller_lines and put it into snippets/kernel/caller_lines - also small fixes in caller_info
671
+
672
+ Tue Mar 20 22:50:10 JST 2007 m.fellinger@gmail.com
673
+ * small changes in Method#name
674
+
675
+ Tue Mar 20 22:48:48 JST 2007 m.fellinger@gmail.com
676
+ * move snippets/kernel/caller_lines to snippets/ramaze/caller_lines
677
+
678
+ Tue Mar 20 22:47:57 JST 2007 m.fellinger@gmail.com
679
+ * fixing problematic error response in dispatcher
680
+
681
+ Tue Mar 20 22:12:08 JST 2007 m.fellinger@gmail.com
682
+ * remove Kernel#silently
683
+
684
+ Tue Mar 20 22:10:34 JST 2007 m.fellinger@gmail.com
685
+ * require pp before patching pretty_inspect
686
+
687
+ Tue Mar 20 22:10:01 JST 2007 m.fellinger@gmail.com
688
+ * move Method#name from snippets/kernel/method to snippets/method/name
689
+
690
+ Tue Mar 20 22:09:30 JST 2007 m.fellinger@gmail.com
691
+ * remove Thread#dead?
692
+
693
+ Tue Mar 20 22:09:16 JST 2007 m.fellinger@gmail.com
694
+ * remove snippets/kernel/rescue_require
695
+
696
+ Tue Mar 20 22:08:39 JST 2007 m.fellinger@gmail.com
697
+ * move snippets/kernel/self_method => snippets/kernel/method
698
+
699
+ Tue Mar 20 22:08:13 JST 2007 m.fellinger@gmail.com
700
+ * fix Rakefile so that it produces good gems again
701
+
702
+ Tue Mar 20 22:07:16 JST 2007 m.fellinger@gmail.com
703
+ * move snippets/kernel/autoreload => snippets/ramaze/autoreload
704
+
705
+ Tue Mar 20 18:46:40 JST 2007 m.fellinger@gmail.com
706
+ * don't R() the passed params to redirect and update docs
707
+
708
+ Tue Mar 20 17:29:47 JST 2007 m.fellinger@gmail.com
709
+ * update tc_helper_redirect
710
+
711
+ Tue Mar 20 17:08:58 JST 2007 m.fellinger@gmail.com
712
+ * better information about errors in templates
713
+
714
+ Tue Mar 20 17:07:57 JST 2007 m.fellinger@gmail.com
715
+ * better handling of redirections, you can now catch(:redirect){ another_action } to prevent redirection from that path of execution
716
+
717
+ Tue Mar 20 17:07:24 JST 2007 m.fellinger@gmail.com
718
+ * typo
719
+
720
+ Tue Mar 20 15:53:12 JST 2007 m.fellinger@gmail.com
721
+ * support custom status-code in redirect and do R() automatically on the params
722
+
723
+ Tue Mar 20 15:43:19 JST 2007 m.fellinger@gmail.com
724
+ * update Rakefile
725
+
726
+ Tue Mar 20 15:23:35 JST 2007 m.fellinger@gmail.com
727
+ * add (c) to OpenidHelper
728
+
729
+ Tue Mar 20 15:23:05 JST 2007 m.fellinger@gmail.com
730
+ * update README
731
+
732
+ Mon Mar 19 16:21:01 JST 2007 m.fellinger@gmail.com
733
+ * update examples/todolist
734
+
735
+ Mon Mar 19 16:20:42 JST 2007 m.fellinger@gmail.com
736
+ * update tutorial
737
+
738
+ Mon Mar 19 15:58:41 JST 2007 m.fellinger@gmail.com
739
+ * small improvment to template/ezamar makes methodless actions work again.
740
+
741
+ Mon Mar 19 15:45:14 JST 2007 m.fellinger@gmail.com
742
+ * remove helper/template_map
743
+
744
+ Mon Mar 19 15:44:59 JST 2007 m.fellinger@gmail.com
745
+ * update feature-list
746
+
747
+ Mon Mar 19 12:03:24 JST 2007 m.fellinger@gmail.com
748
+ * add a Rs method to LinkHelper to make the usual R(self, :foo) stuff into Rs(:foo) and update the tc_helper_stack
749
+
750
+ Mon Mar 19 08:14:57 JST 2007 m.fellinger@gmail.com
751
+ * add first implementation of OpenidHelper (yet untested)
752
+
753
+ Mon Mar 19 07:58:38 JST 2007 m.fellinger@gmail.com
754
+ * fix tc_helper_redirect
755
+
756
+ Sat Mar 17 22:09:25 JST 2007 m.fellinger@gmail.com
757
+ * 0.0.8 as version
758
+
759
+ Sat Mar 17 22:09:16 JST 2007 m.fellinger@gmail.com
760
+ * alias referrer referer
761
+
762
+ Fri Mar 16 19:47:40 JST 2007 m.fellinger@gmail.com
763
+ * document CacheHelper
764
+
765
+ Fri Mar 16 19:39:20 JST 2007 m.fellinger@gmail.com
766
+ * document FlashHelper
767
+
768
+ Fri Mar 16 19:24:34 JST 2007 m.fellinger@gmail.com
769
+ * cleanup and docs for Ramaze::Request (add values_at for quick params-retrieval)
770
+
771
+ Fri Mar 16 19:16:18 JST 2007 m.fellinger@gmail.com
772
+ * 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)
773
+
774
+ Thu Mar 15 19:21:34 JST 2007 m.fellinger@gmail.com
775
+ * don't escape the @title of an error twice
776
+
777
+ Fri Mar 16 16:17:45 JST 2007 m.fellinger@gmail.com
778
+ * less agressive redirect in R/link
779
+
780
+ Thu Mar 15 14:57:33 JST 2007 m.fellinger@gmail.com
781
+ * proper inspect in the error-page and adding inspect/pretty_inspect to Global
782
+
783
+ Wed Mar 14 23:09:46 JST 2007 m.fellinger@gmail.com
784
+ tagged 0.0.8
785
+
786
+ Wed Mar 14 23:09:07 JST 2007 m.fellinger@gmail.com
787
+ * newline :)
788
+
789
+ Wed Mar 14 21:44:25 JST 2007 m.fellinger@gmail.com
790
+ * checking all the caches in tc_session
791
+
792
+ Wed Mar 14 21:43:59 JST 2007 m.fellinger@gmail.com
793
+ * nicer output of specs of helper_auth and tc_session
794
+
795
+ Wed Mar 14 21:43:39 JST 2007 m.fellinger@gmail.com
796
+ * reimplement Trinity::Session
797
+
798
+ Wed Mar 14 21:42:58 JST 2007 m.fellinger@gmail.com
799
+ * fixing the caller_lines bug
800
+
801
+ Wed Mar 14 21:42:44 JST 2007 m.fellinger@gmail.com
802
+ * no rescue in StackHelper anymore
803
+
804
+ Wed Mar 14 21:42:32 JST 2007 m.fellinger@gmail.com
805
+ * small fix in yaml_store
806
+
807
+ Wed Mar 14 21:42:20 JST 2007 m.fellinger@gmail.com
808
+ * small nicety in examples/simple
809
+
810
+ Wed Mar 14 15:45:30 JST 2007 m.fellinger@gmail.com
811
+ * add 'stubs' for CGI and FastCGI - they are not tested at all yet, suggestions for specs welcome
812
+
813
+ Wed Mar 14 15:44:42 JST 2007 m.fellinger@gmail.com
814
+ * remove the actionview_stub from HAML, it's not needed with HAML 1.5 (make sure you upgrade though)
815
+
816
+ Tue Mar 13 19:50:43 JST 2007 m.fellinger@gmail.com
817
+ * remove the ezamar-'feature' ;)
818
+
819
+ Tue Mar 13 19:42:14 JST 2007 m.fellinger@gmail.com
820
+ * speed up the ezamar-spec a bit and proper errors for markaby
821
+
822
+ Sun Mar 11 03:19:05 JST 2007 m.fellinger@gmail.com
823
+ * deleting entities in Store::YAML
824
+
825
+ Sun Mar 11 03:07:10 JST 2007 m.fellinger@gmail.com
826
+ * possibility to #{render} in your controller/templates
827
+
828
+ Sun Mar 11 01:25:15 JST 2007 m.fellinger@gmail.com
829
+ * escape the title of the error-page to show classes properly
830
+
831
+ Sun Mar 11 00:08:38 JST 2007 m.fellinger@gmail.com
832
+ * small improvments to bin/ramaze - output of version and better info when there is nothing to start
833
+
834
+ Tue Mar 13 13:46:23 JST 2007 m.fellinger@gmail.com
835
+ * small improvment in custom_template selection
836
+
837
+ Mon Mar 12 22:41:55 JST 2007 m.fellinger@gmail.com
838
+ * remove debugging-statements
839
+
840
+ Mon Mar 12 20:53:47 JST 2007 m.fellinger@gmail.com
841
+ * better error-reports from Ezamars transformation
842
+
843
+ Mon Mar 12 20:53:31 JST 2007 m.fellinger@gmail.com
844
+ * no more errors about #debug? missing from WEBrick
845
+
846
+ Mon Mar 12 20:53:07 JST 2007 m.fellinger@gmail.com
847
+ * improved error-page (minor fixes)
848
+
849
+ Mon Mar 12 20:52:18 JST 2007 m.fellinger@gmail.com
850
+ * fixing the ezamar example
851
+
852
+ Fri Mar 9 21:15:00 JST 2007 m.fellinger@gmail.com
853
+ * fixing spec_all to report the real number of failed specs
854
+
855
+ Fri Mar 9 21:14:34 JST 2007 m.fellinger@gmail.com
856
+ * shorter line
857
+
858
+ Fri Mar 9 19:25:03 JST 2007 m.fellinger@gmail.com
859
+ * don't assign a FLASH_PREVIOUS when we don't need to (also add a (c) to pretty_inspect)
860
+
861
+ Fri Mar 9 19:08:55 JST 2007 m.fellinger@gmail.com
862
+ * fixing FlashHelper (with a new SessionFlash in trinity/session) put the new specs into the old tc_helper_flash
863
+
864
+ Thu Mar 8 22:36:04 JST 2007 Jonathan Buch <jo@helloit.fi>
865
+ * spec for flash, template finding fix
866
+ * trait :foo_template => :bar__foo did break
867
+ * added spec for flash, no fix
868
+
869
+ Thu Mar 8 11:07:22 JST 2007 m.fellinger@gmail.com
870
+ * relax arity-sensitivity, it's impossbile to get right and shouldn't block correct parameter-sets
871
+
872
+ Wed Mar 7 23:16:01 JST 2007 Jonathan Buch <jo@helloit.fi>
873
+ * More specs for params
874
+
875
+ Wed Mar 7 23:11:17 JST 2007 m.fellinger@gmail.com
876
+ * add fallback for pretty_inspect
877
+
878
+ Wed Mar 7 07:01:32 JST 2007 m.fellinger@gmail.com
879
+ * fixing session-problem plus the specs
880
+
881
+ Tue Mar 6 20:57:16 JST 2007 m.fellinger@gmail.com
882
+ * fixing the flash_id
883
+
884
+ Tue Mar 6 20:09:13 JST 2007 m.fellinger@gmail.com
885
+ * informing you about missing elements
886
+
887
+ Tue Mar 6 07:10:05 JST 2007 m.fellinger@gmail.com
888
+ * add rack in the tc_dependencies
889
+
890
+ Mon Mar 5 22:48:06 JST 2007 m.fellinger@gmail.com
891
+ * new custom error-handling, tell me your exception and i tell you where you land
892
+
893
+ Mon Mar 5 22:44:05 JST 2007 m.fellinger@gmail.com
894
+ * temporarily add Helper to Element
895
+
896
+ Mon Mar 5 22:12:45 JST 2007 m.fellinger@gmail.com
897
+ * avoid malformed response from the controller
898
+
899
+ Mon Mar 5 21:47:16 JST 2007 m.fellinger@gmail.com
900
+ * specs for FlashHelper
901
+
902
+ Mon Mar 5 21:47:05 JST 2007 m.fellinger@gmail.com
903
+ * add ability to delete specific key from session
904
+
905
+ Mon Mar 5 21:46:55 JST 2007 m.fellinger@gmail.com
906
+ * improve error-handling in Template::Ezamar
907
+
908
+ Mon Mar 5 21:46:46 JST 2007 m.fellinger@gmail.com
909
+ * add FlashHelper
910
+
911
+ Mon Mar 5 18:53:41 JST 2007 m.fellinger@gmail.com
912
+ * updating some readme chunks
913
+
914
+ Sun Mar 4 22:53:11 JST 2007 m.fellinger@gmail.com
915
+ * handle the case when there are no controllers...
916
+
917
+ Sun Mar 4 21:18:36 JST 2007 m.fellinger@gmail.com
918
+ * remove setup.rb since i don't provide any support for it.
919
+
920
+ Sun Mar 4 21:05:37 JST 2007 m.fellinger@gmail.com
921
+ * update Rakefile (dependencies and some tasks)
922
+
923
+ Sun Mar 4 21:01:19 JST 2007 m.fellinger@gmail.com
924
+ * change the require for rack, make sure you got the gem installed or it's in your path (or required already)
925
+
926
+ Sun Mar 4 21:01:03 JST 2007 m.fellinger@gmail.com
927
+ * remove vendor/rack since rack has its release out now
928
+
929
+ Sat Mar 3 04:35:51 JST 2007 m.fellinger@gmail.com
930
+ * controller has to respond to :render
931
+
932
+ Sat Mar 3 04:35:07 JST 2007 m.fellinger@gmail.com
933
+ * fix lookup for the cache
934
+
935
+ Sat Mar 3 02:38:25 JST 2007 m.fellinger@gmail.com
936
+ * improved error-handling, templating-engines take responsibility now
937
+
938
+ Sat Mar 3 01:48:38 JST 2007 m.fellinger@gmail.com
939
+ * fix docs for examples/hello
940
+
941
+ Fri Mar 2 17:49:11 JST 2007 m.fellinger@gmail.com
942
+ * proper namespacing, address everything under Ramaze, don't rely on the user to include Ramaze in the main-namespace
943
+
944
+ Fri Mar 2 17:18:32 JST 2007 m.fellinger@gmail.com
945
+ * fixing namespace for Informer in adapter/webrick
946
+
947
+ Wed Feb 28 23:06:19 JST 2007 m.fellinger@gmail.com
948
+ * rack snapshot
949
+
950
+ Mon Feb 26 23:54:56 JST 2007 m.fellinger@gmail.com
951
+ * testrunner should work on windows
952
+
953
+ Mon Feb 26 23:13:11 JST 2007 m.fellinger@gmail.com
954
+ * refactoring the filtering in dispatcher to return early results and do nicer error-handling
955
+
956
+ Sat Feb 24 00:16:10 JST 2007 m.fellinger@gmail.com
957
+ * oh phrack, we just require template/ezamar on startup now... no more autorequire-magic :P
958
+
959
+ Fri Feb 23 18:45:00 JST 2007 m.fellinger@gmail.com
960
+ * updates to the README
961
+
962
+ Fri Feb 23 13:47:16 JST 2007 m.fellinger@gmail.com
963
+ * making it possible to go without Element in AuthHelper
964
+
965
+ Fri Feb 23 13:46:53 JST 2007 m.fellinger@gmail.com
966
+ * fixing references to Element in proto and specs
967
+
968
+ Fri Feb 23 13:46:39 JST 2007 m.fellinger@gmail.com
969
+ * fixing references to Element
970
+
971
+ Fri Feb 23 13:45:32 JST 2007 m.fellinger@gmail.com
972
+ * Morpher and Element moved into module ::Ezamar - please do now class YourElement < Ezamar::Element - this is part of an ongoing effort to extract Ezamar for broader usage
973
+
974
+ Thu Feb 22 20:56:22 JST 2007 m.fellinger@gmail.com
975
+ * new doc/README from the chunks
976
+
977
+ Thu Feb 22 20:56:09 JST 2007 m.fellinger@gmail.com
978
+ * proper heading for README
979
+
980
+ Thu Feb 22 20:55:25 JST 2007 m.fellinger@gmail.com
981
+ * splitting README into seperate files in doc/readme_chunks
982
+
983
+ Thu Feb 22 20:54:53 JST 2007 m.fellinger@gmail.com
984
+ * add rake build-readme to build the README from the chunks in doc/readme_chunks
985
+
986
+ Thu Feb 22 20:45:53 JST 2007 m.fellinger@gmail.com
987
+ * remove the fluff from trinity/response - soon to be removed altogether
988
+
989
+ Thu Feb 22 20:40:10 JST 2007 m.fellinger@gmail.com
990
+ * Ramaze::Request => Rack::Request
991
+
992
+ Thu Feb 22 20:39:57 JST 2007 m.fellinger@gmail.com
993
+ * set 404 in Controller#error
994
+
995
+ Thu Feb 22 20:38:50 JST 2007 m.fellinger@gmail.com
996
+ * proper check for 404 in tc_error
997
+
998
+ Thu Feb 22 14:58:45 JST 2007 m.fellinger@gmail.com
999
+ * adapt the specs to take advantage of Context#story
1000
+
1001
+ Thu Feb 22 14:57:47 JST 2007 m.fellinger@gmail.com
1002
+ * adding Context.new with block or Context#story to provide a way for consecutive requests inside a common context.
1003
+
1004
+ Thu Feb 22 14:57:20 JST 2007 m.fellinger@gmail.com
1005
+ * using request_uri instead of path_info for StackHelper to preserve params
1006
+
1007
+ Thu Feb 22 08:37:01 JST 2007 m.fellinger@gmail.com
1008
+ * rack snapshot
1009
+
1010
+ Wed Feb 21 17:54:11 JST 2007 m.fellinger@gmail.com
1011
+ * fixing spec/tc_controller
1012
+
1013
+ Wed Feb 21 17:53:09 JST 2007 m.fellinger@gmail.com
1014
+ * fixing the first-load-problem which was caused by complicated require-procedures.
1015
+
1016
+ Wed Feb 21 17:52:39 JST 2007 m.fellinger@gmail.com
1017
+ * fixing examples/todolist
1018
+
1019
+ Wed Feb 21 13:18:33 JST 2007 m.fellinger@gmail.com
1020
+ * fixing Global.cookies = false
1021
+
1022
+ Wed Feb 21 10:16:49 JST 2007 m.fellinger@gmail.com
1023
+ * snapshot rack
1024
+
1025
+ Tue Feb 20 19:20:44 JST 2007 m.fellinger@gmail.com
1026
+ * add doc/GPL
1027
+
1028
+ Wed Feb 21 06:53:03 JST 2007 m.fellinger@gmail.com
1029
+ * support link('/' :class => 'foo', :id => 'bar', :title => 'index')
1030
+
1031
+ Wed Feb 21 06:52:34 JST 2007 m.fellinger@gmail.com
1032
+ * small improvments in examples/whywiki
1033
+
1034
+ Wed Feb 21 06:32:35 JST 2007 m.fellinger@gmail.com
1035
+ * extending examples/element a bit
1036
+
1037
+ Wed Feb 21 06:30:12 JST 2007 m.fellinger@gmail.com
1038
+ * fixing examples/caching
1039
+
1040
+ Wed Feb 21 06:24:57 JST 2007 m.fellinger@gmail.com
1041
+ * hopefully fixing the issue of first-load problems
1042
+
1043
+ Wed Feb 21 06:21:00 JST 2007 m.fellinger@gmail.com
1044
+ * add lib/proto to the lookup-paths for static files
1045
+
1046
+ Tue Feb 20 22:50:14 JST 2007 m.fellinger@gmail.com
1047
+ * snapshot of rack
1048
+
1049
+ Tue Feb 20 22:49:34 JST 2007 m.fellinger@gmail.com
1050
+ * fixing filters, the third
1051
+
1052
+ Tue Feb 20 19:07:30 JST 2007 m.fellinger@gmail.com
1053
+ * change order of filter... again
1054
+
1055
+ Tue Feb 20 19:06:12 JST 2007 m.fellinger@gmail.com
1056
+ * change doc/COPYING
1057
+
1058
+ Mon Feb 19 17:27:14 JST 2007 m.fellinger@gmail.com
1059
+ * change filter-order for static files to take priority
1060
+
1061
+ Mon Feb 19 17:19:22 JST 2007 m.fellinger@gmail.com
1062
+ * turn off $VERBOSE again
1063
+
1064
+ Tue Feb 20 14:57:41 JST 2007 m.fellinger@gmail.com
1065
+ * adding a requirement for rubygems in tc_dependencies (if you don't have rubygems you don't have to worry about that anyway)
1066
+
1067
+ Tue Feb 20 14:57:28 JST 2007 m.fellinger@gmail.com
1068
+ * fixing Global.cache_all
1069
+
1070
+ Tue Feb 20 14:46:11 JST 2007 m.fellinger@gmail.com
1071
+ * multiple fixes in the examples/blog
1072
+
1073
+ Tue Feb 20 14:45:14 JST 2007 m.fellinger@gmail.com
1074
+ * adapting the various specs for the new context/request helper
1075
+
1076
+ Tue Feb 20 14:44:06 JST 2007 m.fellinger@gmail.com
1077
+ * switching the testing-system to a modified version of simple_http, much cleaner :)
1078
+
1079
+ Tue Feb 20 14:43:11 JST 2007 m.fellinger@gmail.com
1080
+ * refactoring request_tc_helper a little bit
1081
+
1082
+ Tue Feb 20 14:42:40 JST 2007 m.fellinger@gmail.com
1083
+ * adding session.clear
1084
+
1085
+ Tue Feb 20 14:42:07 JST 2007 m.fellinger@gmail.com
1086
+ * using our own YAML::Store for store/yaml + some other minor changes
1087
+
1088
+ Tue Feb 20 14:41:47 JST 2007 m.fellinger@gmail.com
1089
+ * fixing StackHelper
1090
+
1091
+ Tue Feb 20 14:41:16 JST 2007 m.fellinger@gmail.com
1092
+ * fixing RedirectHelper
1093
+
1094
+ Sat Feb 17 04:27:30 JST 2007 m.fellinger@gmail.com
1095
+ * fixing example/caching
1096
+
1097
+ Tue Feb 20 00:29:47 JST 2007 m.fellinger@gmail.com
1098
+ * fixing serving static files
1099
+
1100
+ Mon Feb 19 23:59:19 JST 2007 m.fellinger@gmail.com
1101
+ * fixing the fix for the fix for the error-bug
1102
+
1103
+ Mon Feb 19 23:42:31 JST 2007 m.fellinger@gmail.com
1104
+ * prevent endless error-erroring
1105
+
1106
+ Mon Feb 19 14:39:55 JST 2007 m.fellinger@gmail.com
1107
+ * 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)
1108
+
1109
+ Mon Feb 19 13:33:58 JST 2007 manveru@weez-int.com
1110
+ * fixing redirection and error-handling, removing cruft from trinity/request (who'd have thought that it would fit into one screenful one day)
1111
+
1112
+ Mon Feb 19 13:33:29 JST 2007 manveru@weez-int.com
1113
+ * ignore the new vendor/rack for fixes of copyright and spaces
1114
+
1115
+ Mon Feb 19 12:45:35 JST 2007 manveru@weez-int.com
1116
+ * adding rack under lib/ramaze/vendor/rack - until rack got its first release
1117
+
1118
+ Mon Feb 19 08:00:59 JST 2007 m.fellinger@gmail.com
1119
+ * fixing sessions and spec_helper, removing tc_request_rack
1120
+
1121
+ Sun Feb 18 22:08:54 JST 2007 m.fellinger@gmail.com
1122
+ * remove provisory rack-adapter, it's replaced by adapter/mongrel|webrick
1123
+
1124
+ Sun Feb 18 19:32:29 JST 2007 m.fellinger@gmail.com
1125
+ * Switch adapters to work with rack
1126
+
1127
+ Sat Feb 17 06:12:10 JST 2007 Christian Neukirchen <chneukirchen@gmail.com>
1128
+ * Add primitive Rack adapter
1129
+
1130
+ Sat Feb 17 00:49:43 JST 2007 m.fellinger@gmail.com
1131
+ * some small fixes and adding MIME-types :D
1132
+
1133
+ Fri Feb 16 23:01:19 JST 2007 m.fellinger@gmail.com
1134
+ * adding cleanup for tc_cache to Rakefile
1135
+
1136
+ Fri Feb 16 23:00:47 JST 2007 m.fellinger@gmail.com
1137
+ * implementing PUT/DELETE for WEBrick plus neccesary abstraction in trinity/request
1138
+
1139
+ Fri Feb 16 22:59:12 JST 2007 m.fellinger@gmail.com
1140
+ * adding the files neccesary for the up/download specs, splitting the tc_request into tc_request_mongrel and tc_request_webrick
1141
+
1142
+ Fri Feb 16 21:31:46 JST 2007 m.fellinger@gmail.com
1143
+ * add doc/ProjectInfo for coming switch to ratchets
1144
+
1145
+ Fri Feb 16 21:27:02 JST 2007 m.fellinger@gmail.com
1146
+ * 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.
1147
+
1148
+ Fri Feb 16 13:01:41 JST 2007 manveru@weez-int.com
1149
+ * avoid repetition in the subclasses of Template
1150
+
1151
+ Fri Feb 16 13:01:17 JST 2007 manveru@weez-int.com
1152
+ * add spec/tc_dependencies to make sure we don't leak any gems into the vanilla ramaze
1153
+
1154
+ Fri Feb 16 13:00:41 JST 2007 manveru@weez-int.com
1155
+ * adding store/yaml for an abstracted version of YAML::Store + corresponding specs.
1156
+
1157
+ Fri Feb 16 13:49:06 JST 2007 m.fellinger@gmail.com
1158
+ * fixing the issues with send_file temporarily
1159
+
1160
+ Tue Feb 13 18:39:23 JST 2007 m.fellinger@gmail.com
1161
+ * add specs for methods on a controller like this__is__a__method which translates to this/is/a/method
1162
+
1163
+ Thu Feb 15 23:58:48 JST 2007 m.fellinger@gmail.com
1164
+ * temorarily deactivate the new template-mapping
1165
+
1166
+ Thu Feb 15 23:49:33 JST 2007 m.fellinger@gmail.com
1167
+ * fixing missing end
1168
+
1169
+ Thu Feb 15 23:48:08 JST 2007 m.fellinger@gmail.com
1170
+ * autoload Element/Morpher when referenced
1171
+
1172
+ Thu Feb 15 19:13:31 JST 2007 manveru@weez-int.com
1173
+ * removing the alias of Ramaze::start to Ramaze::new to avoid nasty bugs when Ramaze is included into Object
1174
+
1175
+ Thu Feb 15 19:13:04 JST 2007 manveru@weez-int.com
1176
+ * adding some more docs for templating
1177
+
1178
+ Thu Feb 15 13:26:22 JST 2007 manveru@weez-int.com
1179
+ * first partial implementation of template_maps
1180
+
1181
+ Thu Feb 15 13:19:27 JST 2007 manveru@weez-int.com
1182
+ * add support for actions of the double__underscore__way
1183
+
1184
+ Wed Feb 14 19:31:45 JST 2007 manveru@weez-int.com
1185
+ * updating FAQ
1186
+
1187
+ Wed Feb 14 18:46:06 JST 2007 manveru@weez-int.com
1188
+ * documenting another couple of classes
1189
+
1190
+ Wed Feb 14 18:45:58 JST 2007 manveru@weez-int.com
1191
+ * documenting dispatcher fully
1192
+
1193
+ Wed Feb 14 18:45:48 JST 2007 manveru@weez-int.com
1194
+ * documenting cache/memcached
1195
+
1196
+ Wed Feb 14 18:45:36 JST 2007 manveru@weez-int.com
1197
+ * adding further docs to adapter/mongrel
1198
+
1199
+ Wed Feb 14 18:44:51 JST 2007 manveru@weez-int.com
1200
+ * fixing AuthHelper
1201
+
1202
+ Tue Feb 13 19:57:52 JST 2007 manveru@weez-int.com
1203
+ * fixing the examples and adapting lib/proto for the new Controller
1204
+
1205
+ Tue Feb 13 19:57:25 JST 2007 manveru@weez-int.com
1206
+ * add xhtml as default extension for Ezamar
1207
+
1208
+ Tue Feb 13 15:25:56 JST 2007 manveru@weez-int.com
1209
+ * fixing flawed references to Template::Rezamar in the docs.
1210
+
1211
+ Tue Feb 13 15:23:20 JST 2007 manveru@weez-int.com
1212
+ * fixing the tutorial for new implementation
1213
+
1214
+ Tue Feb 13 15:20:59 JST 2007 manveru@weez-int.com
1215
+ * rescue the Timeout::Error we get when a request takes too long in a test.
1216
+
1217
+ Tue Feb 13 15:20:25 JST 2007 manveru@weez-int.com
1218
+ * documenting all undocumented methods, some classes/modules still lacking docs.
1219
+
1220
+ Tue Feb 13 15:19:37 JST 2007 manveru@weez-int.com
1221
+ * fixing AspectHelper and with that subsequently AuthHelper.
1222
+
1223
+ Tue Feb 13 13:45:59 JST 2007 m.fellinger@gmail.com
1224
+ * rewrite of spec/spec_all and fixing a typo in spec/spec_helper
1225
+
1226
+ Tue Feb 13 08:56:06 JST 2007 m.fellinger@gmail.com
1227
+ * make example/caching|hello|simple run again
1228
+
1229
+ Tue Feb 13 08:55:49 JST 2007 m.fellinger@gmail.com
1230
+ * execute(*tasks) instead of execute *tasks
1231
+
1232
+ Tue Feb 13 08:55:10 JST 2007 m.fellinger@gmail.com
1233
+ * get rid of warnings in ezamar/engine - it still should be written more elegant though.
1234
+
1235
+ Tue Feb 13 08:54:48 JST 2007 m.fellinger@gmail.com
1236
+ * don't require aquire twice.
1237
+
1238
+ Tue Feb 13 08:53:56 JST 2007 m.fellinger@gmail.com
1239
+ * had a double definition of the request_path method for webrick-requests.
1240
+
1241
+ Tue Feb 13 08:53:13 JST 2007 m.fellinger@gmail.com
1242
+ * set the default of bin/ramaze and spec_all to output warnings.
1243
+
1244
+ Tue Feb 13 08:50:35 JST 2007 m.fellinger@gmail.com
1245
+ * use our own methods for showing the usage, less hacky and avoids warnings
1246
+
1247
+ Tue Feb 13 00:19:06 JST 2007 manveru@weez-int.com
1248
+ * make AspectHelper not bail out at start.
1249
+
1250
+ Tue Feb 13 00:18:44 JST 2007 manveru@weez-int.com
1251
+ * define #current on the actual Response-object
1252
+
1253
+ Tue Feb 13 00:12:46 JST 2007 manveru@weez-int.com
1254
+ * 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't work out to be very atomic, but the effects are.
1255
+
1256
+ Tue Feb 13 00:11:52 JST 2007 manveru@weez-int.com
1257
+ * make the rdoc-tasks a bit nicer and add doc/FAQ
1258
+
1259
+ Mon Feb 12 13:01:14 JST 2007 manveru@weez-int.com
1260
+ * add doc/FAQ
1261
+
1262
+ Mon Feb 12 11:26:04 JST 2007 manveru@weez-int.com
1263
+ * Ramaze::Template::Ramaze => Ramaze::Template::Ezamar - renaming the templating to get rid of confusion and provide a name to talk about when one means the templating.
1264
+
1265
+ Mon Feb 12 10:21:56 JST 2007 manveru@weez-int.com
1266
+ * add hint about installation to tutorial/todolist
1267
+
1268
+ Sun Feb 11 07:23:07 JST 2007 m.fellinger@gmail.com
1269
+ * remove allison from the repository again.
1270
+
1271
+ Sat Feb 10 05:43:50 JST 2007 m.fellinger@gmail.com
1272
+ * fixing specs for tc_helper_feed for broken hpricot
1273
+
1274
+ Sat Feb 10 05:43:25 JST 2007 m.fellinger@gmail.com
1275
+ * using ramaze/store/default for proto
1276
+
1277
+ Sat Feb 10 00:02:14 JST 2007 manveru@weez-int.com
1278
+ * fix issue when having a symbol as Global.cache for sessions.
1279
+
1280
+ Sat Feb 10 00:01:56 JST 2007 manveru@weez-int.com
1281
+ * better error-handling for Template::Ramaze
1282
+
1283
+ Sat Feb 10 00:01:44 JST 2007 manveru@weez-int.com
1284
+ * set @action for Template::Ramaze
1285
+
1286
+ Sat Feb 10 00:00:54 JST 2007 manveru@weez-int.com
1287
+ * extending Store::Default and adding corresponding specs and docs.
1288
+
1289
+ Sat Feb 10 00:00:31 JST 2007 manveru@weez-int.com
1290
+ * add the doc/tutorial/todolist.txt
1291
+
1292
+ Fri Feb 9 23:59:58 JST 2007 manveru@weez-int.com
1293
+ * add the example/todolist
1294
+
1295
+ Fri Feb 9 20:44:06 JST 2007 manveru@weez-int.com
1296
+ * add Store::Default#empty?
1297
+
1298
+ Thu Feb 8 13:17:09 JST 2007 manveru@weez-int.com
1299
+ * adding doc/INSTALL
1300
+
1301
+ Thu Feb 8 13:14:09 JST 2007 manveru@weez-int.com
1302
+ * fixing and extending amrita2 templating, adding the example for it.
1303
+
1304
+ Tue Feb 6 22:52:03 JST 2007 manveru@weez-int.com
1305
+ * fixing a bug in feed-helper and hiding a bug in current hpricot... (0.5) - need to file a bug-report :(
1306
+
1307
+ Fri Feb 9 08:43:09 JST 2007 m.fellinger@gmail.com
1308
+ * a bit nicer output if the test is skipped due to dependencies
1309
+
1310
+ Fri Feb 9 08:42:48 JST 2007 m.fellinger@gmail.com
1311
+ * add the testfile for send_file
1312
+
1313
+ Fri Feb 9 08:41:57 JST 2007 m.fellinger@gmail.com
1314
+ * fixing send_file for mongrel-adapter.
1315
+
1316
+ Thu Feb 8 18:01:36 JST 2007 m.fellinger@gmail.com
1317
+ tagged 0.0.7
1318
+
1319
+ Thu Feb 8 18:01:22 JST 2007 m.fellinger@gmail.com
1320
+ * update changelog
1321
+
1
1322
  Thu Feb 8 11:18:46 JST 2007 m.fellinger@gmail.com
2
1323
  * this fixes some issues with rubygems/rdoc
3
1324
 
@@ -16,9 +1337,6 @@ Wed Feb 7 19:37:10 JST 2007 m.fellinger@gmail.com
16
1337
  Wed Feb 7 19:36:04 JST 2007 m.fellinger@gmail.com
17
1338
  * added :distribute task and fixed a small typo
18
1339
 
19
- Tue Feb 6 23:44:03 JST 2007 m.fellinger@gmail.com
20
- * fixing typo in Rakefile
21
-
22
1340
  Wed Feb 7 19:07:25 JST 2007 m.fellinger@gmail.com
23
1341
  tagged 0.0.6
24
1342
 
@@ -37,6 +1355,9 @@ Wed Feb 7 19:02:15 JST 2007 m.fellinger@gmail.com
37
1355
  Wed Feb 7 19:00:52 JST 2007 m.fellinger@gmail.com
38
1356
  * update changelog, fixing Rakefile and making bin/ramaze a bit nicer.
39
1357
 
1358
+ Tue Feb 6 23:44:03 JST 2007 m.fellinger@gmail.com
1359
+ * fixing typo in Rakefile
1360
+
40
1361
  Tue Feb 6 17:29:23 JST 2007 m.fellinger@gmail.com
41
1362
  * adding documentation for all traits.
42
1363
 
@@ -49,6 +1370,9 @@ Tue Feb 6 17:28:42 JST 2007 m.fellinger@gmail.com
49
1370
  Tue Feb 6 17:28:25 JST 2007 m.fellinger@gmail.com
50
1371
  * add rake allison for the improved allison rdoc-template
51
1372
 
1373
+ Tue Feb 6 12:42:37 JST 2007 m.fellinger@gmail.com
1374
+ * fixing minor typos in the README, removing ramaze.xcf and fixing require hpricot in tc_helper_feed
1375
+
52
1376
  Tue Feb 6 16:08:35 JST 2007 manveru@weez-int.com
53
1377
  * add a post install message for the gem and add documentation for Tool::Create
54
1378
 
@@ -67,9 +1391,6 @@ Sun Feb 4 23:34:54 JST 2007 manveru@weez-int.com
67
1391
  Sun Feb 4 22:50:29 JST 2007 manveru@weez-int.com
68
1392
  * finally make ramaze --create project work
69
1393
 
70
- Tue Feb 6 12:42:37 JST 2007 m.fellinger@gmail.com
71
- * fixing minor typos in the README, removing ramaze.xcf and fixing require hpricot in tc_helper_feed
72
-
73
1394
  Mon Feb 5 11:30:34 JST 2007 m.fellinger@gmail.com
74
1395
  * minor changes to README
75
1396
 
@@ -163,6 +1484,12 @@ Fri Feb 2 20:20:46 JST 2007 m.fellinger@gmail.com
163
1484
  Fri Feb 2 20:20:07 JST 2007 m.fellinger@gmail.com
164
1485
  * a little bit nicer API in Dispatcher, but most importantly, fully documented!
165
1486
 
1487
+ Thu Feb 1 17:26:41 JST 2007 m.fellinger@gmail.com
1488
+ * something broke... now reading the template extra-early... this should give us better ways to do action-compiles later on...
1489
+
1490
+ Thu Feb 1 16:48:13 JST 2007 m.fellinger@gmail.com
1491
+ * Ramaze::Template::Element => Ramaze::Element
1492
+
166
1493
  Fri Feb 2 14:32:26 JST 2007 manveru@weez-int.com
167
1494
  * first draft of documentation for dispatcher
168
1495
 
@@ -217,12 +1544,6 @@ Thu Feb 1 20:39:36 JST 2007 manveru@weez-int.com
217
1544
  Thu Feb 1 20:39:05 JST 2007 manveru@weez-int.com
218
1545
  * simplify the code in helper.rb a little bit
219
1546
 
220
- Thu Feb 1 17:26:41 JST 2007 m.fellinger@gmail.com
221
- * something broke... now reading the template extra-early... this should give us better ways to do action-compiles later on...
222
-
223
- Thu Feb 1 16:48:13 JST 2007 m.fellinger@gmail.com
224
- * Ramaze::Template::Element => Ramaze::Element
225
-
226
1547
  Wed Jan 31 22:33:16 JST 2007 manveru@weez-int.com
227
1548
  * small updates to the README again, adding some links.
228
1549
 
@@ -364,6 +1685,9 @@ Mon Jan 29 20:05:39 JST 2007 m.fellinger@gmail.com
364
1685
  Mon Jan 29 16:41:05 JST 2007 m.fellinger@gmail.com
365
1686
  * Ramaze.autoreload instead of Kernel.autoreload
366
1687
 
1688
+ Mon Jan 29 07:49:46 JST 2007 manveru@weez-int.com
1689
+ * small change to make ancestral_trait work for the current instance as well.
1690
+
367
1691
  Mon Jan 29 15:03:28 JST 2007 manveru@weez-int.com
368
1692
  * the adapter should return only one thread to watch...
369
1693
 
@@ -376,9 +1700,6 @@ Mon Jan 29 14:55:46 JST 2007 manveru@weez-int.com
376
1700
  Mon Jan 29 14:54:24 JST 2007 manveru@weez-int.com
377
1701
  * 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's only of value before startup anyway
378
1702
 
379
- Mon Jan 29 07:49:46 JST 2007 manveru@weez-int.com
380
- * small change to make ancestral_trait work for the current instance as well.
381
-
382
1703
  Sun Jan 28 15:46:11 JST 2007 manveru@weez-int.com
383
1704
  * add documentation and fix minor bugs in ramaze, ramaze/global and ramaze/inform
384
1705
 
@@ -514,6 +1835,9 @@ Tue Jan 23 20:32:32 JST 2007 manveru@weez-int.com
514
1835
  Tue Jan 23 20:30:41 JST 2007 manveru@weez-int.com
515
1836
  * add test for headers in tc_request and add a method for raw_get that gives you the original object from open() back
516
1837
 
1838
+ Sun Jan 21 03:16:56 JST 2007 manveru@weez-int.com
1839
+ * remove cruft from helper/feed
1840
+
517
1841
  Mon Jan 22 21:25:19 JST 2007 manveru@weez-int.com
518
1842
  * CrudHelper and testcase
519
1843
 
@@ -544,9 +1868,6 @@ Mon Jan 22 14:40:10 JST 2007 manveru@weez-int.com
544
1868
  Mon Jan 22 14:37:25 JST 2007 manveru@weez-int.com
545
1869
  * reimplementation of Element, making code a bit cleaner (but longer... and possibly harder to understand?) also adding some tests for <Element />
546
1870
 
547
- Sun Jan 21 03:16:56 JST 2007 manveru@weez-int.com
548
- * remove cruft from helper/feed
549
-
550
1871
  Fri Jan 19 21:39:52 JST 2007 manveru@weez-int.com
551
1872
  * document lib/test/test_helper
552
1873
 
@@ -604,6 +1925,12 @@ Fri Jan 19 00:11:04 JST 2007 manveru@weez-int.com
604
1925
  Thu Jan 18 22:57:49 JST 2007 manveru@weez-int.com
605
1926
  * fixing the controller-method-lookup
606
1927
 
1928
+ Thu Jan 18 12:24:54 JST 2007 m.fellinger@gmail.com
1929
+ * patching method-lookup for controllers... now it should be possible to expose public methods via helper-methods... have to test this first though.
1930
+
1931
+ Wed Jan 17 11:56:21 JST 2007 m.fellinger@gmail.com
1932
+ * rephrase message on startup...
1933
+
607
1934
  Thu Jan 18 22:44:18 JST 2007 manveru@weez-int.com
608
1935
  * remove the useless invalidate_cache method from CacheHelper
609
1936
 
@@ -646,12 +1973,6 @@ Thu Jan 18 13:34:29 JST 2007 manveru@weez-int.com
646
1973
  Thu Jan 18 13:33:57 JST 2007 manveru@weez-int.com
647
1974
  * rewrite FeedHelper, still not functional, but a lot nicer to build XML from objects
648
1975
 
649
- Thu Jan 18 12:24:54 JST 2007 m.fellinger@gmail.com
650
- * patching method-lookup for controllers... now it should be possible to expose public methods via helper-methods... have to test this first though.
651
-
652
- Wed Jan 17 11:56:21 JST 2007 m.fellinger@gmail.com
653
- * rephrase message on startup...
654
-
655
1976
  Wed Jan 17 00:18:30 JST 2007 manveru@weez-int.com
656
1977
  * provide some info about where the adapter attempts to connect... also fix debugging-output in tests
657
1978
 
@@ -739,21 +2060,6 @@ Sun Jan 14 06:52:54 JST 2007 manveru@weez-int.com
739
2060
  Sun Jan 14 06:49:14 JST 2007 manveru@weez-int.com
740
2061
  * 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('Cache', YourClass.new) since Ramze::Cache is the usual instance. See the testcases and documentation for more information on the usage
741
2062
 
742
- Fri Jan 12 00:43:08 JST 2007 manveru@weez-int.com
743
- * fix Rakefile
744
-
745
- Fri Jan 12 00:35:03 JST 2007 manveru@weez-int.com
746
- * add some more tasks, :record and :changes (record calls changes)
747
-
748
- Fri Jan 12 00:28:19 JST 2007 manveru@weez-int.com
749
- * added tasks changes-xml and changes-text to the Rakefile, stores the current changes into textual format for further use :)
750
-
751
- Tue Jan 9 14:19:11 JST 2007 manveru@weez-int.com
752
- * add the template for the tc_template_ramaze
753
-
754
- Tue Jan 9 14:17:22 JST 2007 manveru@weez-int.com
755
- * 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't need a seperate method in your controller... this does not work yet with multiple arguments
756
-
757
2063
  Sat Jan 13 07:12:07 JST 2007 manveru@weez-int.com
758
2064
  * add tc_feed_helper
759
2065
 
@@ -784,6 +2090,21 @@ Sat Jan 13 07:07:50 JST 2007 manveru@weez-int.com
784
2090
  Thu Jan 11 23:00:53 JST 2007 manveru@weez-int.com
785
2091
  * simple CacheHelper
786
2092
 
2093
+ Fri Jan 12 00:43:08 JST 2007 manveru@weez-int.com
2094
+ * fix Rakefile
2095
+
2096
+ Fri Jan 12 00:35:03 JST 2007 manveru@weez-int.com
2097
+ * add some more tasks, :record and :changes (record calls changes)
2098
+
2099
+ Fri Jan 12 00:28:19 JST 2007 manveru@weez-int.com
2100
+ * added tasks changes-xml and changes-text to the Rakefile, stores the current changes into textual format for further use :)
2101
+
2102
+ Tue Jan 9 14:19:11 JST 2007 manveru@weez-int.com
2103
+ * add the template for the tc_template_ramaze
2104
+
2105
+ Tue Jan 9 14:17:22 JST 2007 manveru@weez-int.com
2106
+ * 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't need a seperate method in your controller... this does not work yet with multiple arguments
2107
+
787
2108
  Mon Jan 8 22:38:33 JST 2007 manveru@weez-int.com
788
2109
  * stop some squeaking of the wheel and added a little comment of the why
789
2110
 
@@ -793,6 +2114,9 @@ Mon Jan 8 17:38:21 JST 2007 manveru@weez-int.com
793
2114
  Mon Jan 8 18:37:14 JST 2007 manveru@weez-int.com
794
2115
  * check before undef method id in Feed::Bag, that makes it better suited for autoreload
795
2116
 
2117
+ Mon Jan 8 18:15:30 JST 2007 manveru@weez-int.com
2118
+ * escape the stuff we get (possibly dangerous)
2119
+
796
2120
  Mon Jan 8 16:28:02 JST 2007 manveru@weez-int.com
797
2121
  * serious extension of TCFormHelper
798
2122
 
@@ -814,9 +2138,6 @@ Mon Jan 8 16:25:22 JST 2007 manveru@weez-int.com
814
2138
  Mon Jan 8 16:24:57 JST 2007 manveru@weez-int.com
815
2139
  * little prettification in dispatcher
816
2140
 
817
- Mon Jan 8 18:15:30 JST 2007 manveru@weez-int.com
818
- * escape the stuff we get (possibly dangerous)
819
-
820
2141
  Mon Jan 8 12:55:09 JST 2007 manveru@weez-int.com
821
2142
  * fixed test (for rcov)
822
2143