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
data/doc/TODO CHANGED
@@ -2,6 +2,9 @@ This list is programmaticly generated by `rake todolist`
2
2
  If you want to add/remove items from the list, change them at the
3
3
  position specified in the list.
4
4
 
5
+ /home/manveru/prog/projects/ramaze/lib/ramaze/template/ezamar/morpher.rb
6
+ - Add pure Ruby implementation as a fall-back.
7
+
5
8
  /home/manveru/prog/projects/ramaze/lib/ramaze/helper/link.rb
6
9
  - handling of no passed parameters
7
10
  - setting imagelinks
@@ -10,24 +13,12 @@ position specified in the list.
10
13
  - lots of other minor niceties, for the moment i'm only concerned to keep
11
14
  it as simple as possible
12
15
 
13
- /home/manveru/prog/projects/ramaze/lib/ramaze/dispatcher.rb
16
+ /home/manveru/prog/projects/ramaze/lib/ramaze/controller.rb
14
17
  - find a solution for def x(a = :a) which has arity -1
15
18
  identical to def x(*a) for some odd reason
16
19
 
17
- /home/manveru/prog/projects/ramaze/lib/ramaze/trinity/request.rb
18
- - rewrite parsing of multipart
19
- - chunk through the body and pipe into tempfile
20
- - look at merb for example of correct parsing
21
-
22
- /home/manveru/prog/projects/ramaze/lib/ramaze/template/ramaze.rb
23
- - maybe add some way to define a custom template-file per action via traits
24
- trait :methodname_template => :foo
25
- would point to the template-file of action :foo - template_root/foo.ext
26
- - add extensive tests!
27
-
28
- /home/manveru/prog/projects/ramaze/lib/ramaze/template/ramaze/morpher.rb
29
- - Add pure Ruby implementation as a fall-back.
30
-
31
20
  /home/manveru/prog/projects/ramaze/lib/ramaze/helper/redirect.rb
32
- - setting custom status-code, it ignores any preset ones at the moment
33
21
  - maybe some more options, like a delay
22
+
23
+ /home/manveru/prog/projects/ramaze/lib/ramaze/template/ezamar.rb
24
+ - put the pipeline into the Controller for use with all templates.
@@ -1,4 +1,3 @@
1
-
2
1
  /* Stylesheet for Allison RDoc template */
3
2
  /* Copyright 2006 Cloudburst LLC */
4
3
 
@@ -23,11 +22,11 @@ a:hover {
23
22
  }
24
23
 
25
24
  html, body {
26
- color: @body_color = "#270f2b"
27
- background-color: @background_teal = "#eeffff"
28
- text-align: center
29
- margin: 0
30
- padding: 0
25
+ color: @body_color = "#270f2b"
26
+ background-color: @background_teal = "#eeffff"
27
+ text-align: center
28
+ margin: 0
29
+ padding: 0
31
30
  }
32
31
 
33
32
  p, ul, ol, li {
@@ -297,4 +296,4 @@ pre .ruby-value, pre .ruby-symbol {
297
296
  color: @orange = "#cd8802"
298
297
  } pre .ruby-keyword {
299
298
  color: @purple = "#8d04aa"
300
- }
299
+ }
Binary file
@@ -1,4 +1,3 @@
1
-
2
1
  /* Stylesheet for Allison RDoc template */
3
2
  /* Copyright 2006 Cloudburst LLC */
4
3
 
@@ -69,7 +68,7 @@ height: 71px;
69
68
  _height: 81px;
70
69
  margin-bottom: 25px;
71
70
  vertical-align: baseline;
72
- background: url('data:image/gif;base64,R0lGODlhNwA6AKU1AABjewFjegBkfAZnfQZnfgdnfwZofgxrgQxrghdyhxdyiBx1ixx3ix13ih13iyJ5jSJ6jiN6jih+kS6ClTOFlzSGmDiImziJmzmJnD6Nnj+OnlCYqFSbqVWdq2Glsni0vn24wY7Dyo/Dyo7EypTHzZTHzpTIzpnL0aTT2KrW2qvW2qvX27Da3bDa3rDb3rXd4LXe4MHm58bp6sfq68zu7v///////////////////////////////////////////yH5BAEKAD8ALAAAAAA3ADoAAAb+QJpwSCwaUxCAYLlkjFIsmXFKrVqFLk1kYVAKDAsIhhS9ms/EmUtFwkQgEEchMFhYTlK03qxWpVJtbxASHDB7h2h9f1B5iI6PkJGPMy8zaS4ujZKILh14QjMnGGNlm32lVTMmERgtWBgFBQsZrkaKjFdZrJ9VLhgECyRSvgQAAMGaaiZug4VXKxF0FrVU0AAGF66hFcXY1DRZcnQUvL2/AA8pVsTo6jQzJAvGyEO+BcB3mlTw8hDu+/EA+Kt3ztuQUKPI6KuCBACDEguJNHyYh5+xdJcy7WlokGGSjjQaCqAoiR1Gjxf/iQQ5KeBAlAJegjvXblNDmVPYOfnDIkb+wJj/IE2EmCogAgtwMJxAkQToJmIsjyRxYmwAhQ8MlJCMZPFkkT4hFhDIxgXAgARdvmR7iuHA2oNrAnGhGNaYXQE1JYXa8KlPIHHGKLJj0oSo3koyXCyLANjYEm/bihE2QIHEIlyIlGFobACtF4MWCZsNA0eMZcxXNMuxC4aCBwVetg5mYtdunaSnUX0VtdoYGAsjQExICzI04eO1b5tGraxCAdZ2LJNw7pucptlgSkMouyR5GFIyZPAe4Dt6zxPUr1nfzU3rk0WBtqfFW3VWixawyltQKD495XJp/LTVO2sAwgx3KaUQQXX8KebfelSw899CisQHBy0taCFGX+PlVQegLQGZNY0VtzCSmB9lbPPcNXZ8mBNN9HCF3oqUKXRGZNe8NcmMHkZUlDzHCLPjgy6aIaGOe6jYoyMWBenjOvmpVyQaEkKYiAkNLAlJkwOMmAh63VgJCTtO3sijQ4bp9VNUUyiZ4zclwShkKmdOuMlBayLJHo1i3klmjHtqeSee8qgF5yt8TslWMWWmgaWgg6YB5puStjdSmpF+FWKMbrKZKUHdrNVpn58SOo8w+CX6ZKlHApKllKuWahFlIFAQpqKl1qMFBiCkN2CuqRQowqueAhthQaQaeywBdip7YzwLYHpnEAA7') no-repeat top right;
71
+ background: url('data:image/gif;base64,R0lGODlhRwBEAOefAAVNZQVOZwVPZwVPaAZPZwZPaAVQaAVQaQtOZAZQaAZQaQpPZAVRaQpPZwVRagtPZgZRaQtPZwZRagdRaQpQZwdRagtQZwZSagtQaAZSawxQZwdSagdSawtRZwtRaA9QZQxRaQdTbAtSaQxSaQ9RZwxSagtTaghUbQtTawxTagxTaxBTaRBVahpWahpXaiBVZiBWaCBWaSFWaSRWZSRWZiBYaCBYaiRXZiFYaSRXZyVXZiBZaiFZaSRYZyFZaiRYaCVYZyVYaCVZZyVZaClYZhtechxecyBhdSBidyFidyFieCFjdiVidCFkeCFkeSFleSFlei9hbyZofCVpfjRkcSZpfjVkcSdpfiZqfydqfidqfyVrgSdrgShrgSdsgShsgTZodzpndDZpdzZpeDZqeDZqeTppdjtqdjtqdztvfj9vez9vfDtxfzxxfjxxgEFwfUFwfkFxflF7hFB8hFV6gleBjHOYnniYnXido32eonihqI6us46zt4+0uJS0uJS1uJS1uZS5vpS6vpS6v5m7vZm7vpm7v5m8v6TCw6rHx6rHyKvHyKXN0arO0bDNzrDOz6rT16vT16vT2KvU2LDU17XT1LDV17DV2LDW2LDW2bXX2MHh4cbn58fo6Mzu7v///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////yH+FUNyZWF0ZWQgd2l0aCBUaGUgR0lNUAAh+QQBCgD/ACwAAAAARwBEAAAI/gA9CRxIsKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsWPETo8WKVLkiJPHkwI7FToj5MYNNH5GlkS5MZObCAQECLAAA8hLPzNpXowkJUCBBBAkKEiwE4YZoCaFUsQURwiQIDUwEEjAtenToFIhghSpyA/LHFgxBACA4EUYQlHDThw70mxLHTOI0NEkNyPdkYnAGuxUqVNFwob7FrxUp1DchyD/yHGscazgg50EMRFj6HFDqjI+cPY88O/lglSFoKGc0KYHC2kuRZxURQEDC2A6FwQJiOUNGmooKaQtoEHs4VgcSMgSKSKkKRIySOhwvHQhNDEiCFjwYo3whJC2/ihPEoj0QEhcokMZZL61Gw/RJZCPazPCAAYexPw5TTB8dBPVHYReBhkAKBtkhpRRAoEGDkRUADuJcUh7BEXiRQYcSKBFcwhZyEEIHGz4USBOYChfeQKllsNqFPaXRXQZcMHhQR6GEIKMEkFyBYwNekIXfwfZlAKB67VX440zPiSkiSIeRuKHKQRYECQvfljkiE58iORQXHwYYpIECQmllApZxkiXIF5ZEZUw4ojZkyA2yVBqaOjxhJZRHkjRkhl4IUlCkaC5JUOZLSEABS2ooOWXFnUC5xd/vpllnGAipMkcKygXnZaDrrljn5GWFpIfZJTwoQps6FlmIEjAaKON/hyouacbGAxwBYdjmTUEDhZIYCV7Di3JqY15NrqSEHBYwskjve0aQQEGRGdjF5Um5GgSvtp4wgkhbMDcRX/5gd2zBjhAYAavUguRmNpyG2sfI8UrU4u7MTvuAOYS+CqscjZ0bbYhuGtCDUAUbPBP81prb3YDwFhBBcNyMEKqEbkGsLtLcaVxUz7BRJJnKt0LowIe2LBDCouCMMaEHyVoqrb7xizdUk314HFJywIixgMNE0gyDFTcYUcRXqrMskT/cspBBRM03TTEWs7M8RuNXMfryB44tUceVvAwJAdG06uQxVqqYEMQaKNdgwcFKODrh1IfoQcYPMM4Qg1PlbVz/sMShN2oy1oagQci8tr1w9ptv50BC1GQcIDPGOjnyCaFiKEBjPkd3Wgg2I6pKl2GI55AEnNbIIAHeDvGSeWXE+h3RuxWMB9mIZV1FtXHwoQz6zC+7hfnPI5WZu04hzSTSpb3vrLYFb8XH3WqfsS768t71InLBJ7I/GDTZ+B7R/8ySKa/3X/vkbDai1V+9UKFX+D41q6vuVDoz06o/Ntj5H6PZeKvmCf1Q1H8kkegFJBhfnLZH/wGgok2tI5AShDg/wDohq+lDzODaAKMwLbAsCgweikpBBlEoDwE/i+AIPPfBAnyQRaqcIVhqqCJ7Ie8B5oPhj4CnvgO1MAHGtCEajikoAXnw4kMwigDEcxfAnX4vkYYYoS962AQLSYd0oHBhuwLImYMMQb4ZAAFLvCi97KoxS2OwQIJkAAELkA9IJbRhWjwQQpg9EMl4hAkfMAWBCX4RobYpFYekGIfd5M71gzSX8az4yFxGBAAOw==') no-repeat top right;
73
72
  background-color: #cee;
74
73
  overflow: hidden;
