ramaze 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (304) hide show
  1. data/Rakefile +20 -3
  2. data/bin/ramaze +1 -4
  3. data/doc/AUTHORS +2 -1
  4. data/doc/CHANGELOG +539 -32
  5. data/doc/LEGAL +4 -0
  6. data/doc/meta/announcement.txt +79 -47
  7. data/examples/blog/README +2 -2
  8. data/examples/blog/spec/blog.rb +33 -48
  9. data/examples/blog/src/controller.rb +15 -13
  10. data/examples/blog/src/model.rb +28 -10
  11. data/examples/blog/start.rb +0 -10
  12. data/examples/blog/template/edit.xhtml +1 -1
  13. data/examples/blog/template/index.xhtml +2 -2
  14. data/examples/facebook.rb +152 -0
  15. data/examples/linking.rb +28 -0
  16. data/examples/ramaise.rb +4 -11
  17. data/examples/rammit/spec/rammit.rb +30 -0
  18. data/examples/rammit/src/controller/main.rb +3 -0
  19. data/examples/rammit/src/controller/page.rb +16 -0
  20. data/examples/rammit/src/model.rb +33 -0
  21. data/examples/rammit/start.rb +7 -0
  22. data/examples/rammit/template/index.xhtml +14 -0
  23. data/examples/rammit/template/page/view.xhtml +4 -0
  24. data/examples/rapaste/Rakefile +28 -0
  25. data/examples/rapaste/public/css/active4d.css +114 -0
  26. data/examples/rapaste/public/css/all_hallows_eve.css +72 -0
  27. data/examples/rapaste/public/css/amy.css +147 -0
  28. data/examples/rapaste/public/css/blackboard.css +88 -0
  29. data/examples/rapaste/public/css/brilliance_black.css +605 -0
  30. data/examples/rapaste/public/css/brilliance_dull.css +599 -0
  31. data/examples/rapaste/public/css/cobalt.css +149 -0
  32. data/examples/rapaste/public/css/dawn.css +121 -0
  33. data/examples/rapaste/public/css/display.css +179 -0
  34. data/examples/rapaste/public/css/eiffel.css +121 -0
  35. data/examples/rapaste/public/css/espresso_libre.css +109 -0
  36. data/examples/rapaste/public/css/idle.css +62 -0
  37. data/examples/rapaste/public/css/iplastic.css +80 -0
  38. data/examples/rapaste/public/css/lazy.css +73 -0
  39. data/examples/rapaste/public/css/mac_classic.css +123 -0
  40. data/examples/rapaste/public/css/magicwb_amiga.css +104 -0
  41. data/examples/rapaste/public/css/pastels_on_dark.css +188 -0
  42. data/examples/rapaste/public/css/slush_poppies.css +85 -0
  43. data/examples/rapaste/public/css/spacecadet.css +51 -0
  44. data/examples/rapaste/public/css/sunburst.css +180 -0
  45. data/examples/rapaste/public/css/twilight.css +137 -0
  46. data/examples/rapaste/public/css/zenburnesque.css +91 -0
  47. data/examples/rapaste/public/js/jquery.js +11 -0
  48. data/examples/rapaste/rapaste.sqlite +0 -0
  49. data/examples/rapaste/spec/rapaste.rb +49 -0
  50. data/examples/rapaste/src/controller.rb +69 -0
  51. data/examples/rapaste/src/model.rb +61 -0
  52. data/examples/rapaste/start.rb +20 -0
  53. data/examples/rapaste/template/copy.xhtml +10 -0
  54. data/examples/rapaste/template/index.xhtml +9 -0
  55. data/examples/rapaste/template/layout.xhtml +22 -0
  56. data/examples/rapaste/template/list.xhtml +28 -0
  57. data/examples/rapaste/template/view.xhtml +37 -0
  58. data/examples/sourceview/sourceview.rb +3 -3
  59. data/examples/templates/template_amrita2.rb +1 -3
  60. data/examples/todolist/spec/todolist.rb +15 -18
  61. data/examples/whywiki/spec/whywiki.rb +15 -20
  62. data/examples/whywiki/start.rb +0 -1
  63. data/examples/wikore/spec/wikore.rb +14 -19
  64. data/examples/wiktacular/spec/wiktacular.rb +8 -15
  65. data/lib/proto/{src/controller → controller}/main.rb +4 -4
  66. data/lib/proto/public/css/ramaze_error.css +39 -3
  67. data/lib/proto/public/js/jquery.js +2039 -1020
  68. data/lib/proto/spec/main.rb +27 -0
  69. data/lib/proto/start.rb +5 -5
  70. data/lib/proto/view/error.xhtml +62 -0
  71. data/lib/proto/view/index.xhtml +34 -0
  72. data/lib/proto/view/page.xhtml +15 -0
  73. data/lib/ramaze.rb +9 -7
  74. data/lib/ramaze/action.rb +7 -3
  75. data/lib/ramaze/action/render.rb +15 -5
  76. data/lib/ramaze/adapter.rb +5 -5
  77. data/lib/ramaze/adapter/base.rb +2 -2
  78. data/lib/ramaze/adapter/cgi.rb +1 -1
  79. data/lib/ramaze/adapter/evented_mongrel.rb +1 -1
  80. data/lib/ramaze/adapter/fcgi.rb +2 -2
  81. data/lib/ramaze/adapter/mongrel.rb +1 -1
  82. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +1 -1
  83. data/lib/ramaze/adapter/thin.rb +25 -0
  84. data/lib/ramaze/adapter/webrick.rb +1 -1
  85. data/lib/ramaze/cache.rb +3 -2
  86. data/lib/ramaze/cache/memcached.rb +1 -1
  87. data/lib/ramaze/cache/memory.rb +1 -1
  88. data/lib/ramaze/cache/yaml_store.rb +1 -1
  89. data/lib/ramaze/contrib.rb +1 -1
  90. data/lib/ramaze/contrib/auto_params.rb +12 -5
  91. data/lib/ramaze/contrib/auto_params/get_args.rb +1 -0
  92. data/lib/ramaze/contrib/facebook.rb +23 -0
  93. data/lib/ramaze/contrib/facebook/facebook.rb +168 -0
  94. data/lib/ramaze/contrib/gettext.rb +111 -0
  95. data/lib/ramaze/contrib/gettext/mo.rb +155 -0
  96. data/lib/ramaze/contrib/gettext/po.rb +109 -0
  97. data/lib/ramaze/contrib/gzip_filter.rb +1 -1
  98. data/lib/ramaze/contrib/route.rb +15 -5
  99. data/lib/ramaze/contrib/sequel/fill.rb +1 -1
  100. data/lib/ramaze/controller.rb +10 -4
  101. data/lib/ramaze/controller/error.rb +5 -13
  102. data/lib/ramaze/controller/main.rb +2 -0
  103. data/lib/ramaze/controller/resolve.rb +18 -10
  104. data/lib/ramaze/dispatcher.rb +1 -1
  105. data/lib/ramaze/dispatcher/action.rb +1 -1
  106. data/lib/ramaze/dispatcher/directory.rb +3 -2
  107. data/lib/ramaze/dispatcher/error.rb +5 -5
  108. data/lib/ramaze/dispatcher/file.rb +13 -2
  109. data/lib/ramaze/error.rb +1 -1
  110. data/lib/ramaze/gestalt.rb +2 -2
  111. data/lib/ramaze/global.rb +5 -5
  112. data/lib/ramaze/global/dsl.rb +1 -1
  113. data/lib/ramaze/global/globalstruct.rb +11 -5
  114. data/lib/ramaze/helper.rb +1 -1
  115. data/lib/ramaze/helper/aspect.rb +1 -1
  116. data/lib/ramaze/helper/auth.rb +2 -2
  117. data/lib/ramaze/helper/cache.rb +1 -1
  118. data/lib/ramaze/helper/cgi.rb +1 -1
  119. data/lib/ramaze/helper/file.rb +1 -1
  120. data/lib/ramaze/helper/flash.rb +1 -1
  121. data/lib/ramaze/helper/formatting.rb +1 -1
  122. data/lib/ramaze/helper/identity.rb +1 -1
  123. data/lib/ramaze/helper/inform.rb +1 -1
  124. data/lib/ramaze/helper/link.rb +4 -4
  125. data/lib/ramaze/helper/markaby.rb +1 -1
  126. data/lib/ramaze/helper/nitroform.rb +1 -1
  127. data/lib/ramaze/helper/pager.rb +2 -1
  128. data/lib/ramaze/helper/partial.rb +1 -1
  129. data/lib/ramaze/helper/redirect.rb +6 -1
  130. data/lib/ramaze/helper/sequel.rb +54 -0
  131. data/lib/ramaze/helper/stack.rb +1 -1
  132. data/lib/ramaze/inform.rb +1 -1
  133. data/lib/ramaze/inform/analogger.rb +1 -1
  134. data/lib/ramaze/inform/growl.rb +1 -1
  135. data/lib/ramaze/inform/hub.rb +1 -1
  136. data/lib/ramaze/inform/informer.rb +1 -1
  137. data/lib/ramaze/inform/informing.rb +2 -2
  138. data/lib/ramaze/inform/knotify.rb +1 -1
  139. data/lib/ramaze/inform/syslog.rb +1 -1
  140. data/lib/ramaze/inform/xosd.rb +1 -1
  141. data/lib/ramaze/snippets.rb +1 -1
  142. data/lib/ramaze/snippets/array/put_within.rb +1 -1
  143. data/lib/ramaze/snippets/blankslate.rb +7 -0
  144. data/lib/ramaze/snippets/dictionary.rb +6 -1
  145. data/lib/ramaze/snippets/divide.rb +1 -1
  146. data/lib/ramaze/snippets/kernel/__dir__.rb +1 -1
  147. data/lib/ramaze/snippets/kernel/acquire.rb +39 -0
  148. data/lib/ramaze/snippets/kernel/aquire.rb +1 -34
  149. data/lib/ramaze/snippets/kernel/constant.rb +1 -1
  150. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +1 -1
  151. data/lib/ramaze/snippets/numeric/filesize_format.rb +1 -1
  152. data/lib/ramaze/snippets/object/traits.rb +1 -1
  153. data/lib/ramaze/snippets/ordered_set.rb +12 -7
  154. data/lib/ramaze/snippets/ramaze/caller_info.rb +1 -1
  155. data/lib/ramaze/snippets/ramaze/caller_lines.rb +1 -1
  156. data/lib/ramaze/snippets/string/camel_case.rb +1 -1
  157. data/lib/ramaze/snippets/string/color.rb +2 -4
  158. data/lib/ramaze/snippets/string/each.rb +1 -1
  159. data/lib/ramaze/snippets/string/ord.rb +15 -0
  160. data/lib/ramaze/snippets/string/snake_case.rb +1 -1
  161. data/lib/ramaze/snippets/struct/fill.rb +4 -2
  162. data/lib/ramaze/snippets/struct/values_at.rb +2 -2
  163. data/lib/ramaze/snippets/symbol/to_proc.rb +15 -8
  164. data/lib/ramaze/snippets/thread/into.rb +1 -1
  165. data/lib/ramaze/sourcereload.rb +4 -3
  166. data/lib/ramaze/spec/helper.rb +85 -32
  167. data/lib/ramaze/spec/helper/bacon.rb +7 -0
  168. data/lib/ramaze/spec/helper/browser.rb +1 -2
  169. data/lib/ramaze/spec/helper/mock_http.rb +1 -1
  170. data/lib/ramaze/spec/helper/pretty_output.rb +70 -0
  171. data/lib/ramaze/spec/helper/requester.rb +1 -1
  172. data/lib/ramaze/spec/helper/simple_http.rb +5 -4
  173. data/lib/ramaze/spec/helper/snippets.rb +6 -0
  174. data/lib/ramaze/store/default.rb +1 -1
  175. data/lib/ramaze/template.rb +1 -1
  176. data/lib/ramaze/template/amrita2.rb +6 -5
  177. data/lib/ramaze/template/erubis.rb +1 -1
  178. data/lib/ramaze/template/ezamar.rb +1 -1
  179. data/lib/ramaze/template/ezamar/element.rb +1 -1
  180. data/lib/ramaze/template/ezamar/engine.rb +1 -1
  181. data/lib/ramaze/template/ezamar/morpher.rb +1 -1
  182. data/lib/ramaze/template/ezamar/render_partial.rb +1 -1
  183. data/lib/ramaze/template/haml.rb +1 -1
  184. data/lib/ramaze/template/liquid.rb +1 -1
  185. data/lib/ramaze/template/markaby.rb +1 -1
  186. data/lib/ramaze/template/nagoro.rb +4 -6
  187. data/lib/ramaze/template/none.rb +1 -1
  188. data/lib/ramaze/template/remarkably.rb +1 -1
  189. data/lib/ramaze/template/sass.rb +1 -1
  190. data/lib/ramaze/tool.rb +1 -1
  191. data/lib/ramaze/tool/create.rb +7 -1
  192. data/lib/ramaze/tool/localize.rb +7 -14
  193. data/lib/ramaze/tool/mime.rb +1 -1
  194. data/lib/ramaze/tool/record.rb +1 -1
  195. data/lib/ramaze/trinity.rb +1 -1
  196. data/lib/ramaze/trinity/request.rb +4 -2
  197. data/lib/ramaze/trinity/response.rb +1 -1
  198. data/lib/ramaze/trinity/session.rb +7 -1
  199. data/lib/ramaze/version.rb +3 -3
  200. data/lib/vendor/bacon.rb +317 -0
  201. data/rake_tasks/conf.rake +1 -1
  202. data/rake_tasks/maintenance.rake +7 -5
  203. data/rake_tasks/spec.rake +54 -40
  204. data/spec/contrib/auto_params.rb +21 -4
  205. data/spec/contrib/route.rb +31 -4
  206. data/spec/contrib/sequel/fill.rb +3 -4
  207. data/spec/examples/caching.rb +5 -2
  208. data/spec/examples/css.rb +5 -2
  209. data/spec/examples/element.rb +5 -4
  210. data/spec/examples/hello.rb +1 -0
  211. data/spec/examples/linking.rb +18 -0
  212. data/spec/examples/simple.rb +13 -18
  213. data/spec/examples/templates/template_amrita2.rb +3 -2
  214. data/spec/examples/templates/template_erubis.rb +3 -2
  215. data/spec/examples/templates/template_ezamar.rb +2 -1
  216. data/spec/examples/templates/template_haml.rb +3 -2
  217. data/spec/examples/templates/template_liquid.rb +3 -2
  218. data/spec/examples/templates/template_markaby.rb +3 -2
  219. data/spec/examples/templates/template_remarkably.rb +3 -2
  220. data/spec/ramaze/action/basics.rb +4 -4
  221. data/spec/ramaze/action/cache.rb +11 -13
  222. data/spec/ramaze/action/layout.rb +47 -3
  223. data/spec/ramaze/action/render.rb +3 -3
  224. data/spec/ramaze/action/template/instancevars/layout.xhtml +1 -0
  225. data/spec/ramaze/adapter.rb +7 -7
  226. data/spec/ramaze/adapter/mongrel.rb +1 -1
  227. data/spec/ramaze/adapter/record.rb +7 -7
  228. data/spec/ramaze/adapter/webrick.rb +1 -1
  229. data/spec/ramaze/cache.rb +6 -8
  230. data/spec/ramaze/controller.rb +77 -65
  231. data/spec/ramaze/controller/resolve.rb +2 -1
  232. data/spec/ramaze/controller/template_resolving.rb +3 -4
  233. data/spec/ramaze/dispatcher.rb +3 -4
  234. data/spec/ramaze/dispatcher/directory.rb +35 -35
  235. data/spec/ramaze/dispatcher/file.rb +8 -5
  236. data/spec/ramaze/element.rb +4 -4
  237. data/spec/ramaze/error.rb +13 -11
  238. data/spec/ramaze/gestalt.rb +1 -1
  239. data/spec/ramaze/helper/aspect.rb +2 -1
  240. data/spec/ramaze/helper/auth.rb +4 -2
  241. data/spec/ramaze/helper/cache.rb +10 -9
  242. data/spec/ramaze/helper/cgi.rb +2 -2
  243. data/spec/ramaze/helper/file.rb +1 -0
  244. data/spec/ramaze/helper/flash.rb +5 -4
  245. data/spec/ramaze/helper/formatting.rb +1 -1
  246. data/spec/ramaze/helper/link.rb +3 -3
  247. data/spec/ramaze/helper/pager.rb +44 -80
  248. data/spec/ramaze/helper/partial.rb +2 -3
  249. data/spec/ramaze/helper/redirect.rb +10 -1
  250. data/spec/ramaze/helper/stack.rb +4 -3
  251. data/spec/ramaze/helper/template/loop.xhtml +2 -1
  252. data/spec/ramaze/inform/informer.rb +2 -2
  253. data/spec/ramaze/inform/syslog.rb +1 -1
  254. data/spec/ramaze/localize.rb +26 -26
  255. data/spec/ramaze/morpher.rb +6 -7
  256. data/spec/ramaze/params.rb +7 -8
  257. data/spec/ramaze/request.rb +27 -6
  258. data/spec/ramaze/request/mongrel.rb +1 -1
  259. data/spec/ramaze/request/thin.rb +9 -0
  260. data/spec/ramaze/session.rb +2 -1
  261. data/spec/ramaze/store/default.rb +14 -17
  262. data/spec/ramaze/template.rb +5 -7
  263. data/spec/ramaze/template/amrita2.rb +4 -1
  264. data/spec/ramaze/template/erubis.rb +2 -1
  265. data/spec/ramaze/template/ezamar.rb +2 -3
  266. data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
  267. data/spec/ramaze/template/haml.rb +2 -1
  268. data/spec/ramaze/template/liquid.rb +4 -2
  269. data/spec/ramaze/template/markaby.rb +4 -2
  270. data/spec/ramaze/template/nagoro.rb +3 -4
  271. data/spec/ramaze/template/remarkably.rb +4 -2
  272. data/spec/ramaze/template/sass.rb +3 -2
  273. data/spec/ramaze/template/xslt.rb +4 -7
  274. data/spec/ramaze/trinity/request.rb +4 -3
  275. data/spec/ramaze/trinity/session.rb +6 -4
  276. data/spec/snippets/array/put_within.rb +3 -2
  277. data/spec/snippets/divide.rb +1 -4
  278. data/spec/snippets/kernel/__dir__.rb +1 -1
  279. data/spec/snippets/kernel/acquire.rb +71 -0
  280. data/spec/snippets/kernel/constant.rb +4 -8
  281. data/spec/snippets/numeric/filesize_format.rb +1 -1
  282. data/spec/snippets/ordered_set.rb +9 -2
  283. data/spec/snippets/ramaze/caller_info.rb +3 -3
  284. data/spec/snippets/ramaze/caller_lines.rb +3 -3
  285. data/spec/snippets/string/camel_case.rb +1 -1
  286. data/spec/snippets/string/color.rb +2 -2
  287. data/spec/snippets/string/snake_case.rb +5 -1
  288. data/spec/snippets/string/unindent.rb +1 -1
  289. data/spec/snippets/struct/fill.rb +14 -15
  290. data/spec/snippets/struct/values_at.rb +15 -10
  291. data/spec/snippets/symbol/to_proc.rb +13 -0
  292. data/spec/snippets/thread/into.rb +3 -4
  293. metadata +458 -386
  294. data/doc/README.html +0 -729
  295. data/doc/changes.txt +0 -5044
  296. data/doc/changes.xml +0 -5046
  297. data/lib/proto/public/error.zmr +0 -61
  298. data/lib/proto/src/element/page.rb +0 -17
  299. data/lib/proto/src/model.rb +0 -6
  300. data/lib/proto/template/index.xhtml +0 -15
  301. data/lib/ramaze/spec/helper/layout.rb +0 -58
  302. data/lib/ramaze/spec/helper/minimal.rb +0 -23
  303. data/lib/ramaze/spec/helper/wrap.rb +0 -198
  304. data/spec/snippets/kernel/aquire.rb +0 -71
