manveru-ramaze 2008.08 → 2008.09
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/bin/ramaze +1 -0
- data/doc/CHANGELOG +966 -0
- data/doc/tutorial/todolist.html +421 -313
- data/doc/tutorial/todolist.mkd +26 -9
- data/examples/helpers/paginate.rb +71 -0
- data/examples/misc/simple_auth.rb +20 -8
- data/lib/proto/controller/init.rb +10 -0
- data/lib/proto/controller/main.rb +1 -3
- data/lib/proto/model/init.rb +4 -0
- data/lib/proto/spec/main.rb +2 -1
- data/lib/proto/start.rb +3 -3
- data/lib/ramaze.rb +6 -1
- data/lib/ramaze/action.rb +2 -2
- data/lib/ramaze/adapter.rb +0 -5
- data/lib/ramaze/adapter/base.rb +24 -7
- data/lib/ramaze/contrib/gzip_filter.rb +22 -9
- data/lib/ramaze/contrib/maruku_uv.rb +59 -0
- data/lib/ramaze/contrib/profiling.rb +1 -1
- data/lib/ramaze/contrib/sequel/create_join.rb +25 -0
- data/lib/ramaze/contrib/sequel/form_field.rb +129 -0
- data/lib/ramaze/contrib/sequel/image.rb +198 -0
- data/lib/ramaze/contrib/sequel/relation.rb +82 -0
- data/lib/ramaze/controller/resolve.rb +1 -1
- data/lib/ramaze/current.rb +60 -20
- data/lib/ramaze/current/response.rb +15 -3
- data/lib/ramaze/dispatcher.rb +9 -3
- data/lib/ramaze/dispatcher/action.rb +2 -3
- data/lib/ramaze/dispatcher/directory.rb +1 -1
- data/lib/ramaze/dispatcher/error.rb +1 -1
- data/lib/ramaze/dispatcher/file.rb +1 -1
- data/lib/ramaze/helper/formatting.rb +33 -0
- data/lib/ramaze/helper/paginate.rb +234 -0
- data/lib/ramaze/option.rb +2 -2
- data/lib/ramaze/reloader.rb +2 -2
- data/lib/ramaze/snippets.rb +13 -0
- data/lib/ramaze/snippets/array/put_within.rb +31 -24
- data/lib/ramaze/snippets/binding/locals.rb +23 -11
- data/lib/ramaze/snippets/kernel/constant.rb +36 -21
- data/lib/ramaze/snippets/kernel/pretty_inspect.rb +12 -6
- data/lib/ramaze/snippets/numeric/filesize_format.rb +24 -17
- data/lib/ramaze/snippets/numeric/time.rb +63 -56
- data/lib/ramaze/snippets/object/__dir__.rb +29 -0
- data/lib/ramaze/snippets/object/acquire.rb +40 -0
- data/lib/ramaze/snippets/object/instance_variable_defined.rb +16 -5
- data/lib/ramaze/snippets/object/pretty.rb +14 -4
- data/lib/ramaze/snippets/object/scope.rb +14 -7
- data/lib/ramaze/snippets/ordered_set.rb +4 -0
- data/lib/ramaze/snippets/proc/locals.rb +17 -9
- data/lib/ramaze/snippets/ramaze/struct.rb +45 -0
- data/lib/ramaze/snippets/string/camel_case.rb +13 -8
- data/lib/ramaze/snippets/string/color.rb +24 -20
- data/lib/ramaze/snippets/string/each.rb +14 -3
- data/lib/ramaze/snippets/string/end_with.rb +17 -6
- data/lib/ramaze/snippets/string/esc.rb +26 -18
- data/lib/ramaze/snippets/string/ord.rb +12 -6
- data/lib/ramaze/snippets/string/snake_case.rb +13 -7
- data/lib/ramaze/snippets/string/start_with.rb +16 -6
- data/lib/ramaze/snippets/string/unindent.rb +23 -15
- data/lib/ramaze/snippets/thread/into.rb +3 -3
- data/lib/ramaze/spec/helper/snippets.rb +8 -0
- data/lib/ramaze/template/ezamar/textpow.syntax +34 -0
- data/lib/ramaze/tool/create.rb +27 -53
- data/lib/ramaze/tool/project_creator.rb +110 -0
- data/lib/ramaze/version.rb +1 -1
- data/rake_tasks/gem.rake +2 -1
- data/rake_tasks/maintenance.rake +38 -0
- data/rake_tasks/release.rake +6 -2
- data/rake_tasks/spec.rake +1 -2
- data/ramaze.gemspec +69 -78
- data/spec/examples/simple_auth.rb +2 -2
- data/spec/examples/templates/template_haml.rb +0 -2
- data/spec/ramaze/current/session.rb +1 -1
- data/spec/ramaze/dispatcher/file.rb +2 -2
- data/spec/ramaze/helper/formatting.rb +13 -0
- data/spec/ramaze/rewrite.rb +1 -1
- data/spec/ramaze/struct.rb +47 -0
- data/spec/ramaze/template/markaby.rb +1 -1
- data/spec/snippets/{kernel → object}/__dir__.rb +0 -0
- data/spec/snippets/{kernel → object}/acquire.rb +0 -0
- metadata +69 -78
- data/examples/app/rammit/spec/rammit.rb +0 -31
- data/examples/app/rammit/src/controller/main.rb +0 -3
- data/examples/app/rammit/src/controller/page.rb +0 -16
- data/examples/app/rammit/src/model.rb +0 -33
- data/examples/app/rammit/start.rb +0 -8
- data/examples/app/rammit/template/index.xhtml +0 -14
- data/examples/app/rammit/template/page/view.xhtml +0 -4
- data/lib/ramaze/snippets/kernel/__dir__.rb +0 -23
- data/lib/ramaze/snippets/kernel/acquire.rb +0 -34
- data/lib/ramaze/snippets/struct/fill.rb +0 -23
- data/lib/ramaze/snippets/struct/values_at.rb +0 -39
- data/lib/ramaze/snippets/symbol/to_proc.rb +0 -24
- data/lib/ramaze/sourcereload.rb +0 -183
- data/spec/snippets/struct/fill.rb +0 -26
- data/spec/snippets/struct/values_at.rb +0 -52
- data/spec/snippets/symbol/to_proc.rb +0 -13
data/Rakefile
CHANGED
data/bin/ramaze
CHANGED
data/doc/CHANGELOG
CHANGED
@@ -1,3 +1,969 @@
|
|
1
|
+
commit 8702e0f09087f20e5d721d23a04bd473c5f513b0
|
2
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
3
|
+
Date: Wed Sep 10 12:09:52 2008 +0900
|
4
|
+
|
5
|
+
Version 2008.09
|
6
|
+
|
7
|
+
commit 106b8a3c81bb6736235d9b5d22f62062585c4bdb
|
8
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
9
|
+
Date: Wed Sep 10 12:09:07 2008 +0900
|
10
|
+
|
11
|
+
Update ramaze.gemspec
|
12
|
+
|
13
|
+
commit addf767762c1ef81e3d6bdc0d3f887f7ea3df03a
|
14
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
15
|
+
Date: Sun Sep 7 20:43:29 2008 +0900
|
16
|
+
|
17
|
+
Remove warning on non-existing file in Reloader
|
18
|
+
|
19
|
+
commit faea9db585bb551ad71f6e4a3dc7fc208b1ad573
|
20
|
+
Author: Ryan Grove <ryan@wonko.com>
|
21
|
+
Date: Tue Sep 9 16:27:32 2008 -0700
|
22
|
+
|
23
|
+
Remove unsuppressable debug message.
|
24
|
+
|
25
|
+
commit 1eae588f4961c945a6ea231988fa2a8ebb104737
|
26
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
27
|
+
Date: Sat Aug 30 16:12:18 2008 +0900
|
28
|
+
|
29
|
+
Fix Response#body, Rack has Content-Length
|
30
|
+
|
31
|
+
commit 29f622d83c092c7c46985693dd609e347256de33
|
32
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
33
|
+
Date: Sat Aug 30 13:51:33 2008 +0900
|
34
|
+
|
35
|
+
Remove Symbol#to_proc, it's in 1.8.7 anyway
|
36
|
+
|
37
|
+
commit 59317d08b7d339f3d1c7396f15aeb8ae5df9be63
|
38
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
39
|
+
Date: Sat Aug 30 09:47:09 2008 +0900
|
40
|
+
|
41
|
+
Last remaining 'module Dispatcher'
|
42
|
+
|
43
|
+
commit d6f71140fe86bdfdce1fc459281ed7dbfd6f9ad3
|
44
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
45
|
+
Date: Sat Aug 30 09:46:06 2008 +0900
|
46
|
+
|
47
|
+
Fix basic auth spec and use Response#write
|
48
|
+
|
49
|
+
commit 5e843f1239d70762c5b9edfe2a562f6c7575bbe7
|
50
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
51
|
+
Date: Thu Aug 28 23:26:03 2008 +0900
|
52
|
+
|
53
|
+
Make Rake::Deflater not a default middleware
|
54
|
+
|
55
|
+
commit 27ec88093abf759015551de275c0c9d191c9a960
|
56
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
57
|
+
Date: Wed Aug 27 23:45:41 2008 +0900
|
58
|
+
|
59
|
+
Remove check from Symbol#to_proc
|
60
|
+
|
61
|
+
commit 6a9196f951a1558b4f6197254c2717ae25a350fc
|
62
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
63
|
+
Date: Wed Aug 27 19:59:53 2008 +0900
|
64
|
+
|
65
|
+
Ramaze::Current and Ramaze::Dispatcher middleware
|
66
|
+
|
67
|
+
* Major refactor turning Ramaze into a fully middleware-based
|
68
|
+
framework, this allows us to use just about any existing Rack
|
69
|
+
middleware without patching.
|
70
|
+
* Ramaze::Current and Ramaze::Dispatcher become classes
|
71
|
+
|
72
|
+
commit f361811b768823f2d2509b09cf95b277303ff961
|
73
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
74
|
+
Date: Thu Aug 28 17:25:59 2008 +0900
|
75
|
+
|
76
|
+
Fix `ramaze --console`
|
77
|
+
|
78
|
+
commit dcecbc51efa9e35501c104b459582818a7c77bf1
|
79
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
80
|
+
Date: Thu Aug 28 17:25:34 2008 +0900
|
81
|
+
|
82
|
+
Don't daemonize by default for bin/ramaze
|
83
|
+
|
84
|
+
commit eec28065cfb513cb7a43e9560e6e5925456f7519
|
85
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
86
|
+
Date: Wed Aug 27 19:55:21 2008 +0900
|
87
|
+
|
88
|
+
Add __FILE__ to reloader files
|
89
|
+
|
90
|
+
commit 35300196d29d903203d2aaf30d6cc7d57a8558e2
|
91
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
92
|
+
Date: Wed Aug 27 19:54:52 2008 +0900
|
93
|
+
|
94
|
+
Minor refactor of gzip_filter
|
95
|
+
|
96
|
+
commit cdc32959dfffe1f3000fd84e850f6cce3c5e9d8f
|
97
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
98
|
+
Date: Wed Aug 27 14:12:09 2008 +0900
|
99
|
+
|
100
|
+
Move STATUS_CODES into lib/ramaze.rb
|
101
|
+
|
102
|
+
commit 11931b769add3823009110fe95c5479a3167bd65
|
103
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
104
|
+
Date: Wed Aug 27 14:11:31 2008 +0900
|
105
|
+
|
106
|
+
OrderedSet::[] as alias to ::new
|
107
|
+
|
108
|
+
commit 3f1cc4f23963abd64fe8dc15635315b6b6fb9c3c
|
109
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
110
|
+
Date: Wed Aug 27 13:02:22 2008 +0900
|
111
|
+
|
112
|
+
Minor changes to gzip_filter
|
113
|
+
|
114
|
+
* Document option setting
|
115
|
+
* Enable gzip filter for text/.* to allow css/html/js
|
116
|
+
|
117
|
+
commit cdd54eef78cee939e5c41f93b69c9a31958a73ef
|
118
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
119
|
+
Date: Wed Aug 27 10:04:32 2008 +0900
|
120
|
+
|
121
|
+
Force PATH expansion in ProjectCreator
|
122
|
+
|
123
|
+
commit bf166301c2d51dfdf0b4ca19e005bde23e07fd76
|
124
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
125
|
+
Date: Mon Aug 25 23:42:37 2008 +0900
|
126
|
+
|
127
|
+
Use UltraViolet to highlight tutorial
|
128
|
+
|
129
|
+
* There are several hacks used to achieve this, but the static html is
|
130
|
+
now generated by Uv and you won't have to generate it yourself.
|
131
|
+
Just see doc/tutorial/todolist.html for a visual treat.
|
132
|
+
* Adds textpow syntax for ezamar, should also be usable for the people
|
133
|
+
using textmate, someone should try it, i don't have TM.
|
134
|
+
* Adds contrib/maruku_uv.rb - a monkeypatch to MaRuKu to make it use
|
135
|
+
Uv instead of the syntax gem
|
136
|
+
|
137
|
+
commit a65df7188314944c0c18920ea1a468cd52068381
|
138
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
139
|
+
Date: Mon Aug 25 22:24:16 2008 +0900
|
140
|
+
|
141
|
+
Update lib/proto
|
142
|
+
|
143
|
+
commit f1c25013da3ee6c48dcec86085768116d2380a8e
|
144
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
145
|
+
Date: Mon Aug 25 22:23:24 2008 +0900
|
146
|
+
|
147
|
+
Remove rammit example
|
148
|
+
|
149
|
+
commit bbfd05b072317e85b38dafdb3eb2aee34542a66d
|
150
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
151
|
+
Date: Sun Aug 24 16:34:08 2008 +0900
|
152
|
+
|
153
|
+
Add ProjectCreator for `ramaze --create`
|
154
|
+
|
155
|
+
commit d97d31f4c93176b8e954c9eba39754809beec6f8
|
156
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
157
|
+
Date: Sat Aug 23 15:54:17 2008 +0900
|
158
|
+
|
159
|
+
Add regression spec for tagcloud
|
160
|
+
|
161
|
+
commit e9258f0d08c3f25de0c2ccb09c2b2641fe314c8c
|
162
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
163
|
+
Date: Sat Aug 23 15:50:43 2008 +0900
|
164
|
+
|
165
|
+
Further changes to paginate helper
|
166
|
+
|
167
|
+
* #navigation takes optional parameter to limit number of pages listed
|
168
|
+
* @page is adjusted to ensure valid range
|
169
|
+
|
170
|
+
commit 414f352fce9012787bbc9f115bb0f0f762b5db0e
|
171
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
172
|
+
Date: Sat Aug 23 15:50:19 2008 +0900
|
173
|
+
|
174
|
+
Add tagcloud to Helper::Formatting
|
175
|
+
|
176
|
+
commit 29d7f72fb9a90987f84d416e2d35d42290404312
|
177
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
178
|
+
Date: Thu Aug 21 13:21:39 2008 +0900
|
179
|
+
|
180
|
+
Paginate doesn't allow negative page number
|
181
|
+
|
182
|
+
commit 70b3bc11e8f2f1e1516793df58e43a884a3996b9
|
183
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
184
|
+
Date: Thu Aug 21 13:16:05 2008 +0900
|
185
|
+
|
186
|
+
Paginate fix page number larger than max
|
187
|
+
|
188
|
+
commit acc76de754a70ae3c12c0c77330d9dfec3711234
|
189
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
190
|
+
Date: Sun Aug 17 00:05:14 2008 +0900
|
191
|
+
|
192
|
+
Move extensions to ruby core into own module
|
193
|
+
|
194
|
+
* Moved into Ramaze::CoreExtensions
|
195
|
+
* Included into appropriate class on startup
|
196
|
+
* Remove unused or broken snippets
|
197
|
+
* Warn and don't extend on collision of method names
|
198
|
+
* Move Kernel snippets that belong into Object into the correct place
|
199
|
+
|
200
|
+
commit 758142cc19356063e58a36175d97803387404657
|
201
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
202
|
+
Date: Fri Aug 22 23:27:20 2008 +0900
|
203
|
+
|
204
|
+
Remove sourcereload.rb for good
|
205
|
+
|
206
|
+
commit 7fdcee9916c652c2b5365fcdc597c93c0284722f
|
207
|
+
Author: Cheah Chu Yeow <chuyeow@gmail.com>
|
208
|
+
Date: Mon Aug 18 19:13:40 2008 +0800
|
209
|
+
|
210
|
+
Allow auto_link formatting helper to actually take a block argument as documented.
|
211
|
+
|
212
|
+
commit 0b431e97a0a7fa2a672e7d75a4e64e21b3dd0985
|
213
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
214
|
+
Date: Tue Aug 12 21:54:15 2008 +0900
|
215
|
+
|
216
|
+
Pager obtains correct Action and calls @var.to_s
|
217
|
+
|
218
|
+
commit 7a5625042f954c83b2c99f97f398c790b34248b7
|
219
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
220
|
+
Date: Tue Aug 12 21:20:33 2008 +0900
|
221
|
+
|
222
|
+
Minor bugfix and lots of docs for paginate helper
|
223
|
+
|
224
|
+
commit 8ed7215865f5e12ec5dc148f497fc3f286bbeaab
|
225
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
226
|
+
Date: Tue Aug 12 17:50:59 2008 +0900
|
227
|
+
|
228
|
+
Remove note of cropped_thumbnail
|
229
|
+
|
230
|
+
commit 0f33197b3757ab5ea70ea80f04ca4abbe429395a
|
231
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
232
|
+
Date: Tue Aug 12 17:20:09 2008 +0900
|
233
|
+
|
234
|
+
Update ramaze.gemspec
|
235
|
+
|
236
|
+
commit 1f479c62acc1393a2aef4e6fb0465c5cea9c924c
|
237
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
238
|
+
Date: Tue Aug 12 17:19:19 2008 +0900
|
239
|
+
|
240
|
+
Gemspec manifest sorted and exclude /tags file
|
241
|
+
|
242
|
+
commit 0dc2fedd4278c2a82cffc0edec98e5326c2b2ef8
|
243
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
244
|
+
Date: Tue Aug 12 17:12:04 2008 +0900
|
245
|
+
|
246
|
+
Add release:gemspec-prepare task
|
247
|
+
|
248
|
+
* Creates a new gemspec based on current repository
|
249
|
+
|
250
|
+
commit 2a74c0de154771b35ce2a13bc97386e55b54e46c
|
251
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
252
|
+
Date: Tue Aug 12 16:58:03 2008 +0900
|
253
|
+
|
254
|
+
Update ramaze.gemspec
|
255
|
+
|
256
|
+
commit 1e68e1351ca192e1d887ab8fd55b47b2a35c1c0b
|
257
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
258
|
+
Date: Tue Aug 12 16:48:31 2008 +0900
|
259
|
+
|
260
|
+
Add contrib/sequel/form_field.rb
|
261
|
+
|
262
|
+
* Simply generate one form field for a given model instance attribute.
|
263
|
+
|
264
|
+
commit 546ae80912f275ae04e3b235863cbfadfc79ef16
|
265
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
266
|
+
Date: Tue Aug 12 16:47:54 2008 +0900
|
267
|
+
|
268
|
+
Add contrib/sequel/relation.rb
|
269
|
+
|
270
|
+
* Helps with your Relationship management
|
271
|
+
|
272
|
+
commit 28336967765d300ff085842346e2d35f963e1c04
|
273
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
274
|
+
Date: Tue Aug 12 16:47:28 2008 +0900
|
275
|
+
|
276
|
+
Add contrib/sequel/create_join.rb
|
277
|
+
|
278
|
+
commit f6eceaa0c53602b0f70a7db699eb1c08450f467c
|
279
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
280
|
+
Date: Tue Aug 12 16:47:05 2008 +0900
|
281
|
+
|
282
|
+
Add contrib/sequel/image.rb
|
283
|
+
|
284
|
+
commit 5663881fe34db56aa21463f66e3262641f6b99b1
|
285
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
286
|
+
Date: Tue Aug 12 16:44:19 2008 +0900
|
287
|
+
|
288
|
+
Add Helper::Paginate and example
|
289
|
+
|
290
|
+
* Paginates both Array and Sequel datasets
|
291
|
+
|
292
|
+
commit f7e8c332f743c24854c63c42c00d54ea933f2dcf
|
293
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
294
|
+
Date: Mon Aug 11 18:14:42 2008 +0900
|
295
|
+
|
296
|
+
Allow spec as value for Global.mode
|
297
|
+
|
298
|
+
commit 6fb2d0dec6103cd8fd2de66a258813f3d0f88584
|
299
|
+
Author: Clive Crous <clive@star120.co.za>
|
300
|
+
Date: Mon Aug 11 16:58:23 2008 +0200
|
301
|
+
|
302
|
+
Set error_page due to expected 404 for missing actions
|
303
|
+
|
304
|
+
commit 08e29ffb04c44a7c2848f7f1068c2c2fe22dd820
|
305
|
+
Author: Clive Crous <clive@crous.co.za>
|
306
|
+
Date: Sun Aug 10 20:46:19 2008 +0200
|
307
|
+
|
308
|
+
Minor grammatical correction within a comment.
|
309
|
+
|
310
|
+
commit 2ec0054aa31c9bf942c83798d37759f698d4034e
|
311
|
+
Author: Clive Crous <clive@crous.co.za>
|
312
|
+
Date: Sun Aug 10 15:59:32 2008 +0200
|
313
|
+
|
314
|
+
Update gemspec to add missing files as detected by check_gemspec task
|
315
|
+
|
316
|
+
commit e60f47b87f509c21a22d43c4db69b3c5db3a19c2
|
317
|
+
Author: Clive Crous <clive@crous.co.za>
|
318
|
+
Date: Sun Aug 10 15:56:26 2008 +0200
|
319
|
+
|
320
|
+
Add a rake task `check_gemspec` for finding missing or extra files within the gemspec definition
|
321
|
+
|
322
|
+
commit c546935032468507cb37d8b9b36faeebd7532e53
|
323
|
+
Author: Clive Crous <clive@crous.co.za>
|
324
|
+
Date: Sun Aug 10 15:16:19 2008 +0200
|
325
|
+
|
326
|
+
Add reloader.rb and state.rb to gemspec
|
327
|
+
|
328
|
+
commit 5ce8505e7ed0d368ab4782248f0f43d0b0f48c6d
|
329
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
330
|
+
Date: Sun Aug 10 20:45:17 2008 +0900
|
331
|
+
|
332
|
+
Add Session::Flash#(merge|merge!)
|
333
|
+
|
334
|
+
commit 2d2f3b532833499c19edb7e8e5bffd7cc0effcf5
|
335
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
336
|
+
Date: Sun Aug 10 20:24:42 2008 +0900
|
337
|
+
|
338
|
+
Fix wrong variable in ramaze/setup.rb
|
339
|
+
|
340
|
+
commit 1fa2e63f4fe17db5152b7c2746422eac160da866
|
341
|
+
Author: Clive Crous <clive@crous.co.za>
|
342
|
+
Date: Sun Aug 10 13:50:08 2008 +0200
|
343
|
+
|
344
|
+
Cleanup gemspec after Use Ramaze::STATE instead of Thread.current
|
345
|
+
|
346
|
+
commit faa9fae6464f1110e47fc76bdae7789ec8462101
|
347
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
348
|
+
Date: Sun Aug 10 19:03:34 2008 +0900
|
349
|
+
|
350
|
+
RaPaste serves text/html with id.html | html/id
|
351
|
+
|
352
|
+
commit b8da247ca4bd237d0f528a2473648e6a52977e2b
|
353
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
354
|
+
Date: Sun Aug 10 18:02:42 2008 +0900
|
355
|
+
|
356
|
+
Remove trailing useless slash
|
357
|
+
|
358
|
+
commit 1fb806a2093765f9ed302d0546fa6c62e62665aa
|
359
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
360
|
+
Date: Sun Aug 10 17:58:01 2008 +0900
|
361
|
+
|
362
|
+
Point to github from sourceview
|
363
|
+
|
364
|
+
commit dabc5b8fe5ee990d7162d2e34a215af117b6888a
|
365
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
366
|
+
Date: Sun Aug 10 12:08:45 2008 +0900
|
367
|
+
|
368
|
+
Use Ramaze::STATE instead of Thread.current
|
369
|
+
|
370
|
+
* Assign value by STATE[key] = value
|
371
|
+
* Retrieve value by STATE[key]
|
372
|
+
* Check for key by STATE.key?(key)
|
373
|
+
|
374
|
+
commit 5c1192fc4a96a8d3968fb365cc885695718798ac
|
375
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
376
|
+
Date: Sun Aug 10 11:32:24 2008 +0900
|
377
|
+
|
378
|
+
Introduce Ramaze::State | Ramaze::Fiber | Fiber
|
379
|
+
|
380
|
+
* This should provide a mostly compatible way to do fibers on 1.9 and
|
381
|
+
1.8, but still relies on Thread on 1.8.
|
382
|
+
|
383
|
+
commit 4a1235526c923bae2fe3c9133d057b69f5826b43
|
384
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
385
|
+
Date: Sun Aug 10 03:05:52 2008 +0900
|
386
|
+
|
387
|
+
Reloader::Log instead of Ramaze::Log
|
388
|
+
|
389
|
+
commit 5102a73cd8d7591f5f62c8bd332e59edd09de944
|
390
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
391
|
+
Date: Sun Aug 10 02:59:42 2008 +0900
|
392
|
+
|
393
|
+
Fix specs regarding error status.
|
394
|
+
|
395
|
+
commit 88441a48544fab2c8e12054f11d0f4942a001983
|
396
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
397
|
+
Date: Sun Aug 10 02:36:36 2008 +0900
|
398
|
+
|
399
|
+
Fix custom error pages.
|
400
|
+
|
401
|
+
* To get racks error pages now set Global.error_page = false
|
402
|
+
|
403
|
+
commit 8241a31aa05b96ff416524fae806749fb93a922e
|
404
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
405
|
+
Date: Sun Aug 10 02:22:55 2008 +0900
|
406
|
+
|
407
|
+
Minor change for rtags support, no 'alias :b :a'
|
408
|
+
|
409
|
+
commit 603196575a13fb28269022d107e0ff7361f413ff
|
410
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
411
|
+
Date: Sat Aug 9 19:38:37 2008 +0900
|
412
|
+
|
413
|
+
Add Ramaze::Reloader and Global.middleware = true
|
414
|
+
|
415
|
+
* Global.middleware is now true by default:
|
416
|
+
* Don't pull yet if you need custom error pages!
|
417
|
+
* Error pages are handled by Rack::ShowExceptions
|
418
|
+
|
419
|
+
* Add Ramaze::Reloader:
|
420
|
+
* Implemented as Rack middleware
|
421
|
+
* Reloads only on requests, keeps your CPU at 0
|
422
|
+
* Reloader::OPTIONS[:thread] = true will use an exclusive thread for
|
423
|
+
reloading, by default no threads are used.
|
424
|
+
* Reloader::OPTIONS[:control] allows you to hook into #call and use
|
425
|
+
your own way to run #cycle, useful for EventMachine
|
426
|
+
* Reloader::OPTIONS[:cooldown] is set by Global.sourcereload, same
|
427
|
+
behaviour as before
|
428
|
+
* Only one stat(2) per path, lower disk usage
|
429
|
+
* Can still be used independent of Ramaze as no traits or ramazisms
|
430
|
+
are used
|
431
|
+
|
432
|
+
commit d345e5059660cc5b8451ffd939e150bf78bc1c11
|
433
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
434
|
+
Date: Sat Aug 9 17:34:51 2008 +0900
|
435
|
+
|
436
|
+
Fix some docs in Adapter::Base
|
437
|
+
|
438
|
+
commit e31fdb254407d3b01445d54d4b333f38cc34ace6
|
439
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
440
|
+
Date: Fri Aug 1 15:34:42 2008 +0900
|
441
|
+
|
442
|
+
Add Helper::Ultraviolet
|
443
|
+
|
444
|
+
commit 9dd7de92418c9e827b67eee31d76663a0f6ec099
|
445
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
446
|
+
Date: Fri Aug 1 14:59:03 2008 +0900
|
447
|
+
|
448
|
+
Add gem task and set default task to spec
|
449
|
+
|
450
|
+
commit 97fb8c7fce3311c9ca6a5219846cc098c5cbecfb
|
451
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
452
|
+
Date: Fri Aug 1 14:23:21 2008 +0900
|
453
|
+
|
454
|
+
Gestalt builds an Array and joins at the end
|
455
|
+
|
456
|
+
commit 1e803301933bde7b2a78f23289efbbcf2ec5230e
|
457
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
458
|
+
Date: Fri Aug 1 14:22:30 2008 +0900
|
459
|
+
|
460
|
+
Fix file list in gemspec
|
461
|
+
|
462
|
+
commit c82a54038d9e42c971e30a66f27825ce39db548e
|
463
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
464
|
+
Date: Fri Aug 1 14:22:15 2008 +0900
|
465
|
+
|
466
|
+
Bump Version to 2008.08
|
467
|
+
|
468
|
+
commit fe3235f5e90ac4770f48b6506f3153e1abc9b22f
|
469
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
470
|
+
Date: Fri Aug 1 14:21:09 2008 +0900
|
471
|
+
|
472
|
+
Add Tool::MIME::ext_for(mime)
|
473
|
+
|
474
|
+
commit 480a70f34e170a39afca21cbb2b9273a6226bbf0
|
475
|
+
Author: Andrew Farmer <xichekolas@gmail.com>
|
476
|
+
Date: Wed Aug 6 01:18:28 2008 -0500
|
477
|
+
|
478
|
+
Fixed bug where index actions with arguments were improperly file-cached, and added specs to test.
|
479
|
+
|
480
|
+
commit 5ee03fff4149ab6c28c9c04c19992bd99e7955fa
|
481
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
482
|
+
Date: Wed Jul 30 19:32:29 2008 +0900
|
483
|
+
|
484
|
+
Controller::view_root at old state, unbreak specs
|
485
|
+
|
486
|
+
commit 6b13b5466091dd27c97707601d6af171b74bb03e
|
487
|
+
Author: Sam Carr <samcarr@gmail.com>
|
488
|
+
Date: Wed Jul 30 10:02:41 2008 +0100
|
489
|
+
|
490
|
+
Improve action method resolving with respect to Helper::LOOKUP.
|
491
|
+
|
492
|
+
Now the action method resolving only considers helper methods where the helper is in Helper::LOOKUP and is included by the controller in question. Previously all methods of all helpers in Helper::LOOKUP were deemed to be available on all controllers whether they included the helpers or not, which was wrong.
|
493
|
+
|
494
|
+
commit 6e5ead99e44a213b2e8fd45cee7c393970204966
|
495
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
496
|
+
Date: Tue Jul 29 13:09:17 2008 +0900
|
497
|
+
|
498
|
+
Subclass Helper::User::Wrapper from BlankSlate
|
499
|
+
|
500
|
+
commit 5da248dc40737c5fcc8ed3082794584bb6a9ec30
|
501
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
502
|
+
Date: Tue Jul 29 13:04:28 2008 +0900
|
503
|
+
|
504
|
+
Fix missing Controller::view_root when unrouted
|
505
|
+
|
506
|
+
* This occured when you haven't been on the target controller yet.
|
507
|
+
For example right after startup trying to MainController obtain
|
508
|
+
FooController.view_root will return nil although when visiting
|
509
|
+
FooController before the routing would set a default.
|
510
|
+
* The default is now set directly in Controller::view_root
|
511
|
+
|
512
|
+
commit 72b0669391149f4ca8c0e5b71292548921d6d9d6
|
513
|
+
Author: Clive Crous <clive@star120.co.za>
|
514
|
+
Date: Tue Jul 29 10:19:44 2008 +0200
|
515
|
+
|
516
|
+
Include thread helper in gemspec
|
517
|
+
|
518
|
+
commit 49660cea97a2c897d7413c74ff65e4bf404be48f
|
519
|
+
Author: Clive Crous <clive@crous.co.za>
|
520
|
+
Date: Mon Jul 28 16:26:16 2008 +0200
|
521
|
+
|
522
|
+
Clarify exception rescue code within thread helper
|
523
|
+
|
524
|
+
commit 24cf2d96efcd60b6373038f3fc67eefcd2107d74
|
525
|
+
Author: Clive Crous <clive@crous.co.za>
|
526
|
+
Date: Mon Jul 28 16:17:01 2008 +0200
|
527
|
+
|
528
|
+
Add a thread helper for cleaner thread exceptions
|
529
|
+
|
530
|
+
commit 28f90e25f01136be619dbd6755dd8d3a142f8b51
|
531
|
+
Author: Sam Carr <samcarr@gmail.com>
|
532
|
+
Date: Thu Jun 19 14:42:44 2008 +0100
|
533
|
+
|
534
|
+
Updates Memcached comments to recognise why get_multi may not be available.
|
535
|
+
|
536
|
+
commit 8ebf919d6042009df8617479d0388b6142dcf092
|
537
|
+
Author: Sam Carr <samcarr@gmail.com>
|
538
|
+
Date: Mon Jul 21 10:23:30 2008 +0100
|
539
|
+
|
540
|
+
Allow controller subclasses to pick up template mappings defined in superclasses.
|
541
|
+
|
542
|
+
I noticed that if I define a template mapping with the template method, subclasses of the defining controller do not respect that mapping. This only really applies to the template :foo, :bar usage, where no explicit controller is specified. With these modifications, template mappings such as that will assume you mean the 'current' controller. Specs have been added to test this new functionality.
|
543
|
+
|
544
|
+
commit 155b9a4fc0c1b3a7b0972ee59f9dc47d8ed0915d
|
545
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
546
|
+
Date: Mon Jul 21 18:28:45 2008 +0900
|
547
|
+
|
548
|
+
Update announcement for 2008.07 (partial)
|
549
|
+
|
550
|
+
commit 53c794720adfb146c5a161485e95417833b82ec9
|
551
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
552
|
+
Date: Mon Jul 21 18:27:46 2008 +0900
|
553
|
+
|
554
|
+
Only escape # with h() where needed
|
555
|
+
|
556
|
+
commit f89652a95d2417d88fabcb77a143522235af0d79
|
557
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
558
|
+
Date: Mon Jul 21 18:27:03 2008 +0900
|
559
|
+
|
560
|
+
More info on problems in Helper::User
|
561
|
+
|
562
|
+
commit 5497329e0221a57b226e62487599261b7594eba9
|
563
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
564
|
+
Date: Mon Jul 21 18:26:15 2008 +0900
|
565
|
+
|
566
|
+
Controller::map(nil) shouldn't map to ''
|
567
|
+
|
568
|
+
commit 922f993bb42fec6379ea39c855e226daf3bb86a9
|
569
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
570
|
+
Date: Fri Jul 4 21:51:11 2008 +0900
|
571
|
+
|
572
|
+
Add Ramaze::Template::Maruku
|
573
|
+
|
574
|
+
commit ae6a3afe5a12c2f8fa0b9e33d0ebc175316fc5bd
|
575
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
576
|
+
Date: Fri Jul 4 21:50:38 2008 +0900
|
577
|
+
|
578
|
+
Add Helper::Formatting::obfuscate_email
|
579
|
+
|
580
|
+
commit ff5343a81897548374fbb9e038ad268135d04016
|
581
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
582
|
+
Date: Sun Jul 20 16:32:36 2008 +0900
|
583
|
+
|
584
|
+
Slight reformat of Request#ip method
|
585
|
+
|
586
|
+
commit 959ff55e453d374e9a3a5e639f5a91f632c3db95
|
587
|
+
Author: Matt Rubens <mrubens@goldencookie.localdomain>
|
588
|
+
Date: Thu Jul 17 11:13:18 2008 -0700
|
589
|
+
|
590
|
+
Request#ip always returns last ip in X_FORWARDED_FOR
|
591
|
+
|
592
|
+
commit 8499c05d643b8f9a059ecc5758bf84ea7eceaa3f
|
593
|
+
Author: Aman Gupta <aman@tmm1.net>
|
594
|
+
Date: Thu Jul 10 16:27:54 2008 -0700
|
595
|
+
|
596
|
+
Oops, non-existant file in gemspec
|
597
|
+
|
598
|
+
commit a3cc3396c03e11905624b3fc72b262bdc2f0ddd9
|
599
|
+
Author: Aman Gupta <aman@tmm1.net>
|
600
|
+
Date: Thu Jul 10 16:24:33 2008 -0700
|
601
|
+
|
602
|
+
Fix rake release:nightly
|
603
|
+
|
604
|
+
commit 1a9031d4a13eff8573b18eecfd38808a96924d22
|
605
|
+
Author: Aman Gupta <aman@tmm1.net>
|
606
|
+
Date: Thu Jul 10 16:17:35 2008 -0700
|
607
|
+
|
608
|
+
Fix release:gemspec task
|
609
|
+
|
610
|
+
commit 4514a5f89300f8068e64a754bd04c2d6c4948192
|
611
|
+
Author: Aman Gupta <aman@tmm1.net>
|
612
|
+
Date: Thu Jul 10 16:17:09 2008 -0700
|
613
|
+
|
614
|
+
Update ramaze.gemspec
|
615
|
+
|
616
|
+
commit e3c4beec604760ae61477c8032c9f984936bb0d7
|
617
|
+
Author: Aman Gupta <aman@tmm1.net>
|
618
|
+
Date: Thu Jul 10 16:13:38 2008 -0700
|
619
|
+
|
620
|
+
Use Ramaze::Rewrite in contrib/rest
|
621
|
+
|
622
|
+
commit 73cade77caba416d3d215971699b60be05a99ac7
|
623
|
+
Author: Aman Gupta <aman@tmm1.net>
|
624
|
+
Date: Wed Jul 9 02:15:32 2008 -0700
|
625
|
+
|
626
|
+
Fix spec failure in SourceReload::shutdown
|
627
|
+
|
628
|
+
commit 07c3b9553d9b037315cdaa90b79eaec9079ebb34
|
629
|
+
Author: Aman Gupta <aman@tmm1.net>
|
630
|
+
Date: Tue Jul 8 16:04:53 2008 -0700
|
631
|
+
|
632
|
+
start SourceReload via essentials (instead on 'require ramaze')
|
633
|
+
|
634
|
+
commit 7b275604177b6dcb79faddbf1b09b446a2707b9e
|
635
|
+
Merge: c671b8c... 8ebe6e3...
|
636
|
+
Author: Jonathan Buch <jonathan.buch@gmail.com>
|
637
|
+
Date: Thu Jul 3 23:31:30 2008 +0200
|
638
|
+
|
639
|
+
Merge branch 'master' of git@github.com:manveru/ramaze
|
640
|
+
|
641
|
+
commit c671b8cc5ea1ef2d0f83993e136a56673cdfa1f3
|
642
|
+
Author: Jonathan Buch <jonathan.buch@gmail.com>
|
643
|
+
Date: Thu Jul 3 23:31:05 2008 +0200
|
644
|
+
|
645
|
+
Don't reuse the Adapter alias for requireing adapter files
|
646
|
+
Failed for Mongrel, as it has different files for a single alias.
|
647
|
+
|
648
|
+
commit 8ebe6e36325bb1238acee1218b3bcef5dc379dac
|
649
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
650
|
+
Date: Mon Jun 30 15:48:08 2008 +0900
|
651
|
+
|
652
|
+
Some minor whitespace fix
|
653
|
+
|
654
|
+
commit 8fde4e2a7e3689ed6e241a55bfa048a2a231350e
|
655
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
656
|
+
Date: Mon Jun 30 15:47:50 2008 +0900
|
657
|
+
|
658
|
+
Fix faulty rewrite by Global.prefix
|
659
|
+
|
660
|
+
commit f0d2a7cf2f8f8436a6e48d3333f71e6c1b6419ff
|
661
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
662
|
+
Date: Mon Jun 30 15:47:15 2008 +0900
|
663
|
+
|
664
|
+
to_s before Rack::Utils::unescape
|
665
|
+
|
666
|
+
commit abfd86f65bfd94a686f13d14a0e1b25978213203
|
667
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
668
|
+
Date: Mon Jun 30 15:46:48 2008 +0900
|
669
|
+
|
670
|
+
Don't expect 303 but 302 for redirect in specs
|
671
|
+
|
672
|
+
commit 557c01621bb512dd5200360c461745841ef8c49f
|
673
|
+
Author: Rob Lievaart <rob@rebeltechnologies.nl>
|
674
|
+
Date: Fri Jun 27 11:08:38 2008 +0200
|
675
|
+
|
676
|
+
Update ramaze syslog support, the old version did not work(anymore?). I modified the interface to use the Logging module and I updated the syslog spec file to test the syslog support.
|
677
|
+
|
678
|
+
commit 029b39ae46ba10b72f96242993518719ac783537
|
679
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
680
|
+
Date: Wed Jun 25 21:17:54 2008 +0900
|
681
|
+
|
682
|
+
Adding Global.prefix for nested app deployment
|
683
|
+
|
684
|
+
* Global.prefix is by default '/'
|
685
|
+
* Global.prefix = '/app' would strip '/app' from incoming
|
686
|
+
requests and prefix it when using R/A/Rs from Helper::Link
|
687
|
+
|
688
|
+
commit f39700b2106db3c1da6e831ddfaaecf5ce20559e
|
689
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
690
|
+
Date: Wed Jun 25 16:22:00 2008 +0900
|
691
|
+
|
692
|
+
Ramaze::Gestalt gets nicer example
|
693
|
+
|
694
|
+
commit 734bd65ee773cbb145e8a9779c98892b3a1b620f
|
695
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
696
|
+
Date: Tue Jun 24 10:35:17 2008 +0900
|
697
|
+
|
698
|
+
Correct license in doc/LEGAL
|
699
|
+
|
700
|
+
commit 19210b28ed5be2eb946e5bbd7592049a5c0c33e0
|
701
|
+
Author: Aman Gupta <aman@tmm1.net>
|
702
|
+
Date: Mon Jun 23 00:28:54 2008 -0700
|
703
|
+
|
704
|
+
Add adapter to logger output
|
705
|
+
|
706
|
+
commit 16065e9e652ca74b50360940e26ba5137514b51b
|
707
|
+
Author: Aman Gupta <aman@tmm1.net>
|
708
|
+
Date: Mon Jun 23 00:18:54 2008 -0700
|
709
|
+
|
710
|
+
Switch contrib/gems to use Gem::DependencyInstaller
|
711
|
+
|
712
|
+
commit 3c3c3bd8cab100d53de6f26af93059f3bd71dcb2
|
713
|
+
Merge: 9578d8b... 028a50c...
|
714
|
+
Author: raggi <jftucker@gmail.com>
|
715
|
+
Date: Sat Jun 21 12:58:35 2008 +0100
|
716
|
+
|
717
|
+
Merge branch 'master' of git@github.com:manveru/ramaze
|
718
|
+
|
719
|
+
commit 9578d8bb0b1692f8cf728d1e5b814bea38f0b3e7
|
720
|
+
Author: raggi <jftucker@gmail.com>
|
721
|
+
Date: Sat Jun 21 12:57:11 2008 +0100
|
722
|
+
|
723
|
+
Corrected remaining Ramaze::Informer calls. dispatch.fgci and win32 may now work!
|
724
|
+
|
725
|
+
commit 028a50cd8b992edcbae6297829fd691e20eae200
|
726
|
+
Author: Jean-Francois Chevrette <jfchevrette@iweb.ca>
|
727
|
+
Date: Thu Jun 19 08:17:02 2008 -0400
|
728
|
+
|
729
|
+
fixing the console feature that was accidentally dropped in 2008.06
|
730
|
+
|
731
|
+
commit 827cce9fe1b738b67205f7df18e22d14511423bf
|
732
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
733
|
+
Date: Thu Jun 19 17:07:45 2008 +0900
|
734
|
+
|
735
|
+
Further usage of Rack::Utils
|
736
|
+
|
737
|
+
commit 6bc1d953b391ddb6650c10663dfb6bb41679008c
|
738
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
739
|
+
Date: Thu Jun 19 00:32:34 2008 +0900
|
740
|
+
|
741
|
+
Use Rack::Util for escape_html
|
742
|
+
|
743
|
+
commit 17473d232b9d0debff7f77b0188bd9ffedc90db2
|
744
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
745
|
+
Date: Thu Jun 19 00:29:57 2008 +0900
|
746
|
+
|
747
|
+
Use Rack::Utils for escape/unescape
|
748
|
+
|
749
|
+
commit e8bc3b65bd94ad6a44735f291b632ad827cb835d
|
750
|
+
Author: Sam Carr <samcarr@gmail.com>
|
751
|
+
Date: Wed Jun 18 15:15:21 2008 +0100
|
752
|
+
|
753
|
+
Fix to Cache so it doesn't add methods to Class itself.
|
754
|
+
|
755
|
+
commit d917b6f3126b8c4d204f2838e86a9ef7dfcfb986
|
756
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
757
|
+
Date: Wed Jun 18 16:54:19 2008 +0900
|
758
|
+
|
759
|
+
Ability to deprecate constants by const_missing
|
760
|
+
|
761
|
+
commit df3566210b4a05a5ba7cdc4b4c8303ce6c00cf42
|
762
|
+
Author: Aman Gupta <aman@tmm1.net>
|
763
|
+
Date: Tue Jun 17 15:55:19 2008 -0700
|
764
|
+
|
765
|
+
send 302 instead of 303 (for better compatibility with older browsers) in RedirectHelper
|
766
|
+
|
767
|
+
commit 287516d024fc1d0d1f0b407734cdb2cdabd1fafb
|
768
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
769
|
+
Date: Tue Jun 17 01:30:44 2008 +0900
|
770
|
+
|
771
|
+
Revert "Remove vendor/bacon.rb"
|
772
|
+
|
773
|
+
This reverts commit a184f71c34e2a0d3f01d9728622aba7cc3d097fe.
|
774
|
+
|
775
|
+
commit cb4a7dc4f70da569b33b92f81dbc483911d638fc
|
776
|
+
Author: Wang, Jinjing <nfjinjing@gmail.com>
|
777
|
+
Date: Sat Jun 14 00:08:12 2008 +0800
|
778
|
+
|
779
|
+
remove custom hacks..
|
780
|
+
|
781
|
+
commit 05d7211d70a756dd742c6ca598512e2607e27998
|
782
|
+
Author: Wang, Jinjing <nfjinjing@gmail.com>
|
783
|
+
Date: Fri Jun 6 16:42:02 2008 +0800
|
784
|
+
|
785
|
+
em hack
|
786
|
+
|
787
|
+
commit 235d29eb6bd1470c088a8d6fc520ef45c6ecca91
|
788
|
+
Author: Clinton R. Nixon <crnixon@gmail.com>
|
789
|
+
Date: Sun Jun 15 13:08:28 2008 -0400
|
790
|
+
|
791
|
+
temp fix for Passenger - remember to replace with manveru's eventual fix
|
792
|
+
|
793
|
+
commit e0b938be4169c4343c297e57c1485f5c56449071
|
794
|
+
Author: Clinton R. Nixon <clinton.nixon@viget.com>
|
795
|
+
Date: Fri Jun 13 15:45:05 2008 -0400
|
796
|
+
|
797
|
+
Added ability to fake out PUT and DELETE through POST and a hidden 'method' variable in contrib/rest.rb
|
798
|
+
|
799
|
+
commit c73feefa72c694193644aff4c3cd2623e17a5a87
|
800
|
+
Author: Clinton R. Nixon <clinton.nixon@viget.com>
|
801
|
+
Date: Fri Jun 13 15:44:25 2008 -0400
|
802
|
+
|
803
|
+
Fixed symbol.downcase bug in helpers/rest.rb
|
804
|
+
|
805
|
+
commit 3ebec6927d235744bc870af2c7ea66fdaf4131d8
|
806
|
+
Author: Yasushi Abe <yasushi.abe@gmail.com>
|
807
|
+
Date: Mon Jun 16 12:37:45 2008 +0900
|
808
|
+
|
809
|
+
Fix Global.server==nil on Cgi adapter.
|
810
|
+
|
811
|
+
commit 2b6d1de47d33910753f000922ae360b0f6ab1675
|
812
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
813
|
+
Date: Mon Jun 16 22:25:56 2008 +0900
|
814
|
+
|
815
|
+
Fix rake maintenance:undocumented dependencies
|
816
|
+
|
817
|
+
commit a1c0c3c41cf467efcfb2f005a0474f6bf4b3e318
|
818
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
819
|
+
Date: Sun Jun 15 11:23:17 2008 +0900
|
820
|
+
|
821
|
+
Speed up and simplify Binding::locals
|
822
|
+
|
823
|
+
commit 011b6810483f9fcdee1050729ab9c811e0d66dab
|
824
|
+
Author: Wang, Jinjing <nfjinjing@gmail.com>
|
825
|
+
Date: Sat Jun 14 00:08:12 2008 +0800
|
826
|
+
|
827
|
+
remove custom hacks..
|
828
|
+
|
829
|
+
commit f27affc02a8bb500816d7e963374c51602fafc7b
|
830
|
+
Author: Wang, Jinjing <nfjinjing@gmail.com>
|
831
|
+
Date: Fri Jun 13 23:32:25 2008 +0800
|
832
|
+
|
833
|
+
Fix: binding.locals on Ruby1.9, add a small spec for locals, and make haml tempalte spec pass
|
834
|
+
|
835
|
+
commit e73a1088779706094d8707f3fc8adcf5e6a16759
|
836
|
+
Author: Wang, Jinjing <nfjinjing@gmail.com>
|
837
|
+
Date: Fri Jun 6 16:42:02 2008 +0800
|
838
|
+
|
839
|
+
em hack
|
840
|
+
|
841
|
+
commit ff63fcb10bc63ca4ae052aff24d4808ec3ef7cdf
|
842
|
+
Author: Aman Gupta <aman@tmm1.net>
|
843
|
+
Date: Sun Jun 15 16:14:36 2008 -0700
|
844
|
+
|
845
|
+
add simple numeric time extensions
|
846
|
+
|
847
|
+
commit 3dee5a0a6f40d56d2480a9d79117fe6473509345
|
848
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
849
|
+
Date: Sat Jun 14 18:11:50 2008 +0900
|
850
|
+
|
851
|
+
Fix whitespace in simple example
|
852
|
+
|
853
|
+
commit 32a57700dddbbd9bd45380fa6be69f690b71abcd
|
854
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
855
|
+
Date: Sat Jun 14 16:17:45 2008 +0900
|
856
|
+
|
857
|
+
Denormalize Controller::resolve_method
|
858
|
+
|
859
|
+
commit 5167de5c7defb49847b6a8074914e06534542dfa
|
860
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
861
|
+
Date: Sat Jun 14 16:16:34 2008 +0900
|
862
|
+
|
863
|
+
Reindent Controller::template
|
864
|
+
|
865
|
+
commit 0e1bca844f88f94399d91072adc46f0f34b27b53
|
866
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
867
|
+
Date: Sat Jun 14 16:03:33 2008 +0900
|
868
|
+
|
869
|
+
Fix syntax ambiguity in wikore model
|
870
|
+
|
871
|
+
commit 6c37b0658ca713348d3aea3920a50ae6ef9681ad
|
872
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
873
|
+
Date: Sat Jun 14 16:01:42 2008 +0900
|
874
|
+
|
875
|
+
Fix syntax ambiguity in template/xslt
|
876
|
+
|
877
|
+
commit cb0054d0e8ef49550a1031faef887e8a2e6ee050
|
878
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
879
|
+
Date: Sat Jun 14 16:00:04 2008 +0900
|
880
|
+
|
881
|
+
Adding metric task metric:churn
|
882
|
+
|
883
|
+
commit 8a0d7e71be6a1f72b7d1ebee9ba0a32b47c66538
|
884
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
885
|
+
Date: Fri Jun 13 17:38:48 2008 +0900
|
886
|
+
|
887
|
+
Put loggers into the Ramaze::Logger namespace
|
888
|
+
|
889
|
+
commit 2fb13c80c10dbb4fd2d7876e2ad1e3991ecc4ef7
|
890
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
891
|
+
Date: Fri Jun 13 17:29:01 2008 +0900
|
892
|
+
|
893
|
+
Fix db for wikore
|
894
|
+
|
895
|
+
commit 146fda6eace6e08087e7037f97c87b1710e8987a
|
896
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
897
|
+
Date: Fri Jun 13 17:25:44 2008 +0900
|
898
|
+
|
899
|
+
Tutorial should use h instead of c
|
900
|
+
|
901
|
+
commit 73cc2c88c3b2afc4d3008c3e5868320ee7b278d4
|
902
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
903
|
+
Date: Fri Jun 13 17:25:24 2008 +0900
|
904
|
+
|
905
|
+
Fix db for rapaste
|
906
|
+
|
907
|
+
commit 714df4b83fd8fc91412f0b1b290450e271e356f6
|
908
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
909
|
+
Date: Fri Jun 13 17:23:03 2008 +0900
|
910
|
+
|
911
|
+
Fix auto_params for new ruby2ruby/parsetree
|
912
|
+
|
913
|
+
commit de8bea7e53e92228c3812a811a51c46a2328071d
|
914
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
915
|
+
Date: Fri Jun 13 16:43:15 2008 +0900
|
916
|
+
|
917
|
+
Remove deprecated methods
|
918
|
+
|
919
|
+
commit fdf7f79cb3719fe95a1e3bcc9088c90e88e0aaf3
|
920
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
921
|
+
Date: Thu Jun 12 17:49:43 2008 +0900
|
922
|
+
|
923
|
+
Add String#end_with? / improve String#start_with?
|
924
|
+
|
925
|
+
commit aa73627ed98485269fd6cf82ee3ab3ba0dced020
|
926
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
927
|
+
Date: Thu Jun 12 14:24:27 2008 +0900
|
928
|
+
|
929
|
+
Change some dbs to Sequel.connect
|
930
|
+
|
931
|
+
commit 5b55be133f46df5cc71cfa6bae4b5123e312b99c
|
932
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
933
|
+
Date: Thu Jun 12 14:23:28 2008 +0900
|
934
|
+
|
935
|
+
Ramaze.start! instead of :force in start.ru
|
936
|
+
|
937
|
+
commit 971ca18c37b6181f278c00025c0d9ad6c94d6f07
|
938
|
+
Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
|
939
|
+
Date: Wed Jun 11 08:27:19 2008 -0400
|
940
|
+
|
941
|
+
Tiny wording change in announcement header info; whitespace adjustment.
|
942
|
+
|
943
|
+
commit 8bf9de5878a5acdfc19e76f52a2661fbbae7935f
|
944
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
945
|
+
Date: Wed Jun 11 17:26:49 2008 +0900
|
946
|
+
|
947
|
+
Update ramaze.gemspec
|
948
|
+
|
949
|
+
commit b6aa74e10d149b35d41173e622a1a2b247b08beb
|
950
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
951
|
+
Date: Wed Jun 11 17:26:26 2008 +0900
|
952
|
+
|
953
|
+
Add new gemspec task
|
954
|
+
|
955
|
+
commit 4357eeeda6fb08f1615c4e1e9bd2e9c6e670d2cd
|
956
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
957
|
+
Date: Wed Jun 11 17:25:37 2008 +0900
|
958
|
+
|
959
|
+
Update ramaze.gemspec
|
960
|
+
|
961
|
+
commit 528a013236b613078b92f859a8c02e5375cc2660
|
962
|
+
Author: Michael Fellinger <m.fellinger@gmail.com>
|
963
|
+
Date: Wed Jun 11 16:54:36 2008 +0900
|
964
|
+
|
965
|
+
Update CHANGELOG
|
966
|
+
|
1
967
|
commit 0513aa249da17b7ae2d6a5569c4d08131b7fe262
|
2
968
|
Author: Michael Fellinger <m.fellinger@gmail.com>
|
3
969
|
Date: Wed Jun 11 16:54:16 2008 +0900
|