75
74
  } .curve {
@@ -0,0 +1,3375 @@
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
+
1322
+ Thu Feb 8 11:18:46 JST 2007 m.fellinger@gmail.com
1323
+ * this fixes some issues with rubygems/rdoc
1324
+
1325
+ Thu Feb 8 10:28:49 JST 2007 m.fellinger@gmail.com
1326
+ * little hack for RDoc::usage so it will work with a gem too.
1327
+
1328
+ Thu Feb 8 01:31:46 JST 2007 m.fellinger@gmail.com
1329
+ * add rspec as dependency
1330
+
1331
+ Thu Feb 8 01:21:13 JST 2007 m.fellinger@gmail.com
1332
+ * nicer exit
1333
+
1334
+ Wed Feb 7 19:37:10 JST 2007 m.fellinger@gmail.com
1335
+ * remove foul language ;)
1336
+
1337
+ Wed Feb 7 19:36:04 JST 2007 m.fellinger@gmail.com
1338
+ * added :distribute task and fixed a small typo
1339
+
1340
+ Wed Feb 7 19:07:25 JST 2007 m.fellinger@gmail.com
1341
+ tagged 0.0.6
1342
+
1343
+ Wed Feb 7 19:06:54 JST 2007 m.fellinger@gmail.com
1344
+ * 0.0.6
1345
+
1346
+ Wed Feb 7 19:06:38 JST 2007 m.fellinger@gmail.com
1347
+ * working around a bug in Hpricot 0.5
1348
+
1349
+ Wed Feb 7 19:06:24 JST 2007 m.fellinger@gmail.com
1350
+ * update changelog
1351
+
1352
+ Wed Feb 7 19:02:15 JST 2007 m.fellinger@gmail.com
1353
+ * this introduces a new startup/shutdown hook system
1354
+
1355
+ Wed Feb 7 19:00:52 JST 2007 m.fellinger@gmail.com
1356
+ * update changelog, fixing Rakefile and making bin/ramaze a bit nicer.
1357
+
1358
+ Tue Feb 6 23:44:03 JST 2007 m.fellinger@gmail.com
1359
+ * fixing typo in Rakefile
1360
+
1361
+ Tue Feb 6 17:29:23 JST 2007 m.fellinger@gmail.com
1362
+ * adding documentation for all traits.
1363
+
1364
+ Tue Feb 6 17:29:09 JST 2007 m.fellinger@gmail.com
1365
+ * improving Hash#keys_to_sym
1366
+
1367
+ Tue Feb 6 17:28:42 JST 2007 m.fellinger@gmail.com
1368
+ * adding the files for the allison-template
1369
+
1370
+ Tue Feb 6 17:28:25 JST 2007 m.fellinger@gmail.com
1371
+ * add rake allison for the improved allison rdoc-template
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
+
1376
+ Tue Feb 6 16:08:35 JST 2007 manveru@weez-int.com
1377
+ * add a post install message for the gem and add documentation for Tool::Create
1378
+
1379
+ Tue Feb 6 13:51:17 JST 2007 manveru@weez-int.com
1380
+ * handle referer for mongrel too
1381
+
1382
+ Tue Feb 6 13:50:29 JST 2007 manveru@weez-int.com
1383
+ * 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
1384
+
1385
+ Tue Feb 6 13:49:03 JST 2007 manveru@weez-int.com
1386
+ * fixing rake rdoc, adding rake readme2html and adding rake as dependency
1387
+
1388
+ Sun Feb 4 23:34:54 JST 2007 manveru@weez-int.com
1389
+ * adding some more methods to Store::Default
1390
+
1391
+ Sun Feb 4 22:50:29 JST 2007 manveru@weez-int.com
1392
+ * finally make ramaze --create project work
1393
+
1394
+ Mon Feb 5 11:30:34 JST 2007 m.fellinger@gmail.com
1395
+ * minor changes to README
1396
+
1397
+ Mon Feb 5 11:23:41 JST 2007 m.fellinger@gmail.com
1398
+ * adding todo
1399
+
1400
+ Mon Feb 5 11:23:21 JST 2007 m.fellinger@gmail.com
1401
+ * update documentation for Global
1402
+
1403
+ Mon Feb 5 11:23:13 JST 2007 m.fellinger@gmail.com
1404
+ * update doc/TODO
1405
+
1406
+ Mon Feb 5 11:21:25 JST 2007 m.fellinger@gmail.com
1407
+ * little patch to rake todolist
1408
+
1409
+ Sat Feb 3 08:45:15 JST 2007 manveru@weez-int.com
1410
+ * 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's extended anyway)
1411
+
1412
+ Sat Feb 3 08:09:37 JST 2007 manveru@weez-int.com
1413
+ * use proto/public for static lookup, not lib/public
1414
+
1415
+ Sat Feb 3 08:09:25 JST 2007 manveru@weez-int.com
1416
+ * fixing logger for files
1417
+
1418
+ Sat Feb 3 08:07:46 JST 2007 manveru@weez-int.com
1419
+ * 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.
1420
+
1421
+ Sat Feb 3 08:07:26 JST 2007 manveru@weez-int.com
1422
+ * move lib/public to lib/proto/public
1423
+
1424
+ Sat Feb 3 08:06:33 JST 2007 manveru@weez-int.com
1425
+ * add tool/create and change the bin/ramaze for ramaze --create myapp, which basically copies the proto-directory from lib/proto
1426
+
1427
+ Sat Feb 3 08:06:18 JST 2007 manveru@weez-int.com
1428
+ * uh, forgot the source of these two files
1429
+
1430
+ Sat Feb 3 08:05:32 JST 2007 manveru@weez-int.com
1431
+ * add the snippets for Hash and Symbol
1432
+
1433
+ Sat Feb 3 08:05:01 JST 2007 manveru@weez-int.com
1434
+ * update Rakefile for testing and superior options for rdoc
1435
+
1436
+ Sat Feb 3 08:03:42 JST 2007 manveru@weez-int.com
1437
+ * remove lib/test
1438
+
1439
+ Sat Feb 3 08:02:45 JST 2007 manveru@weez-int.com
1440
+ * move lib/test/request_maker into the rake-task request
1441
+
1442
+ Sat Feb 3 08:02:03 JST 2007 manveru@weez-int.com
1443
+ * patch the specs to work in the new directory
1444
+
1445
+ Sat Feb 3 08:01:21 JST 2007 manveru@weez-int.com
1446
+ * move test_helper to spec/spec_helper and all_tests to spec_all
1447
+
1448
+ Sat Feb 3 08:00:50 JST 2007 manveru@weez-int.com
1449
+ * move test to spec
1450
+
1451
+ Sat Feb 3 04:45:39 JST 2007 manveru@weez-int.com
1452
+ * tons of little changes to make dispatcher work again, also adding support for defining your Global.inform_to in a YAML file ('stdout', 'stderr', :stdout, :stderr or a filename)
1453
+
1454
+ Fri Feb 2 21:14:46 JST 2007 m.fellinger@gmail.com
1455
+ * yet another typo
1456
+
1457
+ Fri Feb 2 21:13:38 JST 2007 m.fellinger@gmail.com
1458
+ * typo
1459
+
1460
+ Fri Feb 2 21:12:10 JST 2007 m.fellinger@gmail.com
1461
+ * document String#snake_case
1462
+
1463
+ Fri Feb 2 21:11:03 JST 2007 m.fellinger@gmail.com
1464
+ * docu for String#camel_case
1465
+
1466
+ Fri Feb 2 21:07:29 JST 2007 m.fellinger@gmail.com
1467
+ * MAJOR update to README ;) - now it should be a lot more RDoc-able
1468
+
1469
+ Fri Feb 2 20:39:37 JST 2007 m.fellinger@gmail.com
1470
+ * update docs for Template::Amrita2
1471
+
1472
+ Fri Feb 2 20:37:47 JST 2007 m.fellinger@gmail.com
1473
+ * remove the Template::Stupid
1474
+
1475
+ Fri Feb 2 20:33:16 JST 2007 m.fellinger@gmail.com
1476
+ * document some more snippets
1477
+
1478
+ Fri Feb 2 20:24:54 JST 2007 m.fellinger@gmail.com
1479
+ * adding docs for OpenStruct#temp
1480
+
1481
+ Fri Feb 2 20:20:46 JST 2007 m.fellinger@gmail.com
1482
+ * add the last bits of code and documentation for request/response/session (mostly the ::current method)
1483
+
1484
+ Fri Feb 2 20:20:07 JST 2007 m.fellinger@gmail.com
1485
+ * a little bit nicer API in Dispatcher, but most importantly, fully documented!
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
+
1493
+ Fri Feb 2 14:32:26 JST 2007 manveru@weez-int.com
1494
+ * first draft of documentation for dispatcher
1495
+
1496
+ Fri Feb 2 14:24:48 JST 2007 manveru@weez-int.com
1497
+ * completing documentation of ramaze.rb and lib/test/test_helper
1498
+
1499
+ Fri Feb 2 14:24:19 JST 2007 manveru@weez-int.com
1500
+ * completing documentation for Ramaze::Template
1501
+
1502
+ Fri Feb 2 14:24:07 JST 2007 manveru@weez-int.com
1503
+ * minor changes and full documenation for Gestalt
1504
+
1505
+ Fri Feb 2 14:23:42 JST 2007 manveru@weez-int.com
1506
+ * completing documentation of adapter/mongrel adapter/webrick
1507
+
1508
+ Fri Feb 2 14:01:44 JST 2007 manveru@weez-int.com
1509
+ * taking advantage of a custom external config-file... i won't build an automatic loading of that file since it's just a oneliner to load it. this is for the blog-example
1510
+
1511
+ Fri Feb 2 14:01:01 JST 2007 manveru@weez-int.com
1512
+ * support for mapping controllers as symbols/strings, looking up the constants on startup.
1513
+
1514
+ Thu Feb 1 22:47:06 JST 2007 manveru@weez-int.com
1515
+ * testing redirect_referer in tc_helper_redirect
1516
+
1517
+ Thu Feb 1 22:46:16 JST 2007 manveru@weez-int.com
1518
+ * updating tc_helper_auth for the different ways to set the auth_table
1519
+
1520
+ Thu Feb 1 22:45:30 JST 2007 manveru@weez-int.com
1521
+ * this adds the possibility to add a base url for the context (like path to a controller)... nasty, nasty stuff
1522
+
1523
+ Thu Feb 1 22:45:01 JST 2007 manveru@weez-int.com
1524
+ * make rake all_tests compatible for tinderbox and a little bit prettier
1525
+
1526
+ Thu Feb 1 22:44:15 JST 2007 manveru@weez-int.com
1527
+ * use request.referer and add request.local_net? from nitro
1528
+
1529
+ Thu Feb 1 22:43:32 JST 2007 manveru@weez-int.com
1530
+ * restructuring and documenting AuthHelper
1531
+
1532
+ Thu Feb 1 22:43:11 JST 2007 manveru@weez-int.com
1533
+ * use ancestral_trait for aspects
1534
+
1535
+ Thu Feb 1 22:42:53 JST 2007 manveru@weez-int.com
1536
+ * add documentation for the Rakefile tasks
1537
+
1538
+ Thu Feb 1 20:40:42 JST 2007 manveru@weez-int.com
1539
+ * remove a bit of debugging-info from AspectHelper
1540
+
1541
+ Thu Feb 1 20:39:36 JST 2007 manveru@weez-int.com
1542
+ * adding stack functionality in the AuthHelper by default. So once you are logged in, you will be redirected back to the last known position.
1543
+
1544
+ Thu Feb 1 20:39:05 JST 2007 manveru@weez-int.com
1545
+ * simplify the code in helper.rb a little bit
1546
+
1547
+ Wed Jan 31 22:33:16 JST 2007 manveru@weez-int.com
1548
+ * small updates to the README again, adding some links.
1549
+
1550
+ Wed Jan 31 22:22:35 JST 2007 manveru@weez-int.com
1551
+ * adding the Liquid templating-engine (Template::Liquid) complete with tests and example.
1552
+
1553
+ Wed Jan 31 22:19:59 JST 2007 manveru@weez-int.com
1554
+ * 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.
1555
+
1556
+ Wed Jan 31 13:35:06 JST 2007 manveru@weez-int.com
1557
+ * another Inform => Informer for erubis and amrita2
1558
+
1559
+ Wed Jan 31 13:34:18 JST 2007 manveru@weez-int.com
1560
+ * adding Haml example in examples/templates
1561
+
1562
+ Wed Jan 31 13:06:47 JST 2007 manveru@weez-int.com
1563
+ * updating README
1564
+
1565
+ Wed Jan 31 13:05:26 JST 2007 manveru@weez-int.com
1566
+ * adding Haml Templating-engine. (Template::Haml)
1567
+
1568
+ Wed Jan 31 01:09:22 JST 2007 manveru@weez-int.com
1569
+ * add a tc_error
1570
+
1571
+ Wed Jan 31 01:06:50 JST 2007 manveru@weez-int.com
1572
+ * fixing Element => Template::Element
1573
+
1574
+ Tue Jan 30 22:58:16 JST 2007 manveru@weez-int.com
1575
+ * limiting the backtrace for the errorpage to 0..20 to make it speedier, requiring coderay
1576
+
1577
+ Tue Jan 30 22:57:28 JST 2007 manveru@weez-int.com
1578
+ * putting Element and Morpher in the Ramaze::Template namespace, prefixing the Ramaze::BASEDIR
1579
+
1580
+ Tue Jan 30 22:57:00 JST 2007 manveru@weez-int.com
1581
+ * fixing dispatcher errorhandling for webrick... was broken, as usual.
1582
+
1583
+ Tue Jan 30 22:56:26 JST 2007 manveru@weez-int.com
1584
+ * adapt the errorpage and give it really neat new CodeRay highlighting, the old one was b0rken ages ago.
1585
+
1586
+ Tue Jan 30 21:42:15 JST 2007 manveru@weez-int.com
1587
+ * 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)
1588
+
1589
+ Tue Jan 30 21:41:06 JST 2007 manveru@weez-int.com
1590
+ * 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.
1591
+
1592
+ Tue Jan 30 21:39:13 JST 2007 manveru@weez-int.com
1593
+ * just a little nicety ;)
1594
+
1595
+ Tue Jan 30 21:38:24 JST 2007 manveru@weez-int.com
1596
+ * remove the old errorpage-cruft from the error.rb, it will in future serve for some general errors that Ramaze will use.
1597
+
1598
+ Tue Jan 30 21:37:52 JST 2007 manveru@weez-int.com
1599
+ * make dispatcher aware of error-handling (not just that hardcoded errorpage-stuff
1600
+
1601
+ Tue Jan 30 21:37:00 JST 2007 manveru@weez-int.com
1602
+ * create the new error.xhtml and error.css in order to finally get some sane structure in error-handling.
1603
+
1604
+ Tue Jan 30 20:00:37 JST 2007 manveru@weez-int.com
1605
+ * show the error-message as well when Template.transform fails.
1606
+
1607
+ Tue Jan 30 20:00:10 JST 2007 manveru@weez-int.com
1608
+ * remove Template from the pipeline again, just causing problems with multiple evaluation.
1609
+
1610
+ Tue Jan 30 19:59:15 JST 2007 manveru@weez-int.com
1611
+ * splitting out Element.transform into multiple methods, this is the preparation to make it a bit more... itelligent :)
1612
+
1613
+ Mon Jan 29 23:59:38 JST 2007 manveru@weez-int.com
1614
+ * _yet_ another way how webrick handles cookies... this is getting tiresome :P
1615
+
1616
+ Mon Jan 29 23:59:14 JST 2007 manveru@weez-int.com
1617
+ * if the action is a symbol convert to string before escaping
1618
+
1619
+ Mon Jan 29 23:58:26 JST 2007 manveru@weez-int.com
1620
+ * changes to morpher and rearranging the pipeline... evaluating twice should be avoided somehow...
1621
+
1622
+ Mon Jan 29 23:57:59 JST 2007 manveru@weez-int.com
1623
+ * vast upgrade of AuthHelper
1624
+
1625
+ Mon Jan 29 23:57:30 JST 2007 manveru@weez-int.com
1626
+ * support different arity for pre-aspects
1627
+
1628
+ Mon Jan 29 23:57:11 JST 2007 manveru@weez-int.com
1629
+ * final version of the blog (for the time being, as always ;)
1630
+
1631
+ Mon Jan 29 22:32:00 JST 2007 manveru@weez-int.com
1632
+ * remove the pointers to EntryController and remove the list.xhtml
1633
+
1634
+ Mon Jan 29 22:28:49 JST 2007 manveru@weez-int.com
1635
+ * remove the EntryController and use MainController instead
1636
+
1637
+ Mon Jan 29 22:27:05 JST 2007 manveru@weez-int.com
1638
+ * move the templates for the wiki to the root template-folder
1639
+
1640
+ Mon Jan 29 22:25:38 JST 2007 manveru@weez-int.com
1641
+ * use the cleaner Global.setup instead of direct assignment
1642
+
1643
+ Mon Jan 29 22:25:20 JST 2007 manveru@weez-int.com
1644
+ * fixing session for non-POST
1645
+
1646
+ Mon Jan 29 22:24:44 JST 2007 manveru@weez-int.com
1647
+ * remove the old index of blog, we'll implement that more minimalistic
1648
+
1649
+ Mon Jan 29 22:17:27 JST 2007 manveru@weez-int.com
1650
+ * remove miniwiki and move microwiki to whywiki
1651
+
1652
+ Mon Jan 29 21:22:46 JST 2007 m.fellinger@gmail.com
1653
+ * huuge patch (kinda) to support cookies via POST with Net::HTTP to webrick, improves some tests and remove tc_helper_crud
1654
+
1655
+ Mon Jan 29 21:22:24 JST 2007 m.fellinger@gmail.com
1656
+ * prevent stack from answering if the stack is empty
1657
+
1658
+ Mon Jan 29 21:22:06 JST 2007 m.fellinger@gmail.com
1659
+ * little typo, forgot comma ;)
1660
+
1661
+ Mon Jan 29 20:14:42 JST 2007 m.fellinger@gmail.com
1662
+ * uhm... remove model... again? :)
1663
+
1664
+ Mon Jan 29 20:13:57 JST 2007 m.fellinger@gmail.com
1665
+ * removing the CrudHelper stuff again, it's just confusing and quite worthless in practice.
1666
+
1667
+ Mon Jan 29 20:10:02 JST 2007 m.fellinger@gmail.com
1668
+ * little fix in tc_helper_form in case Og isn't there.
1669
+
1670
+ Mon Jan 29 20:09:27 JST 2007 m.fellinger@gmail.com
1671
+ * as promised, using throw(:respond) now to do redirection properly
1672
+
1673
+ Mon Jan 29 20:07:39 JST 2007 m.fellinger@gmail.com
1674
+ * 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)
1675
+
1676
+ Mon Jan 29 20:06:36 JST 2007 m.fellinger@gmail.com
1677
+ * alias Ramaze.start with Ramaze.new
1678
+
1679
+ Mon Jan 29 20:06:13 JST 2007 m.fellinger@gmail.com
1680
+ * a little more explanation in the examples/hello
1681
+
1682
+ Mon Jan 29 20:05:39 JST 2007 m.fellinger@gmail.com
1683
+ * adding ramaze --console for starting up an irb-session while the server runs in the background
1684
+
1685
+ Mon Jan 29 16:41:05 JST 2007 m.fellinger@gmail.com
1686
+ * Ramaze.autoreload instead of Kernel.autoreload
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
+
1691
+ Mon Jan 29 15:03:28 JST 2007 manveru@weez-int.com
1692
+ * the adapter should return only one thread to watch...
1693
+
1694
+ Mon Jan 29 14:56:06 JST 2007 manveru@weez-int.com
1695
+ * implement multiple ports for webrick + tests
1696
+
1697
+ Mon Jan 29 14:55:46 JST 2007 manveru@weez-int.com
1698
+ * implement for mongrel + tests
1699
+
1700
+ Mon Jan 29 14:54:24 JST 2007 manveru@weez-int.com
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
1702
+
1703
+ Sun Jan 28 15:46:11 JST 2007 manveru@weez-int.com
1704
+ * add documentation and fix minor bugs in ramaze, ramaze/global and ramaze/inform
1705
+
1706
+ Sun Jan 28 15:34:08 JST 2007 manveru@weez-int.com
1707
+ * document ramaze/template and remove the require of ramaze/model
1708
+
1709
+ Sun Jan 28 15:33:41 JST 2007 manveru@weez-int.com
1710
+ * it should be :transform_pipeline, not :template_pipeline
1711
+
1712
+ Sun Jan 28 15:29:35 JST 2007 manveru@weez-int.com
1713
+ * remove lib/ramaze/model.rb - nowhere used anyway :P
1714
+
1715
+ Sun Jan 28 15:27:30 JST 2007 manveru@weez-int.com
1716
+ * documentation for adapter/mongrel, adapter/webrick, AuthHelper and CacheHelper
1717
+
1718
+ Sun Jan 28 15:22:24 JST 2007 manveru@weez-int.com
1719
+ * set the default method for mongrels log-method to Informer#<<
1720
+
1721
+ Sun Jan 28 15:01:37 JST 2007 manveru@weez-int.com
1722
+ * documentation for: FeedHelper, StackHelper and FormHelper
1723
+
1724
+ Sun Jan 28 14:28:00 JST 2007 manveru@weez-int.com
1725
+ * remove #instance? was a nice hack but we don't use it anywhere
1726
+
1727
+ Sun Jan 28 14:27:03 JST 2007 manveru@weez-int.com
1728
+ * fixing rake undocmented... missed out some methods and added some too much
1729
+
1730
+ Sun Jan 28 14:25:14 JST 2007 manveru@weez-int.com
1731
+ * remove test/tc_helper, it was just a copy of test/tc_helper_redirect ... makes my autocomplete a little bit faster ;)
1732
+
1733
+ Sun Jan 28 14:24:53 JST 2007 manveru@weez-int.com
1734
+ * use head instead of @head in the response
1735
+
1736
+ Sun Jan 28 14:24:00 JST 2007 manveru@weez-int.com
1737
+ * template/ramaze uses render_action instead of render_method... another ancestral_trait
1738
+
1739
+ Sun Jan 28 14:23:43 JST 2007 manveru@weez-int.com
1740
+ * docs for template/markaby
1741
+
1742
+ Sun Jan 28 14:23:14 JST 2007 manveru@weez-int.com
1743
+ * replace the clumsy ancestors_trait by ancestral_trait
1744
+
1745
+ Sun Jan 28 14:22:28 JST 2007 manveru@weez-int.com
1746
+ * a little bit of docs for store/default - still pondering about removing it since it's not used anywhere... also remove the [] and []= method, they should be handled by method_missing anyway.
1747
+
1748
+ Sun Jan 28 14:21:07 JST 2007 manveru@weez-int.com
1749
+ * 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
1750
+
1751
+ Sun Jan 28 14:20:24 JST 2007 manveru@weez-int.com
1752
+ * Ramaze::Informer instead of Ramaze::Inform for autoreload output
1753
+
1754
+ Sun Jan 28 14:20:10 JST 2007 manveru@weez-int.com
1755
+ * make Informer respond to << for WEBrick
1756
+
1757
+ Sun Jan 28 14:19:10 JST 2007 manveru@weez-int.com
1758
+ * it's Global.inform_ ... no Hash anymore for easier defaults
1759
+
1760
+ Sun Jan 28 14:18:24 JST 2007 manveru@weez-int.com
1761
+ * new defaults for Global plus a little bit of documentation-stubs... we really should make a seperate documentation in doc/ for the options.
1762
+
1763
+ Sun Jan 28 14:17:04 JST 2007 manveru@weez-int.com
1764
+ * check for the :benchmark tag in the adapter
1765
+
1766
+ Sun Jan 28 14:16:42 JST 2007 manveru@weez-int.com
1767
+ * make mongrel log as #debug instead of info
1768
+
1769
+ Sun Jan 28 14:16:13 JST 2007 manveru@weez-int.com
1770
+ * Global.autoreload is now a simple integer, no mapping of modes to integers, since we don't have modes anymore
1771
+
1772
+ Sun Jan 28 14:15:30 JST 2007 manveru@weez-int.com
1773
+ * close the thing Inform logs to at shutdown
1774
+
1775
+ Sun Jan 28 14:14:40 JST 2007 manveru@weez-int.com
1776
+ * small change, in case the adapter doesn't respond to #stop
1777
+
1778
+ Sun Jan 28 14:13:30 JST 2007 manveru@weez-int.com
1779
+ * little change in examples/element
1780
+
1781
+ Sun Jan 28 14:12:18 JST 2007 manveru@weez-int.com
1782
+ * adjust the bin/ramaze for the new Inform and use RDocs parser for the output of help, version and copyright.
1783
+
1784
+ Fri Jan 26 23:22:53 JST 2007 manveru@weez-int.com
1785
+ * typo
1786
+
1787
+ Fri Jan 26 23:22:20 JST 2007 manveru@weez-int.com
1788
+ * move init_global a bit forward so it's available right from the start.
1789
+
1790
+ Fri Jan 26 23:21:29 JST 2007 manveru@weez-int.com
1791
+ * update the Global for the new Inform
1792
+
1793
+ Fri Jan 26 23:20:41 JST 2007 manveru@weez-int.com
1794
+ * patch the rest of the system for the new Inform
1795
+
1796
+ Fri Jan 26 23:19:48 JST 2007 manveru@weez-int.com
1797
+ * rewrite Inform to be tag-based and a lot simpler :)
1798
+
1799
+ Fri Jan 26 13:52:42 JST 2007 manveru@weez-int.com
1800
+ * finally set a default mapping to {} at require Global
1801
+
1802
+ Fri Jan 26 13:52:17 JST 2007 manveru@weez-int.com
1803
+ * prevent errors in case we pass Coderay some empty piece of code
1804
+
1805
+ Fri Jan 26 13:51:13 JST 2007 manveru@weez-int.com
1806
+ * supporting mongrels send_file, should give some decent speedups.
1807
+
1808
+ Thu Jan 25 13:52:55 JST 2007 manveru@weez-int.com
1809
+ * append a newline to the output of CrudHelper... makes CLI-use easier
1810
+
1811
+ Thu Jan 25 13:52:20 JST 2007 manveru@weez-int.com
1812
+ * add the examples/crud.rb to show how to use the CrudHelper
1813
+
1814
+ Wed Jan 24 20:28:55 JST 2007 manveru@weez-int.com
1815
+ * for subsequent starts of ramaze in tests we finally have the :fake_start option that updates the Global but doesn't do much else, so that the original instance can just continue to work, i like the implementation... but our Global slowly gets stuffed :)
1816
+
1817
+ Wed Jan 24 20:26:16 JST 2007 manveru@weez-int.com
1818
+ * 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 'crud => YourStore, :name => "blah"' which maps to /blah...
1819
+
1820
+ Wed Jan 24 20:22:41 JST 2007 manveru@weez-int.com
1821
+ * 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 'route', which request should send what method.
1822
+
1823
+ Wed Jan 24 14:50:15 JST 2007 manveru@weez-int.com
1824
+ * introduce custom morphs and add even more docs... ratio must be 2:1 by now :)
1825
+
1826
+ Tue Jan 23 21:09:16 JST 2007 manveru@weez-int.com
1827
+ * adding documentation for Morpher#transform and making the rescue a lot better.
1828
+
1829
+ Tue Jan 23 20:34:33 JST 2007 manveru@weez-int.com
1830
+ * rearrange tc_heper_form to resemble tc_morpher in regard to the require-failsafe
1831
+
1832
+ Tue Jan 23 20:32:32 JST 2007 manveru@weez-int.com
1833
+ * add template/ramaze/morpher and tests for it, it requires hpricot at the moment but got a graceful fallback that just won't process morphers... maybe i can whip up a pure ruby variant later, but the code using hpricot is just sweet :)
1834
+
1835
+ Tue Jan 23 20:30:41 JST 2007 manveru@weez-int.com
1836
+ * add test for headers in tc_request and add a method for raw_get that gives you the original object from open() back
1837
+
1838
+ Sun Jan 21 03:16:56 JST 2007 manveru@weez-int.com
1839
+ * remove cruft from helper/feed
1840
+
1841
+ Mon Jan 22 21:25:19 JST 2007 manveru@weez-int.com
1842
+ * CrudHelper and testcase
1843
+
1844
+ Mon Jan 22 19:56:21 JST 2007 manveru@weez-int.com
1845
+ * fixing tons of typos in the README
1846
+
1847
+ Mon Jan 22 19:46:42 JST 2007 manveru@weez-int.com
1848
+ * fail gently on require rubygems... we probably should remove that requires completly...
1849
+
1850
+ Mon Jan 22 17:39:32 JST 2007 manveru@weez-int.com
1851
+ * add some more tests for the previous bug (request.params instead of request.query)
1852
+
1853
+ Mon Jan 22 17:32:28 JST 2007 manveru@weez-int.com
1854
+ * fix request[key] and request[key] = value
1855
+
1856
+ Mon Jan 22 17:28:43 JST 2007 manveru@weez-int.com
1857
+ * add an example for the usage of Element in examples/element.rb
1858
+
1859
+ Mon Jan 22 14:45:16 JST 2007 manveru@weez-int.com
1860
+ * make tc_request pass again, request.body.read instead
1861
+
1862
+ Mon Jan 22 14:42:59 JST 2007 manveru@weez-int.com
1863
+ * fixing helper/feed
1864
+
1865
+ Mon Jan 22 14:40:10 JST 2007 manveru@weez-int.com
1866
+ * add exitstatus checking for all_tests
1867
+
1868
+ Mon Jan 22 14:37:25 JST 2007 manveru@weez-int.com
1869
+ * reimplementation of Element, making code a bit cleaner (but longer... and possibly harder to understand?) also adding some tests for <Element />
1870
+
1871
+ Fri Jan 19 21:39:52 JST 2007 manveru@weez-int.com
1872
+ * document lib/test/test_helper
1873
+
1874
+ Fri Jan 19 21:39:31 JST 2007 manveru@weez-int.com
1875
+ * document lib/test/all_tests
1876
+
1877
+ Fri Jan 19 21:39:15 JST 2007 manveru@weez-int.com
1878
+ * document tool/tidy
1879
+
1880
+ Fri Jan 19 21:38:55 JST 2007 manveru@weez-int.com
1881
+ * complete documentation of template/ramaze/element
1882
+
1883
+ Fri Jan 19 21:38:23 JST 2007 manveru@weez-int.com
1884
+ * add/remove documentation from snippets/kernel/self_method
1885
+
1886
+ Fri Jan 19 21:13:30 JST 2007 manveru@weez-int.com
1887
+ * change rake uncommented to rake undocumented
1888
+
1889
+ Fri Jan 19 21:12:26 JST 2007 manveru@weez-int.com
1890
+ * document all of Inform
1891
+
1892
+ Fri Jan 19 21:07:27 JST 2007 manveru@weez-int.com
1893
+ * document all of Trinity
1894
+
1895
+ Fri Jan 19 21:07:14 JST 2007 manveru@weez-int.com
1896
+ * document all of trinity/session
1897
+
1898
+ Fri Jan 19 21:06:56 JST 2007 manveru@weez-int.com
1899
+ * document all of trinity/response
1900
+
1901
+ Fri Jan 19 21:06:34 JST 2007 manveru@weez-int.com
1902
+ * document all of trinity/request
1903
+
1904
+ Fri Jan 19 21:05:42 JST 2007 manveru@weez-int.com
1905
+ * don't include the dot-graph here (yet), also show all methods (private, protected)
1906
+
1907
+ Fri Jan 19 20:10:25 JST 2007 manveru@weez-int.com
1908
+ * new rake todolist and the file it generates
1909
+
1910
+ Fri Jan 19 14:31:44 JST 2007 manveru@weez-int.com
1911
+ * 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)
1912
+
1913
+ Fri Jan 19 13:54:11 JST 2007 manveru@weez-int.com
1914
+ * extending FeedHelper and testcase, now attributes to tags are possible... (just for the enclosing class for now)
1915
+
1916
+ Fri Jan 19 13:32:57 JST 2007 manveru@weez-int.com
1917
+ * don't duplicate body by reading it, the user can always see it with request.body.read in the controller.
1918
+
1919
+ Fri Jan 19 00:13:58 JST 2007 manveru@weez-int.com
1920
+ * set the trinity-methods to private, we don't want them to be accessable
1921
+
1922
+ Fri Jan 19 00:11:04 JST 2007 manveru@weez-int.com
1923
+ * ignore memcached in the tests if it's not installed
1924
+
1925
+ Thu Jan 18 22:57:49 JST 2007 manveru@weez-int.com
1926
+ * fixing the controller-method-lookup
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
+
1934
+ Thu Jan 18 22:44:18 JST 2007 manveru@weez-int.com
1935
+ * remove the useless invalidate_cache method from CacheHelper
1936
+
1937
+ Thu Jan 18 22:43:14 JST 2007 manveru@weez-int.com
1938
+ * make rake record a bit less annoying ;)
1939
+
1940
+ Thu Jan 18 22:41:47 JST 2007 manveru@weez-int.com
1941
+ * add example/caching.rb
1942
+
1943
+ Thu Jan 18 22:28:07 JST 2007 manveru@weez-int.com
1944
+ * 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'm very satisfied :)
1945
+
1946
+ Thu Jan 18 21:25:01 JST 2007 manveru@weez-int.com
1947
+ * test/tc_aspect.rb => test/tc_helper_aspect.rb
1948
+
1949
+ Thu Jan 18 20:43:16 JST 2007 manveru@weez-int.com
1950
+ * provide a little anonymous gulp-class to catch the stuff Og sends out in the testcase, finally the rake test looks pretty enough :)
1951
+
1952
+ Thu Jan 18 20:33:35 JST 2007 manveru@weez-int.com
1953
+ * add Kernel#silently, to temporarly turn off warnings on reassinging constants and use it in session.rb
1954
+
1955
+ Thu Jan 18 13:50:48 JST 2007 manveru@weez-int.com
1956
+ * add/remove some todos
1957
+
1958
+ Thu Jan 18 13:49:42 JST 2007 manveru@weez-int.com
1959
+ * introduce caching now for sessions as well, setting the adapter for tc_request back to mongrel since webrick doesn't implement PUT (fix that too)
1960
+
1961
+ Thu Jan 18 13:35:36 JST 2007 manveru@weez-int.com
1962
+ * 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)
1963
+
1964
+ Thu Jan 18 13:35:19 JST 2007 manveru@weez-int.com
1965
+ * rewrite tc_helper_feed
1966
+
1967
+ Thu Jan 18 13:34:58 JST 2007 manveru@weez-int.com
1968
+ * better implementation of the tc_global, it would fail on slow or busy systems
1969
+
1970
+ Thu Jan 18 13:34:29 JST 2007 manveru@weez-int.com
1971
+ * support PUT and DELETE
1972
+
1973
+ Thu Jan 18 13:33:57 JST 2007 manveru@weez-int.com
1974
+ * rewrite FeedHelper, still not functional, but a lot nicer to build XML from objects
1975
+
1976
+ Wed Jan 17 00:18:30 JST 2007 manveru@weez-int.com
1977
+ * provide some info about where the adapter attempts to connect... also fix debugging-output in tests
1978
+
1979
+ Wed Jan 17 00:18:06 JST 2007 manveru@weez-int.com
1980
+ * remove require of fastthread, they finally fixed it
1981
+
1982
+ Wed Jan 17 00:17:48 JST 2007 manveru@weez-int.com
1983
+ * add handling of multipart (file-uploads)
1984
+
1985
+ Mon Jan 15 21:17:42 JST 2007 manveru@weez-int.com
1986
+ * all_tests gives _much_ prettier and more informative output... still gotta use systemu for catching that nasty output from Og though...
1987
+
1988
+ Mon Jan 15 21:16:55 JST 2007 manveru@weez-int.com
1989
+ * redirect takes now a :status argument, for your very own redirect-status-code
1990
+
1991
+ Mon Jan 15 20:53:16 JST 2007 manveru@weez-int.com
1992
+ * fix the spaces ;)
1993
+
1994
+ Mon Jan 15 20:52:43 JST 2007 manveru@weez-int.com
1995
+ * run fix-end-spaces and add-copyright before rake record
1996
+
1997
+ Mon Jan 15 20:50:45 JST 2007 manveru@weez-int.com
1998
+ * rake fix-end-spaces, new task to remove spaces at end of line where not needed ;)
1999
+
2000
+ Mon Jan 15 20:50:29 JST 2007 manveru@weez-int.com
2001
+ * add a .each method to GlobalStruct
2002
+
2003
+ Mon Jan 15 20:48:21 JST 2007 manveru@weez-int.com
2004
+ * 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.
2005
+
2006
+ Mon Jan 15 14:42:43 JST 2007 manveru@weez-int.com
2007
+ * add rake patchsize to show how many patches we got
2008
+
2009
+ Mon Jan 15 14:15:49 JST 2007 manveru@weez-int.com
2010
+ * nicer handling of SIGINT
2011
+
2012
+ Sun Jan 14 09:10:50 JST 2007 manveru@weez-int.com
2013
+ * add example/microwiki, like miniwiki but total reimplementation using Template::Ramaze, should do one for every templating-engine to show usage
2014
+
2015
+ Sun Jan 14 09:10:08 JST 2007 manveru@weez-int.com
2016
+ * run tests per default on port 7007 and only on 127.0.0.1, avoids interfering with running apps
2017
+
2018
+ Sun Jan 14 09:09:48 JST 2007 manveru@weez-int.com
2019
+ * improve shutdown
2020
+
2021
+ Sun Jan 14 09:09:24 JST 2007 manveru@weez-int.com
2022
+ * rearrange and add the Global parameters a little bit
2023
+
2024
+ Sun Jan 14 09:08:56 JST 2007 manveru@weez-int.com
2025
+ * provide a content_type for the error-page... old bug, need to add some tests for the errorpage...
2026
+
2027
+ Sun Jan 14 09:08:33 JST 2007 manveru@weez-int.com
2028
+ * clean the setting of response/request/sessions a little bit
2029
+
2030
+ Sun Jan 14 09:07:44 JST 2007 manveru@weez-int.com
2031
+ * CGI.unescape all parameters of GET/POST
2032
+
2033
+ Sun Jan 14 09:06:39 JST 2007 manveru@weez-int.com
2034
+ * use method_missing to catch all the transactions for YAML::Store, cleans the API quite a bit and provides more functionality
2035
+
2036
+ Sun Jan 14 07:28:57 JST 2007 manveru@weez-int.com
2037
+ tagged 0.0.5
2038
+
2039
+ Sun Jan 14 07:28:33 JST 2007 manveru@weez-int.com
2040
+ * Ramaze 0.0.5
2041
+
2042
+ Sun Jan 14 07:28:04 JST 2007 manveru@weez-int.com
2043
+ * update CHANGELOG
2044
+
2045
+ Sun Jan 14 07:27:20 JST 2007 manveru@weez-int.com
2046
+ * added changelog task that updates doc/CHANGELOG based on doc/changes.txt (from rake changes)
2047
+
2048
+ Sun Jan 14 07:26:15 JST 2007 manveru@weez-int.com
2049
+ * ran add-copyright once again
2050
+
2051
+ Sun Jan 14 07:20:50 JST 2007 manveru@weez-int.com
2052
+ * update README a bit
2053
+
2054
+ Sun Jan 14 06:53:17 JST 2007 manveru@weez-int.com
2055
+ * update and extend testcases for tc_cache
2056
+
2057
+ Sun Jan 14 06:52:54 JST 2007 manveru@weez-int.com
2058
+ * change Rakefile to sweep out cache.yaml and run rake clean after rake test
2059
+
2060
+ Sun Jan 14 06:49:14 JST 2007 manveru@weez-int.com
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
2062
+
2063
+ Sat Jan 13 07:12:07 JST 2007 manveru@weez-int.com
2064
+ * add tc_feed_helper
2065
+
2066
+ Sat Jan 13 07:11:56 JST 2007 manveru@weez-int.com
2067
+ * add tc_cache
2068
+
2069
+ Sat Jan 13 07:11:28 JST 2007 manveru@weez-int.com
2070
+ * autoreload now has its own method on Ramaze and can be turned off by Global.autoreload = false
2071
+
2072
+ Sat Jan 13 07:10:51 JST 2007 manveru@weez-int.com
2073
+ * require 'ramaze/cache' (not yet used)
2074
+
2075
+ Sat Jan 13 07:10:20 JST 2007 manveru@weez-int.com
2076
+ * use Set instead of Array for the Controllers
2077
+
2078
+ Sat Jan 13 07:09:33 JST 2007 manveru@weez-int.com
2079
+ * finally fix the problem of having another application running (we can detect it now!)
2080
+
2081
+ Sat Jan 13 07:09:01 JST 2007 manveru@weez-int.com
2082
+ * use Set instead of Array in autoreload... makes it a bit nicer
2083
+
2084
+ Sat Jan 13 07:08:21 JST 2007 manveru@weez-int.com
2085
+ * fix FeedHelper, had one <feed> too much
2086
+
2087
+ Sat Jan 13 07:07:50 JST 2007 manveru@weez-int.com
2088
+ * first version of (real) cache
2089
+
2090
+ Thu Jan 11 23:00:53 JST 2007 manveru@weez-int.com
2091
+ * simple CacheHelper
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
+
2108
+ Mon Jan 8 22:38:33 JST 2007 manveru@weez-int.com
2109
+ * stop some squeaking of the wheel and added a little comment of the why
2110
+
2111
+ Mon Jan 8 17:38:21 JST 2007 manveru@weez-int.com
2112
+ * fix feed.rb _again_
2113
+
2114
+ Mon Jan 8 18:37:14 JST 2007 manveru@weez-int.com
2115
+ * check before undef method id in Feed::Bag, that makes it better suited for autoreload
2116
+
2117
+ Mon Jan 8 18:15:30 JST 2007 manveru@weez-int.com
2118
+ * escape the stuff we get (possibly dangerous)
2119
+
2120
+ Mon Jan 8 16:28:02 JST 2007 manveru@weez-int.com
2121
+ * serious extension of TCFormHelper
2122
+
2123
+ Mon Jan 8 16:27:46 JST 2007 manveru@weez-int.com
2124
+ * remove useless code in ramaze.rb
2125
+
2126
+ Mon Jan 8 16:26:47 JST 2007 manveru@weez-int.com
2127
+ * 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 :|
2128
+
2129
+ Mon Jan 8 16:26:33 JST 2007 manveru@weez-int.com
2130
+ * make error-output prettier
2131
+
2132
+ Mon Jan 8 16:25:49 JST 2007 manveru@weez-int.com
2133
+ * FormHelper now handles Date and works! (total rewrite of the option-handling)
2134
+
2135
+ Mon Jan 8 16:25:22 JST 2007 manveru@weez-int.com
2136
+ * add 'docs' in the FeedHelper :)
2137
+
2138
+ Mon Jan 8 16:24:57 JST 2007 manveru@weez-int.com
2139
+ * little prettification in dispatcher
2140
+
2141
+ Mon Jan 8 12:55:09 JST 2007 manveru@weez-int.com
2142
+ * fixed test (for rcov)
2143
+
2144
+ Mon Jan 8 12:54:19 JST 2007 manveru@weez-int.com
2145
+ * not yet completed rewrite of form-helper
2146
+
2147
+ Mon Jan 8 12:53:45 JST 2007 manveru@weez-int.com
2148
+ * extend FormHelper test
2149
+
2150
+ Mon Jan 8 11:44:52 JST 2007 manveru@weez-int.com
2151
+ * Session.current added
2152
+
2153
+ Mon Jan 8 11:44:27 JST 2007 manveru@weez-int.com
2154
+ * fix Inform, make output a bit nicer again
2155
+
2156
+ Mon Jan 8 11:43:24 JST 2007 manveru@weez-int.com
2157
+ * two fixes, use AuthHelper::PASSWORD rather than a preset one (still defaults to 'passwort')
2158
+
2159
+ Mon Jan 8 11:43:02 JST 2007 manveru@weez-int.com
2160
+ * inform on using cached version
2161
+
2162
+ Fri Jan 5 23:14:28 JST 2007 manveru@weez-int.com
2163
+ * fix OpenStruct#temp
2164
+
2165
+ Fri Jan 5 09:37:32 JST 2007 manveru@weez-int.com
2166
+ * changes in Template::Ramaze again, mostly passing filenames to eval
2167
+
2168
+ Fri Jan 5 06:35:43 JST 2007 manveru@weez-int.com
2169
+ * add a very simple AuthHelper
2170
+
2171
+ Sat Jan 6 00:10:47 JST 2007 manveru@weez-int.com
2172
+ * some comfy changes in Inform
2173
+
2174
+ Sat Jan 6 00:07:40 JST 2007 manveru@weez-int.com
2175
+ * first implementation of FeedHelper
2176
+
2177
+ Fri Jan 5 08:56:27 JST 2007 manveru@weez-int.com
2178
+ * add copyright to files that still lack it
2179
+
2180
+ Fri Jan 5 08:56:09 JST 2007 manveru@weez-int.com
2181
+ * rake add_copyright adds copyright to files that don't have it :)
2182
+
2183
+ Fri Jan 5 06:27:48 JST 2007 manveru@weez-int.com
2184
+ * stub for a TC to send a file.
2185
+
2186
+ Fri Jan 5 06:26:48 JST 2007 manveru@weez-int.com
2187
+ * patch the parsing of GET/POST parameters again... accidentially used escape instead of unescape :P
2188
+
2189
+ Fri Jan 5 06:26:07 JST 2007 manveru@weez-int.com
2190
+ * this little patch uses the ability of erubis to eval with a filename to give better error-reports
2191
+
2192
+ Thu Jan 4 03:47:10 JST 2007 manveru@weez-int.com
2193
+ * fixing POST-requests
2194
+
2195
+ Thu Jan 4 03:46:50 JST 2007 manveru@weez-int.com
2196
+ * add String.camel_case String.snake_case
2197
+
2198
+ Tue Jan 2 14:32:24 JST 2007 manveru@weez-int.com
2199
+ * smaller changes not really worth mentioning :P
2200
+
2201
+ Tue Jan 2 14:32:02 JST 2007 manveru@weez-int.com
2202
+ * pass on parameter-parsing to CGI.parse
2203
+
2204
+ Tue Jan 2 14:31:23 JST 2007 manveru@weez-int.com
2205
+ * set an instance variable instead of checking for arity of render-method (@hash) for Elements
2206
+
2207
+ Tue Jan 2 14:30:59 JST 2007 manveru@weez-int.com
2208
+ * fix form-helper in case there is no control
2209
+
2210
+ Tue Jan 2 14:30:36 JST 2007 manveru@weez-int.com
2211
+ * fix url for stylesheet of error-page
2212
+
2213
+ Tue Jan 2 10:03:21 JST 2007 manveru@weez-int.com
2214
+ * don't break this test if we got no Og... suboptimal :|
2215
+
2216
+ Tue Jan 2 10:01:17 JST 2007 manveru@weez-int.com
2217
+ * rewrite the usage of the render-method a bit to be clear :)
2218
+
2219
+ Mon Jan 1 19:55:47 JST 2007 manveru@weez-int.com
2220
+ * extending tc_session
2221
+
2222
+ Mon Jan 1 07:10:12 JST 2007 manveru@weez-int.com
2223
+ * fix ramaze for fastthread-require... and split shutdown into shutoff/shutdown for more granularity
2224
+
2225
+ Mon Jan 1 07:09:08 JST 2007 manveru@weez-int.com
2226
+ * add the rake uncommented task, this is a very simple method that shows you which methods are not documented yet (alpha phase, it's got loads of bugs... but is quite helpful already just as a rough overview)
2227
+
2228
+ Mon Jan 1 07:08:20 JST 2007 manveru@weez-int.com
2229
+ * modify all the testcases to fit the new ramaze-method inside context... also split tc_adapter into tc_adapter_mongrel/tc_adapter_webrick
2230
+
2231
+ Mon Jan 1 07:05:37 JST 2007 manveru@weez-int.com
2232
+ * 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
2233
+
2234
+ Sun Dec 31 23:33:43 JST 2006 manveru@weez-int.com
2235
+ * 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
2236
+
2237
+ Sun Dec 31 23:32:51 JST 2006 manveru@weez-int.com
2238
+ * 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)
2239
+
2240
+ Sun Dec 31 23:32:22 JST 2006 manveru@weez-int.com
2241
+ * added OpenStruct#temp to create temporary copies just with an updated table
2242
+
2243
+ Sat Dec 30 06:57:13 JST 2006 manveru@weez-int.com
2244
+ * support for element-parameters and some tests for it
2245
+
2246
+ Fri Dec 29 21:01:42 JST 2006 manveru@weez-int.com
2247
+ * forgot one Logger => Inform in autoreload
2248
+
2249
+ Fri Dec 29 14:00:20 JST 2006 manveru@weez-int.com
2250
+ * Ramaze::Logger => Ramaze::Inform - avoid clashes with the tons of other Logger thingies out there
2251
+
2252
+ Fri Dec 29 13:42:23 JST 2006 manveru@weez-int.com
2253
+ * fix tc_tidy
2254
+
2255
+ Fri Dec 29 13:25:19 JST 2006 manveru@weez-int.com
2256
+ * change from digest/sha1 to digest/sha2 - would someone explain me what this does?
2257
+
2258
+ Fri Dec 29 13:24:48 JST 2006 manveru@weez-int.com
2259
+ * fixing diverse issues with latest rubygems update
2260
+
2261
+ Tue Dec 26 07:01:15 JST 2006 manveru@weez-int.com
2262
+ * give the markaby-templates in the miniwiki-example the proper ext.
2263
+
2264
+ Mon Dec 25 03:52:03 JST 2006 manveru@weez-int.com
2265
+ * stop autoreload from failing from some mysterious bug...
2266
+
2267
+ Mon Dec 25 03:51:18 JST 2006 manveru@weez-int.com
2268
+ * fix the error-page to work with the new template-implementation... also remove the old Gestalt-code, it's in darcs anyway
2269
+
2270
+ Sat Dec 23 05:28:35 JST 2006 manveru@weez-int.com
2271
+ * blog/template/entry/list.rmze
2272
+
2273
+ Sat Dec 23 05:27:47 JST 2006 manveru@weez-int.com
2274
+ * snippet/kernel/rescue_require.rb
2275
+
2276
+ Sat Dec 23 05:26:17 JST 2006 manveru@weez-int.com
2277
+ * additional specification for tc_element
2278
+
2279
+ Sat Dec 23 05:26:04 JST 2006 manveru@weez-int.com
2280
+ * add test/tc_aspect
2281
+
2282
+ Sat Dec 23 05:24:58 JST 2006 manveru@weez-int.com
2283
+ * restructure test_helper for fastthread...
2284
+
2285
+ Sat Dec 23 05:24:38 JST 2006 manveru@weez-int.com
2286
+ * reimplementation of session... mainly better hash
2287
+
2288
+ Sat Dec 23 05:22:06 JST 2006 manveru@weez-int.com
2289
+ * typo
2290
+
2291
+ Sat Dec 23 05:21:15 JST 2006 manveru@weez-int.com
2292
+ * fix a serious bug with the HEREDOC in the template/ramaze... if we don't prefix a character it will break if the hash starts with a number (oddly enough, this happens very seldom)
2293
+
2294
+ Sat Dec 23 05:20:24 JST 2006 manveru@weez-int.com
2295
+ * add the helper/aspect
2296
+
2297
+ Sat Dec 23 05:20:10 JST 2006 manveru@weez-int.com
2298
+ * prepare the helper for addition of aspect
2299
+
2300
+ Sat Dec 23 05:18:53 JST 2006 manveru@weez-int.com
2301
+ * do not load fastthread in adapter/mongrel, if it has not been required so far by ramaze.rb it's too late already and we get only an annoying warning.
2302
+
2303
+ Sat Dec 23 05:18:12 JST 2006 manveru@weez-int.com
2304
+ * minor restructuring for ramaze.rb requires (mainly cause of fastthread)
2305
+
2306
+ Sat Dec 23 03:02:39 JST 2006 manveru@weez-int.com
2307
+ * fix problem for fastthread-require, it has to be loaded before everything else (especially mongrel and/or thread)
2308
+
2309
+ Wed Dec 20 16:33:40 JST 2006 manveru@weez-int.com
2310
+ * fix tc_template_ramaze for the restructuring (you don't have to call transform() in the controller anymore)
2311
+
2312
+ Wed Dec 20 16:33:11 JST 2006 manveru@weez-int.com
2313
+ * move the trap... now that i know that it uses continuations we should propably use a different technique...
2314
+
2315
+ Wed Dec 20 16:30:17 JST 2006 manveru@weez-int.com
2316
+ * make find_template private, fix the :transform_pipeline and add a little comment
2317
+
2318
+ Wed Dec 20 16:30:03 JST 2006 manveru@weez-int.com
2319
+ * fixing Element for passing parameters
2320
+
2321
+ Wed Dec 20 16:28:34 JST 2006 manveru@weez-int.com
2322
+ * 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
2323
+
2324
+ Wed Dec 20 16:26:11 JST 2006 manveru@weez-int.com
2325
+ * 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
2326
+
2327
+ Wed Dec 20 16:25:55 JST 2006 manveru@weez-int.com
2328
+ * little change in the README
2329
+
2330
+ Mon Dec 18 15:09:50 JST 2006 manveru@weez-int.com
2331
+ * adding trait[:transform_pipeline] to Ramaze... this still is very buggy :|
2332
+
2333
+ Mon Dec 18 15:08:51 JST 2006 manveru@weez-int.com
2334
+ * first implementation of ancestor_trait, which searches the ancestors for a trait... this should be made default in a bit
2335
+
2336
+ Mon Dec 18 15:07:49 JST 2006 manveru@weez-int.com
2337
+ * fixes some problems with autoreload when the path/file is b0rken
2338
+
2339
+ Mon Dec 18 14:24:03 JST 2006 manveru@weez-int.com
2340
+ * remove method_missing from Logger... it overwrites alle method_missings everywhere!!!
2341
+
2342
+ Mon Dec 18 14:21:32 JST 2006 manveru@weez-int.com
2343
+ * do not run setup_global in the bin/ramaze anymore, just pass them along... also fixes a problem for method-missing... error doesn't take multiple arguments (string/error-object only)
2344
+
2345
+ Fri Dec 15 22:18:43 JST 2006 manveru@weez-int.com
2346
+ * removed the Timout for the total ramaze{} block for testing, added Ramaze.shutdown for the teardown (still commented, it has nasty side-effects)
2347
+
2348
+ Fri Dec 15 22:16:47 JST 2006 manveru@weez-int.com
2349
+ * 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
2350
+
2351
+ Fri Dec 15 22:15:44 JST 2006 manveru@weez-int.com
2352
+ * use the new Logger-capabilities to finally catch the stuff WEBrick has thrown long enough to STDOUT
2353
+
2354
+ Fri Dec 15 22:14:45 JST 2006 manveru@weez-int.com
2355
+ * Logger.puts is no longer private, added also << as an alias... additionally it can be sneaked into usual Logger-systems and take them over :P
2356
+
2357
+ Fri Dec 15 22:13:58 JST 2006 manveru@weez-int.com
2358
+ * a little bit nicer adapters by use of class << self ... also added a stop-method for future use
2359
+
2360
+ Fri Dec 15 22:12:10 JST 2006 manveru@weez-int.com
2361
+ * rewrite of the tc_global for the new structure
2362
+
2363
+ Fri Dec 15 22:11:00 JST 2006 manveru@weez-int.com
2364
+ * reimplementation of Global - should be a lot saner and simpler now ;)
2365
+
2366
+ Fri Dec 15 14:59:38 JST 2006 manveru@weez-int.com
2367
+ * do not require digest/sha1 in session.rb - it is not used for calculating sessions
2368
+
2369
+ Fri Dec 15 14:52:32 JST 2006 manveru@weez-int.com
2370
+ * 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
2371
+
2372
+ Fri Dec 15 14:51:27 JST 2006 manveru@weez-int.com
2373
+ * some minor changes regarding logging... there has still to be done a lot (esp webrick and logging to files)
2374
+
2375
+ Fri Dec 15 14:48:37 JST 2006 manveru@weez-int.com
2376
+ * this moves all global-stuff into the global.rb - makes ramaze.rb a lot nicer ;) - also added some more tests
2377
+
2378
+ Fri Dec 15 14:20:21 JST 2006 manveru@weez-int.com
2379
+ * patching Global further, we move the defaults in here since they only clutter the ramaze.rb and make handling difficult
2380
+
2381
+ Fri Dec 15 14:19:34 JST 2006 manveru@weez-int.com
2382
+ * do not raise on initialize of Global... it just looks odd ;)
2383
+
2384
+ Fri Dec 15 14:18:56 JST 2006 manveru@weez-int.com
2385
+ * do not timeout requests anymore...
2386
+
2387
+ Fri Dec 15 14:18:08 JST 2006 manveru@weez-int.com
2388
+ * give mongrel a proper way to handle logging
2389
+
2390
+ Thu Dec 14 22:37:16 JST 2006 manveru@weez-int.com
2391
+ * convert the action to a string since we might get symbols as well, and remove some other useless debugging-info
2392
+
2393
+ Thu Dec 14 22:36:40 JST 2006 manveru@weez-int.com
2394
+ * trying to use #{render} and it seems to work, mostly
2395
+
2396
+ Thu Dec 14 14:31:46 JST 2006 manveru@weez-int.com
2397
+ * removing some unneeded debugging-info from the template-file lookup
2398
+
2399
+ Thu Dec 14 14:31:01 JST 2006 manveru@weez-int.com
2400
+ * making the blog-example a good deal neater... next up: sidebar ;)
2401
+
2402
+ Wed Dec 13 22:22:54 JST 2006 manveru@weez-int.com
2403
+ * remove the test for the amrita-controller, it's not neccesary anymore since we have an own testsuite for it...
2404
+
2405
+ Wed Dec 13 22:18:59 JST 2006 manveru@weez-int.com
2406
+ * 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
2407
+
2408
+ Wed Dec 13 22:18:26 JST 2006 manveru@weez-int.com
2409
+ * simplify template/ramaze by inheriting from Template
2410
+
2411
+ Wed Dec 13 22:17:10 JST 2006 manveru@weez-int.com
2412
+ * move the Element in its own file... template/ramaze/element - which also introduces a default way of extending templating-engines with new classes
2413
+
2414
+ Wed Dec 13 22:16:30 JST 2006 manveru@weez-int.com
2415
+ * simplify template/markaby by inheriting from Template
2416
+
2417
+ Wed Dec 13 22:16:06 JST 2006 manveru@weez-int.com
2418
+ * simplify template/erubis by inheriting from Template
2419
+
2420
+ Wed Dec 13 22:15:31 JST 2006 manveru@weez-int.com
2421
+ * simplify the template/amrita2 by inheriting from Template
2422
+
2423
+ Wed Dec 13 22:14:28 JST 2006 manveru@weez-int.com
2424
+ * this introduces Ramaze::Template::Template - it's a really stupid name, but i couldn't come up with anything better... this is the first step in slacking down the templates (they are really not DRY anymore)
2425
+
2426
+ Wed Dec 13 22:12:30 JST 2006 manveru@weez-int.com
2427
+ * a neat little hack to see if an object is an 'instance' or not... though every object is an instance not every object responds to :new (which makes the distinction class/instance for me)
2428
+
2429
+ Wed Dec 13 22:11:46 JST 2006 manveru@weez-int.com
2430
+ * set the priority for the handling thread really high... should give it some advantages over the autoreload-thread in case of high load
2431
+
2432
+ Wed Dec 13 22:10:40 JST 2006 manveru@weez-int.com
2433
+ * equalize the testcases for templates with the prefix tc_template_ (just for ramaze, which was tc_template.rb till now)
2434
+
2435
+ Wed Dec 13 22:06:35 JST 2006 manveru@weez-int.com
2436
+ * small update to the Rakefile... testing task-dependencies :P
2437
+
2438
+ Wed Dec 13 19:09:51 JST 2006 manveru@weez-int.com
2439
+ * 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 ;)
2440
+
2441
+ Wed Dec 13 19:09:12 JST 2006 manveru@weez-int.com
2442
+ * adding an Element for the blog-example... makes overall design a _lot_ nicer :)
2443
+
2444
+ Wed Dec 13 19:08:49 JST 2006 manveru@weez-int.com
2445
+ * giving the blog-example a 'nice' stylesheet
2446
+
2447
+ Wed Dec 13 19:07:59 JST 2006 manveru@weez-int.com
2448
+ * various fixes for the lookup of template/ramaze templates
2449
+
2450
+ Wed Dec 13 19:07:19 JST 2006 manveru@weez-int.com
2451
+ * added implementation of element-handling into the template/ramaze, will add lots of docs later as well.
2452
+
2453
+ Wed Dec 13 19:06:58 JST 2006 manveru@weez-int.com
2454
+ * added the basic structure of Element... maybe put this in its own file later
2455
+
2456
+ Wed Dec 13 19:05:44 JST 2006 manveru@weez-int.com
2457
+ * rewrite of form-helper... should rename it since it works only with Og currently
2458
+
2459
+ Wed Dec 13 19:05:07 JST 2006 manveru@weez-int.com
2460
+ * added a very basic testcases for how Element should work
2461
+
2462
+ Wed Dec 13 13:49:28 JST 2006 manveru@weez-int.com
2463
+ * do not use .rmze templates for markaby, only .mab - this should be done for the other templating-systems as well.
2464
+
2465
+ Wed Dec 13 13:48:48 JST 2006 manveru@weez-int.com
2466
+ * some experiments with the helper-facility in markaby... not really working yet, but we're getting there
2467
+
2468
+ Wed Dec 13 13:48:20 JST 2006 manveru@weez-int.com
2469
+ * do not rescue in markaby anymore, this is done already by markaby itself and it just obfuscates the error-report
2470
+
2471
+ Wed Dec 13 13:47:44 JST 2006 manveru@weez-int.com
2472
+ * better handling of the instance-variable-collection, due to the .flatten it used to break if it encounters and empty array as value
2473
+
2474
+ Wed Dec 13 13:46:38 JST 2006 manveru@weez-int.com
2475
+ * 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)
2476
+
2477
+ Wed Dec 13 13:46:13 JST 2006 manveru@weez-int.com
2478
+ * make ramaze run again, the helper/form really messed things up due to some syntax-errors
2479
+
2480
+ Wed Dec 13 13:45:41 JST 2006 manveru@weez-int.com
2481
+ * unification of the examples/template
2482
+
2483
+ Wed Dec 13 13:44:59 JST 2006 manveru@weez-int.com
2484
+ * introducing examples/templates/template_markaby (not yet working due to some odd bugs using helpers)
2485
+
2486
+ Tue Dec 12 21:52:15 JST 2006 manveru@weez-int.com
2487
+ * now, that's finally a nice README :)
2488
+
2489
+ Tue Dec 12 20:44:44 JST 2006 manveru@weez-int.com
2490
+ * fixing the tests for the templates to use the template_root
2491
+
2492
+ Tue Dec 12 20:43:48 JST 2006 manveru@weez-int.com
2493
+ * this fixes the template-lookup for ramaze, it's now also possible to use trait :template_root in the controller, please read the rdoc for more infos and a small example
2494
+
2495
+ Tue Dec 12 20:43:02 JST 2006 manveru@weez-int.com
2496
+ * small cosmetic update
2497
+
2498
+ Tue Dec 12 00:26:55 JST 2006 manveru@weez-int.com
2499
+ * LOTS of testcases added for markaby
2500
+
2501
+ Tue Dec 12 00:24:57 JST 2006 manveru@weez-int.com
2502
+ * 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
2503
+
2504
+ Tue Dec 12 00:24:29 JST 2006 manveru@weez-int.com
2505
+ * major upgrade for Markaby, should be finally running now :)
2506
+
2507
+ Tue Dec 12 00:23:33 JST 2006 manveru@weez-int.com
2508
+ * class-lookup in the error-template was a bit wrong
2509
+
2510
+ Tue Dec 12 00:23:19 JST 2006 manveru@weez-int.com
2511
+ * added Error::Template
2512
+
2513
+ Mon Dec 11 23:27:02 JST 2006 manveru@weez-int.com
2514
+ * a little beautification :P
2515
+
2516
+ Mon Dec 11 23:26:04 JST 2006 manveru@weez-int.com
2517
+ * lots of additions/changes in the tc_helper_link to reflect the changes made
2518
+
2519
+ Mon Dec 11 23:25:29 JST 2006 manveru@weez-int.com
2520
+ * set the @action instance-variable for use in templates (the examples use it quite a bit, so i thought it would be useful)
2521
+
2522
+ Mon Dec 11 23:25:03 JST 2006 manveru@weez-int.com
2523
+ * require helper.rb in template.rb
2524
+
2525
+ Mon Dec 11 23:24:32 JST 2006 manveru@weez-int.com
2526
+ * Trinity -> Helper update for template/stupid (no idea if we need that one at all anymore...)
2527
+
2528
+ Mon Dec 11 23:23:22 JST 2006 manveru@weez-int.com
2529
+ * 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
2530
+
2531
+ Mon Dec 11 23:22:06 JST 2006 manveru@weez-int.com
2532
+ * Ramaze::Helper instead of Trinity for template/markaby
2533
+
2534
+ Mon Dec 11 23:20:40 JST 2006 manveru@weez-int.com
2535
+ * 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
2536
+
2537
+ Mon Dec 11 23:19:49 JST 2006 manveru@weez-int.com
2538
+ * use Ramaze::Helper instead of Trinity in template/amrita2
2539
+
2540
+ Mon Dec 11 23:18:42 JST 2006 manveru@weez-int.com
2541
+ * 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 => :bar)
2542
+
2543
+ Mon Dec 11 23:18:24 JST 2006 manveru@weez-int.com
2544
+ * use Helper instead of Trinity in Ramaze::Controller
2545
+
2546
+ Mon Dec 11 23:17:39 JST 2006 manveru@weez-int.com
2547
+ * this puts the helper-method into its own module that also includes Trinity for convinience
2548
+
2549
+ Mon Dec 11 23:15:29 JST 2006 manveru@weez-int.com
2550
+ * added examples for templating in ramaze and erubis, more to come
2551
+
2552
+ Mon Dec 11 14:59:11 JST 2006 manveru@weez-int.com
2553
+ * added template/markaby with some tests (not all pass yet... lunchtime is just too short :)
2554
+
2555
+ Sun Dec 10 18:28:41 JST 2006 manveru@weez-int.com
2556
+ * added testcase for link :title
2557
+
2558
+ Sun Dec 10 18:27:59 JST 2006 manveru@weez-int.com
2559
+ * change from load()ing the helpers to require()ing them, so we can update them via autoreload as well (load doesn't add to the $LOADED_FEATURES...)
2560
+
2561
+ Sun Dec 10 18:27:18 JST 2006 manveru@weez-int.com
2562
+ * added redirect_referer to the RedirectHelper - it redirects you directly to where you come from.
2563
+
2564
+ Sat Dec 9 01:57:38 JST 2006 manveru@weez-int.com
2565
+ * small fix for the LinkHelper - would't use :title proper if given more than '/'
2566
+
2567
+ Sat Dec 9 01:56:24 JST 2006 manveru@weez-int.com
2568
+ * 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 ;]
2569
+
2570
+ Sat Dec 9 01:54:51 JST 2006 manveru@weez-int.com
2571
+ * vast extension of the example/blog - added some templates and stuff to the controller, this will use the FormHelper (that i will stub soon)
2572
+
2573
+ Sat Dec 9 01:49:48 JST 2006 manveru@weez-int.com
2574
+ * added a simple testsuite for the blog-example, nothing too heavy yet.
2575
+
2576
+ Thu Dec 7 23:09:10 JST 2006 manveru@weez-int.com
2577
+ * oops, almost forgot to check in this file :)
2578
+
2579
+ Thu Dec 7 22:33:53 JST 2006 manveru@weez-int.com
2580
+ * 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 ;)
2581
+
2582
+ Thu Dec 7 22:32:38 JST 2006 manveru@weez-int.com
2583
+ * Template::Ramaze.transform now takes an optional binding, gotta make this API nicer, since it also takes optional ivs... maybe :binding => binding, :ivs => {} - oh, and commented the nasty #[] for the time being
2584
+
2585
+ Thu Dec 7 21:09:57 JST 2006 manveru@weez-int.com
2586
+ * use STATUS_CODE lookup instead of the direct error-codes
2587
+
2588
+ Thu Dec 7 21:02:35 JST 2006 manveru@weez-int.com
2589
+ * tc_session should use the new get/eget of Context
2590
+
2591
+ Thu Dec 7 21:02:25 JST 2006 manveru@weez-int.com
2592
+ * 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
2593
+
2594
+ Thu Dec 7 20:58:36 JST 2006 manveru@weez-int.com
2595
+ * 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 :)
2596
+
2597
+ Thu Dec 7 20:35:20 JST 2006 manveru@weez-int.com
2598
+ * 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.
2599
+
2600
+ Thu Dec 7 20:34:31 JST 2006 manveru@weez-int.com
2601
+ * moving Context into test_helper - it is used to mock sessions
2602
+
2603
+ Thu Dec 7 20:33:15 JST 2006 manveru@weez-int.com
2604
+ * changing link_raw to R - you can also set titles now with link(:foo, :title => 'foo')
2605
+
2606
+ Thu Dec 7 19:58:49 JST 2006 manveru@weez-int.com
2607
+ * split tc_helper into tc_helper_redirect and tc_helper_link
2608
+
2609
+ Thu Dec 7 19:36:27 JST 2006 manveru@weez-int.com
2610
+ * 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't allow a change of the used adapter, this is fixed now.
2611
+
2612
+ Thu Dec 7 19:36:10 JST 2006 manveru@weez-int.com
2613
+ * update todo for template/ramaze
2614
+
2615
+ Thu Dec 7 19:35:34 JST 2006 manveru@weez-int.com
2616
+ * remove todo 'add host' for webrick, we do that since ages already ;)
2617
+
2618
+ Thu Dec 7 19:34:59 JST 2006 manveru@weez-int.com
2619
+ * some addtional changes... i really gotta fix the rcov-task...
2620
+
2621
+ Thu Dec 7 19:32:26 JST 2006 manveru@weez-int.com
2622
+ * make output of rake todo a little bit nicer
2623
+
2624
+ Wed Dec 6 22:41:57 JST 2006 manveru@weez-int.com
2625
+ tagged 0.0.4
2626
+
2627
+ Wed Dec 6 22:41:08 JST 2006 manveru@weez-int.com
2628
+ * dump version to 0.0.4 the first really nice and stable release
2629
+
2630
+ Wed Dec 6 22:40:05 JST 2006 manveru@weez-int.com
2631
+ * don't pretty-inspect Global at startup anymore
2632
+
2633
+ Wed Dec 6 22:38:45 JST 2006 manveru@weez-int.com
2634
+ * we now have a proper interaction with Global via the bin/ramaze
2635
+
2636
+ Usage: ramaze [switches] startfile [arguments]
2637
+ -a, --adapter=ADAPTER select an adapter [mongrel|webrick]
2638
+ -m, --mongrel use mongrel to process requests
2639
+ -w, --webrick the default
2640
+
2641
+ --mode=LEVEL set the running-mode
2642
+ -b, --benchmark full logging with benchmarks, autoreload 5
2643
+ -d, --debug the default, full logging, autoreload 5
2644
+ -t, --stage log infos/errors, autoreload 10
2645
+ -l, --live log errors, autoreload 20
2646
+ -s, --silent no logging, autoreload 40
2647
+
2648
+ -o, --host which host should ramaze listen for requests
2649
+ default is 0.0.0.0
2650
+ -p, --port what port should ramaze use
2651
+ default is 7000
2652
+
2653
+ -n, --no-errorpage don't use the default errorpage of ramaze
2654
+ helpful if you want to make sure noone can
2655
+ ever see your code by accident or for testing
2656
+ --template-root set a custom template-root for the whole
2657
+ application, please note that ~ is not
2658
+ expanded to your home-directory
2659
+ --autoreload=N set how frequent ramaze should search for
2660
+ updated files in your application
2661
+ default depends on the (-mode)
2662
+ -r, --run-loose don't take control after startup.
2663
+ this is useful for testcases.
2664
+ --cache use the simple caching based on the signature
2665
+ of your requests (experimental)
2666
+ --tidy run Tool::Tidy over text/html output
2667
+
2668
+ -h, --help print this help
2669
+ -v, --version print the version
2670
+ -c, --copyright print the copyrith
2671
+
2672
+ Please report bugs to <m.fellinger at gmail.com>
2673
+
2674
+
2675
+ Wed Dec 6 22:38:13 JST 2006 manveru@weez-int.com
2676
+ * added doc/COPYING and doc/COPYING.ja from the ruby-distribution
2677
+
2678
+ Wed Dec 6 22:37:08 JST 2006 manveru@weez-int.com
2679
+ * added copyright to all .rb files
2680
+
2681
+ Wed Dec 6 20:30:34 JST 2006 manveru@weez-int.com
2682
+ * improved tc_controller a little bit
2683
+
2684
+ Wed Dec 6 20:30:12 JST 2006 manveru@weez-int.com
2685
+ * tc_adapter should use get() instead of its own calling of open
2686
+
2687
+ Wed Dec 6 20:29:55 JST 2006 manveru@weez-int.com
2688
+ * default test-adapter is mongrel again, enables out-of-the-box testing
2689
+
2690
+ Wed Dec 6 20:27:10 JST 2006 manveru@weez-int.com
2691
+ * wrapping webricks server.start in a Thread.new{} again, this provides proper handling of it again. also the default-response status is now 500
2692
+
2693
+ Wed Dec 6 20:26:43 JST 2006 manveru@weez-int.com
2694
+ * removed the params/parse_params from adapter/webrick they will be handled in trinity/request now
2695
+
2696
+ Wed Dec 6 20:22:01 JST 2006 manveru@weez-int.com
2697
+ * moved the get?/post? methods into trinity/request also added put? and delete? for REST
2698
+
2699
+ Tue Dec 5 15:36:36 JST 2006 manveru@weez-int.com
2700
+ * add tests for private methods to the controller
2701
+
2702
+ Tue Dec 5 15:36:15 JST 2006 manveru@weez-int.com
2703
+ * raise error if no template is found in amrita2
2704
+
2705
+ Tue Dec 5 15:36:04 JST 2006 manveru@weez-int.com
2706
+ * small typo in the blog-template
2707
+
2708
+ Mon Dec 4 23:11:48 JST 2006 manveru@weez-int.com
2709
+ * 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 ;)
2710
+
2711
+ Mon Dec 4 22:47:49 JST 2006 manveru@weez-int.com
2712
+ * added extensions .ephp .ec .ejava .escheme .eprl .ejs - i have no idea yet how to implement them, but as a simple reminder ;)
2713
+
2714
+ Mon Dec 4 22:42:08 JST 2006 manveru@weez-int.com
2715
+ * change default-mode for tests to :debug
2716
+
2717
+ Mon Dec 4 22:41:52 JST 2006 manveru@weez-int.com
2718
+ * do not catch errors in the test_helper anymore, everything seems fine now
2719
+
2720
+ Mon Dec 4 22:41:16 JST 2006 manveru@weez-int.com
2721
+ * changed the require-path to match the new require-style inside the testcases
2722
+
2723
+ Mon Dec 4 22:40:30 JST 2006 manveru@weez-int.com
2724
+ * removed the non-working requireing of each testcase (which was previously commented out anyway)
2725
+
2726
+ Mon Dec 4 22:40:10 JST 2006 manveru@weez-int.com
2727
+ * added Template::Erubis
2728
+
2729
+ Mon Dec 4 22:39:04 JST 2006 manveru@weez-int.com
2730
+ * 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.
2731
+
2732
+ Mon Dec 4 22:34:00 JST 2006 manveru@weez-int.com
2733
+ * moved the controller out of the blog/main.rb to blog/src/controller.rb and added an EntryController to take advantage of Og
2734
+
2735
+ Mon Dec 4 22:32:34 JST 2006 manveru@weez-int.com
2736
+ * added an index.rmze with the first extensive ramaze-template to the blog-example - it's supposed to list all the entries
2737
+
2738
+ Mon Dec 4 22:28:12 JST 2006 manveru@weez-int.com
2739
+ * prepare for erubis
2740
+
2741
+ Mon Dec 4 22:27:39 JST 2006 manveru@weez-int.com
2742
+ * avoid aliasing Kernel#method twice
2743
+
2744
+ Mon Dec 4 22:27:15 JST 2006 manveru@weez-int.com
2745
+ * added tc_template_erubis and it passes :)
2746
+
2747
+ Mon Dec 4 22:26:55 JST 2006 manveru@weez-int.com
2748
+ * moved tc_amrita2 to test/
2749
+
2750
+ Mon Dec 4 22:26:37 JST 2006 manveru@weez-int.com
2751
+ * sane trait for the controller
2752
+
2753
+ Mon Dec 4 22:25:34 JST 2006 manveru@weez-int.com
2754
+ * 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)
2755
+
2756
+ Mon Dec 4 22:24:55 JST 2006 manveru@weez-int.com
2757
+ * add a simple template for erubis (standard-extension .rhtml)
2758
+
2759
+ Mon Dec 4 22:23:49 JST 2006 manveru@weez-int.com
2760
+ * 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 :)
2761
+
2762
+ Mon Dec 4 22:22:51 JST 2006 manveru@weez-int.com
2763
+ * give the standard-return-code of 500 if none is set.
2764
+
2765
+ Mon Dec 4 08:57:15 JST 2006 manveru@weez-int.com
2766
+ * added a rcov-task to Rakefil and changed from catching only timeout to everything in the test_helper
2767
+
2768
+ Fri Dec 1 22:59:19 JST 2006 manveru@weez-int.com
2769
+ * changed all testcases from usage of #[] to #{}
2770
+
2771
+ Fri Dec 1 22:59:00 JST 2006 manveru@weez-int.com
2772
+ * extended the tc_template
2773
+
2774
+ Fri Dec 1 22:58:07 JST 2006 manveru@weez-int.com
2775
+ * LOADS of documentation for the template/ramaze and better implementation of the transform (avoiding easily used variables)
2776
+
2777
+ Fri Dec 1 22:57:24 JST 2006 manveru@weez-int.com
2778
+ * minor patch for the case that autoreload doesn't get a valid interval
2779
+
2780
+ Fri Dec 1 22:57:07 JST 2006 manveru@weez-int.com
2781
+ * documentation for helpers
2782
+
2783
+ Fri Dec 1 21:43:02 JST 2006 manveru@weez-int.com
2784
+ * added a pretty good coverage of the helpers in test/tc_helper.rb
2785
+
2786
+ Fri Dec 1 21:42:12 JST 2006 manveru@weez-int.com
2787
+ * output of <?r ?> is no longer considered worthwhile, would have strange effects on arr.each or some other iterators who return self
2788
+
2789
+ Fri Dec 1 21:41:10 JST 2006 manveru@weez-int.com
2790
+ * adding a helper method to Template::Ramaze, use it like: helper :link, :redirect
2791
+
2792
+ Fri Dec 1 21:35:29 JST 2006 manveru@weez-int.com
2793
+ * redirect is now a helper too
2794
+
2795
+ like LinkHelper, but even simpler
2796
+
2797
+ RedirectHelper actually takes advantage of LinkHelper.link_raw to build the links
2798
+ it redirects to.
2799
+ It doesn't do much else than this:
2800
+ setting a status-code of 303 and a head['Location'] = link
2801
+ returning some nice text for visitors who insist on ignoring those hints :P
2802
+
2803
+ example of usage:
2804
+ redirect MainController
2805
+ redirect MainController, :foo
2806
+ redirect 'foo/bar'
2807
+
2808
+ still todo:
2809
+ - setting custom status-code, it ignores any preset ones at the moment
2810
+ - maybe some more options, like a delay
2811
+
2812
+ Fri Dec 1 21:24:35 JST 2006 manveru@weez-int.com
2813
+ * added the LinkHelper, the first of the helpers
2814
+
2815
+ it is included into the Template::Ramaze by default
2816
+
2817
+ this helper tries to get along without any major magic, the only 'magic'
2818
+ thing is that it looks up controller-paths if you pass it a controller
2819
+ the text shown is always the last segmet of the finished link from split('/')
2820
+
2821
+ usage is pretty much shown in test/tc_helper
2822
+ however, to give you some idea of how it actually works, some examples:
2823
+
2824
+ link MainController, :foo #=> '<a href="/foo">foo</a>'
2825
+ link MinorController, :foo #=> '<a href="/minor/foo">foo</a>'
2826
+ link MinorController, :foo, :bar #=> '<a href="/minor/foo/bar">bar</a>'
2827
+ link MainController, :foo, :raw => true #=> '/foo'
2828
+
2829
+ link_raw MainController, :foo #=> '/foo'
2830
+ link_raw MinorController, :foo #=> '/minor/foo'
2831
+ link_raw MinorController, :foo, :bar #=> '/minor/foo/bar'
2832
+
2833
+ still todo:
2834
+ - handling of no passed parameters
2835
+ - setting of a custom link-title, possibly images as well
2836
+ - setting of id or class
2837
+ - taking advantae of Gestalt to build links
2838
+ - lots of other minor niceties, for the moment i'm only concerned to keep
2839
+ it as simple as possible
2840
+
2841
+
2842
+ Fri Dec 1 21:23:19 JST 2006 manveru@weez-int.com
2843
+ * total rewrite of the mongrel-adapter, passing around less stuff and making it a lot more readable
2844
+
2845
+ Fri Dec 1 21:20:54 JST 2006 manveru@weez-int.com
2846
+ * major update to the blog-example, it now works with Og and has a cleaner structure, also some simple templating and multiple controllers
2847
+
2848
+ Fri Dec 1 21:20:23 JST 2006 manveru@weez-int.com
2849
+ * update rake clean to delete leftover vim-tempfiles and data.db
2850
+
2851
+ Thu Nov 30 21:53:41 JST 2006 manveru@weez-int.com
2852
+ * commenting out the testcase for #[]! - this should not be used anymore, for now.
2853
+
2854
+ Thu Nov 30 21:52:52 JST 2006 manveru@weez-int.com
2855
+ * remark about the odd behaviour of the return of a POST, suddenly it just didn't fail anymore, and i have no idea how to reproduce it.
2856
+
2857
+ Thu Nov 30 21:52:08 JST 2006 manveru@weez-int.com
2858
+ * 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'll let it be
2859
+
2860
+ Thu Nov 30 21:51:52 JST 2006 manveru@weez-int.com
2861
+ * extended tc_global
2862
+
2863
+ Thu Nov 30 21:51:20 JST 2006 manveru@weez-int.com
2864
+ * the test_helper methods have now sane timeouts to make things fail faster
2865
+
2866
+ Thu Nov 30 21:50:47 JST 2006 manveru@weez-int.com
2867
+ * just another way to run the tests, commented due to non-functionality
2868
+
2869
+ Thu Nov 30 21:50:10 JST 2006 manveru@weez-int.com
2870
+ * marking the adapter-thread with [:task] = :adapter to make killing easier
2871
+
2872
+ Thu Nov 30 21:49:37 JST 2006 manveru@weez-int.com
2873
+ * give Global responsibility for update itself, makes ramaze.rb cleaner
2874
+
2875
+ Thu Nov 30 21:49:15 JST 2006 manveru@weez-int.com
2876
+ * comment about the bad behaviour of #[] in templates
2877
+
2878
+ Thu Nov 30 21:48:21 JST 2006 manveru@weez-int.com
2879
+ * 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
2880
+
2881
+ Thu Nov 30 21:47:34 JST 2006 manveru@weez-int.com
2882
+ * give poor request a request.params for get/post parameters (post has precendence)
2883
+
2884
+ Thu Nov 30 21:47:09 JST 2006 manveru@weez-int.com
2885
+ * replacing Global with something totally new, we should create dynamic methods though to get some minor speedup
2886
+
2887
+ Thu Nov 30 21:45:03 JST 2006 manveru@weez-int.com
2888
+ * do not use start in examples/simple
2889
+
2890
+ Thu Nov 30 15:53:56 JST 2006 manveru@weez-int.com
2891
+ * embedding tc_amrita2 correctly into a ramaze{} block
2892
+
2893
+ Thu Nov 30 15:53:47 JST 2006 manveru@weez-int.com
2894
+ * typo
2895
+
2896
+ Thu Nov 30 15:53:08 JST 2006 manveru@weez-int.com
2897
+ * adding net/http to test_helper and make some text nicer ;)
2898
+
2899
+ Thu Nov 30 15:52:33 JST 2006 manveru@weez-int.com
2900
+ * this is a fix in case some testcase just hangs, at least you will know which one does
2901
+
2902
+ Thu Nov 30 15:51:34 JST 2006 manveru@weez-int.com
2903
+ * finally fixed the adapter-startup, at least for mongrel... still very weird issues with webrick
2904
+
2905
+ Thu Nov 30 15:50:49 JST 2006 manveru@weez-int.com
2906
+ * start a new process on rake test, avoids possible side-effects
2907
+
2908
+ Thu Nov 30 14:41:52 JST 2006 manveru@weez-int.com
2909
+ * patching the testcases to fit in the new way of testing
2910
+
2911
+ Thu Nov 30 14:40:58 JST 2006 manveru@weez-int.com
2912
+ * 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
2913
+
2914
+ Thu Nov 30 14:40:42 JST 2006 manveru@weez-int.com
2915
+ * nicer output of all_tests
2916
+
2917
+ Thu Nov 30 14:39:57 JST 2006 manveru@weez-int.com
2918
+ * this should improve the startup-behaviour for the adapters... there must be bugs lurking in there though.
2919
+
2920
+ Thu Nov 30 14:38:54 JST 2006 manveru@weez-int.com
2921
+ * 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)
2922
+
2923
+ Thu Nov 30 14:38:14 JST 2006 manveru@weez-int.com
2924
+ * kill all threads except for main on exit... i need some way to get out nicely without exit...
2925
+
2926
+ Thu Nov 30 14:37:25 JST 2006 manveru@weez-int.com
2927
+ * this is a major improvment for the Template::Ramaze - passing (almost) all tests, just slight problems with #[] still
2928
+
2929
+ Thu Nov 30 14:36:55 JST 2006 manveru@weez-int.com
2930
+ * slightly more expressive code in response-creation
2931
+
2932
+ Thu Nov 30 14:36:33 JST 2006 manveru@weez-int.com
2933
+ * no thread in thread anymore for webrick
2934
+
2935
+ Thu Nov 30 14:35:07 JST 2006 manveru@weez-int.com
2936
+ * 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't start your files manually if you want bin/ramaze to start it
2937
+
2938
+ Wed Nov 29 17:44:01 JST 2006 manveru@weez-int.com
2939
+ * added the templates for the tc_template in test/template/
2940
+
2941
+ Wed Nov 29 15:22:05 JST 2006 manveru@weez-int.com
2942
+ * major change in the templating... now using <%= %> <% %> <?r ?> #[] - this needs some extensive testing and is not fully done yet, but getting there...
2943
+
2944
+ Wed Nov 29 15:21:43 JST 2006 manveru@weez-int.com
2945
+ * added tc_template
2946
+
2947
+ Tue Nov 28 21:44:22 JST 2006 manveru@weez-int.com
2948
+ * this improves the templating a tiny bit... however #[]! still fails, we need some serious regex-magic here.
2949
+
2950
+ Tue Nov 28 21:33:21 JST 2006 manveru@weez-int.com
2951
+ * saner tc_store
2952
+
2953
+ Tue Nov 28 21:32:32 JST 2006 manveru@weez-int.com
2954
+ * 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
2955
+
2956
+ Tue Nov 28 21:32:09 JST 2006 manveru@weez-int.com
2957
+ * touch the db before initializing the default-store
2958
+
2959
+ Tue Nov 28 21:31:49 JST 2006 manveru@weez-int.com
2960
+ * minor patch for mongrel-cookies
2961
+
2962
+ Tue Nov 28 20:57:59 JST 2006 manveru@weez-int.com
2963
+ * added a mostly-stub for the new blog-example
2964
+
2965
+ Tue Nov 28 20:57:13 JST 2006 manveru@weez-int.com
2966
+ * added the default-store, this is just a very simple wrapper over YAML::Store and doesn't offer anything really... just to satisfy the tests
2967
+
2968
+ Tue Nov 28 20:56:20 JST 2006 manveru@weez-int.com
2969
+ * move the test-request-methods over from test_get/test_post/request to get/post
2970
+
2971
+ Tue Nov 28 20:54:56 JST 2006 manveru@weez-int.com
2972
+ * update to test_helper, now using get/post instead of test_get/test_post or request
2973
+
2974
+ Tue Nov 28 20:53:26 JST 2006 manveru@weez-int.com
2975
+ * Template::Ramaze now supports extremly simple templating with #[expr] - more to come
2976
+
2977
+ Tue Nov 28 20:53:13 JST 2006 manveru@weez-int.com
2978
+ * fixing sessions for webrick
2979
+
2980
+ Tue Nov 28 20:52:54 JST 2006 manveru@weez-int.com
2981
+ * updated README with coderay-info
2982
+
2983
+ Tue Nov 28 20:51:22 JST 2006 manveru@weez-int.com
2984
+ * don't be so verbose about missing coderay, if someone wants it we should mention it in the README
2985
+
2986
+ Tue Nov 28 20:49:31 JST 2006 manveru@weez-int.com
2987
+ * moving from ann to trait
2988
+
2989
+ Tue Nov 28 20:47:37 JST 2006 manveru@weez-int.com
2990
+ * just a FIXME
2991
+
2992
+ Tue Nov 28 20:45:48 JST 2006 manveru@weez-int.com
2993
+ * lots of improved compatibility between the mongrel and webrick adapter, added respone.content_type
2994
+
2995
+ Tue Nov 28 20:44:54 JST 2006 manveru@weez-int.com
2996
+ * Socket.do_not_reverse_lookup = true # for OSX
2997
+
2998
+ Tue Nov 28 20:43:06 JST 2006 manveru@weez-int.com
2999
+ * removed some debugging-info about timeouted
3000
+
3001
+ Tue Nov 28 20:42:34 JST 2006 manveru@weez-int.com
3002
+ * added small doc-snippets to the simple example about error-page
3003
+
3004
+ Tue Nov 28 20:42:10 JST 2006 manveru@weez-int.com
3005
+ * added indication which file is ran by bin/ramaze
3006
+
3007
+ Tue Nov 28 20:40:47 JST 2006 manveru@weez-int.com
3008
+ * simplified ann, which is now trait (should be double speed ;)
3009
+
3010
+ Tue Nov 28 20:40:02 JST 2006 manveru@weez-int.com
3011
+ * moved add.rb to traits.rb to avoid conflicts with facets (used by Og)
3012
+
3013
+ Fri Nov 24 14:37:07 JST 2006 manveru@weez-int.com
3014
+ * added a testcase for sum (from example/simple)
3015
+
3016
+ Fri Nov 24 14:36:32 JST 2006 manveru@weez-int.com
3017
+ * added a timeout if the port is already used, otherwise it would retry indefinitly
3018
+
3019
+ Fri Nov 24 14:32:15 JST 2006 manveru@weez-int.com
3020
+ * change the default-adapter to webrick for all the poor lads who don't have mongrel yet
3021
+
3022
+ Fri Nov 24 14:31:13 JST 2006 manveru@weez-int.com
3023
+ * added lots of docs and further examples in examples/simple.rb
3024
+
3025
+ Fri Nov 24 14:11:06 JST 2006 manveru@weez-int.com
3026
+ * added some more docs to hello.rb
3027
+
3028
+ Wed Nov 22 19:50:27 JST 2006 manveru@weez-int.com
3029
+ * upgrade of rspec to 0.7
3030
+
3031
+ Sun Nov 5 20:09:04 JST 2006 manveru@weez-int.com
3032
+ * updated CHANGELOG and a bit of docu in tidy
3033
+
3034
+ Sun Nov 5 17:44:20 JST 2006 manveru@weez-int.com
3035
+ * more efficient lookup of the libtidy.so, still relying on `locate`, but you can set it yourself now with Ramaze::Tool::Tidy.ann[:path]
3036
+
3037
+ Sun Nov 5 17:42:38 JST 2006 manveru@weez-int.com
3038
+ * fixing the amrita2 controller to find the correct path for templates (ann[:template_root] to override it)
3039
+
3040
+ Sun Nov 5 17:42:02 JST 2006 manveru@weez-int.com
3041
+ * patches to dispatcher, proper handling of caching and actionless controllers in case of / => index
3042
+
3043
+ Sun Nov 5 17:40:15 JST 2006 manveru@weez-int.com
3044
+ * fixing the tc_controller and added the amrita template for the controller testcase, also added the annotation for template_root
3045
+
3046
+ Sun Nov 5 13:57:58 JST 2006 manveru@weez-int.com
3047
+ * updated the Rakefile and changed to version 0.0.3 - one todo marked as done
3048
+
3049
+ Fri Nov 3 00:13:31 JST 2006 manveru@weez-int.com
3050
+ * changed the amrita testcase to work
3051
+
3052
+ Fri Nov 3 00:13:16 JST 2006 manveru@weez-int.com
3053
+ * default testmode is now :live instead of :silent
3054
+
3055
+ Fri Nov 3 00:12:44 JST 2006 manveru@weez-int.com
3056
+ * added a simple YAMLstore... to be replaced by the real thing
3057
+
3058
+ Fri Nov 3 00:12:29 JST 2006 manveru@weez-int.com
3059
+ * the dispatcher respects actionless controllers now (Amrita2)
3060
+
3061
+ Fri Nov 3 00:10:47 JST 2006 manveru@weez-int.com
3062
+ * added trinity in most places and using the annotations now, also a bit of cleanup
3063
+
3064
+ Fri Nov 3 00:10:13 JST 2006 manveru@weez-int.com
3065
+ * added trinity, to be extracted
3066
+
3067
+ Fri Nov 3 00:10:05 JST 2006 manveru@weez-int.com
3068
+ * added self_method
3069
+
3070
+ Fri Nov 3 00:09:53 JST 2006 manveru@weez-int.com
3071
+ * added new Annotation
3072
+
3073
+ Fri Nov 3 00:09:26 JST 2006 manveru@weez-int.com
3074
+ * added favicon and logo
3075
+
3076
+ Wed Nov 1 08:00:49 JST 2006 manveru@weez-int.com
3077
+ * added testcases for controller and templating of amrita2/ramaze - they still have to be made passing
3078
+
3079
+ Thu Oct 26 19:39:45 JST 2006 manveru@weez-int.com
3080
+ * added a setup for tc_adapter, makes it a bit slower but a lot better
3081
+
3082
+ Thu Oct 26 19:29:22 JST 2006 manveru@weez-int.com
3083
+ * after fix in mongrel, this should work nice again and the tcs should pass
3084
+
3085
+ Thu Oct 26 19:29:00 JST 2006 manveru@weez-int.com
3086
+ * more elegant tc_gestalt
3087
+
3088
+ Thu Oct 26 19:28:35 JST 2006 manveru@weez-int.com
3089
+ * finish up in the ramaze.rb and bring together the loose ends
3090
+
3091
+ Thu Oct 26 19:28:12 JST 2006 manveru@weez-int.com
3092
+ * rewrote the ramaze-template
3093
+
3094
+ Thu Oct 26 19:27:16 JST 2006 manveru@weez-int.com
3095
+ * 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
3096
+
3097
+ Thu Oct 26 19:26:08 JST 2006 manveru@weez-int.com
3098
+ * added pretty_inspect to the response to fit better into the new error-page
3099
+
3100
+ Thu Oct 26 19:25:58 JST 2006 manveru@weez-int.com
3101
+ * implemented the logger-todos
3102
+
3103
+ Thu Oct 26 19:24:55 JST 2006 manveru@weez-int.com
3104
+ * Gestalt is now no subclass of BlankSlate anymore... it was unneccesary and just complicating the whole code. using the simple p-hack again
3105
+
3106
+ Thu Oct 26 19:24:20 JST 2006 manveru@weez-int.com
3107
+ * a really huge update to the errorpage again... remember to remove the logo ;)
3108
+
3109
+ Thu Oct 26 19:23:54 JST 2006 manveru@weez-int.com
3110
+ * added a timeout to the dispatcher and removed some annoying return-statements
3111
+
3112
+ Thu Oct 26 19:23:34 JST 2006 manveru@weez-int.com
3113
+ * added response method to controller-prototype
3114
+
3115
+ Thu Oct 26 19:23:17 JST 2006 manveru@weez-int.com
3116
+ * adapter have now the possibilities to bench requests when mode is :benchmark
3117
+
3118
+ Thu Oct 26 19:20:58 JST 2006 manveru@weez-int.com
3119
+ * updated the miniwiki to use YAML::Store and work correctly in general
3120
+
3121
+ Mon Oct 23 19:36:40 JST 2006 manveru@weez-int.com
3122
+ * added a testcase for params and proper handling of the errors now. (thanks mfp)
3123
+
3124
+ Mon Oct 23 19:36:29 JST 2006 manveru@weez-int.com
3125
+ * output the error if tidy fails
3126
+
3127
+ Mon Oct 23 19:36:05 JST 2006 manveru@weez-int.com
3128
+ * adding __instance_variable_set__ to Gestalt to better handle iv without evaling
3129
+
3130
+ Mon Oct 23 19:35:22 JST 2006 manveru@weez-int.com
3131
+ * better handling of CodeRay inside error-template
3132
+
3133
+ Mon Oct 23 19:34:49 JST 2006 manveru@weez-int.com
3134
+ * little cleanup and adding documentation in the error-page
3135
+
3136
+ Mon Oct 23 19:34:26 JST 2006 manveru@weez-int.com
3137
+ * proper handling of -1 params
3138
+
3139
+ Mon Oct 23 19:33:54 JST 2006 manveru@weez-int.com
3140
+ * adding proper params-handling for webrick, (very very bad proper handling)
3141
+
3142
+ Mon Oct 23 19:33:23 JST 2006 manveru@weez-int.com
3143
+ * remove the require 'rubygems' and error-handling from the adapter itself, that is handled one level lower
3144
+
3145
+ Mon Oct 23 19:33:03 JST 2006 manveru@weez-int.com
3146
+ * added a default in public/css/coderay.css since i will use it quite often.
3147
+
3148
+ Mon Oct 23 19:32:03 JST 2006 manveru@weez-int.com
3149
+ * first templates for Ramaze (called .rmze) and a proper working miniwiki-example - very very simplistic, but does its job so far
3150
+
3151
+ Mon Oct 23 19:31:35 JST 2006 manveru@weez-int.com
3152
+ * yay for my new miniwiki example :)
3153
+
3154
+ Mon Oct 23 17:01:05 JST 2006 manveru@weez-int.com
3155
+ * use webrick in the miniwiki
3156
+
3157
+ Mon Oct 23 16:57:57 JST 2006 manveru@weez-int.com
3158
+ * added codray-highlighting (if installed) and inspecting of request/session/response/global
3159
+
3160
+ Mon Oct 23 16:23:09 JST 2006 manveru@weez-int.com
3161
+ * better handling if the adapter is not found and don't kill the autoreload-threads anymore
3162
+
3163
+ Mon Oct 23 16:21:17 JST 2006 manveru@weez-int.com
3164
+ * update of the Global defaults (most important, added Global.logger[:timestamp|:prefix_(info|error|debug)]
3165
+
3166
+ Mon Oct 23 16:20:33 JST 2006 manveru@weez-int.com
3167
+ * replaced autoreload with the new one (and some settings for the reload-speed based on the Global.mode
3168
+
3169
+ Mon Oct 23 16:19:53 JST 2006 manveru@weez-int.com
3170
+ * replaced the Module.autoload with a require beforehand... the other way just added complexitiy though it's a nice thing :)
3171
+
3172
+ Mon Oct 23 16:18:44 JST 2006 manveru@weez-int.com
3173
+ * usage of Tidy.tidy now possible
3174
+
3175
+ Mon Oct 23 16:18:22 JST 2006 manveru@weez-int.com
3176
+ * reimplementation of autoreload
3177
+
3178
+ Mon Oct 23 16:17:42 JST 2006 manveru@weez-int.com
3179
+ * little update in the request, in case there is no @request.params (webrick)
3180
+
3181
+ Mon Oct 23 16:16:43 JST 2006 manveru@weez-int.com
3182
+ * rather large update to the error-page... not fully finished i fear - but i added CSS so it's going to be nicer to change :)
3183
+
3184
+ Mon Oct 23 16:16:15 JST 2006 manveru@weez-int.com
3185
+ * better use of the Logger in the dispatcher
3186
+
3187
+ Mon Oct 23 16:13:12 JST 2006 manveru@weez-int.com
3188
+ * 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! :)
3189
+
3190
+ Mon Oct 23 16:11:49 JST 2006 manveru@weez-int.com
3191
+ * updates to the mongrel-adapter, better rescue for rubygems/mongrel and nicer usage of Tidy
3192
+
3193
+ Mon Oct 23 16:11:10 JST 2006 manveru@weez-int.com
3194
+ * small updates to the simple example
3195
+
3196
+ Mon Oct 23 16:08:43 JST 2006 manveru@weez-int.com
3197
+ * added the webrick-adapter, it's not perfect, but works smooth so far
3198
+
3199
+ Mon Oct 23 16:07:46 JST 2006 manveru@weez-int.com
3200
+ * added testcase for the adapters (tc_adapter) [mongrel|webrick] so far
3201
+
3202
+ Mon Oct 23 09:13:27 JST 2006 manveru@weez-int.com
3203
+ * moved the HTTP-status codes to http_status.rb from dispatcher.rb
3204
+
3205
+ Mon Oct 23 08:33:05 JST 2006 manveru@weez-int.com
3206
+ * small typo in Logger.debug output ('d-' instead of 'd')
3207
+
3208
+ Mon Oct 23 08:29:14 JST 2006 manveru@weez-int.com
3209
+ * added stub for miniwiki
3210
+
3211
+ Fri Oct 20 18:55:28 JST 2006 manveru@weez-int.com
3212
+ * one todo gone, one added
3213
+
3214
+ Fri Oct 20 18:51:40 JST 2006 manveru@weez-int.com
3215
+ * 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
3216
+
3217
+ Fri Oct 20 18:50:38 JST 2006 manveru@weez-int.com
3218
+ * 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
3219
+
3220
+ Fri Oct 20 18:48:35 JST 2006 manveru@weez-int.com
3221
+ * small fixes to the simple example
3222
+
3223
+ Fri Oct 20 14:53:55 JST 2006 manveru@weez-int.com
3224
+ * added new rake task, todo - it scrapes the source for TODO markers and prints them out.
3225
+
3226
+ Fri Oct 20 10:50:34 JST 2006 manveru@weez-int.com
3227
+ * added documentation and Gestalt.build, which takes a block instead of Gestalt.new
3228
+
3229
+ Fri Oct 20 16:49:36 JST 2006 manveru@weez-int.com
3230
+ * cleaned up the tests a bit and updated the test-runner to show some summary
3231
+
3232
+ Thu Oct 19 19:18:12 JST 2006 manveru@weez-int.com
3233
+ * loooooots of documentation (which is not displayed on rdoc due to some very weird behaviour
3234
+
3235
+ Thu Oct 19 19:16:49 JST 2006 manveru@weez-int.com
3236
+ * 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
3237
+
3238
+ Thu Oct 19 19:14:54 JST 2006 manveru@weez-int.com
3239
+ * very minor cleanup of some methods...
3240
+
3241
+ Thu Oct 19 19:14:40 JST 2006 manveru@weez-int.com
3242
+ * added an rdoc-task to the Rakefile
3243
+
3244
+ Thu Oct 19 19:14:18 JST 2006 manveru@weez-int.com
3245
+ * moved README and CHANGELOG to the new /doc dir
3246
+
3247
+ Thu Oct 19 19:13:26 JST 2006 manveru@weez-int.com
3248
+ * tidy takes now an hash of options and i added extensive documentation ... could use some more though (removed require for rubygems)
3249
+
3250
+ Wed Oct 18 19:27:23 JST 2006 manveru@weez-int.com
3251
+ * lots of smaller changes, extracted tidy from the mongrel-adapter to a new dir named tool - where most helper-stuff should go to.
3252
+
3253
+ Wed Oct 18 19:27:04 JST 2006 manveru@weez-int.com
3254
+ * updates to global.rb - stuff that doesn't make sense for a singleton
3255
+
3256
+ Wed Oct 18 19:25:31 JST 2006 manveru@weez-int.com
3257
+ * revised most testcases and added tc_global and tc_tidy
3258
+
3259
+ Wed Oct 18 19:25:16 JST 2006 manveru@weez-int.com
3260
+ * added rcov-task
3261
+
3262
+ Wed Oct 18 16:36:37 JST 2006 manveru@weez-int.com
3263
+ * use String#/ instead of File.join
3264
+
3265
+ Wed Oct 18 16:35:04 JST 2006 manveru@weez-int.com
3266
+ * much better handling of restarts and stuff by joining still running mongrel-threads
3267
+
3268
+ Wed Oct 18 16:34:41 JST 2006 manveru@weez-int.com
3269
+ * remove the gostruct.rb
3270
+
3271
+ Wed Oct 18 16:34:08 JST 2006 manveru@weez-int.com
3272
+ * update to README
3273
+
3274
+ Wed Oct 18 16:33:23 JST 2006 manveru@weez-int.com
3275
+ * removing the global openstruct and just use Global...
3276
+
3277
+ Wed Oct 18 15:34:48 JST 2006 manveru@weez-int.com
3278
+ * removing the default-adapter because it's useless and not used
3279
+
3280
+ Wed Oct 18 13:57:50 JST 2006 manveru@weez-int.com
3281
+ * removed a bit of debugging-info from tc_session
3282
+
3283
+ Wed Oct 18 13:55:14 JST 2006 manveru@weez-int.com
3284
+ * this drives in the last nail to support sessions, also speeds up requests a tiny weeny bit ;)
3285
+
3286
+ Wed Oct 18 13:54:04 JST 2006 manveru@weez-int.com
3287
+ * controller now accesses the Thread#[] to get request/session
3288
+
3289
+ Wed Oct 18 13:53:23 JST 2006 manveru@weez-int.com
3290
+ * split up the response in mongrel into set_out and set_head
3291
+
3292
+ Wed Oct 18 13:53:11 JST 2006 manveru@weez-int.com
3293
+ * added ramaze/session
3294
+
3295
+ Wed Oct 18 13:52:41 JST 2006 manveru@weez-int.com
3296
+ * added a session-testcase
3297
+
3298
+ Tue Oct 17 09:52:07 JST 2006 manveru@weez-int.com
3299
+ * updated CHANGELOG
3300
+
3301
+ Tue Oct 17 09:51:30 JST 2006 manveru@weez-int.com
3302
+ tagged Ramaze 0.0.2
3303
+
3304
+ Tue Oct 17 09:50:51 JST 2006 manveru@weez-int.com
3305
+ * tagged 0.0.2 - next version will support sessions (hopefully :)
3306
+
3307
+ Tue Oct 17 09:50:36 JST 2006 manveru@weez-int.com
3308
+ * updated the readmy and rakefile-description a bit
3309
+
3310
+ Tue Oct 17 09:50:13 JST 2006 manveru@weez-int.com
3311
+ * added Ramaze::VERSION
3312
+
3313
+ Tue Oct 17 09:47:00 JST 2006 manveru@weez-int.com
3314
+ * added a SIGINT-trap to cleanly shutdown
3315
+
3316
+ Tue Oct 17 09:29:31 JST 2006 manveru@weez-int.com
3317
+ * added test/tc_request [passes]
3318
+
3319
+ Tue Oct 17 09:29:00 JST 2006 manveru@weez-int.com
3320
+ * further improvment to the testcase-runner and setting default Global.error_page to true
3321
+
3322
+ Mon Oct 16 20:18:33 JST 2006 manveru@weez-int.com
3323
+ * and everything passes now...
3324
+
3325
+ Mon Oct 16 17:52:59 JST 2006 manveru@weez-int.com
3326
+ * patching the test-runner to shut down ramaze before it is run again from the next testcase...
3327
+
3328
+ Mon Oct 16 17:48:09 JST 2006 manveru@weez-int.com
3329
+ * 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
3330
+
3331
+ Mon Oct 16 11:39:42 JST 2006 manveru@weez-int.com
3332
+ * added snippets for String#/
3333
+
3334
+ Mon Oct 16 11:38:47 JST 2006 manveru@weez-int.com
3335
+ * added caller_lines in the snippets
3336
+
3337
+ Mon Oct 16 10:08:51 JST 2006 manveru@weez-int.com
3338
+ * a new snapshot with some more tests and lots of bugs fixed... also working now on the pluggable templating again.
3339
+
3340
+ Sun Oct 15 13:53:32 JST 2006 manveru@weez-int.com
3341
+ * this fixes a bug that lead to problems if you don't define a mapping
3342
+
3343
+ Sun Oct 15 13:52:19 JST 2006 manveru@weez-int.com
3344
+ * 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
3345
+
3346
+ Sun Oct 15 13:51:46 JST 2006 manveru@weez-int.com
3347
+ * by default, require 'pp', i think it's far too useful not to be available all the time
3348
+
3349
+ Sun Oct 15 13:50:47 JST 2006 manveru@weez-int.com
3350
+ * some more info in the CHANGELOG, this will only be updated in releases from now on, the information comes from darcs anyway
3351
+
3352
+ Sun Oct 15 13:49:10 JST 2006 manveru@weez-int.com
3353
+ * changed hello.rb to fit in with the use of the ramaze-binary
3354
+
3355
+ Sun Oct 15 13:48:30 JST 2006 manveru@weez-int.com
3356
+ * updated the Rakefile to prodcue some more useful stuff :) - also knows about the executable 'ramaze' now
3357
+
3358
+ Sun Oct 15 13:47:20 JST 2006 manveru@weez-int.com
3359
+ * updated the README a bit, more to come
3360
+
3361
+ Sun Oct 15 13:44:54 JST 2006 manveru@weez-int.com
3362
+ * added an ramaze executable
3363
+ it can be found in bin/ramaze and you use it like that:
3364
+
3365
+ $ cd example
3366
+ $ ls
3367
+ main.rb
3368
+ $ ramaze
3369
+
3370
+ which will in turn run the main.rb
3371
+ you can give ramaze a parameter for the run-file, more sophisticated parameters are not included (yet)
3372
+
3373
+
3374
+ Sat Oct 14 04:22:49 JST 2006 manveru@weez-int.com
3375
+ * initialize