data/Rakefile CHANGED
@@ -4,8 +4,8 @@ require 'rake/clean'
4
4
  require 'rake/packagetask'
5
5
  require 'rake/gempackagetask'
6
6
  require 'rake/rdoctask'
7
- require 'rake/contrib/rubyforgepublisher'
8
7
  require 'fileutils'
8
+ require 'time'
9
9
  require 'pp'
10
10
  include FileUtils
11
11
 
@@ -18,8 +18,25 @@ load 'rake_tasks/maintenance.rake'
18
18
  load 'rake_tasks/spec.rake'
19
19
  load 'rake_tasks/coverage.rake'
20
20
 
21
- task :default => ['test:all']
22
- task :test => ['test:all']
21
+ task :default => ['spec']
22
+ task :test => ['spec']
23
+ task :package => ['jquery']
24
+
25
+ desc 'download latest jquery and put in /lib/proto/public/js/jquery.js'
26
+ task :jquery do
27
+ require 'open-uri'
28
+ $stdout.sync = true
29
+
30
+ File.open('lib/proto/public/js/jquery.js', 'w+') do |jquery|
31
+ remote = open('http://code.jquery.com/jquery-latest.js')
32
+ print "openend remote side, copying..."
33
+ while chunk = remote.read(4096)
34
+ print '.'
35
+ jquery.write(chunk)
36
+ end
37
+ puts " done."
38
+ end
39
+ end
23
40
 
