ramaze 2008.11 → 2009.01

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. data/README.markdown +7 -7
  2. data/benchmark/run.rb +1 -1
  3. data/doc/CHANGELOG +662 -0
  4. data/examples/app/blog/model/entry.rb +8 -1
  5. data/examples/app/blog/spec/blog.rb +2 -2
  6. data/examples/app/rapaste/spec/rapaste.rb +1 -1
  7. data/examples/app/rapaste/start.rb +2 -2
  8. data/examples/app/rapaste/view/view.xhtml +3 -0
  9. data/examples/app/todolist/spec/todolist.rb +1 -1
  10. data/examples/app/whywiki/spec/whywiki.rb +1 -1
  11. data/examples/app/wikore/spec/wikore.rb +1 -1
  12. data/examples/app/wikore/src/model.rb +8 -2
  13. data/examples/app/wiktacular/spec/wiktacular.rb +1 -1
  14. data/examples/app/wiktacular/src/model.rb +1 -1
  15. data/examples/basic/partial.rb +28 -0
  16. data/examples/helpers/httpdigest.rb +68 -10
  17. data/examples/misc/ramaise.rb +2 -2
  18. data/examples/templates/template_amrita2.rb +1 -1
  19. data/examples/templates/template_erubis.rb +1 -1
  20. data/examples/templates/template_ezamar.rb +1 -1
  21. data/examples/templates/template_haml.rb +2 -2
  22. data/examples/templates/template_liquid.rb +1 -1
  23. data/examples/templates/template_markaby.rb +2 -2
  24. data/examples/templates/template_nagoro.rb +1 -1
  25. data/examples/templates/template_redcloth.rb +1 -1
  26. data/examples/templates/template_remarkably.rb +2 -2
  27. data/examples/templates/template_tenjin.rb +1 -1
  28. data/examples/templates/template_xslt.rb +1 -1
  29. data/lib/proto/controller/init.rb +2 -1
  30. data/lib/proto/model/init.rb +3 -3
  31. data/lib/proto/public/dispatch.fcgi +2 -2
  32. data/lib/proto/spec/main.rb +3 -3
  33. data/lib/proto/start.rb +4 -0
  34. data/lib/ramaze.rb +6 -0
  35. data/lib/ramaze/action.rb +7 -1
  36. data/lib/ramaze/action/render.rb +6 -5
  37. data/lib/ramaze/cache.rb +1 -0
  38. data/lib/ramaze/cache/file.rb +71 -0
  39. data/lib/ramaze/contrib.rb +1 -1
  40. data/lib/ramaze/contrib/email.rb +2 -0
  41. data/lib/ramaze/contrib/facebook.rb +2 -2
  42. data/lib/ramaze/contrib/file_cache.rb +2 -64
  43. data/lib/ramaze/contrib/sequel/image.rb +1 -1
  44. data/lib/ramaze/controller.rb +9 -1
  45. data/lib/ramaze/controller/resolve.rb +10 -5
  46. data/lib/ramaze/current/request.rb +87 -70
  47. data/lib/ramaze/current/session.rb +3 -5
  48. data/lib/ramaze/current/session/hash.rb +7 -11
  49. data/lib/ramaze/dispatcher/action.rb +2 -0
  50. data/lib/ramaze/dispatcher/file.rb +6 -1
  51. data/lib/ramaze/helper.rb +12 -4
  52. data/lib/ramaze/helper/aspect.rb +2 -2
  53. data/lib/ramaze/helper/bench.rb +43 -0
  54. data/lib/ramaze/helper/form.rb +5 -2
  55. data/lib/ramaze/helper/formatting.rb +4 -0
  56. data/lib/ramaze/helper/gravatar.rb +18 -1
  57. data/lib/ramaze/helper/httpdigest.rb +55 -28
  58. data/lib/ramaze/helper/markaby.rb +1 -1
  59. data/lib/ramaze/helper/maruku.rb +2 -0
  60. data/lib/ramaze/helper/paginate.rb +1 -1
  61. data/lib/ramaze/helper/partial.rb +1 -1
  62. data/lib/ramaze/helper/redirect.rb +22 -4
  63. data/lib/ramaze/helper/user.rb +4 -4
  64. data/lib/ramaze/option.rb +1 -1
  65. data/lib/ramaze/option/holder.rb +3 -3
  66. data/lib/ramaze/reloader.rb +25 -41
  67. data/lib/ramaze/reloader/watch_inotify.rb +85 -0
  68. data/lib/ramaze/reloader/watch_stat.rb +58 -0
  69. data/lib/ramaze/snippets/divide.rb +2 -0
  70. data/lib/ramaze/snippets/numeric/time.rb +1 -1
  71. data/lib/ramaze/snippets/object/__dir__.rb +3 -3
  72. data/lib/ramaze/snippets/object/acquire.rb +3 -6
  73. data/lib/ramaze/snippets/ramaze/acquire.rb +31 -0
  74. data/lib/ramaze/snippets/ramaze/deprecated.rb +2 -1
  75. data/lib/ramaze/spec/helper/mock_http.rb +6 -5
  76. data/lib/ramaze/template/ezamar/render_partial.rb +8 -0
  77. data/lib/ramaze/tool/mime.rb +1 -1
  78. data/lib/ramaze/tool/project_creator.rb +2 -1
  79. data/lib/ramaze/version.rb +2 -2
  80. data/rake_tasks/coverage.rake +4 -5
  81. data/rake_tasks/spec.rake +6 -6
  82. data/ramaze-2008.11.gem +0 -0
  83. data/ramaze.gemspec +759 -758
  84. data/spec/contrib/profiling.rb +2 -2
  85. data/spec/ramaze/action/file_cache.rb +1 -1
  86. data/spec/ramaze/action/layout.rb +1 -1
  87. data/spec/ramaze/controller/actionless_templates.rb +1 -1
  88. data/spec/ramaze/controller/resolve.rb +1 -1
  89. data/spec/ramaze/controller/template_resolving.rb +1 -1
  90. data/spec/ramaze/dispatcher/directory.rb +3 -3
  91. data/spec/ramaze/helper/aspect.rb +1 -1
  92. data/spec/ramaze/helper/partial.rb +1 -1
  93. data/spec/ramaze/localize.rb +1 -1
  94. data/spec/ramaze/rewrite.rb +1 -1
  95. data/spec/ramaze/template.rb +3 -3
  96. data/spec/ramaze/template/amrita2.rb +1 -1
  97. data/spec/ramaze/template/erubis.rb +1 -1
  98. data/spec/ramaze/template/ezamar.rb +1 -1
  99. data/spec/ramaze/template/haml.rb +2 -2
  100. data/spec/ramaze/template/nagoro.rb +1 -1
  101. data/spec/ramaze/template/redcloth.rb +1 -1
  102. data/spec/ramaze/template/sass.rb +1 -1
  103. data/spec/ramaze/template/tenjin.rb +1 -1
  104. data/spec/snippets/object/__dir__.rb +6 -0
  105. data/spec/snippets/{object → ramaze}/acquire.rb +24 -18
  106. metadata +18 -16
  107. data/lib/ramaze/contrib/auto_params.rb +0 -135
  108. data/lib/ramaze/contrib/auto_params/get_args.rb +0 -58
  109. data/spec/contrib/auto_params.rb +0 -121
  110. data/spec/snippets/divide.rb +0 -19
