ramaze 2009.02 → 2009.03
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.
- data/{README.markdown → README.md} +8 -8
- data/Rakefile +21 -1
- data/doc/CHANGELOG +0 -796
- data/doc/readme_chunks/getting_help.txt +1 -1
- data/doc/tutorial/todolist.html +1 -1
- data/doc/tutorial/todolist.mkd +2 -2
- data/examples/app/blog/model/entry.rb +1 -8
- data/examples/app/wikore/src/model.rb +1 -7
- data/examples/app/wiktacular/template/html_layout.xhtml +1 -1
- data/lib/proto/view/index.xhtml +2 -2
- data/lib/ramaze/cache/file.rb +2 -2
- data/lib/ramaze/contrib/gems.rb +17 -13
- data/lib/ramaze/current/response.rb +2 -4
- data/lib/ramaze/helper/httpdigest.rb +7 -2
- data/lib/ramaze/helper/paginate.rb +1 -1
- data/lib/ramaze/reloader.rb +2 -2
- data/lib/ramaze/snippets/ramaze/fiber.rb +2 -1
- data/lib/ramaze/template/amrita2.rb +6 -2
- data/lib/ramaze/template/sass.rb +1 -0
- data/lib/ramaze/version.rb +2 -2
- data/rake_tasks/conf.rake +3 -17
- data/rake_tasks/gem.rake +1 -1
- data/rake_tasks/metric.rake +1 -1
- data/spec/ramaze/template/sass.rb +1 -0
- metadata +6 -26
- data/cache.yaml +0 -7
- data/ramaze.gemspec +0 -622
- data/spec/ramaze/view/ezamar/external.xhtml +0 -8
- data/test.out +0 -1588
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c)
|
1
|
+
Copyright (c) 2008 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
|
@@ -401,19 +401,19 @@ For help you can:
|
|
401
401
|
|
402
402
|
- Visit us in the channel #ramaze on irc.freenode.net
|
403
403
|
|
404
|
-
- Join the Mailinglist at http://
|
404
|
+
- Join the Mailinglist at http://ramaze.rubyforge.org
|
405
405
|
|
406
406
|
|
407
407
|
# Appendix
|
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
|
|
data/Rakefile
CHANGED
@@ -107,7 +107,7 @@ desc "create bzip2 and tarball"
|
|
107
107
|
task :distribute => :gem do
|
108
108
|
sh "rm -rf pkg/ramaze-#{VERS}"
|
109
109
|
sh "mkdir -p pkg/ramaze-#{VERS}"
|
110
|
-
sh "cp -r {bin,doc,lib,examples,spec,Rakefile,README.
|
110
|
+
sh "cp -r {bin,doc,lib,examples,spec,Rakefile,README.md,rake_tasks} pkg/ramaze-#{VERS}/"
|
111
111
|
|
112
112
|
Dir.chdir('pkg') do |pwd|
|
113
113
|
sh "tar -zcvf ramaze-#{VERS}.tar.gz ramaze-#{VERS}"
|
@@ -226,3 +226,23 @@ task README do
|
|
226
226
|
end
|
227
227
|
end
|
228
228
|
end
|
229
|
+
|
230
|
+
desc 'Generate YARD documentation'
|
231
|
+
task :ydoc do
|
232
|
+
sh('yardoc -o ydoc -r README.md')
|
233
|
+
end
|
234
|
+
|
235
|
+
task :publish => [:ydoc]
|
236
|
+
|
237
|
+
begin
|
238
|
+
require 'grancher/task'
|
239
|
+
|
240
|
+
Grancher::Task.new do |g|
|
241
|
+
g.branch = 'gh-pages'
|
242
|
+
# g.push_to = 'origin'
|
243
|
+
g.message = 'Updated website'
|
244
|
+
g.directory 'ydoc', '.'
|
245
|
+
end
|
246
|
+
rescue LoadError
|
247
|
+
# oh well :)
|
248
|
+
end
|
data/doc/CHANGELOG
CHANGED
@@ -1,799 +1,3 @@
|
|
1
|
-
commit 8191be770086ec4741cb420765b39efcf419d3d2
|
2
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
3
|
-
Date: Fri Feb 13 22:24:58 2009 -0500
|
4
|
-
|
5
|
-
Added more to the post-install message.
|
6
|
-
|
7
|
-
commit 13f56f5e608e7f8a36acfde69858a2946f8eafe9
|
8
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
9
|
-
Date: Fri Feb 13 22:13:49 2009 -0500
|
10
|
-
|
11
|
-
Bumped version to 2009.02.
|
12
|
-
|
13
|
-
commit f73a2b3d6ee54b612fd411816940c991712c9dbe
|
14
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
15
|
-
Date: Fri Feb 13 22:13:19 2009 -0500
|
16
|
-
|
17
|
-
Freshened URLs throughout documentation and examples.
|
18
|
-
|
19
|
-
commit cda6f1e92e2b962c69041f22fa54a8116187ac42
|
20
|
-
Merge: 5b5cb75... 244b7a6...
|
21
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
22
|
-
Date: Fri Feb 13 21:25:00 2009 -0500
|
23
|
-
|
24
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
25
|
-
|
26
|
-
commit 244b7a6e97ea1c196e9a3302d43c98e5de469843
|
27
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
28
|
-
Date: Fri Feb 13 15:40:48 2009 +0900
|
29
|
-
|
30
|
-
Fix strange behaviour when using Fiber
|
31
|
-
|
32
|
-
commit 947f1c6e6ca8b670d9d6541c03f5bbba042b0d4c
|
33
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
34
|
-
Date: Fri Feb 13 15:40:30 2009 +0900
|
35
|
-
|
36
|
-
Remove cruft
|
37
|
-
|
38
|
-
commit 4a2cb9d2908e8c252fa82533b0ff1bc302bee62e
|
39
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
40
|
-
Date: Tue Feb 10 10:33:43 2009 +0900
|
41
|
-
|
42
|
-
Fix typo
|
43
|
-
|
44
|
-
commit e8a062f35716327ad46247cb04b4e0a6b0ac56cb
|
45
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
46
|
-
Date: Sun Feb 8 13:55:27 2009 +0900
|
47
|
-
|
48
|
-
Fix Tool::Localize, would mess up body on 1.9
|
49
|
-
|
50
|
-
commit 5b5cb750bd81e635c347b81eed1b4a90bc5c44ed
|
51
|
-
Merge: 73419a5... 59ac9f6...
|
52
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
53
|
-
Date: Thu Feb 5 23:08:07 2009 -0500
|
54
|
-
|
55
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
56
|
-
|
57
|
-
commit 59ac9f647e548fb62472df6e8d5f02ced09b9681
|
58
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
59
|
-
Date: Wed Feb 4 22:40:59 2009 +0900
|
60
|
-
|
61
|
-
engine should be inherited
|
62
|
-
|
63
|
-
commit 73419a572f1feca51fd70eb087bd5fda680ecae2
|
64
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
65
|
-
Date: Thu Jan 29 19:18:07 2009 -0500
|
66
|
-
|
67
|
-
Updated copyright years in README and version.rb.
|
68
|
-
|
69
|
-
commit 213d7021a2594bd04444c3a1c5c19caecee97a1a
|
70
|
-
Merge: 3c92cd3... 76c8b4a...
|
71
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
72
|
-
Date: Thu Jan 29 19:15:23 2009 -0500
|
73
|
-
|
74
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
75
|
-
|
76
|
-
commit 76c8b4a5968b17baa9d086bf56f619622348a2d7
|
77
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
78
|
-
Date: Sun Jan 25 03:06:33 2009 +0900
|
79
|
-
|
80
|
-
Show more examples of configuring flashbox
|
81
|
-
|
82
|
-
commit ec0ab78612d01c0b4044da7147ee8a1ec0204290
|
83
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
84
|
-
Date: Sun Jan 25 02:41:39 2009 +0900
|
85
|
-
|
86
|
-
Fix bug uncovered by innate specs
|
87
|
-
|
88
|
-
commit 3c92cd35eb153244e47990eeb84297e94ef02d39
|
89
|
-
Merge: d5d3aeb... 01ad163...
|
90
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
91
|
-
Date: Mon Jan 19 13:59:59 2009 -0500
|
92
|
-
|
93
|
-
Merge branch 'master' of git@github.com:Pistos/ramaze
|
94
|
-
|
95
|
-
commit 01ad163a53942bbf9b23cf70c4fd5c69090e7fe9
|
96
|
-
Merge: 674943e... 23592e3...
|
97
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
98
|
-
Date: Mon Jan 19 14:07:51 2009 -0500
|
99
|
-
|
100
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
101
|
-
|
102
|
-
commit d5d3aeb141596cf6159644dd7a4b9e7fe8d83a72
|
103
|
-
Merge: 69bd599... 23592e3...
|
104
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
105
|
-
Date: Mon Jan 19 13:36:53 2009 -0500
|
106
|
-
|
107
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
108
|
-
|
109
|
-
commit 23592e37557128fc1066b59b73bc526168e43e5a
|
110
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
111
|
-
Date: Fri Jan 16 11:59:00 2009 +0900
|
112
|
-
|
113
|
-
s/\t/ /g
|
114
|
-
|
115
|
-
commit b0a5bccc768981c85f8fa395d59441c531517606
|
116
|
-
Author: sean <sean@sean-t61p.(none)>
|
117
|
-
Date: Fri Sep 12 02:27:20 2008 -0400
|
118
|
-
|
119
|
-
fixed https redirect
|
120
|
-
|
121
|
-
commit 7be54038cc81d9ce4051a82b489b732d3eda5323
|
122
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
123
|
-
Date: Tue Jan 13 23:43:03 2009 +0900
|
124
|
-
|
125
|
-
Update gemspec
|
126
|
-
|
127
|
-
commit 6b10ef8bae15b3d626d3d2745b85c2e879e5c8eb
|
128
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
129
|
-
Date: Mon Jan 12 23:59:58 2009 +0800
|
130
|
-
|
131
|
-
Updated Ramaze::VERSION to 2009.01.
|
132
|
-
|
133
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
134
|
-
|
135
|
-
commit 69bd599a5eb0ca96f1c99de9cf87a3c6ca4018a6
|
136
|
-
Merge: 701211d... 674943e...
|
137
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
138
|
-
Date: Mon Jan 12 13:23:48 2009 -0500
|
139
|
-
|
140
|
-
Merge branch 'master' of git@github.com:Pistos/ramaze
|
141
|
-
|
142
|
-
commit 674943ef46a81babe6df42123e964af95cf985cb
|
143
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
144
|
-
Date: Mon Jan 12 10:59:58 2009 -0500
|
145
|
-
|
146
|
-
Updated Ramaze::VERSION to 2009.01.
|
147
|
-
|
148
|
-
commit 4b76ec4ecb54f3aa0d9fe1f4abfac42f4f1e00ab
|
149
|
-
Merge: e3df9f7... 0577e1d...
|
150
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
151
|
-
Date: Mon Jan 12 10:59:35 2009 -0500
|
152
|
-
|
153
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
154
|
-
|
155
|
-
commit 0577e1d8cdf5df7b62fc3c943303bbd980472519
|
156
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
157
|
-
Date: Thu Jan 8 10:01:07 2009 +0900
|
158
|
-
|
159
|
-
Default helpers for markaby helper
|
160
|
-
|
161
|
-
commit a1cc87810bf3064f9e87a190e1c7a900bd5d2d2e
|
162
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
163
|
-
Date: Wed Jan 7 04:15:46 2009 +0800
|
164
|
-
|
165
|
-
Changed @routed (in Ramaze::Controller << self ) to be Thread.current[ :routed ]
|
166
|
-
since, in multithreaded situations (e.g. webrick, mongrel) with multiple
|
167
|
-
concurrent hits, the @routed variable would get shared among threads, leading
|
168
|
-
to values that did not reflect reality. This caused routing to fail about 1 to
|
169
|
-
10 times per 10000 requests.
|
170
|
-
|
171
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
172
|
-
|
173
|
-
commit e3df9f723bf3dbc6574f95873ca40829626bb0a1
|
174
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
175
|
-
Date: Tue Jan 6 15:15:46 2009 -0500
|
176
|
-
|
177
|
-
Changed @routed (in Ramaze::Controller << self ) to be Thread.current[ :routed ]
|
178
|
-
since, in multithreaded situations (e.g. webrick, mongrel) with multiple
|
179
|
-
concurrent hits, the @routed variable would get shared among threads, leading
|
180
|
-
to values that did not reflect reality. This caused routing to fail about 1 to
|
181
|
-
10 times per 10000 requests.
|
182
|
-
|
183
|
-
commit 3fce855c0aeb867bc2fa816d4c322846c17e93c9
|
184
|
-
Merge: d906e75... 345b110...
|
185
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
186
|
-
Date: Tue Jan 6 15:12:51 2009 -0500
|
187
|
-
|
188
|
-
Merge branch 'manveru-old'
|
189
|
-
|
190
|
-
commit d906e751e19dc6c98c2534fbc7554e2fbda31ef4
|
191
|
-
Merge: 45238f9... 121f7be...
|
192
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
193
|
-
Date: Tue Jan 6 15:09:12 2009 -0500
|
194
|
-
|
195
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
196
|
-
|
197
|
-
commit 345b11011df873a3d2c6c958c02d8a26dc01ab1f
|
198
|
-
Merge: a298997... 45238f9...
|
199
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
200
|
-
Date: Tue Jan 6 15:08:10 2009 -0500
|
201
|
-
|
202
|
-
Merge branch 'master' of git@github.com:Pistos/ramaze
|
203
|
-
|
204
|
-
commit a29899710a0a2ade5dcacd849ce7d71a8625cfef
|
205
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
206
|
-
Date: Tue Jan 6 14:59:34 2009 -0500
|
207
|
-
|
208
|
-
More robust "create table" block for blog example and wikore example.
|
209
|
-
(Takes away problem with Sequel gem incorrectly reporting table existence.)
|
210
|
-
|
211
|
-
commit f259c8bfd7969276e73771fbb635b50aba829c0d
|
212
|
-
Merge: 1f9b7b4... 121f7be...
|
213
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
214
|
-
Date: Tue Jan 6 13:18:36 2009 -0500
|
215
|
-
|
216
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
217
|
-
|
218
|
-
commit 701211d240a5aebbca52ab6a20f5481f9e3bcc98
|
219
|
-
Merge: 45238f9... 121f7be...
|
220
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
221
|
-
Date: Mon Jan 5 22:21:36 2009 -0500
|
222
|
-
|
223
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
224
|
-
|
225
|
-
commit 121f7be9f488c1c798a6be2ec4344b08579e3b6b
|
226
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
227
|
-
Date: Thu Jan 1 12:51:47 2009 +0900
|
228
|
-
|
229
|
-
Use path_info instead of request_path
|
230
|
-
|
231
|
-
commit 45238f9d1504143a957d6ad89aab7d22673a62f4
|
232
|
-
Merge: 6dccd91... d86f44a...
|
233
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
234
|
-
Date: Tue Dec 30 20:42:48 2008 -0500
|
235
|
-
|
236
|
-
Merge branch 'master' of git@github.com:Pistos/ramaze
|
237
|
-
|
238
|
-
commit 6dccd917e5c76a78daf521adbaac7286f5d9bf22
|
239
|
-
Merge: 46abb06... 440f6ec...
|
240
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
241
|
-
Date: Tue Dec 30 20:40:04 2008 -0500
|
242
|
-
|
243
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
244
|
-
|
245
|
-
commit 46abb0664a268ce9333d184196a7e5631d7421f9
|
246
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
247
|
-
Date: Tue Dec 30 20:39:07 2008 -0500
|
248
|
-
|
249
|
-
Adjusted post_install_message not to mention ramaze --create,
|
250
|
-
and also to mention the IRC channel and main website.
|
251
|
-
Added rubyforge_project.
|
252
|
-
|
253
|
-
commit e6334364cae31ccf50ae3c4d0822e9353e7d37cf
|
254
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
255
|
-
Date: Sat Dec 27 19:56:07 2008 +0900
|
256
|
-
|
257
|
-
Correct docs for Request#subset
|
258
|
-
|
259
|
-
commit 440f6ecfa9065a6e2ecf68db75d04735eae5ce37
|
260
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
261
|
-
Date: Fri Dec 26 17:53:29 2008 +0900
|
262
|
-
|
263
|
-
Global.file_cache may now be a String to indicate where to cache actions
|
264
|
-
|
265
|
-
commit 440e7938bc818b522e3dc4eb170145a322368e70
|
266
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
267
|
-
Date: Fri Dec 26 17:49:29 2008 +0900
|
268
|
-
|
269
|
-
Make inotify work consistently and without memory leaks
|
270
|
-
|
271
|
-
commit 42a7b04ce01e629e5cff05ca07b34732330ed882
|
272
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
273
|
-
Date: Thu Dec 25 00:37:15 2008 +0900
|
274
|
-
|
275
|
-
Fix gemspec
|
276
|
-
|
277
|
-
commit 3f75222d2943b6b2c733fc73af4a6d82b4c13031
|
278
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
279
|
-
Date: Wed Dec 24 16:42:22 2008 +0900
|
280
|
-
|
281
|
-
Split watchers into separate files, only load what we need
|
282
|
-
|
283
|
-
commit 64d6b2156b79b6a97a6b830b97c00bfb328bbac3
|
284
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
285
|
-
Date: Wed Dec 24 16:36:09 2008 +0900
|
286
|
-
|
287
|
-
Delegate cooldown to watchers
|
288
|
-
|
289
|
-
commit 21088c8671257392a46db285b53daee06171f81f
|
290
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
291
|
-
Date: Wed Dec 24 16:29:08 2008 +0900
|
292
|
-
|
293
|
-
Improve coding style of file_watcher
|
294
|
-
|
295
|
-
commit 135eebaafa5e16acc36da028005a52fc8d563a31
|
296
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
297
|
-
Date: Wed Dec 24 16:04:22 2008 +0900
|
298
|
-
|
299
|
-
Add Helper::Bench
|
300
|
-
|
301
|
-
commit 48934a895bcc85f944db630a4b52b27fa1f6c3c0
|
302
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
303
|
-
Date: Mon Dec 22 14:01:13 2008 +0800
|
304
|
-
|
305
|
-
update comments on Ramaze::Reloader
|
306
|
-
|
307
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
308
|
-
|
309
|
-
commit 08d8923f3fe008c7b3daf7c3d01e7fb61fbf77a0
|
310
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
311
|
-
Date: Mon Dec 22 13:43:23 2008 +0800
|
312
|
-
|
313
|
-
make InotifyFileWatcher work better
|
314
|
-
|
315
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
316
|
-
|
317
|
-
commit 369b21580a825a8ea7d806ebf0448926b0de2d57
|
318
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
319
|
-
Date: Mon Dec 22 12:52:36 2008 +0800
|
320
|
-
|
321
|
-
move FileWatchers from Ramaze to Ramaze::Reloader
|
322
|
-
|
323
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
324
|
-
|
325
|
-
commit eca26ad27e98b295800a4e8745dda077b53585b4
|
326
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
327
|
-
Date: Mon Dec 22 12:51:19 2008 +0800
|
328
|
-
|
329
|
-
preliminary version of InotifyFileWatcher for reloader
|
330
|
-
|
331
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
332
|
-
|
333
|
-
commit deddbfe6b84c6d8c8bb6a7e1765699a59fb6b3cd
|
334
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
335
|
-
Date: Mon Dec 22 12:28:12 2008 +0800
|
336
|
-
|
337
|
-
split reloader's file watcher to StatFileWatcher
|
338
|
-
|
339
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
340
|
-
|
341
|
-
commit 0ead73653f802da204cc47959a5a6af170156a7b
|
342
|
-
Merge: 41b745b... bcde22a...
|
343
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
344
|
-
Date: Mon Dec 22 22:19:02 2008 -0500
|
345
|
-
|
346
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
347
|
-
|
348
|
-
commit 1f9b7b4aff87d7de789c2f97e2be19ac11fdb9fe
|
349
|
-
Merge: 815975d... bcde22a...
|
350
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
351
|
-
Date: Mon Dec 22 10:06:58 2008 -0500
|
352
|
-
|
353
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
354
|
-
|
355
|
-
commit bcde22a289dfb1545f7908597916556ff437859a
|
356
|
-
Author: Aki Reijonen <aki.reijonen@gmail.com>
|
357
|
-
Date: Sat Dec 20 16:48:39 2008 +0800
|
358
|
-
|
359
|
-
fix a typo in comments at lib/ramaze/contrib/sequel/image.rb
|
360
|
-
|
361
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
362
|
-
|
363
|
-
commit 5af757579394f8d90163127fc3aebf493a8287c0
|
364
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
365
|
-
Date: Fri Dec 19 13:10:48 2008 +0900
|
366
|
-
|
367
|
-
Fix gemspec
|
368
|
-
|
369
|
-
commit ce75e8e2e15c7e9de5e07103d8e05b38ab9bcf01
|
370
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
371
|
-
Date: Fri Dec 19 13:09:50 2008 +0900
|
372
|
-
|
373
|
-
Update gemspec for Version 2008.12
|
374
|
-
|
375
|
-
commit f871f8a0274494c963d05895939d4d220ccc6d6a
|
376
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
377
|
-
Date: Mon Dec 15 19:15:58 2008 +0900
|
378
|
-
|
379
|
-
Fix logic error in session
|
380
|
-
|
381
|
-
commit 5b665383416f168b265d42b5e794951833669bc4
|
382
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
383
|
-
Date: Mon Dec 15 19:15:31 2008 +0900
|
384
|
-
|
385
|
-
FileCache shouldn't be a singleton
|
386
|
-
|
387
|
-
commit 163684e695ff291446946e4280d8d1fb7d8ddffe
|
388
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
389
|
-
Date: Mon Dec 15 18:53:46 2008 +0900
|
390
|
-
|
391
|
-
A little bit better coding style for session
|
392
|
-
|
393
|
-
commit 0f04f649875bda3d4ed950d138774fd8e5324fee
|
394
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
395
|
-
Date: Mon Dec 15 18:53:24 2008 +0900
|
396
|
-
|
397
|
-
Move FileCache out of contrib into ramaze/cache/file, add autoload, unify style
|
398
|
-
|
399
|
-
commit 65bcc88db0e435742b74b41a9395bfdc49ec134e
|
400
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
401
|
-
Date: Mon Dec 15 18:50:12 2008 +0900
|
402
|
-
|
403
|
-
Always persist session on access (quickfix)
|
404
|
-
|
405
|
-
commit 9bf573ae2a5ccc921008e0ed3864223f7df0f8a2
|
406
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
407
|
-
Date: Sun Dec 14 13:07:16 2008 +0900
|
408
|
-
|
409
|
-
Request#params should just use super
|
410
|
-
|
411
|
-
commit 31d96a4d19dedf94bc020aee285501983ed66e81
|
412
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
413
|
-
Date: Sun Dec 14 13:06:14 2008 +0900
|
414
|
-
|
415
|
-
Add some docs and an example of how to use ezamar RenderPartial
|
416
|
-
|
417
|
-
commit b98f5ffcfb832af6cf49a77bc986b75b14b13fd8
|
418
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
419
|
-
Date: Fri Dec 12 14:30:22 2008 +0900
|
420
|
-
|
421
|
-
Hardcode default redirect status, rack changed name
|
422
|
-
|
423
|
-
commit 31baec52795dd2b39897951079aba4e4278cf6b9
|
424
|
-
Author: Andreas Karlsson <andreas@proxel.se>
|
425
|
-
Date: Wed Dec 3 23:52:52 2008 +0100
|
426
|
-
|
427
|
-
Fix for random overwrite of referrer in MockHTTP.
|
428
|
-
|
429
|
-
This bug caused :referrer to be randomly over written by nil from not set
|
430
|
-
:referer, or the other way round depending on order the hash was iterated
|
431
|
-
over. As a side effect we also get rid of various HTTP_* set to null when
|
432
|
-
missing from the query hash.
|
433
|
-
|
434
|
-
Also fix incorrect indentation in the make_query function; tabs converted
|
435
|
-
to spaces.
|
436
|
-
|
437
|
-
commit f46f8663fd5e6a24c0c3229f4b9b3de968b59b38
|
438
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
439
|
-
Date: Tue Dec 2 00:41:14 2008 +0900
|
440
|
-
|
441
|
-
proper gravatar escaping
|
442
|
-
|
443
|
-
commit 4d2d83606386934dc7ed6da240ba0fdcc128d144
|
444
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
445
|
-
Date: Sat Nov 29 17:41:11 2008 +0900
|
446
|
-
|
447
|
-
docs and improvments for redirect_referrer
|
448
|
-
|
449
|
-
commit 4eb3584302b838e57566fc9de9ea4d310c2bd1fc
|
450
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
451
|
-
Date: Sat Nov 29 17:40:54 2008 +0900
|
452
|
-
|
453
|
-
Docs for to_ivs
|
454
|
-
|
455
|
-
commit 76d560b3969308602c8f15d32f1048b82261338f
|
456
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
457
|
-
Date: Sat Nov 29 15:18:08 2008 +0900
|
458
|
-
|
459
|
-
Remove another usage of String#/
|
460
|
-
|
461
|
-
commit 77e94034e98aace7f82a18e45875a65c660fe40e
|
462
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
463
|
-
Date: Sat Nov 29 00:45:49 2008 +0900
|
464
|
-
|
465
|
-
Remove blog.db
|
466
|
-
|
467
|
-
commit 4a6c90c9a79e5982c58c9c92c34605dd9ef9f1f4
|
468
|
-
Author: Riku Raisaenen <riku@helloit.fi>
|
469
|
-
Date: Tue Jun 17 00:14:45 2008 +0300
|
470
|
-
|
471
|
-
Added documentation as well as I could, rdoc coverage up from 78 to 80 or so.
|
472
|
-
|
473
|
-
commit ee1e340f51db8566002689decdeb53cbb180f6c8
|
474
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
475
|
-
Date: Thu Nov 27 21:17:02 2008 +0900
|
476
|
-
|
477
|
-
more specific errors for Helper
|
478
|
-
|
479
|
-
commit 97ffb78d7da2d6430522a80fda65dd6095259747
|
480
|
-
Merge: 4909f01... c7fb57b...
|
481
|
-
Author: Clive Crous <clive@crous.co.za>
|
482
|
-
Date: Thu Dec 18 10:51:10 2008 +0200
|
483
|
-
|
484
|
-
Merge commit 'origin/master'
|
485
|
-
|
486
|
-
commit c7fb57b271b66817e9a5a15135a9227192040774
|
487
|
-
Author: Aman Gupta <aman@tmm1.net>
|
488
|
-
Date: Wed Dec 17 14:30:58 2008 -0800
|
489
|
-
|
490
|
-
Fix Numeric#years
|
491
|
-
|
492
|
-
commit 612f37fcef319e4c72965bb6a683e9fc52108326
|
493
|
-
Author: Vincent Roy <VincentRoy8@gmail.com>
|
494
|
-
Date: Tue Dec 9 23:57:13 2008 +0800
|
495
|
-
|
496
|
-
Change to File.join because String#/ is deprecated
|
497
|
-
|
498
|
-
Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
|
499
|
-
|
500
|
-
commit 815975dba2b5384aa4f1f9c6a178e8f7913ce63a
|
501
|
-
Author: Andreas Karlsson <andreas@proxel.se>
|
502
|
-
Date: Wed Dec 3 23:52:52 2008 +0100
|
503
|
-
|
504
|
-
Fix for random overwrite of referrer in MockHTTP.
|
505
|
-
|
506
|
-
This bug caused :referrer to be randomly over written by nil from not set
|
507
|
-
:referer, or the other way round depending on order the hash was iterated
|
508
|
-
over. As a side effect we also get rid of various HTTP_* set to null when
|
509
|
-
missing from the query hash.
|
510
|
-
|
511
|
-
Also fix incorrect indentation in the make_query function; tabs converted
|
512
|
-
to spaces.
|
513
|
-
|
514
|
-
commit 7e4fbbac3b28669ab2d270793bf98a47f5e41a1d
|
515
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
516
|
-
Date: Tue Dec 2 00:41:14 2008 +0900
|
517
|
-
|
518
|
-
proper gravatar escaping
|
519
|
-
|
520
|
-
commit 8910f172c837ed1d1a96b74352f975a619b7f8bb
|
521
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
522
|
-
Date: Sat Nov 29 17:41:11 2008 +0900
|
523
|
-
|
524
|
-
docs and improvments for redirect_referrer
|
525
|
-
|
526
|
-
commit 2455cd27042bc6c8ca42ee723b0a2dce92005ab7
|
527
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
528
|
-
Date: Sat Nov 29 17:40:54 2008 +0900
|
529
|
-
|
530
|
-
Docs for to_ivs
|
531
|
-
|
532
|
-
commit e20ba1185dc4262ef27a594483649c6d207a1b77
|
533
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
534
|
-
Date: Sat Nov 29 15:18:08 2008 +0900
|
535
|
-
|
536
|
-
Remove another usage of String#/
|
537
|
-
|
538
|
-
commit 09e51c6dff10e701902adccafc41804cdba56ccf
|
539
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
540
|
-
Date: Sat Nov 29 00:45:49 2008 +0900
|
541
|
-
|
542
|
-
Remove blog.db
|
543
|
-
|
544
|
-
commit 1d1e22673101a70a88d9bdf1a8828b45ecafffd0
|
545
|
-
Author: Riku Raisaenen <riku@helloit.fi>
|
546
|
-
Date: Tue Jun 17 00:14:45 2008 +0300
|
547
|
-
|
548
|
-
Added documentation as well as I could, rdoc coverage up from 78 to 80 or so.
|
549
|
-
|
550
|
-
commit 6ab9064d8efb8905c115f6b2eb572c366f84790d
|
551
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
552
|
-
Date: Thu Nov 27 21:17:02 2008 +0900
|
553
|
-
|
554
|
-
more specific errors for Helper
|
555
|
-
|
556
|
-
commit 4909f0185f71eecbc91ce6ae20d41a6bc9c891a6
|
557
|
-
Author: Clive Crous <clive@crous.co.za>
|
558
|
-
Date: Tue Nov 25 15:41:56 2008 +0200
|
559
|
-
|
560
|
-
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'
|
561
|
-
|
562
|
-
commit 41b745b6fac5e6b9ec90ad1c9f174e19d454e265
|
563
|
-
Merge: 21a5be0... 4a4da0b...
|
564
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
565
|
-
Date: Sun Nov 23 22:30:49 2008 -0500
|
566
|
-
|
567
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
568
|
-
|
569
|
-
commit 4a4da0bcd059e5275c4fece05fb2348b41cb941d
|
570
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
571
|
-
Date: Fri Nov 21 10:57:05 2008 +0900
|
572
|
-
|
573
|
-
Don't map Controller to /
|
574
|
-
|
575
|
-
commit da2ac82a0551a0486a5b0c48733b95bcaa66f934
|
576
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
577
|
-
Date: Thu Nov 20 15:14:45 2008 +0900
|
578
|
-
|
579
|
-
More accurate warning for Helper::User if model has no class method ::authenticate
|
580
|
-
|
581
|
-
commit f929291f1fbc89de3c5dd040291e8dc81f61ffcd
|
582
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
583
|
-
Date: Thu Nov 20 15:14:14 2008 +0900
|
584
|
-
|
585
|
-
Remove further occurences of String#/
|
586
|
-
|
587
|
-
commit cf94d60de6c6b9f93c2e6ffc6bc45ce1f8711837
|
588
|
-
Author: Colin Shea <colin@centuar.(none)>
|
589
|
-
Date: Mon Aug 25 00:29:24 2008 -0400
|
590
|
-
|
591
|
-
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.
|
592
|
-
|
593
|
-
commit 7fb99d3774f3fe09659d45677979c4921510df53
|
594
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
595
|
-
Date: Mon Nov 17 14:33:56 2008 +0900
|
596
|
-
|
597
|
-
Fix docs for Helper::User
|
598
|
-
|
599
|
-
commit e12ea27758ae64157573ad30af5a13ddcda44f3e
|
600
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
601
|
-
Date: Mon Nov 17 14:33:43 2008 +0900
|
602
|
-
|
603
|
-
Give information about location where deprecated method is being used
|
604
|
-
|
605
|
-
commit d88b01987d863934e1164f5531e8a4a6a0893d1f
|
606
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
607
|
-
Date: Mon Nov 17 14:33:17 2008 +0900
|
608
|
-
|
609
|
-
Deprecate String#/ and Symbol#/ and remove most usage of it
|
610
|
-
|
611
|
-
commit 1dd272c88f50f9debd201a912a626fe88f33b0e4
|
612
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
613
|
-
Date: Mon Nov 17 14:31:30 2008 +0900
|
614
|
-
|
615
|
-
Remove specs for divide, move acquire spec to Ramaze
|
616
|
-
|
617
|
-
commit 8afb9c784467240ea235a5af5d8d57d552873248
|
618
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
619
|
-
Date: Mon Nov 17 14:18:39 2008 +0900
|
620
|
-
|
621
|
-
Thread ID may be negative
|
622
|
-
|
623
|
-
commit 94d14f13b86e9c6e1baee24026cfaf734118d614
|
624
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
625
|
-
Date: Mon Nov 17 14:11:03 2008 +0900
|
626
|
-
|
627
|
-
Remove contrib/auto_params
|
628
|
-
|
629
|
-
commit a6c24f7d7b767fc9579749a1a8b299c1d0c78a19
|
630
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
631
|
-
Date: Sun Nov 16 19:58:30 2008 +0900
|
632
|
-
|
633
|
-
Deprecate Object#acquire and move to Ramaze::acquire
|
634
|
-
|
635
|
-
commit f46ffc611883a7a3d1d5f5af98edf8af97a3b8f3
|
636
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
637
|
-
Date: Sun Nov 16 19:54:28 2008 +0900
|
638
|
-
|
639
|
-
Remove usage of acquire in proto
|
640
|
-
|
641
|
-
commit 6d4353f5421c23c6126bfb4da2392cf457b6f82f
|
642
|
-
Merge: 3966362... c4e3be2...
|
643
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
644
|
-
Date: Fri Nov 14 02:16:50 2008 +0900
|
645
|
-
|
646
|
-
Merge branch 'master' of git://github.com/Phrogz/ramaze into Phrogz/master
|
647
|
-
|
648
|
-
* 'master' of git://github.com/Phrogz/ramaze:
|
649
|
-
Create projects even when HOME environment variable not set (e.g. Windows)
|
650
|
-
|
651
|
-
commit 3966362a11bd0ab323d1ee12554aecb5d3f20606
|
652
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
653
|
-
Date: Thu Oct 30 12:07:33 2008 +0900
|
654
|
-
|
655
|
-
call #to_hash on options passed to Ramaze.start
|
656
|
-
|
657
|
-
commit c4e3be227dd439bfcacefae6cf247b36432a2846
|
658
|
-
Author: Gavin Kistner <gavin@phrogz.net>
|
659
|
-
Date: Thu Nov 13 09:58:42 2008 -0700
|
660
|
-
|
661
|
-
Create projects even when HOME environment variable not set (e.g. Windows)
|
662
|
-
|
663
|
-
commit 21a5be07d05d6c10ea3f17b9c46ba3382d978941
|
664
|
-
Merge: 180b416... 2f59f9a...
|
665
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
666
|
-
Date: Sun Nov 9 19:28:46 2008 -0500
|
667
|
-
|
668
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
669
|
-
|
670
|
-
commit 2f59f9af15bfdd73ee651ad2b8ae05b1976a5459
|
671
|
-
Author: Clive Crous <clive@crous.co.za>
|
672
|
-
Date: Sun Nov 9 14:17:03 2008 +0200
|
673
|
-
|
674
|
-
Correct usage of uuid within httpdigest helper
|
675
|
-
|
676
|
-
commit 180b41678b30cfc2be0c4a9f484e1529fc156bdb
|
677
|
-
Merge: a992247... 8bd44a8...
|
678
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
679
|
-
Date: Sat Nov 8 22:14:56 2008 -0500
|
680
|
-
|
681
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
682
|
-
|
683
|
-
commit 8bd44a854b6727402ee4aeb2fa2a379a2f21d4cf
|
684
|
-
Author: Andrew Farmer <xichekolas@gmail.com>
|
685
|
-
Date: Fri Oct 31 16:08:17 2008 -0500
|
686
|
-
|
687
|
-
Arguments to an action were left out of the urls built by paginate helper.
|
688
|
-
|
689
|
-
commit a9922473a6b2b7900fcae120005a6606f03228d4
|
690
|
-
Merge: 3309861... 8dd792c...
|
691
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
692
|
-
Date: Tue Oct 28 23:09:21 2008 -0400
|
693
|
-
|
694
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
695
|
-
|
696
|
-
commit 8dd792c47fed49481cf39136a24c823c7de53690
|
697
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
698
|
-
Date: Wed Oct 29 11:02:04 2008 +0900
|
699
|
-
|
700
|
-
Version 2008.10
|
701
|
-
|
702
|
-
commit d86f44ae9071c43730439897e852132b0c8e57e8
|
703
|
-
Merge: d967b0b... be6e232...
|
704
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
705
|
-
Date: Tue Oct 21 08:28:28 2008 -0400
|
706
|
-
|
707
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
708
|
-
|
709
|
-
commit 3309861307b7b4ae728619a09c281445f309dddd
|
710
|
-
Merge: ed5b2e3... be6e232...
|
711
|
-
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
712
|
-
Date: Sat Oct 18 13:00:02 2008 -0400
|
713
|
-
|
714
|
-
Merge branch 'master' of git://github.com/manveru/ramaze
|
715
|
-
|
716
|
-
commit be6e23260e90b2e3e36823ef7367a040ba257798
|
717
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
718
|
-
Date: Fri Oct 17 01:15:02 2008 +0900
|
719
|
-
|
720
|
-
Fix localization
|
721
|
-
|
722
|
-
commit 17c819fbbc23592f6b36120772db8c1be52af0be
|
723
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
724
|
-
Date: Wed Oct 8 06:24:14 2008 +0300
|
725
|
-
|
726
|
-
Rescue in rapaste
|
727
|
-
|
728
|
-
commit 4313c83acf46283c5a1a7c415a7c9f0565a802eb
|
729
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
730
|
-
Date: Sun Aug 10 11:59:42 2008 +0300
|
731
|
-
|
732
|
-
Fix port for serving rapaste
|
733
|
-
|
734
|
-
commit 70f4b7cfc4f1d8c23c9dc6432a54e1ce1954218f
|
735
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
736
|
-
Date: Sun Oct 5 13:30:40 2008 +0900
|
737
|
-
|
738
|
-
Simplify Request#[]
|
739
|
-
|
740
|
-
commit ed5b2e37d13ccb55c3ec659096c306265a864aeb
|
741
|
-
Author: Clive Crous <clive@star120.co.za>
|
742
|
-
Date: Tue Sep 23 12:12:25 2008 +0200
|
743
|
-
|
744
|
-
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)
|
745
|
-
|
746
|
-
commit d967b0bc6ebe2d0d1a653b0059ecf2527eef4084
|
747
|
-
Author: Lars Olsson <lasso@lasso-laptop.(none)>
|
748
|
-
Date: Sun Sep 14 12:28:19 2008 +0200
|
749
|
-
|
750
|
-
Signed-off-by: Lars Olsson <lasso@lassoweb.se>
|
751
|
-
|
752
|
-
RotatingInformer is a new Logger class based on Informer that creates
|
753
|
-
multiple logs based on time.
|
754
|
-
|
755
|
-
commit 4c6999a1ff7ddc8144c9ca28e904c3986023f88d
|
756
|
-
Author: Aman Gupta <aman@tmm1.net>
|
757
|
-
Date: Fri Sep 12 15:38:39 2008 -0700
|
758
|
-
|
759
|
-
make tagcloud helper 1.8.6 compatible
|
760
|
-
|
761
|
-
commit e714bce8b7239dc5835c6f21cccc2bfdae8a51ec
|
762
|
-
Author: Aman Gupta <aman@tmm1.net>
|
763
|
-
Date: Fri Sep 12 15:38:26 2008 -0700
|
764
|
-
|
765
|
-
use metaprogramming instead of method_missing in OrderedSet
|
766
|
-
|
767
|
-
commit bd417fc08b358f66d54e33a02ce2113d23c8b7b9
|
768
|
-
Author: Aman Gupta <aman@tmm1.net>
|
769
|
-
Date: Fri Sep 12 15:34:05 2008 -0700
|
770
|
-
|
771
|
-
fix auto_params spec
|
772
|
-
|
773
|
-
commit 85724c13ab64b5dbb63793b85f571f3c75a85da6
|
774
|
-
Author: Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
775
|
-
Date: Fri Sep 12 07:46:16 2008 +0900
|
776
|
-
|
777
|
-
Fixed for 1.9 syntax
|
778
|
-
|
779
|
-
commit 6467d0119534d4940b0c9155f15602c675256a69
|
780
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
781
|
-
Date: Wed Sep 10 12:14:00 2008 +0900
|
782
|
-
|
783
|
-
Update ramaze.gemspec
|
784
|
-
|
785
|
-
commit 81ab66b8197506a3627fb36c600283a56951582b
|
786
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
787
|
-
Date: Wed Sep 10 12:13:02 2008 +0900
|
788
|
-
|
789
|
-
Update ramaze.gemspec
|
790
|
-
|
791
|
-
commit c03b9432a9b313aa8ce02e940a9b6d408dfb4976
|
792
|
-
Author: Michael Fellinger <m.fellinger@gmail.com>
|
793
|
-
Date: Wed Sep 10 12:12:22 2008 +0900
|
794
|
-
|
795
|
-
Update CHANGELOG
|
796
|
-
|
797
1
|
commit 8702e0f09087f20e5d721d23a04bd473c5f513b0
|
798
2
|
Author: Michael Fellinger <m.fellinger@gmail.com>
|
799
3
|
Date: Wed Sep 10 12:09:52 2008 +0900
|