24
41
  desc "sanitize the code and darcs record"
25
42
  task :record => ['fix-end-spaces', 'add-copyright'] do
data/bin/ramaze CHANGED
@@ -116,10 +116,7 @@ end
116
116
 
117
117
  if execute
118
118
  eval execute
119
- elsif instant
120
- class MainController < Ramaze::Controller
121
- end
122
- else
119
+ elsif not instant
123
120
  begin
124
121
  puts "running `#{runner}'"
125
122
  require runner.to_s
@@ -1,6 +1,7 @@
1
1
  Following persons (in alphabetical order) have contributed to Ramaze:
2
2
 
3
3
  Aman Gupta - aman@ramaze.net
4
+ Carlo Zottmann - outtenr@gmail.com
4
5
  Christian Neukirchen - chneukirchen@gmail.com
5
6
  Clive Crous - clive@crous.co.za
6
7
  Fabian Buch - fabian.buch@fabian-buch.de
@@ -8,7 +9,7 @@ Following persons (in alphabetical order) have contributed to Ramaze:
8
9
  Jonathan Buch - john@oxyliquit.de
9
10
  Lars Olsson - lasso@lassoweb.se
10
11
  Martin Hilbig - blueonyx@dev-area.net
11
- Michael Fellinger - m.fellinger@gmail.com
12
+ Michael Fellinger - manveru@weez-int.com
12
13
  Pistos - jesuswasramazing.10.pistos@geoshell.com