@@ -1,4 +1,4 @@
1
- Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
1
+ Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
2
  All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
4
  # About Ramaze
@@ -85,7 +85,7 @@ Ramaze offers following features at the moment:
85
85
  * [Sass](http://haml.hamptoncatlin.com/docs/sass)
86
86
 
87
87
  Sass is a meta-language on top of CSS that‘s used to describe the style of
88
- a document cleanly and structurally, with more power than flat CSS allows.
88
+ a document cleanly and structurally, with more power than flat CSS allows.
89
89
 
90
90
  * Ezamar
91
91
 
@@ -98,7 +98,7 @@ Ramaze offers following features at the moment:
98
98
  * MemCache
99
99
 
100
100
  * Helper
101
- * Active by default
101
+ * Active by default
102
102
  * CGI
103
103
 
104
104
  Shortcuts for escape/unescape of the CGI module.
@@ -197,7 +197,7 @@ There are some basic principles that Ramaze tries to follow:
197
197
  available, giving you full control over your system.
198
198
 
199
199
  Even the most essential parts of Ramaze can easily be replaced and/or modified
200
- without losing the advantage of the whole framework.
200
+ without losing the advantage of the whole framework.
201
201
 
202
202
  * Minimal dependencies
203
203
 
@@ -357,7 +357,7 @@ Some places to get started are:
357
357
 
358
358
  There are some examples for your instant pleasure inside the examples-directory
359
359
  in the Ramaze-distribution.
360
- To start up an example, you can use the Ramaze binary located in bin/ramaze
360
+ To start up an example, you can use the Ramaze binary located in bin/ramaze
361
361
  for example:
362
362
 
363
363
  $ ramaze examples/hello.rb
@@ -408,12 +408,12 @@ For help you can:
408
408
 
409
409
  * Performance
410
410
  * Serving
411
-
411
+
412
412
  For best performance you should consider using Mongrel to host your
413
413
  application.
414
414
 
415
415
  * Caching
416
-
416
+
417
417
  You can easily cache your pages using the CacheHelper.
418
418
  Also, using MemCache gives you high-end performance and security.
419
419
 
@@ -176,7 +176,7 @@ class RamazeBenchmark
176
176
 
177
177
  # benchmarks
178
178
  __DIR__ = File.expand_path(File.dirname(__FILE__))
179
- Dir[__DIR__/"suite"/"*.rb"].each do |filename|
179
+ Dir[__DIR__('suite/*.rb')].each do |filename|
180
180
  @adapters.each do |adapter|
181
181
  @paths.each do |path|
182
182
  benchmark(filename, adapter, path) if @target.match(filename)
@@ -1,3 +1,665 @@
1
+ commit 69bd599a5eb0ca96f1c99de9cf87a3c6ca4018a6
2
+ Merge: 701211d... 674943e...
3
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
4
+ Date: Mon Jan 12 13:23:48 2009 -0500
5
+
6
+ Merge branch 'master' of git@github.com:Pistos/ramaze
7
+
8
+ commit 674943ef46a81babe6df42123e964af95cf985cb
9
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
10
+ Date: Mon Jan 12 10:59:58 2009 -0500
11
+
12
+ Updated Ramaze::VERSION to 2009.01.
13
+
14
+ commit 4b76ec4ecb54f3aa0d9fe1f4abfac42f4f1e00ab
15
+ Merge: e3df9f7... 0577e1d...
16
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
17
+ Date: Mon Jan 12 10:59:35 2009 -0500
18
+
19
+ Merge branch 'master' of git://github.com/manveru/ramaze
20
+
21
+ commit 0577e1d8cdf5df7b62fc3c943303bbd980472519
22
+ Author: Michael Fellinger <m.fellinger@gmail.com>
23
+ Date: Thu Jan 8 10:01:07 2009 +0900
24
+
25
+ Default helpers for markaby helper
26
+
27
+ commit a1cc87810bf3064f9e87a190e1c7a900bd5d2d2e
28
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
29
+ Date: Wed Jan 7 04:15:46 2009 +0800
30
+
31
+ Changed @routed (in Ramaze::Controller << self ) to be Thread.current[ :routed ]
32
+ since, in multithreaded situations (e.g. webrick, mongrel) with multiple
33
+ concurrent hits, the @routed variable would get shared among threads, leading
34
+ to values that did not reflect reality. This caused routing to fail about 1 to
35
+ 10 times per 10000 requests.
36
+
37
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
38
+
39
+ commit e3df9f723bf3dbc6574f95873ca40829626bb0a1
40
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
41
+ Date: Tue Jan 6 15:15:46 2009 -0500
42
+
43
+ Changed @routed (in Ramaze::Controller << self ) to be Thread.current[ :routed ]
44
+ since, in multithreaded situations (e.g. webrick, mongrel) with multiple
45
+ concurrent hits, the @routed variable would get shared among threads, leading
46
+ to values that did not reflect reality. This caused routing to fail about 1 to
47
+ 10 times per 10000 requests.
48
+
49
+ commit 3fce855c0aeb867bc2fa816d4c322846c17e93c9
50
+ Merge: d906e75... 345b110...
51
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
52
+ Date: Tue Jan 6 15:12:51 2009 -0500
53
+
54
+ Merge branch 'manveru-old'
55
+
56
+ commit d906e751e19dc6c98c2534fbc7554e2fbda31ef4
57
+ Merge: 45238f9... 121f7be...
58
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
59
+ Date: Tue Jan 6 15:09:12 2009 -0500
60
+
61
+ Merge branch 'master' of git://github.com/manveru/ramaze
62
+
63
+ commit 345b11011df873a3d2c6c958c02d8a26dc01ab1f
64
+ Merge: a298997... 45238f9...
65
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
66
+ Date: Tue Jan 6 15:08:10 2009 -0500
67
+
68
+ Merge branch 'master' of git@github.com:Pistos/ramaze
69
+
70
+ commit a29899710a0a2ade5dcacd849ce7d71a8625cfef
71
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
72
+ Date: Tue Jan 6 14:59:34 2009 -0500
73
+
74
+ More robust "create table" block for blog example and wikore example.
75
+ (Takes away problem with Sequel gem incorrectly reporting table existence.)
76
+
77
+ commit f259c8bfd7969276e73771fbb635b50aba829c0d
78
+ Merge: 1f9b7b4... 121f7be...
79
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
80
+ Date: Tue Jan 6 13:18:36 2009 -0500
81
+
82
+ Merge branch 'master' of git://github.com/manveru/ramaze
83
+
84
+ commit 701211d240a5aebbca52ab6a20f5481f9e3bcc98
85
+ Merge: 45238f9... 121f7be...
86
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
87
+ Date: Mon Jan 5 22:21:36 2009 -0500
88
+
89
+ Merge branch 'master' of git://github.com/manveru/ramaze
90
+
91
+ commit 121f7be9f488c1c798a6be2ec4344b08579e3b6b
92
+ Author: Michael Fellinger <m.fellinger@gmail.com>
93
+ Date: Thu Jan 1 12:51:47 2009 +0900
94
+
95
+ Use path_info instead of request_path
96
+
97
+ commit 45238f9d1504143a957d6ad89aab7d22673a62f4
98
+ Merge: 6dccd91... d86f44a...
99
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
100
+ Date: Tue Dec 30 20:42:48 2008 -0500
101
+
102
+ Merge branch 'master' of git@github.com:Pistos/ramaze
103
+
104
+ commit 6dccd917e5c76a78daf521adbaac7286f5d9bf22
105
+ Merge: 46abb06... 440f6ec...
106
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
107
+ Date: Tue Dec 30 20:40:04 2008 -0500
108
+
109
+ Merge branch 'master' of git://github.com/manveru/ramaze
110
+
111
+ commit 46abb0664a268ce9333d184196a7e5631d7421f9
112
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
113
+ Date: Tue Dec 30 20:39:07 2008 -0500
114
+
115
+ Adjusted post_install_message not to mention ramaze --create,
116
+ and also to mention the IRC channel and main website.
117
+ Added rubyforge_project.
118
+
119
+ commit e6334364cae31ccf50ae3c4d0822e9353e7d37cf
120
+ Author: Michael Fellinger <m.fellinger@gmail.com>
121
+ Date: Sat Dec 27 19:56:07 2008 +0900
122
+
123
+ Correct docs for Request#subset
124
+
125
+ commit 440f6ecfa9065a6e2ecf68db75d04735eae5ce37
126
+ Author: Michael Fellinger <m.fellinger@gmail.com>
127
+ Date: Fri Dec 26 17:53:29 2008 +0900
128
+
129
+ Global.file_cache may now be a String to indicate where to cache actions
130
+
131
+ commit 440e7938bc818b522e3dc4eb170145a322368e70
132
+ Author: Michael Fellinger <m.fellinger@gmail.com>
133
+ Date: Fri Dec 26 17:49:29 2008 +0900
134
+
135
+ Make inotify work consistently and without memory leaks
136
+
137
+ commit 42a7b04ce01e629e5cff05ca07b34732330ed882
138
+ Author: Michael Fellinger <m.fellinger@gmail.com>
139
+ Date: Thu Dec 25 00:37:15 2008 +0900
140
+
141
+ Fix gemspec
142
+
143
+ commit 3f75222d2943b6b2c733fc73af4a6d82b4c13031
144
+ Author: Michael Fellinger <m.fellinger@gmail.com>
145
+ Date: Wed Dec 24 16:42:22 2008 +0900
146
+
147
+ Split watchers into separate files, only load what we need
148
+
149
+ commit 64d6b2156b79b6a97a6b830b97c00bfb328bbac3
150
+ Author: Michael Fellinger <m.fellinger@gmail.com>
151
+ Date: Wed Dec 24 16:36:09 2008 +0900
152
+
153
+ Delegate cooldown to watchers
154
+
155
+ commit 21088c8671257392a46db285b53daee06171f81f
156
+ Author: Michael Fellinger <m.fellinger@gmail.com>
157
+ Date: Wed Dec 24 16:29:08 2008 +0900
158
+
159
+ Improve coding style of file_watcher
160
+
161
+ commit 135eebaafa5e16acc36da028005a52fc8d563a31
162
+ Author: Michael Fellinger <m.fellinger@gmail.com>
163
+ Date: Wed Dec 24 16:04:22 2008 +0900
164
+
165
+ Add Helper::Bench
166
+
167
+ commit 48934a895bcc85f944db630a4b52b27fa1f6c3c0
168
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
169
+ Date: Mon Dec 22 14:01:13 2008 +0800
170
+
171
+ update comments on Ramaze::Reloader
172
+
173
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
174
+
175
+ commit 08d8923f3fe008c7b3daf7c3d01e7fb61fbf77a0
176
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
177
+ Date: Mon Dec 22 13:43:23 2008 +0800
178
+
179
+ make InotifyFileWatcher work better
180
+
181
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
182
+
183
+ commit 369b21580a825a8ea7d806ebf0448926b0de2d57
184
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
185
+ Date: Mon Dec 22 12:52:36 2008 +0800
186
+
187
+ move FileWatchers from Ramaze to Ramaze::Reloader
188
+
189
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
190
+
191
+ commit eca26ad27e98b295800a4e8745dda077b53585b4
192
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
193
+ Date: Mon Dec 22 12:51:19 2008 +0800
194
+
195
+ preliminary version of InotifyFileWatcher for reloader
196
+
197
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
198
+
199
+ commit deddbfe6b84c6d8c8bb6a7e1765699a59fb6b3cd
200
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
201
+ Date: Mon Dec 22 12:28:12 2008 +0800
202
+
203
+ split reloader's file watcher to StatFileWatcher
204
+
205
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
206
+
207
+ commit 0ead73653f802da204cc47959a5a6af170156a7b
208
+ Merge: 41b745b... bcde22a...
209
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
210
+ Date: Mon Dec 22 22:19:02 2008 -0500
211
+
212
+ Merge branch 'master' of git://github.com/manveru/ramaze
213
+
214
+ commit 1f9b7b4aff87d7de789c2f97e2be19ac11fdb9fe
215
+ Merge: 815975d... bcde22a...
216
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
217
+ Date: Mon Dec 22 10:06:58 2008 -0500
218
+
219
+ Merge branch 'master' of git://github.com/manveru/ramaze
220
+
221
+ commit bcde22a289dfb1545f7908597916556ff437859a
222
+ Author: Aki Reijonen <aki.reijonen@gmail.com>
223
+ Date: Sat Dec 20 16:48:39 2008 +0800
224
+
225
+ fix a typo in comments at lib/ramaze/contrib/sequel/image.rb
226
+
227
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
228
+
229
+ commit 5af757579394f8d90163127fc3aebf493a8287c0
230
+ Author: Michael Fellinger <m.fellinger@gmail.com>
231
+ Date: Fri Dec 19 13:10:48 2008 +0900
232
+
233
+ Fix gemspec
234
+
235
+ commit ce75e8e2e15c7e9de5e07103d8e05b38ab9bcf01
236
+ Author: Michael Fellinger <m.fellinger@gmail.com>
237
+ Date: Fri Dec 19 13:09:50 2008 +0900
238
+
239
+ Update gemspec for Version 2008.12
240
+
241
+ commit f871f8a0274494c963d05895939d4d220ccc6d6a
242
+ Author: Michael Fellinger <m.fellinger@gmail.com>
243
+ Date: Mon Dec 15 19:15:58 2008 +0900
244
+
245
+ Fix logic error in session
246
+
247
+ commit 5b665383416f168b265d42b5e794951833669bc4
248
+ Author: Michael Fellinger <m.fellinger@gmail.com>
249
+ Date: Mon Dec 15 19:15:31 2008 +0900
250
+
251
+ FileCache shouldn't be a singleton
252
+
253
+ commit 163684e695ff291446946e4280d8d1fb7d8ddffe
254
+ Author: Michael Fellinger <m.fellinger@gmail.com>
255
+ Date: Mon Dec 15 18:53:46 2008 +0900
256
+
257
+ A little bit better coding style for session
258
+
259
+ commit 0f04f649875bda3d4ed950d138774fd8e5324fee
260
+ Author: Michael Fellinger <m.fellinger@gmail.com>
261
+ Date: Mon Dec 15 18:53:24 2008 +0900
262
+
263
+ Move FileCache out of contrib into ramaze/cache/file, add autoload, unify style
264
+
265
+ commit 65bcc88db0e435742b74b41a9395bfdc49ec134e
266
+ Author: Michael Fellinger <m.fellinger@gmail.com>
267
+ Date: Mon Dec 15 18:50:12 2008 +0900
268
+
269
+ Always persist session on access (quickfix)
270
+
271
+ commit 9bf573ae2a5ccc921008e0ed3864223f7df0f8a2
272
+ Author: Michael Fellinger <m.fellinger@gmail.com>
273
+ Date: Sun Dec 14 13:07:16 2008 +0900
274
+
275
+ Request#params should just use super
276
+
277
+ commit 31d96a4d19dedf94bc020aee285501983ed66e81
278
+ Author: Michael Fellinger <m.fellinger@gmail.com>
279
+ Date: Sun Dec 14 13:06:14 2008 +0900
280
+
281
+ Add some docs and an example of how to use ezamar RenderPartial
282
+
283
+ commit b98f5ffcfb832af6cf49a77bc986b75b14b13fd8
284
+ Author: Michael Fellinger <m.fellinger@gmail.com>
285
+ Date: Fri Dec 12 14:30:22 2008 +0900
286
+
287
+ Hardcode default redirect status, rack changed name
288
+
289
+ commit 31baec52795dd2b39897951079aba4e4278cf6b9
290
+ Author: Andreas Karlsson <andreas@proxel.se>
291
+ Date: Wed Dec 3 23:52:52 2008 +0100
292
+
293
+ Fix for random overwrite of referrer in MockHTTP.
294
+
295
+ This bug caused :referrer to be randomly over written by nil from not set
296
+ :referer, or the other way round depending on order the hash was iterated
297
+ over. As a side effect we also get rid of various HTTP_* set to null when
298
+ missing from the query hash.
299
+
300
+ Also fix incorrect indentation in the make_query function; tabs converted
301
+ to spaces.
302
+
303
+ commit f46f8663fd5e6a24c0c3229f4b9b3de968b59b38
304
+ Author: Michael Fellinger <m.fellinger@gmail.com>
305
+ Date: Tue Dec 2 00:41:14 2008 +0900
306
+
307
+ proper gravatar escaping
308
+
309
+ commit 4d2d83606386934dc7ed6da240ba0fdcc128d144
310
+ Author: Michael Fellinger <m.fellinger@gmail.com>
311
+ Date: Sat Nov 29 17:41:11 2008 +0900
312
+
313
+ docs and improvments for redirect_referrer
314
+
315
+ commit 4eb3584302b838e57566fc9de9ea4d310c2bd1fc
316
+ Author: Michael Fellinger <m.fellinger@gmail.com>
317
+ Date: Sat Nov 29 17:40:54 2008 +0900
318
+
319
+ Docs for to_ivs
320
+
321
+ commit 76d560b3969308602c8f15d32f1048b82261338f
322
+ Author: Michael Fellinger <m.fellinger@gmail.com>
323
+ Date: Sat Nov 29 15:18:08 2008 +0900
324
+
325
+ Remove another usage of String#/
326
+
327
+ commit 77e94034e98aace7f82a18e45875a65c660fe40e
328
+ Author: Michael Fellinger <m.fellinger@gmail.com>
329
+ Date: Sat Nov 29 00:45:49 2008 +0900
330
+
331
+ Remove blog.db
332
+
333
+ commit 4a6c90c9a79e5982c58c9c92c34605dd9ef9f1f4
334
+ Author: Riku Raisaenen <riku@helloit.fi>
335
+ Date: Tue Jun 17 00:14:45 2008 +0300
336
+
337
+ Added documentation as well as I could, rdoc coverage up from 78 to 80 or so.
338
+
339
+ commit ee1e340f51db8566002689decdeb53cbb180f6c8
340
+ Author: Michael Fellinger <m.fellinger@gmail.com>
341
+ Date: Thu Nov 27 21:17:02 2008 +0900
342
+
343
+ more specific errors for Helper
344
+
345
+ commit 97ffb78d7da2d6430522a80fda65dd6095259747
346
+ Merge: 4909f01... c7fb57b...
347
+ Author: Clive Crous <clive@crous.co.za>
348
+ Date: Thu Dec 18 10:51:10 2008 +0200
349
+
350
+ Merge commit 'origin/master'
351
+
352
+ commit c7fb57b271b66817e9a5a15135a9227192040774
353
+ Author: Aman Gupta <aman@tmm1.net>
354
+ Date: Wed Dec 17 14:30:58 2008 -0800
355
+
356
+ Fix Numeric#years
357
+
358
+ commit 612f37fcef319e4c72965bb6a683e9fc52108326
359
+ Author: Vincent Roy <VincentRoy8@gmail.com>
360
+ Date: Tue Dec 9 23:57:13 2008 +0800
361
+
362
+ Change to File.join because String#/ is deprecated
363
+
364
+ Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
365
+
366
+ commit 815975dba2b5384aa4f1f9c6a178e8f7913ce63a
367
+ Author: Andreas Karlsson <andreas@proxel.se>
368
+ Date: Wed Dec 3 23:52:52 2008 +0100
369
+
370
+ Fix for random overwrite of referrer in MockHTTP.
371
+
372
+ This bug caused :referrer to be randomly over written by nil from not set
373
+ :referer, or the other way round depending on order the hash was iterated
374
+ over. As a side effect we also get rid of various HTTP_* set to null when
375
+ missing from the query hash.
376
+
377
+ Also fix incorrect indentation in the make_query function; tabs converted
378
+ to spaces.
379
+
380
+ commit 7e4fbbac3b28669ab2d270793bf98a47f5e41a1d
381
+ Author: Michael Fellinger <m.fellinger@gmail.com>
382
+ Date: Tue Dec 2 00:41:14 2008 +0900
383
+
384
+ proper gravatar escaping
385
+
386
+ commit 8910f172c837ed1d1a96b74352f975a619b7f8bb
387
+ Author: Michael Fellinger <m.fellinger@gmail.com>
388
+ Date: Sat Nov 29 17:41:11 2008 +0900
389
+
390
+ docs and improvments for redirect_referrer
391
+
392
+ commit 2455cd27042bc6c8ca42ee723b0a2dce92005ab7
393
+ Author: Michael Fellinger <m.fellinger@gmail.com>
394
+ Date: Sat Nov 29 17:40:54 2008 +0900
395
+
396
+ Docs for to_ivs
397
+
398
+ commit e20ba1185dc4262ef27a594483649c6d207a1b77
399
+ Author: Michael Fellinger <m.fellinger@gmail.com>
400
+ Date: Sat Nov 29 15:18:08 2008 +0900
401
+
402
+ Remove another usage of String#/
403
+
404
+ commit 09e51c6dff10e701902adccafc41804cdba56ccf
405
+ Author: Michael Fellinger <m.fellinger@gmail.com>
406
+ Date: Sat Nov 29 00:45:49 2008 +0900
407
+
408
+ Remove blog.db
409
+
410
+ commit 1d1e22673101a70a88d9bdf1a8828b45ecafffd0
411
+ Author: Riku Raisaenen <riku@helloit.fi>
412
+ Date: Tue Jun 17 00:14:45 2008 +0300
413
+
414
+ Added documentation as well as I could, rdoc coverage up from 78 to 80 or so.
415
+
416
+ commit 6ab9064d8efb8905c115f6b2eb572c366f84790d
417
+ Author: Michael Fellinger <m.fellinger@gmail.com>
418
+ Date: Thu Nov 27 21:17:02 2008 +0900
419
+
420
+ more specific errors for Helper
421
+
422
+ commit 4909f0185f71eecbc91ce6ae20d41a6bc9c891a6
423
+ Author: Clive Crous <clive@crous.co.za>
424
+ Date: Tue Nov 25 15:41:56 2008 +0200
425
+
426
+ Add method handlers for fetching passwords in httpdigest helper, also optimized slightly and now validate opaque. Example updated to show more ways of using httpdigest including login form 'override'
427
+
428
+ commit 41b745b6fac5e6b9ec90ad1c9f174e19d454e265
429
+ Merge: 21a5be0... 4a4da0b...
430
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
431
+ Date: Sun Nov 23 22:30:49 2008 -0500
432
+
433
+ Merge branch 'master' of git://github.com/manveru/ramaze
434
+
435
+ commit 4a4da0bcd059e5275c4fece05fb2348b41cb941d
436
+ Author: Michael Fellinger <m.fellinger@gmail.com>
437
+ Date: Fri Nov 21 10:57:05 2008 +0900
438
+
439
+ Don't map Controller to /
440
+
441
+ commit da2ac82a0551a0486a5b0c48733b95bcaa66f934
442
+ Author: Michael Fellinger <m.fellinger@gmail.com>
443
+ Date: Thu Nov 20 15:14:45 2008 +0900
444
+
445
+ More accurate warning for Helper::User if model has no class method ::authenticate
446
+
447
+ commit f929291f1fbc89de3c5dd040291e8dc81f61ffcd
448
+ Author: Michael Fellinger <m.fellinger@gmail.com>
449
+ Date: Thu Nov 20 15:14:14 2008 +0900
450
+
451
+ Remove further occurences of String#/
452
+
453
+ commit cf94d60de6c6b9f93c2e6ffc6bc45ce1f8711837
454
+ Author: Colin Shea <colin@centuar.(none)>
455
+ Date: Mon Aug 25 00:29:24 2008 -0400
456
+
457
+ Added JS Hack to rapaste: Double clicking on the box in a paste causes the line numbers to toggle visibility. This is *very* slow, due to the fact that jQuery has to toggle the visibility of each line number instead of a parent element.
458
+
459
+ commit 7fb99d3774f3fe09659d45677979c4921510df53
460
+ Author: Michael Fellinger <m.fellinger@gmail.com>
461
+ Date: Mon Nov 17 14:33:56 2008 +0900
462
+
463
+ Fix docs for Helper::User
464
+
465
+ commit e12ea27758ae64157573ad30af5a13ddcda44f3e
466
+ Author: Michael Fellinger <m.fellinger@gmail.com>
467
+ Date: Mon Nov 17 14:33:43 2008 +0900
468
+
469
+ Give information about location where deprecated method is being used
470
+
471
+ commit d88b01987d863934e1164f5531e8a4a6a0893d1f
472
+ Author: Michael Fellinger <m.fellinger@gmail.com>
473
+ Date: Mon Nov 17 14:33:17 2008 +0900
474
+
475
+ Deprecate String#/ and Symbol#/ and remove most usage of it
476
+
477
+ commit 1dd272c88f50f9debd201a912a626fe88f33b0e4
478
+ Author: Michael Fellinger <m.fellinger@gmail.com>
479
+ Date: Mon Nov 17 14:31:30 2008 +0900
480
+
481
+ Remove specs for divide, move acquire spec to Ramaze
482
+
483
+ commit 8afb9c784467240ea235a5af5d8d57d552873248
484
+ Author: Michael Fellinger <m.fellinger@gmail.com>
485
+ Date: Mon Nov 17 14:18:39 2008 +0900
486
+
487
+ Thread ID may be negative
488
+
489
+ commit 94d14f13b86e9c6e1baee24026cfaf734118d614
490
+ Author: Michael Fellinger <m.fellinger@gmail.com>
491
+ Date: Mon Nov 17 14:11:03 2008 +0900
492
+
493
+ Remove contrib/auto_params
494
+
495
+ commit a6c24f7d7b767fc9579749a1a8b299c1d0c78a19
496
+ Author: Michael Fellinger <m.fellinger@gmail.com>
497
+ Date: Sun Nov 16 19:58:30 2008 +0900
498
+
499
+ Deprecate Object#acquire and move to Ramaze::acquire
500
+
501
+ commit f46ffc611883a7a3d1d5f5af98edf8af97a3b8f3
502
+ Author: Michael Fellinger <m.fellinger@gmail.com>
503
+ Date: Sun Nov 16 19:54:28 2008 +0900
504
+
505
+ Remove usage of acquire in proto
506
+
507
+ commit 6d4353f5421c23c6126bfb4da2392cf457b6f82f
508
+ Merge: 3966362... c4e3be2...
509
+ Author: Michael Fellinger <m.fellinger@gmail.com>
510
+ Date: Fri Nov 14 02:16:50 2008 +0900
511
+
512
+ Merge branch 'master' of git://github.com/Phrogz/ramaze into Phrogz/master
513
+
514
+ * 'master' of git://github.com/Phrogz/ramaze:
515
+ Create projects even when HOME environment variable not set (e.g. Windows)
516
+
517
+ commit 3966362a11bd0ab323d1ee12554aecb5d3f20606
518
+ Author: Michael Fellinger <m.fellinger@gmail.com>
519
+ Date: Thu Oct 30 12:07:33 2008 +0900
520
+
521
+ call #to_hash on options passed to Ramaze.start
522
+
523
+ commit c4e3be227dd439bfcacefae6cf247b36432a2846
524
+ Author: Gavin Kistner <gavin@phrogz.net>
525
+ Date: Thu Nov 13 09:58:42 2008 -0700
526
+
527
+ Create projects even when HOME environment variable not set (e.g. Windows)
528
+
529
+ commit 21a5be07d05d6c10ea3f17b9c46ba3382d978941
530
+ Merge: 180b416... 2f59f9a...
531
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
532
+ Date: Sun Nov 9 19:28:46 2008 -0500
533
+
534
+ Merge branch 'master' of git://github.com/manveru/ramaze
535
+
536
+ commit 2f59f9af15bfdd73ee651ad2b8ae05b1976a5459
537
+ Author: Clive Crous <clive@crous.co.za>
538
+ Date: Sun Nov 9 14:17:03 2008 +0200
539
+
540
+ Correct usage of uuid within httpdigest helper
541
+
542
+ commit 180b41678b30cfc2be0c4a9f484e1529fc156bdb
543
+ Merge: a992247... 8bd44a8...
544
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
545
+ Date: Sat Nov 8 22:14:56 2008 -0500
546
+
547
+ Merge branch 'master' of git://github.com/manveru/ramaze
548
+
549
+ commit 8bd44a854b6727402ee4aeb2fa2a379a2f21d4cf
550
+ Author: Andrew Farmer <xichekolas@gmail.com>
551
+ Date: Fri Oct 31 16:08:17 2008 -0500
552
+
553
+ Arguments to an action were left out of the urls built by paginate helper.
554
+
555
+ commit a9922473a6b2b7900fcae120005a6606f03228d4
556
+ Merge: 3309861... 8dd792c...
557
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
558
+ Date: Tue Oct 28 23:09:21 2008 -0400
559
+
560
+ Merge branch 'master' of git://github.com/manveru/ramaze
561
+
562
+ commit 8dd792c47fed49481cf39136a24c823c7de53690
563
+ Author: Michael Fellinger <m.fellinger@gmail.com>
564
+ Date: Wed Oct 29 11:02:04 2008 +0900
565
+
566
+ Version 2008.10
567
+
568
+ commit d86f44ae9071c43730439897e852132b0c8e57e8
569
+ Merge: d967b0b... be6e232...
570
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
571
+ Date: Tue Oct 21 08:28:28 2008 -0400
572
+
573
+ Merge branch 'master' of git://github.com/manveru/ramaze
574
+
575
+ commit 3309861307b7b4ae728619a09c281445f309dddd
576
+ Merge: ed5b2e3... be6e232...
577
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
578
+ Date: Sat Oct 18 13:00:02 2008 -0400
579
+
580
+ Merge branch 'master' of git://github.com/manveru/ramaze
581
+
582
+ commit be6e23260e90b2e3e36823ef7367a040ba257798
583
+ Author: Michael Fellinger <m.fellinger@gmail.com>
584
+ Date: Fri Oct 17 01:15:02 2008 +0900
585
+
586
+ Fix localization
587
+
588
+ commit 17c819fbbc23592f6b36120772db8c1be52af0be
589
+ Author: Michael Fellinger <m.fellinger@gmail.com>
590
+ Date: Wed Oct 8 06:24:14 2008 +0300
591
+
592
+ Rescue in rapaste
593
+
594
+ commit 4313c83acf46283c5a1a7c415a7c9f0565a802eb
595
+ Author: Michael Fellinger <m.fellinger@gmail.com>
596
+ Date: Sun Aug 10 11:59:42 2008 +0300
597
+
598
+ Fix port for serving rapaste
599
+
600
+ commit 70f4b7cfc4f1d8c23c9dc6432a54e1ce1954218f
601
+ Author: Michael Fellinger <m.fellinger@gmail.com>
602
+ Date: Sun Oct 5 13:30:40 2008 +0900
603
+
604
+ Simplify Request#[]
605
+
606
+ commit ed5b2e37d13ccb55c3ec659096c306265a864aeb
607
+ Author: Clive Crous <clive@star120.co.za>
608
+ Date: Tue Sep 23 12:12:25 2008 +0200
609
+
610
+ add a logout method for forcing a user to re-login and allowed the ability to override the login failure response type (eg to a custom login page instead of unauthorized default)
611
+
612
+ commit d967b0bc6ebe2d0d1a653b0059ecf2527eef4084
613
+ Author: Lars Olsson <lasso@lasso-laptop.(none)>
614
+ Date: Sun Sep 14 12:28:19 2008 +0200
615
+
616
+ Signed-off-by: Lars Olsson <lasso@lassoweb.se>
617
+
618
+ RotatingInformer is a new Logger class based on Informer that creates
619
+ multiple logs based on time.
620
+
621
+ commit 4c6999a1ff7ddc8144c9ca28e904c3986023f88d
622
+ Author: Aman Gupta <aman@tmm1.net>
623
+ Date: Fri Sep 12 15:38:39 2008 -0700
624
+
625
+ make tagcloud helper 1.8.6 compatible
626
+
627
+ commit e714bce8b7239dc5835c6f21cccc2bfdae8a51ec
628
+ Author: Aman Gupta <aman@tmm1.net>
629
+ Date: Fri Sep 12 15:38:26 2008 -0700
630
+
631
+ use metaprogramming instead of method_missing in OrderedSet
632
+
633
+ commit bd417fc08b358f66d54e33a02ce2113d23c8b7b9
634
+ Author: Aman Gupta <aman@tmm1.net>
635
+ Date: Fri Sep 12 15:34:05 2008 -0700
636
+
637
+ fix auto_params spec
638
+
639
+ commit 85724c13ab64b5dbb63793b85f571f3c75a85da6
640
+ Author: Keita Yamaguchi <keita.yamaguchi@gmail.com>
641
+ Date: Fri Sep 12 07:46:16 2008 +0900
642
+
643
+ Fixed for 1.9 syntax
644
+
645
+ commit 6467d0119534d4940b0c9155f15602c675256a69
646
+ Author: Michael Fellinger <m.fellinger@gmail.com>
647
+ Date: Wed Sep 10 12:14:00 2008 +0900
648
+
649
+ Update ramaze.gemspec
650
+
651
+ commit 81ab66b8197506a3627fb36c600283a56951582b
652
+ Author: Michael Fellinger <m.fellinger@gmail.com>
653
+ Date: Wed Sep 10 12:13:02 2008 +0900
654
+
655
+ Update ramaze.gemspec
656
+
657
+ commit c03b9432a9b313aa8ce02e940a9b6d408dfb4976
658
+ Author: Michael Fellinger <m.fellinger@gmail.com>
659
+ Date: Wed Sep 10 12:12:22 2008 +0900
660
+
661
+ Update CHANGELOG
662
+
1
663
  commit 8702e0f09087f20e5d721d23a04bd473c5f513b0
2
664
  Author: Michael Fellinger <m.fellinger@gmail.com>
3
665
  Date: Wed Sep 10 12:09:52 2008 +0900