13
14
  Stephan Maka - stephan@spaceboyz.net
14
15
  zenix - comp.lang.zenix+ramaze@gmail.com
@@ -1,3 +1,510 @@
1
+ Thu Jan 10 02:04:02 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
2
+ * Cosmetic change in error.xhtml
3
+
4
+ Thu Jan 10 02:03:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
5
+ * Change (c) for new year
6
+
7
+ Thu Jan 10 02:02:16 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
8
+ * Update announcment
9
+
10
+ Tue Jan 8 09:50:59 JST 2008 Aman Gupta <aman@ramaze.net>
11
+ * Add diff to top of syntax list in rapaste
12
+
13
+ Tue Jan 8 09:50:44 JST 2008 Aman Gupta <aman@ramaze.net>
14
+ * Don't look for templates in public/
15
+
16
+ Tue Jan 8 17:10:53 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
17
+ * Adding thin to 'obvious' options in global.rb
18
+
19
+ Mon Jan 7 03:55:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
20
+ * Make Dictionary#find return nil if nothing is found.
21
+
22
+ Mon Jan 7 01:38:37 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
23
+ * Extend Dictionary with a nice #find method.
24
+
25
+ Tue Jan 8 23:14:01 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
26
+ * A couple of beautifications for specs of Dispatcher::Directory, Template::XSLT and Contrib::Route
27
+
28
+ Tue Jan 8 23:13:19 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
29
+ * Adding a bunch of comfy methods to work directly with REXML on mock responses in specs.
30
+
31
+ Tue Jan 8 23:13:07 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
32
+ * Don't start sourcereload for specs
33
+
34
+ Tue Jan 8 23:12:08 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
35
+ * Change testcase_requires to spec_require, shorter and reads better.
36
+
37
+ Mon Jan 7 19:44:17 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
38
+ * Extend Dictionary with a nice #find method
39
+
40
+ Mon Jan 7 17:57:41 JST 2008 Aman Gupta <aman@ramaze.net>
41
+ * Move public/error.zmr to template/error.xhtml, cleanup js, use page.xhtml layout
42
+
43
+ Mon Jan 7 17:33:02 JST 2008 Aman Gupta <aman@ramaze.net>
44
+ * Update proto start and spec: use __DIR__ so specs and start can be run from any dir, include :adapter and :port options to Ramaze.start for easy changing
45
+
46
+ Mon Jan 7 17:32:02 JST 2008 Aman Gupta <aman@ramaze.net>
47
+ * Update proto views: add links to ramaze site and docs, remove old references, tweak css
48
+
49
+ Mon Jan 7 17:30:31 JST 2008 Aman Gupta <aman@ramaze.net>
50
+ * Update error pages: remove color gradient, add textmate link, optimize javascript, tweak css
51
+
52
+ Mon Jan 7 17:21:29 JST 2008 Aman Gupta <aman@ramaze.net>
53
+ * After creating a new ramaze app, show command to run the app
54
+
55
+ Mon Jan 7 17:20:48 JST 2008 Aman Gupta <aman@ramaze.net>
56
+ * Make "describe ClassName do end" work with bacon
57
+
58
+ Mon Jan 7 16:07:05 JST 2008 Aman Gupta <aman@ramaze.net>
59
+ * [rapaste] remove unused helper/ subdir, use respond() instead of throw :respond
60
+
61
+ Mon Jan 7 16:13:14 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
62
+ * Adding fallback aquire.rb
63
+
64
+ Mon Jan 7 15:59:58 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
65
+ * jQuery 1.1.3.1 => 1.2.2b2
66
+
67
+ Mon Jan 7 15:56:02 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
68
+ * Update /lib/proto to new structure.
69
+
70
+ Mon Jan 7 15:52:59 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
71
+ * s/aquire/acquire/g
72
+
73
+ Mon Jan 7 15:48:09 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
74
+ * Adding jquery task to d/l latest jquery and put it in /lib/proto/public/js/jquery.js
75
+
76
+ Mon Jan 7 15:35:16 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
77
+ * Adding shared xpath for bacon, that should help us getting rid of Hpricot in specs.
78
+
79
+ Mon Jan 7 13:31:09 JST 2008 Aman Gupta <aman@ramaze.net>
80
+ * Use view/ subdirectory for templates if available, else fallback to template/
81
+
82
+ Mon Jan 7 13:25:25 JST 2008 Aman Gupta <aman@ramaze.net>
83
+ * Display current public and template root during startup
84
+
85
+ Mon Jan 7 12:24:08 JST 2008 outtenr@gmail.com
86
+ * * fixed require statement in linking.rb example
87
+
88
+ Mon Jan 7 12:29:11 JST 2008 Aman Gupta <aman@ramaze.net>
89
+ * Avoid requiring bacon twice when running snippet specs
90
+
91
+ Mon Jan 7 12:26:49 JST 2008 Aman Gupta <aman@ramaze.net>
92
+ * Alias acquire to aquire
93
+
94
+ Sun Jan 6 18:45:28 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
95
+ * Add possibility to put index file into public directories and subdirectories.
96
+
97
+ Sun Jan 6 18:33:03 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
98
+ * Fixing directory dispatcher in case of relative public root
99
+
100
+ Sun Jan 6 18:31:54 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
101
+ * Adding default MainController
102
+
103
+ Sun Jan 6 17:41:10 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
104
+ * Don't ignore missing author names in the author related tasks.
105
+
106
+ Sun Jan 6 17:37:54 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
107
+ * Make rammit pass
108
+
109
+ Sun Jan 6 12:02:24 JST 2008 Aman Gupta <aman@ramaze.net>
110
+ * Add request/thin spec
111
+
112
+ Sun Jan 6 09:30:58 JST 2008 Jonathan Buch <john@oxyliquit.de>
113
+ * [benchmark] add benchmarking for templates (ezamar, haml for now)
114
+
115
+ Sun Jan 6 07:48:43 JST 2008 Jonathan Buch <john@oxyliquit.de>
116
+ * [rakefile] fix rake patchstat, empty name from darcs breaks script
117
+
118
+ Sat Jan 5 18:26:24 JST 2008 Aman Gupta <aman@ramaze.net>
119
+ * Add adapter for Thin ruby webserver
120
+
121
+ Sat Jan 5 10:14:14 JST 2008 Jonathan Buch <john@oxyliquit.de>
122
+ * [rammit] make specs runnable from `rake test`
123
+
124
+ Sat Jan 5 10:07:25 JST 2008 Jonathan Buch <john@oxyliquit.de>
125
+ * Make 'should create page from intro page' pass
126
+
127
+ Sat Jan 5 06:11:56 JST 2008 Michael Fellinger <manveru@weez-int.com>
128
+ * Make the sourceview example work on _darcs/current and invalidate cache in any case on a reload
129
+
130
+ Sat Jan 5 05:58:37 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
131
+ * Adding examples/rammit (first draft)
132
+
133
+ Sat Jan 5 05:57:16 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
134
+ * Make the load path for bacon more general and uniq it in ramaze.rb
135
+
136
+ Fri Jan 4 02:16:21 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
137
+ * Add (statisticans please close your eyes) more info for benchmarking
138
+
139
+ Thu Jan 3 22:38:51 JST 2008 outtenr@gmail.com
140
+ * fix_for_controllers_with_new_method
141
+
142
+ If a controller had a method of "new", the "R" linking method would brake. Modified code and tests should be included.
143
+
144
+
145
+ Wed Jan 2 21:58:20 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
146
+ * Add tiny spec for raw_redirect
147
+
148
+ Wed Jan 2 21:57:55 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
149
+ * Adding sqlite3 to dependencies of sequel/fill spec
150
+
151
+ Wed Jan 2 21:02:21 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
152
+ * Adding RedirectHelper#raw_redirect to prevent messing with the target
153
+
154
+ Wed Jan 2 13:00:51 JST 2008 Aman Gupta <aman@ramaze.net>
155
+ * Fix encoding issues with mongrel/webrick request specs on 1.9
156
+
157
+ Wed Jan 2 12:28:57 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
158
+ * Fix the dispatcher/file spec for 1.9.0
159
+
160
+ Wed Jan 2 11:44:37 JST 2008 Aman Gupta <aman@ramaze.net>
161
+ * Don't run contents of favicon.ico through ezamar in mongrel/webrick request spec
162
+
163
+ Wed Jan 2 11:39:24 JST 2008 Aman Gupta <aman@ramaze.net>
164
+ * Simplify error dispatching code, and prevent infinite recursion on 1.9
165
+
166
+ Wed Jan 2 10:25:50 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
167
+ * add non_fatal and non_verbose ENV options for running specs and fix a minor bug
168
+
169
+ Wed Jan 2 10:06:01 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
170
+ * Don't use Nagoro for the whywiki example
171
+
172
+ Wed Jan 2 08:50:39 JST 2008 Aman Gupta <aman@ramaze.net>
173
+ * Update benchmark/test.rb: use httperf, turn off sourcereload, read adapter from ARGV[0]
174
+
175
+ Wed Jan 2 06:59:12 JST 2008 Aman Gupta <aman@ramaze.net>
176
+ * Block arguments in 1.9 cannot be instance variables
177
+
178
+ Wed Jan 2 06:52:26 JST 2008 Aman Gupta <aman@ramaze.net>
179
+ * Improve ruby1.9 version of BlankSlate and make OrderedSet specs pass
180
+
181
+ Wed Jan 2 06:20:42 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
182
+ * Do not use ThreadGroup for collecting adapter threads, use Set instead, a lot more reliable over 1.8=>1.9
183
+
184
+ Wed Jan 2 08:51:38 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
185
+ * Add -I for libpath to spec task
186
+
187
+ Wed Jan 2 08:15:32 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
188
+ * Finally switch to bacon totally, enjoy :D
189
+
190
+ Tue Jan 1 18:30:11 JST 2008 Aman Gupta <aman@ramaze.net>
191
+ * Speed up trinity/session spec, show # of passing tests instead of assertions
192
+
193
+ Tue Jan 1 06:01:07 JST 2008 Jonathan Buch <john@oxyliquit.de>
194
+ * patch rake test, shows passed/failed specs again, don't test bacon/snippets.rb
195
+
196
+ Tue Jan 1 05:34:20 JST 2008 Jonathan Buch <john@oxyliquit.de>
197
+ * revise pager spec
198
+
199
+ Tue Jan 1 05:33:44 JST 2008 Jonathan Buch <john@oxyliquit.de>
200
+ * remove unneccessary whitespace from contrib/gettext
201
+
202
+ Tue Jan 1 03:40:35 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
203
+ * Update Bacon to latest version
204
+
205
+ Tue Jan 1 03:40:27 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
206
+ * Big switch to using bacon instead of rspec, gotta update the rake task for darcs, run specs using 'ruby specwrapper.rb' for now
207
+
208
+ Tue Jan 1 01:58:07 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
209
+ * Small beautification for lib/ramaze.rb
210
+
211
+ Mon Dec 31 19:55:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
212
+ * Make Gestalt compatible with 1.9.0
213
+
214
+ Mon Dec 31 19:27:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
215
+ * Small beautification for source of snippets/string/color
216
+
217
+ Mon Dec 31 19:26:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
218
+ * Don't require rubyforgepublisher in Rakefile, we don't use it anyway
219
+
220
+ Mon Dec 31 19:26:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
221
+ * More compatiblity with Ruby 1.9.0 - at least the hello example now runs on 1.9.0!
222
+
223
+ Mon Dec 31 18:53:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
224
+ * Make OrderedSet compatible with 1.9
225
+
226
+ Mon Dec 31 11:06:26 JST 2007 Aman Gupta <aman@ramaze.net>
227
+ * Fix auto_params with latest ruby2ruby (nil.method_missing was removed)
228
+
229
+ Mon Dec 31 11:05:43 JST 2007 Aman Gupta <aman@ramaze.net>
230
+ * Make instance vars available when layout action is in another controller + better layout specs
231
+
232
+ Sun Dec 30 15:31:32 JST 2007 Aman Gupta <aman@ramaze.net>
233
+ * Add spec for re-using layouts from other controllers
234
+
235
+ Sun Dec 30 17:30:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
236
+ * Fix layout so it calls a method on the right controller.
237
+
238
+ Sat Dec 29 09:44:08 JST 2007 Aman Gupta <aman@ramaze.net>
239
+ * Add memory usage to benchmarks
240
+
241
+ Sat Dec 1 03:35:35 JST 2007 Jonathan Buch <john@oxyliquit.de>
242
+ * Add gettext contrib, localize ramaze via gettext
243
+
244
+ Fri Dec 28 09:11:13 JST 2007 Jonathan Buch <john@oxyliquit.de>
245
+ * [pager] add compatibility to Og > 0.41
246
+
247
+ Fri Dec 28 08:57:59 JST 2007 Jonathan Buch <john@oxyliquit.de>
248
+ * [rapaste] fix pagination bug on /view
249
+
250
+ Thu Dec 27 18:50:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
251
+ * Adding blankslate and String#ord, first one for OrderedSet to inherit from, and in case of 1.9 to make BlankSlate equivalent to BasicObject
252
+
253
+ Thu Dec 27 17:31:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
254
+ * Only undef Symbol#to_int if it has been defined
255
+
256
+ Wed Dec 26 16:21:44 JST 2007 Aman Gupta <aman@ramaze.net>
257
+ * Minor beautification of spec speedup patch
258
+
259
+ Wed Dec 26 16:20:32 JST 2007 Aman Gupta <aman@ramaze.net>
260
+ * Escape regexps so specs run in directories with strange characters
261
+
262
+ Tue Dec 25 14:20:04 JST 2007 Aman Gupta <aman@ramaze.net>
263
+ * Update amrita2 template engine
264
+
265
+ Tue Dec 25 14:19:53 JST 2007 Aman Gupta <aman@ramaze.net>
266
+ * Add specs for Symbol#to_proc snippet
267
+
268
+ Wed Dec 26 13:55:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
269
+ * Speed up snippet specs, shaves off 10 secs of spectime.
270
+
271
+ Tue Dec 25 12:10:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
272
+ * Make our Symbol#to_proc equivalent to the activesupport one :P
273
+
274
+ Tue Dec 25 12:06:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
275
+ * Don't rely on Symbol#to_proc in our source
276
+
277
+ Fri Dec 21 18:47:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
278
+ * Rakefile should require time
279
+
280
+ Tue Dec 25 13:12:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
281
+ * little beautification
282
+
283
+ Tue Dec 25 13:11:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
284
+ * Adapt nagoro engine to latest nagoro version
285
+
286
+ Tue Dec 25 13:10:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
287
+ * Fix engine lookup if conflict of extension arises, make result predictable
288
+
289
+ Tue Dec 25 13:10:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
290
+ * Unify the specs in example applications
291
+
292
+ Tue Dec 25 13:09:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
293
+ * Move the SequelHelper into our general helpers, provides easy pagination
294
+
295
+ Tue Dec 25 12:56:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
296
+ * Make examples/wikore compatible with rspec 1.1.1 which has the silly behaviour of assuming methods starting with 'should_' are specs too...
297
+
298
+ Tue Dec 25 12:48:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
299
+ * Switch examples/blog from Og to Sequel
300
+
301
+ Sat Dec 22 21:48:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
302
+ * Small fix for whywiki spec
303
+
304
+ Thu Dec 20 01:25:49 JST 2007 jesuswasramazing.10.pistos@geoshell.com
305
+ * / is now the "add new" action, /list is now the listing.
306
+
307
+ Wed Dec 19 22:27:23 JST 2007 Michael Fellinger <manveru@weez-int.com>
308
+ * Fix the check for syntax in rapaste
309
+
310
+ Wed Dec 19 13:29:54 JST 2007 Michael Fellinger <manveru@weez-int.com>
311
+ * Add guard against wrong syntax in rapaste for saving pastes
312
+
313
+ Wed Dec 19 02:23:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
314
+ * examples/rapaste: Select right style for text_fragment
315
+
316
+ Tue Dec 18 04:55:22 JST 2007 jesuswasramazing.10.pistos@geoshell.com
317
+ * Save theme selection in session.
318
+
319
+ Mon Dec 17 10:17:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
320
+ * Improved Tool::Localize
321
+
322
+ Mon Dec 17 12:56:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
323
+ * Add examples/rapaste
324
+
325
+ Sun Dec 9 11:29:33 JST 2007 Aman Gupta <aman@ramaze.net>
326
+ * Prevent ramaze --create from overwriting existing files/directories
327
+
328
+ Sat Dec 8 05:14:50 JST 2007 Aman Gupta <aman@ramaze.net>
329
+ * SourceReload bugfix- use Regexp.union so Dir.pwd is escaped
330
+
331
+ Sat Dec 8 05:00:26 JST 2007 Aman Gupta <aman@ramaze.net>
332
+ * Add lambda router support to contrib/route
333
+
334
+ Fri Dec 7 12:58:38 JST 2007 Aman Gupta <aman@ramaze.net>
335
+ * Updated benchmark suite and results
336
+
337
+ Fri Dec 7 11:40:11 JST 2007 Aman Gupta <aman@ramaze.net>
338
+ * Optimize OrderedSet implementation
339
+
340
+ Thu Dec 6 11:54:46 JST 2007 Aman Gupta <aman@ramaze.net>
341
+ * Improve facebook API error handling (I'll move this to a gem or external lib eventually..)
342
+
343
+ Thu Dec 6 15:29:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
344
+ * Introducing caching for Controller::action_methods in Cache.action_methods.
345
+
346
+ Thu Dec 6 14:54:32 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
347
+ * Fix oddities in bin/ramaze when used via gems (hopefully? :)
348
+
349
+ Mon Dec 3 06:50:17 JST 2007 Aman Gupta <aman@ramaze.net>
350
+ * String#unindent is part of latest release, remove from ramaise.rb
351
+
352
+ Sun Dec 2 09:07:54 JST 2007 Aman Gupta <aman@ramaze.net>
353
+ * examples/css spec requires Haml
354
+
355
+ Sun Dec 2 04:39:28 JST 2007 Aman Gupta <aman@ramaze.net>
356
+ * Add contrib/facebook and simple facebook app example
357
+
358
+ Sun Dec 2 04:33:47 JST 2007 Aman Gupta <aman@ramaze.net>
359
+ * Add another spec for String#snake_case
360
+
361
+ Sun Dec 2 04:33:26 JST 2007 Aman Gupta <aman@ramaze.net>
362
+ * Fix timeout error with :adapter => :fcgi
363
+
364
+ Fri Nov 30 16:12:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
365
+ * Add SessionFlash#delete
366
+
367
+ Fri Nov 30 16:09:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
368
+ * Failsafe for Request#local_net? - 'unkown' seems to be a common address...
369
+
370
+ Fri Nov 30 12:59:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
371
+ * Add lookup for index template like /foo__index
372
+
373
+ Thu Nov 29 08:39:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
374
+ * Version 0.2.1
375
+
376
+ Thu Nov 29 08:39:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
377
+ tagged 0.2.1
378
+
379
+ Thu Nov 29 08:39:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
380
+ * Update CHANGELOG
381
+
382
+ Thu Nov 29 08:27:40 JST 2007 Aman Gupta <aman@ramaze.net>
383
+ * Use new Request#[] and avoid binding block unnecessarily
384
+
385
+ Thu Nov 29 08:23:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
386
+ * Spec and fix for bug in String#unindent
387
+
388
+ Wed Nov 28 17:32:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
389
+ * Allow multiple keys for Request#[]
390
+
391
+ Wed Nov 28 14:46:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
392
+ * Add spec for and fix implementation of Request#local_net?
393
+
394
+ Wed Nov 28 12:53:36 JST 2007 Aman Gupta <aman@ramaze.net>
395
+ * Allow helper modules to be defined in contrib/ or same file as the app
396
+
397
+ Tue Nov 27 15:12:02 JST 2007 Aman Gupta <aman@ramaze.net>
398
+ * Update to latest Sequel conventions (require 'sequel/sqlite' is deprecated)
399
+
400
+ Tue Nov 27 15:12:12 JST 2007 Aman Gupta <aman@ramaze.net>
401
+ * Doc fixes for contrib/
402
+
403
+ Tue Nov 27 08:14:25 JST 2007 Aman Gupta <aman@ramaze.net>
404
+ * require 'ramaze/contrib' then Ramaze.contrib :foo is redundant, load 'ramaze/contrib' by default
405
+
406
+ Tue Nov 27 08:12:32 JST 2007 Aman Gupta <aman@ramaze.net>
407
+ * Make StdErr output in specs readable
408
+
409
+ Mon Nov 26 10:39:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
410
+ * Fix code in comment for gestalt.rb
411
+
412
+ Mon Nov 26 10:37:05 JST 2007 Aman Gupta <aman@ramaze.net>
413
+ * Fix rcov coverage report generation task
414
+
415
+ Tue Sep 25 22:39:15 JST 2007 rff.rff@gmail.com
416
+ * support custom caption in openid_login_form
417
+
418
+ Tue Sep 18 21:00:27 JST 2007 rff.rff@gmail.com
419
+ * add testcase_require in wikore/spec
420
+
421
+ Tue Sep 4 20:33:08 JST 2007 rff.rff@gmail.com
422
+ * coverage task, first try
423
+
424
+ Mon Nov 26 01:14:29 JST 2007 Aman Gupta <aman@ramaze.net>
425
+ * Fix for nginx caching issue with sourceview's javascript
426
+
427
+ Mon Nov 26 00:57:40 JST 2007 Aman Gupta <aman@ramaze.net>
428
+ * Improve sourceview: add analytics tracking, /path/to/file.rb now works, changing location hash in browser address bar works, visiting /source/file.rb directly works
429
+
430
+ Mon Nov 26 00:16:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
431
+ * Fix doc/meta/users.kml for kml version 2.2
432
+
433
+ Sun Nov 25 09:19:57 JST 2007 Aman Gupta <aman@ramaze.net>
434
+ * Cleanup proto: remove 'include Ramaze', require rubygems so ruby start.rb works, include :port option for easy changing
435
+
436
+ Sun Nov 25 09:14:07 JST 2007 Aman Gupta <aman@ramaze.net>
437
+ * Add support for define_method actions with / instead of __
438
+
439
+ Sun Nov 25 09:10:27 JST 2007 Aman Gupta <aman@ramaze.net>
440
+ * Set Ramaze.start options when using ramaze binary
441
+
442
+ Sun Nov 25 08:45:54 JST 2007 Aman Gupta <aman@ramaze.net>
443
+ * Add Symbol#/ to divide snippet
444
+
445
+ Fri Nov 23 02:13:00 JST 2007 Aman Gupta <aman@ramaze.net>
446
+ * Fix breakage when trinity/response.rb is source reloaded
447
+
448
+ Thu Nov 22 18:36:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
449
+ * Use the almighty IPAddr to check for local IPs, _so_ _much_ _nicer_ and supports both IPv4 and IPv6 :D (is it obvious that i'm 10 minutes before a long weekend?)
450
+
451
+ Thu Nov 22 18:11:57 JST 2007 Aman Gupta <aman@ramaze.net>
452
+ * Calculate avg patches per day in patchsize rake task
453
+
454
+ Thu Nov 22 17:19:46 JST 2007 Aman Gupta <aman@ramaze.net>
455
+ * Add String#unindent snippet and use it in Ramaise
456
+
457
+ Thu Nov 22 16:44:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
458
+ * This fixes some problems related to Request, better information on entering Action, fallback for Request#request_uri and fix Request#local_net? (damn you irb)
459
+
460
+ Thu Nov 22 16:42:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
461
+ * Do go the usual Dispatcher::Action path when we encounter an error so Action::FILTER are applied.
462
+
463
+ Thu Nov 22 11:57:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
464
+ * Adding Request#ip and Request#local_net?
465
+
466
+ Thu Nov 22 09:57:37 JST 2007 Aman Gupta <aman@ramaze.net>
467
+ * Fix Haml/Sass options handling
468
+
469
+ Thu Nov 22 05:43:44 JST 2007 Aman Gupta <aman@ramaze.net>
470
+ * Wrap long lines in ramaise, don't include Ramaze in examples
471
+
472
+ Thu Nov 22 05:40:13 JST 2007 Aman Gupta <aman@ramaze.net>
473
+ * Various hacks to get sourceview working in IE, some cleanups to reduce bandwidth and make page loads snappier
474
+
475
+ Wed Nov 21 17:05:15 JST 2007 Aman Gupta <aman@ramaze.net>
476
+ * Add Ramaise example (Ramaze version of the Reprise hAtom blog)
477
+
478
+ Wed Nov 21 14:52:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
479
+ * Update README
480
+
481
+ Wed Nov 21 12:48:35 JST 2007 Aman Gupta <aman@ramaze.net>
482
+ * Simplify Thread.into + spec
483
+
484
+ Wed Nov 21 12:26:43 JST 2007 Aman Gupta <aman@ramaze.net>
485
+ * Random minor spec cleanups
486
+
487
+ Wed Nov 21 07:02:19 JST 2007 Aman Gupta <aman@ramaze.net>
488
+ * Use cache as a wrapper for value_cache when no args are provided
489
+
490
+ Tue Nov 20 17:51:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
491
+ * redirect_referrer on login in AuthHelper, a lot more useful and smoother
492
+
493
+ Tue Nov 20 17:05:00 JST 2007 Aman Gupta <aman@ramaze.net>
494
+ * Minor cleanups to sourceview example
495
+
496
+ Tue Nov 20 13:27:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
497
+ * Update allison raketask to use new version.
498
+
499
+ Tue Nov 20 01:36:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
500
+ * keep darcs repo one step ahead on 0.2.1
501
+
502
+ Tue Nov 20 01:18:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
503
+ tagged 0.2.0
504
+
505
+ Tue Nov 20 01:18:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
506
+ * Update doc/CHANGELOG
507
+
1
508
  Tue Nov 20 01:16:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
509
  * Update TODO, Version and announcement
3
510
 
@@ -7,12 +514,12 @@ Mon Nov 19 23:03:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
7
514
  Mon Nov 19 22:56:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
8
515
  * Adding Thread::into, almost forgot about it.
9
516
 
10
- Mon Nov 19 18:31:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
11
- * Update doc/meta/announcement
12
-
13
517
  Mon Nov 19 22:47:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
14
518
  * Remove Tool::Tidy and all traces of it, it's leaking memory, has problems upgrading and isn't used by anybody i know of.
15
519
 
520
+ Mon Nov 19 18:31:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
521
+ * Update doc/meta/announcement
522
+
16
523
  Sun Nov 18 13:19:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
17
524
  * Using OrderedSet instead of Set helps keeping sessions deleted in chronological order
18
525
 
@@ -148,30 +655,30 @@ Wed Oct 24 08:23:22 JST 2007 Aman Gupta <aman@ramaze.net>
148
655
  Mon Oct 22 12:40:52 JST 2007 Aman Gupta <aman@ramaze.net>
149
656
  * Update auth example to use new :load_engines config option
150
657
 
151
- Sun Oct 21 05:36:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
152
- * Minor improvment of spec wrapper
153
-
154
- Sun Oct 21 03:59:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
155
- * ran fix-end-spaces
156
-
157
658
  Sun Oct 21 13:54:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
158
659
  * Don't create meta-cache structure
159
660
 
160
661
  Sun Oct 21 13:50:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
161
662
  * Require fileutils for Ramaze::Action::render
162
663
 
664
+ Sun Oct 21 05:36:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
665
+ * Minor improvment of spec wrapper
666
+
667
+ Sun Oct 21 03:59:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
668
+ * ran fix-end-spaces
669
+
163
670
  Sun Oct 21 12:40:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
164
671
  * Fix cache spec and add Action#extended_path again
165
672
 
166
673
  Sun Oct 21 09:04:35 JST 2007 Aman Gupta <aman@ramaze.net>
167
674
  * Fix off-by-one on spec output and cleanup template_root references in various specs
168
675
 
169
- Sun Oct 21 07:11:59 JST 2007 Aman Gupta <aman@ramaze.net>
170
- * Stop RDoc from complaining
171
-
172
676
  Sun Oct 21 08:09:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
173
677
  * Fix Global options for (template|public)_root in spec/helper
174
678
 
679
+ Sun Oct 21 07:11:59 JST 2007 Aman Gupta <aman@ramaze.net>
680
+ * Stop RDoc from complaining
681
+
175
682
  Sun Oct 21 00:17:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
176
683
  * Don't activate Dispatcher::Directory by default.
177
684
 
@@ -247,6 +754,9 @@ Tue Oct 16 23:53:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
247
754
  Tue Oct 16 23:52:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
248
755
  * Small beautification to Dispatcher::File
249
756
 
757
+ Wed Oct 17 00:20:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
758
+ * Don't mention coderay in README anymore
759
+
250
760
  Tue Oct 16 21:00:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
251
761
  * Adapt Nagoro for latest API changes
252
762
 
@@ -256,30 +766,33 @@ Mon Oct 15 13:58:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
256
766
  Fri Oct 12 21:41:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
257
767
  * Fix ezamar morpher, seems to break on 0.6 - simplify implementation at the same time... couldn't do a real benchmark for the new vs old since the old one doesn't seem to be able to process more complex documents, new one builds on XPATH functionality of hpricot and is a lot more robust but at the same time much easier to understand. Extend specs for it and don't require it by default anymore.
258
768
 
259
- Wed Oct 17 00:20:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
260
- * Don't mention coderay in README anymore
769
+ Fri Oct 12 00:26:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
770
+ * layout example should not have an Element
261
771
 
262
772
  Thu Oct 11 13:30:35 JST 2007 Aman Gupta <ramaze@tmm1.net>
263
773
  * Minor sourceview cleanups
264
774
 
265
- Fri Oct 12 00:26:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
266
- * layout example should not have an Element
267
-
268
775
  Thu Oct 11 12:51:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
269
776
  * Numeric#human_readable_filesize_format #=> Numeric#filesize_format
270
777
 
271
- Thu Oct 11 10:31:18 JST 2007 Aman Gupta <ramaze@tmm1.net>
272
- * Add sourceview example- syntax highlighting source browser for ramaze source code
273
-
274
778
  Fri Oct 5 14:48:48 JST 2007 jesuswasramazing.10.pistos@geoshell.com
275
779
  * gzip filter added
276
780
 
781
+ Thu Oct 11 10:31:18 JST 2007 Aman Gupta <ramaze@tmm1.net>
782
+ * Add sourceview example- syntax highlighting source browser for ramaze source code
783
+
277
784
  Wed Oct 10 21:25:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
278
785
  * Fix <title> in layout example
279
786
 
280
787
  Wed Oct 10 02:07:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
281
788
  * Remove mention of Nginx from feature CGI
282
789
 
790
+ Sun Oct 7 07:26:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
791
+ * rescue MissingArgument for missing arguments in bin/ramaze
792
+
793
+ Sat Oct 6 00:27:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
794
+ * Add doc/LEGAL that is required by doc/LEGAL, holds a list of licenses and authors of files we use but do not 'own'.
795
+
283
796
  Fri Oct 5 14:29:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
284
797
  * Add Global.boring to avoid logging of some static files
285
798
 
@@ -298,12 +811,6 @@ Wed Oct 3 08:47:47 JST 2007 Aman Gupta <ramaze@tmm1.net>
298
811
  Wed Oct 3 08:43:55 JST 2007 Aman Gupta <ramaze@tmm1.net>
299
812
  * Ignore /favicon.ico by default
300
813
 
301
- Sun Oct 7 07:26:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
302
- * rescue MissingArgument for missing arguments in bin/ramaze
303
-
304
- Sat Oct 6 00:27:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
305
- * Add doc/LEGAL that is required by doc/LEGAL, holds a list of licenses and authors of files we use but do not 'own'.
306
-
307
814
  Wed Oct 3 08:36:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
308
815
  * Add the needed adapter/swiftiplied_mongrel and adapter/evented_mongrel
309
816
 
@@ -313,15 +820,15 @@ Wed Oct 3 08:31:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
313
820
  Wed Oct 3 00:25:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
314
821
  * Fix hash-order issue for gestalt spec.
315
822
 
316
- Sat Sep 29 22:37:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
317
- * Gestalt should accept symbols as attributes
318
-
319
823
  Mon Oct 1 01:33:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
320
824
  * Fix reference and logging of CGI adapter.
321
825
 
322
826
  Sun Sep 30 14:14:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
323
827
  * Fix docs for AuthHelper
324
828
 
829
+ Sat Sep 29 22:37:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
830
+ * Gestalt should accept symbols as attributes
831
+
325
832
  Thu Sep 27 01:02:07 JST 2007 Jonathan Buch <john@oxyliquit.de>
326
833
  * [localize] normalize session locale too
327
834
 
@@ -346,15 +853,15 @@ Tue Sep 25 13:17:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
346
853
  Tue Sep 25 23:05:10 JST 2007 jesuswasramazing.10.pistos@geoshell.com
347
854
  * trivial comment changes
348
855
 
349
- Sun Sep 23 04:17:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
350
- * Remove unused methods from Action
351
-
352
856
  Sun Sep 23 14:12:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
353
857
  * Global.ignore now only ignores files if they don't exist.
354
858
 
355
859
  Sun Sep 23 14:09:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
356
860
  * Fix requires for to specs.
357
861
 
862
+ Sun Sep 23 04:17:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
863
+ * Remove unused methods from Action
864
+
358
865
  Sat Sep 22 07:55:25 JST 2007 stephan@spaceboyz.net
359
866
  * XSLT template example: add Content-Type
360
867