innate 2011.04 → 2011.10

Sign up to get free protection for your applications and to get access to all the features.
data/.gems ADDED
@@ -0,0 +1,5 @@
1
+ # .gems generated gem export file. Note that any env variable settings will be missing. Append these after using a ';' field separator
2
+ bacon -v1.1.0
3
+ rack -v1.3.5
4
+ rack -v1.3.4
5
+ rack-test -v0.6.1
data/.gitignore CHANGED
@@ -3,3 +3,5 @@ pkg
3
3
  ydoc
4
4
  *~
5
5
  *.swp
6
+ coverage
7
+ *.gem
data/.load_gemset ADDED
@@ -0,0 +1,4 @@
1
+ #!/bin/bash
2
+
3
+ [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
4
+ [[ -s .gems ]] && rvm gemset import .gems
data/.rvmrc ADDED
@@ -0,0 +1,3 @@
1
+ rvm_gemset_create_on_use_flag=1
2
+ rvm use --create 1.9.3@innate
3
+ [[ -s .gems ]] && rvm gemset import .gems
data/.travis.yml ADDED
@@ -0,0 +1,19 @@
1
+ script: 'RUBYOPT=-rubygems rake bacon'
2
+ before_script:
3
+ - "./.load_gemset"
4
+ rvm:
5
+ - 1.8.7
6
+ - 1.9.2
7
+ - 1.9.3
8
+ - rbx
9
+ - rbx-2.0
10
+ - ree
11
+ - jruby
12
+
13
+ notifications:
14
+ email:
15
+ - mf@rubyists.com
16
+
17
+ branches:
18
+ only:
19
+ - master
data/AUTHORS CHANGED
@@ -1,7 +1,7 @@
1
1
  Following persons have contributed to innate.
2
2
  (Sorted by number of submitted patches, then alphabetically)
3
3
 
4
- 774 Michael Fellinger <m.fellinger@gmail.com>
4
+ 799 Michael Fellinger <m.fellinger@gmail.com>
5
5
  31 Tadahiko Uehara <kikofx@gmail.com>
6
6
  9 Lee Jarvis <injekt.me@gmail.com>
7
7
  8 Pistos <gitsomegrace.5.pistos@geoshell.com>
@@ -14,7 +14,9 @@ Following persons have contributed to innate.
14
14
  2 Arnaud Meuret <arnaud@meuret.name>
15
15
  2 injekt <ljjarvis@gmail.com>
16
16
  2 TJ Vanderpoel <bougy.man@gmail.com>
17
+ 2 YorickPeterse <yorickpeterse@gmail.com>
17
18
  1 crab <crabtw@gmail.com>
18
19
  1 Jérémy Zurcher <jeremy@asynk.ch>
19
20
  1 ravage <ravage@fragmentized.net>
20
21
  1 Sam Carr <samcarr@gmail.com>
22
+ 1 Yorick Peterse <yorickpeterse@gmail.com>
data/CHANGELOG CHANGED
@@ -1,28 +1,140 @@
1
- [d05190a | 2011-04-19 02:37:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1
+ [7ad5d81 | 2011-10-23 17:19:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
2
+
3
+ * Version 2011.10
4
+
5
+ [013b148 | 2011-10-22 20:12:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
6
+
7
+ * Remove deprecated Innate::Session.options.expires, use Innate::Session.options.ttl instead
8
+
9
+ [ae24452 | 2011-10-22 20:10:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
10
+
11
+ * Remove deprecated shared :mock block
12
+
13
+ [7bf2528 | 2011-10-21 23:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
14
+
15
+ * Another 1.8 incompatibility in the spec
16
+
17
+ [97cf46a | 2011-10-21 23:39:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
18
+
19
+ * Make provides spec more robust
20
+
21
+ [11bdba7 | 2011-10-21 22:38:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
22
+
23
+ * Try requiring rubygems for the lesser versions
24
+
25
+ [8dcfffb | 2011-10-21 22:35:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
26
+
27
+ * Remove set -x, let's get down to business
28
+
29
+ [7a5066f | 2011-10-21 22:33:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
30
+
31
+ * Try ignoring trust issues with .rvmrc
32
+
33
+ [f913028 | 2011-10-21 22:16:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
34
+
35
+ * Load rvm manually
36
+
37
+ [3791189 | 2011-10-21 22:14:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
38
+
39
+ * turn debugging for rvm on
40
+
41
+ [845c834 | 2011-10-21 22:11:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
42
+
43
+ * Try debugging and loading bashrc to get rvm
44
+
45
+ [85ff8df | 2011-10-21 22:09:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
46
+
47
+ * And make things a bit more complicated
48
+
49
+ [e725da7 | 2011-10-21 21:58:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
50
+
51
+ * try to make travis happy
52
+
53
+ [acaa77a | 2011-10-21 21:55:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
54
+
55
+ * Move rvm gemset import to the right place
56
+
57
+ [ac0371c | 2011-10-21 16:30:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
58
+
59
+ * Try setup via .rvmrc .gems
60
+
61
+ [156e09b | 2011-10-21 16:30:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
62
+
63
+ * Remove dependency on json
64
+
65
+ [b5ca6a3 | 2011-10-21 15:53:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
66
+
67
+ * Run setup before bacon
68
+
69
+ [0426977 | 2011-10-21 15:47:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
70
+
71
+ * Revert "Remove the unused gem install task"
72
+
73
+ This reverts commit 3e1cc52743470886f7b50db633535bcf6765b638.
74
+
75
+ [3e1cc52 | 2011-10-21 15:36:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
76
+
77
+ * Remove the unused gem install task
78
+
79
+ [9390547 | 2011-10-21 15:36:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
80
+
81
+ * Fix location of RUBY
82
+
83
+ [f086a10 | 2011-10-21 15:35:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
84
+
85
+ * Fix the gem package task
86
+
87
+ [bed5d5a | 2011-10-21 15:35:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
88
+
89
+ * Update rvmrc
90
+
91
+ [965ed57 | 2011-10-21 15:20:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
92
+
93
+ * Adding travis config
94
+
95
+ [e9b0d7c | 2011-09-23 10:06:54 UTC] Yorick Peterse <yorickpeterse@gmail.com>
96
+
97
+ * Updated the README, fixes #5
98
+
99
+ Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
100
+
101
+ [157a09d | 2011-08-18 08:00:28 UTC] YorickPeterse <yorickpeterse@gmail.com>
102
+
103
+ * Added a .rvmrc file and updated the .gitignore file to exclude rcov data.
104
+
105
+ [7df330c | 2011-07-20 08:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
106
+
107
+ * Update spec file exclusion
108
+
109
+ [a4eb56a | 2011-06-01 23:07:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
110
+
111
+ * Update Node documentation
112
+
113
+ [d05190a | 2011-04-19 09:37:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2
114
 
3
115
  * Version 2011.04
4
116
 
5
- [bacc603 | 2011-04-19 02:37:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
117
+ [bacc603 | 2011-04-19 09:37:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
6
118
 
7
119
  * Remove rubyforge release task
8
120
 
9
- [05ccf96 | 2011-04-19 02:31:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
121
+ [05ccf96 | 2011-04-19 09:31:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
10
122
 
11
123
  * Node::find_method must accept anything that responds to #to_s as method name
12
124
 
13
- [8d4bfd0 | 2011-02-13 23:07:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
125
+ [8d4bfd0 | 2011-02-14 07:07:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
14
126
 
15
127
  * Don't mention :state, it's gone
16
128
 
17
- [2b3a9ca | 2011-01-26 06:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
129
+ [2b3a9ca | 2011-01-26 14:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
18
130
 
19
131
  * Version 2011.01
20
132
 
21
- [6039ffa | 2010-12-11 13:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
133
+ [6039ffa | 2010-12-11 21:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
22
134
 
23
135
  * Adjust spec for changes in Rack
24
136
 
25
- [5e30254 | 2010-09-17 10:58:10 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
137
+ [5e30254 | 2010-09-17 17:58:10 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
26
138
 
27
139
  * New method for Innate::Session, #resid!, that can be used to change the session key.
28
140
 
@@ -33,195 +145,195 @@
33
145
  It is probably a good idea to explicitly reset the session data as well on
34
146
  login, but the necessity of this depends on the application.
35
147
 
36
- [85d45ea | 2010-09-07 01:14:44 UTC] Lee Jarvis <injekt.me@gmail.com>
148
+ [85d45ea | 2010-09-07 08:14:44 UTC] Lee Jarvis <injekt.me@gmail.com>
37
149
 
38
150
  * updated git url
39
151
 
40
- [51eac73 | 2010-09-06 23:25:22 UTC] Lee Jarvis <injekt.me@gmail.com>
152
+ [51eac73 | 2010-09-07 06:25:22 UTC] Lee Jarvis <injekt.me@gmail.com>
41
153
 
42
154
  * added gitignore
43
155
 
44
- [32c943c | 2010-09-06 06:02:25 UTC] Lee Jarvis <injekt.me@gmail.com>
156
+ [32c943c | 2010-09-06 13:02:25 UTC] Lee Jarvis <injekt.me@gmail.com>
45
157
 
46
158
  * fixed pointless spec addition
47
159
 
48
- [b180c1c | 2010-09-06 06:00:44 UTC] Lee Jarvis <injekt.me@gmail.com>
160
+ [b180c1c | 2010-09-06 13:00:44 UTC] Lee Jarvis <injekt.me@gmail.com>
49
161
 
50
162
  * added specs for helper suffix
51
163
 
52
- [c7fccc6 | 2010-09-06 05:50:45 UTC] Lee Jarvis <injekt.me@gmail.com>
164
+ [c7fccc6 | 2010-09-06 12:50:45 UTC] Lee Jarvis <injekt.me@gmail.com>
53
165
 
54
166
  * removed send_file helper spec
55
167
 
56
- [49c9963 | 2010-09-06 05:49:54 UTC] Lee Jarvis <injekt.me@gmail.com>
168
+ [49c9963 | 2010-09-06 12:49:54 UTC] Lee Jarvis <injekt.me@gmail.com>
57
169
 
58
170
  * removed send_file from default helpers
59
171
 
60
- [4ca7b0c | 2010-09-06 05:22:23 UTC] Lee Jarvis <injekt.me@gmail.com>
172
+ [4ca7b0c | 2010-09-06 12:22:23 UTC] Lee Jarvis <injekt.me@gmail.com>
61
173
 
62
174
  * allow helper modules to be suffixed with 'helper'
63
175
 
64
176
  this allows us to create helpers which may have identical names as
65
177
  Models without having namespace conflicts
66
178
 
67
- [7d8437e | 2010-08-26 15:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
179
+ [7d8437e | 2010-08-26 22:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
68
180
 
69
181
  * Support HttpOnly
70
182
 
71
- [1183bca | 2010-08-20 14:15:58 UTC] Lee Jarvis <injekt.me@gmail.com>
183
+ [1183bca | 2010-08-20 21:15:58 UTC] Lee Jarvis <injekt.me@gmail.com>
72
184
 
73
185
  * moved send_file helper to ramaze
74
186
 
75
- [6412640 | 2010-07-21 04:32:15 UTC] injekt <ljjarvis@gmail.com>
187
+ [6412640 | 2010-07-21 11:32:15 UTC] injekt <ljjarvis@gmail.com>
76
188
 
77
189
  * fixed readme formatting
78
190
 
79
- [1ac3e6f | 2010-07-21 04:31:27 UTC] injekt <ljjarvis@gmail.com>
191
+ [1ac3e6f | 2010-07-21 11:31:27 UTC] injekt <ljjarvis@gmail.com>
80
192
 
81
193
  * updated installation docs
82
194
 
83
- [f4ecc85 | 2010-07-11 16:34:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
195
+ [f4ecc85 | 2010-07-11 23:34:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
84
196
 
85
197
  * Version 2010.07
86
198
 
87
- [d11be17 | 2010-07-11 16:24:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
199
+ [d11be17 | 2010-07-11 23:24:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
88
200
 
89
201
  * Fix issue with Ruby 1.9.2
90
202
 
91
- [154fdf8 | 2010-06-30 06:53:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
203
+ [154fdf8 | 2010-06-30 13:53:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
92
204
 
93
205
  * Fix typo
94
206
 
95
- [231b0ee | 2010-06-17 15:40:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
207
+ [231b0ee | 2010-06-17 22:40:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
96
208
 
97
209
  * Version 2010.06.18
98
210
 
99
- [ce8b903 | 2010-06-17 15:40:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
211
+ [ce8b903 | 2010-06-17 22:40:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
100
212
 
101
213
  * Allow latest version of Rack
102
214
 
103
- [dbaaeb5 | 2010-06-03 08:00:56 UTC] Lee Jarvis <injekt.me@gmail.com>
215
+ [dbaaeb5 | 2010-06-03 15:00:56 UTC] Lee Jarvis <injekt.me@gmail.com>
104
216
 
105
217
  * edited documentation for render_view
106
218
 
107
- [55bf889 | 2010-05-04 02:29:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
219
+ [55bf889 | 2010-05-04 09:29:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
108
220
 
109
221
  * Remove AccessLog option from webrick handler to avoid log duplication
110
222
 
111
- [32886da | 2010-04-11 04:42:13 UTC] Zoxc <zoxc32@gmail.com>
223
+ [32886da | 2010-04-11 11:42:13 UTC] Zoxc <zoxc32@gmail.com>
112
224
 
113
225
  * Updated Etanni specs.
114
226
 
115
- [9bf55e5 | 2010-04-11 04:30:17 UTC] Zoxc <zoxc32@gmail.com>
227
+ [9bf55e5 | 2010-04-11 11:30:17 UTC] Zoxc <zoxc32@gmail.com>
116
228
 
117
229
  * Some tweaks to Etanni.
118
230
 
119
- [3502814 | 2010-04-09 09:49:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
231
+ [3502814 | 2010-04-09 16:49:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
120
232
 
121
233
  * Major speedup for Etanni as suggested by Zoxc
122
234
 
123
- [b796644 | 2010-04-04 00:56:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
235
+ [b796644 | 2010-04-04 07:56:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
124
236
 
125
237
  * Version 2010.04
126
238
 
127
- [1aeacca | 2010-04-03 14:45:46 UTC] injekt <injekt.me@gmail.com>
239
+ [1aeacca | 2010-04-03 21:45:46 UTC] injekt <injekt.me@gmail.com>
128
240
 
129
241
  * fixed redirect spec
130
242
 
131
- [0a71ec2 | 2010-04-03 14:42:52 UTC] injekt <injekt.me@gmail.com>
243
+ [0a71ec2 | 2010-04-03 21:42:52 UTC] injekt <injekt.me@gmail.com>
132
244
 
133
245
  * fixed redirect spec
134
246
 
135
- [6eedc76 | 2010-03-29 14:07:51 UTC] injekt <injekt.me@gmail.com>
247
+ [6eedc76 | 2010-03-29 21:07:51 UTC] injekt <injekt.me@gmail.com>
136
248
 
137
249
  * minor fixes to README
138
250
 
139
- [b5787a4 | 2010-03-29 08:31:03 UTC] injekt <injekt.me@gmail.com>
251
+ [b5787a4 | 2010-03-29 15:31:03 UTC] injekt <injekt.me@gmail.com>
140
252
 
141
253
  * Added support for case-insensitive View lookups
142
254
 
143
255
  Removed case sensitive restriction when using Controller::engine
144
256
  for View lookup; :haml is as good as :Haml
145
257
 
146
- [edc00df | 2010-03-27 14:55:07 UTC] injekt <injekt.me@gmail.com>
258
+ [edc00df | 2010-03-27 22:55:07 UTC] injekt <injekt.me@gmail.com>
147
259
 
148
260
  * fixed doc for flash helper (depreciated method)
149
261
 
150
- [2e4bdbd | 2010-03-24 06:18:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
262
+ [2e4bdbd | 2010-03-24 14:18:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
151
263
 
152
264
  * Add spec for how to pass arguments to provide actions
153
265
 
154
- [d09ff45 | 2010-03-18 16:37:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
266
+ [d09ff45 | 2010-03-19 00:37:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
155
267
 
156
268
  * Fix some issues, don't split Content-Type at all
157
269
 
158
- [abe842c | 2010-03-18 16:33:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
270
+ [abe842c | 2010-03-19 00:33:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
159
271
 
160
272
  * Make sure ; doesn't break Content-Type
161
273
 
162
- [acce333 | 2010-03-18 03:26:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
274
+ [acce333 | 2010-03-18 11:26:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
163
275
 
164
276
  * The Response Content-Type option should influence default mime type
165
277
 
166
- [7ad4de7 | 2010-03-11 04:44:42 UTC] crab <crabtw@gmail.com>
278
+ [7ad4de7 | 2010-03-11 12:44:42 UTC] crab <crabtw@gmail.com>
167
279
 
168
280
  * use Innate.options.prefix as redirect fallback
169
281
 
170
- [e13e2b2 | 2010-03-09 01:48:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
282
+ [e13e2b2 | 2010-03-09 09:48:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
171
283
 
172
284
  * Fix .dup in Rakefile
173
285
 
174
- [4fa40fc | 2010-03-08 13:53:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
286
+ [4fa40fc | 2010-03-08 21:53:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
175
287
 
176
288
  * Version 2010.03
177
289
 
178
- [c48a647 | 2010-02-03 07:59:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
290
+ [c48a647 | 2010-02-03 15:59:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
179
291
 
180
292
  * Add a spec for Etanni
181
293
 
182
- [baa0dd8 | 2010-01-17 06:57:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
294
+ [baa0dd8 | 2010-01-17 14:57:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
183
295
 
184
296
  * clarify precedence
185
297
 
186
- [c9fa60f | 2010-01-06 07:14:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
298
+ [c9fa60f | 2010-01-06 15:14:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
187
299
 
188
300
  * Set correct header in referrer spec
189
301
 
190
- [59f03da | 2010-01-06 07:10:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
302
+ [59f03da | 2010-01-06 15:10:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
191
303
 
192
304
  * Fix request spec for new rack behaviour
193
305
 
194
- [82cd8d9 | 2010-01-06 06:53:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
306
+ [82cd8d9 | 2010-01-06 14:53:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
195
307
 
196
308
  * Version 2010.01
197
309
 
198
- [2511e2b | 2010-01-06 06:52:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
310
+ [2511e2b | 2010-01-06 14:52:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
199
311
 
200
312
  * Update Rakefile
201
313
 
202
- [07f9238 | 2009-12-01 14:57:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
314
+ [07f9238 | 2009-12-01 22:57:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
203
315
 
204
316
  * Revert "Major performance improvement for Etanni."
205
317
 
206
318
  This reverts commit 1b736b793e9f31cf79fad2820f3f20a00802c2c8.
207
319
 
208
- [1b736b7 | 2009-11-30 19:17:23 UTC] Zoxc <zoxc32@gmail.com>
320
+ [1b736b7 | 2009-12-01 03:17:23 UTC] Zoxc <zoxc32@gmail.com>
209
321
 
210
322
  * Major performance improvement for Etanni.
211
323
 
212
- [7b14652 | 2009-11-30 09:50:01 UTC] Zoxc <zoxc32@gmail.com>
324
+ [7b14652 | 2009-11-30 17:50:01 UTC] Zoxc <zoxc32@gmail.com>
213
325
 
214
326
  * Performance improvement for Etanni.
215
327
 
216
- [17dba1a | 2009-11-18 19:12:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
328
+ [17dba1a | 2009-11-19 03:12:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
217
329
 
218
330
  * Remove comment
219
331
 
220
- [aac4faf | 2009-11-16 13:16:56 UTC] Lin Jen-Shin <godfat@godfat.org>
332
+ [aac4faf | 2009-11-16 21:16:56 UTC] Lin Jen-Shin <godfat@godfat.org>
221
333
 
222
334
  * [helper/render.rb] dup on variables arg is not needed. never refered.
223
335
 
224
- [5d1e95d | 2009-11-16 12:52:12 UTC] Lin Jen-Shin <godfat@godfat.org>
336
+ [5d1e95d | 2009-11-16 20:52:12 UTC] Lin Jen-Shin <godfat@godfat.org>
225
337
 
226
338
  * [helper/render.rb] fixed render_file's sync_variables. see detail:
227
339
 
@@ -239,111 +351,111 @@
239
351
 
240
352
  spec this behavior in SpecHelperRenderFile.
241
353
 
242
- [42b5ec5 | 2009-10-28 12:43:54 UTC] Lin Jen-Shin <godfat@godfat.org>
354
+ [42b5ec5 | 2009-10-28 20:43:54 UTC] Lin Jen-Shin <godfat@godfat.org>
243
355
 
244
356
  * Add a simple Unicorn wrapper in innate/adapter.rb
245
357
 
246
- [14a340f | 2009-10-17 18:01:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
358
+ [14a340f | 2009-10-18 01:01:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
247
359
 
248
360
  * Allow skipping the template discovery to speed things up
249
361
 
250
- [d02bd71 | 2009-10-17 17:50:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
362
+ [d02bd71 | 2009-10-18 00:50:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
251
363
 
252
364
  * Fix gem_setup task
253
365
 
254
- [0f3c5fe | 2009-10-05 09:32:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
366
+ [0f3c5fe | 2009-10-05 16:32:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
255
367
 
256
368
  * Allow for change of the default action name as proposed by Daniel Azuma
257
369
 
258
- [ee96b28 | 2009-10-04 08:37:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
370
+ [ee96b28 | 2009-10-04 15:37:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
259
371
 
260
372
  * Remove temp README
261
373
 
262
- [3e90299 | 2009-10-04 08:37:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
374
+ [3e90299 | 2009-10-04 15:37:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
263
375
 
264
376
  * Fix precedence issue in redirect_referer
265
377
 
266
- [44f40da | 2009-10-03 14:33:11 UTC] Arnaud Meuret <arnaud@meuret.name>
378
+ [44f40da | 2009-10-03 21:33:11 UTC] Arnaud Meuret <arnaud@meuret.name>
267
379
 
268
380
  * Typos and minor rephrasing.
269
381
 
270
- [7ad5fd9 | 2009-10-02 15:04:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
382
+ [7ad5fd9 | 2009-10-02 22:04:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
271
383
 
272
384
  * Sync metadata after release
273
385
 
274
- [1b0702f | 2009-10-02 13:24:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
386
+ [1b0702f | 2009-10-02 20:24:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
275
387
 
276
388
  * Version 2009.10
277
389
 
278
- [88451a1 | 2009-10-02 13:23:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
390
+ [88451a1 | 2009-10-02 20:23:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
279
391
 
280
392
  * Improve the release tasks, add one for gemcutter
281
393
 
282
- [c37df32 | 2009-10-01 11:16:02 UTC] Arnaud Meuret <arnaud@meuret.name>
394
+ [c37df32 | 2009-10-01 18:16:02 UTC] Arnaud Meuret <arnaud@meuret.name>
283
395
 
284
396
  * Fix: specifying a layout from a method and a filter block was broken
285
397
 
286
- [18668be | 2009-09-29 14:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
398
+ [18668be | 2009-09-29 21:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
287
399
 
288
400
  * Update dependencies
289
401
 
290
- [672bbaa | 2009-09-22 15:15:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
402
+ [672bbaa | 2009-09-22 22:15:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
291
403
 
292
404
  * Use Rack::Utils::build_query, this changes query separator from ; to &
293
405
 
294
- [0d4d2d1 | 2009-09-22 15:04:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
406
+ [0d4d2d1 | 2009-09-22 22:04:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
295
407
 
296
408
  * Improve code readability a bit
297
409
 
298
- [44d02ed | 2009-09-21 17:02:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
410
+ [44d02ed | 2009-09-22 00:02:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
299
411
 
300
412
  * Use Mutex instead of Thread::critical
301
413
 
302
- [1b80af6 | 2009-09-21 17:00:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
414
+ [1b80af6 | 2009-09-22 00:00:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
303
415
 
304
416
  * Fix ruby/jruby dependency mixup
305
417
 
306
- [783f554 | 2009-09-21 16:32:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
418
+ [783f554 | 2009-09-21 23:32:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
307
419
 
308
420
  * Fix startup issue regarding jruby-rack
309
421
 
310
- [a908b32 | 2009-09-15 07:15:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
422
+ [a908b32 | 2009-09-15 14:15:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
311
423
 
312
424
  * Fix typo
313
425
 
314
- [79df3a5 | 2009-08-27 08:21:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
426
+ [79df3a5 | 2009-08-27 15:21:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
315
427
 
316
428
  * Don't call aspects in layout
317
429
 
318
- [b69e9dd | 2009-08-27 03:55:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
430
+ [b69e9dd | 2009-08-27 10:55:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
319
431
 
320
432
  * Fix Options#pretty_print spec
321
433
 
322
- [6b8c32d | 2009-08-27 03:36:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
434
+ [6b8c32d | 2009-08-27 10:36:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
323
435
 
324
436
  * dev dependencies for jruby
325
437
 
326
- [0bb6ea5 | 2009-08-26 16:59:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
438
+ [0bb6ea5 | 2009-08-26 23:59:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
327
439
 
328
440
  * Forgot to require digest/md5
329
441
 
330
- [2bc0566 | 2009-08-19 08:27:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
442
+ [2bc0566 | 2009-08-19 15:27:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
331
443
 
332
444
  * Cache is not a module
333
445
 
334
- [c74c2b8 | 2009-08-17 05:37:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
446
+ [c74c2b8 | 2009-08-17 12:37:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
335
447
 
336
448
  * fix doc typo
337
449
 
338
- [9650f8c | 2009-07-28 06:49:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
450
+ [9650f8c | 2009-07-28 13:49:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
339
451
 
340
452
  * Some more specs for double underscore
341
453
 
342
- [822560a | 2009-07-28 06:43:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
454
+ [822560a | 2009-07-28 13:43:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
343
455
 
344
456
  * Expand specs for double underscore
345
457
 
346
- [b865335 | 2009-05-21 13:27:38 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
458
+ [b865335 | 2009-05-21 20:27:38 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
347
459
 
348
460
  * Aspect spec uses inline layout instead a file-based.
349
461
 
@@ -351,7 +463,7 @@
351
463
 
352
464
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
353
465
 
354
- [62d8853 | 2009-05-21 13:16:57 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
466
+ [62d8853 | 2009-05-21 20:16:57 UTC] Antti Tuomi <antti.tuomi@tkk.fi>
355
467
 
356
468
  * Aspect spec checks the functionality when using layouts.
357
469
 
@@ -359,212 +471,212 @@
359
471
 
360
472
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
361
473
 
362
- [e4735cb | 2009-05-27 14:57:48 UTC] ravage <ravage@fragmentized.net>
474
+ [e4735cb | 2009-05-27 21:57:48 UTC] ravage <ravage@fragmentized.net>
363
475
 
364
476
  * Resolve fake depth
365
477
 
366
478
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
367
479
 
368
- [10d7ef3 | 2009-07-21 16:11:57 UTC] Jérémy Zurcher <jeremy@asynk.ch>
480
+ [10d7ef3 | 2009-07-21 23:11:57 UTC] Jérémy Zurcher <jeremy@asynk.ch>
369
481
 
370
482
  * fix default option handling overriding in options/dsl
371
483
 
372
484
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
373
485
 
374
- [03274f3 | 2009-07-19 03:02:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
486
+ [03274f3 | 2009-07-19 10:02:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
375
487
 
376
488
  * Version 2009.07
377
489
 
378
- [3ed8553 | 2009-07-19 03:01:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
490
+ [3ed8553 | 2009-07-19 10:01:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
379
491
 
380
492
  * Update dependencies
381
493
 
382
- [4e09c15 | 2009-07-06 10:12:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
494
+ [4e09c15 | 2009-07-06 17:12:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
383
495
 
384
496
  * Implement an OpenSSL fallback for Session IDs
385
497
 
386
498
  Comes into play in case SecureRandom cannot be found.
387
499
  This should cover 99% of all < 1.8.7 installs.
388
500
 
389
- [cf9cdce | 2009-07-02 08:05:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
501
+ [cf9cdce | 2009-07-02 15:05:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
390
502
 
391
503
  * More intelligent gem_setup to handle cases where a library can be found via require but ain't a gem
392
504
 
393
- [337f092 | 2009-07-02 08:05:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
505
+ [337f092 | 2009-07-02 15:05:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
394
506
 
395
507
  * Use absolute paths for spec requires
396
508
 
397
- [7a475b9 | 2009-06-14 14:14:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
509
+ [7a475b9 | 2009-06-14 21:14:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
398
510
 
399
511
  * Require rubygems >= 1.3.1
400
512
 
401
- [7f41b89 | 2009-06-12 12:54:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
513
+ [7f41b89 | 2009-06-12 19:54:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
402
514
 
403
515
  * Version 2009.06.12
404
516
 
405
- [e92a8b3 | 2009-06-11 15:41:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
517
+ [e92a8b3 | 2009-06-11 22:41:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
406
518
 
407
519
  * Make sure that instance-variables set in the view template can be used in the layout
408
520
 
409
- [84ce0d8 | 2009-06-03 11:09:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
521
+ [84ce0d8 | 2009-06-03 18:09:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
410
522
 
411
523
  * Fix the bacon task dependency
412
524
 
413
- [46de89c | 2009-06-02 11:50:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
525
+ [46de89c | 2009-06-02 18:50:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
414
526
 
415
527
  * Version 2009.06
416
528
 
417
- [e05a004 | 2009-06-02 11:49:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
529
+ [e05a004 | 2009-06-02 18:49:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
418
530
 
419
531
  * Use rubygems development-dependencies, improve rake setup
420
532
 
421
- [2575c64 | 2009-06-01 05:46:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
533
+ [2575c64 | 2009-06-01 12:46:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
422
534
 
423
535
  * Allow passing Innate.start(:root => [path1, path2])
424
536
 
425
- [5104984 | 2009-06-01 05:11:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
537
+ [5104984 | 2009-06-01 12:11:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
426
538
 
427
539
  * Move innate/spec to innate/spec/bacon and make innate/spec require that
428
540
 
429
- [9047159 | 2009-06-01 05:08:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
541
+ [9047159 | 2009-06-01 12:08:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
430
542
 
431
543
  * Deprecate behaves_like(:mock), use behaves_like(:rack_test) instead
432
544
 
433
- [ba27790 | 2009-06-01 05:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
545
+ [ba27790 | 2009-06-01 12:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
434
546
 
435
547
  * Fix Request#subset spec for latest Rack
436
548
 
437
- [e0bb6db | 2009-05-28 08:05:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
549
+ [e0bb6db | 2009-05-28 15:05:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
438
550
 
439
551
  * Make the cookie ttl optional
440
552
 
441
- [76e4377 | 2009-05-22 09:04:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
553
+ [76e4377 | 2009-05-22 16:04:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
442
554
 
443
555
  * Allow #write on the logger
444
556
 
445
- [3890ba7 | 2009-05-19 02:38:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
557
+ [3890ba7 | 2009-05-19 09:38:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
446
558
 
447
559
  * Fix some yard tags
448
560
 
449
- [18002ee | 2009-05-16 05:32:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
561
+ [18002ee | 2009-05-16 12:32:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
450
562
 
451
563
  * Iterate logging arguments before they reach the logger
452
564
 
453
- [8d43aad | 2009-05-16 04:15:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
565
+ [8d43aad | 2009-05-16 11:15:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
454
566
 
455
567
  * Try to improve render_file so it works form anywhere
456
568
 
457
- [8f5d193 | 2009-05-14 15:22:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
569
+ [8f5d193 | 2009-05-14 22:22:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
458
570
 
459
571
  * Reverse order in middleware
460
572
 
461
- [9c3b2b9 | 2009-05-09 07:25:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
573
+ [9c3b2b9 | 2009-05-09 14:25:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
462
574
 
463
575
  * Deprecate Innate::Session.options.expires, use ttl instead. Set maximum ttl to 30 days
464
576
 
465
- [d343c9e | 2009-05-08 04:16:50 UTC] Ryan Grove <ryan@wonko.com>
577
+ [d343c9e | 2009-05-08 11:16:50 UTC] Ryan Grove <ryan@wonko.com>
466
578
 
467
579
  * Make Innate::Session.sid public
468
580
 
469
581
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
470
582
 
471
- [89c79de | 2009-05-06 14:42:03 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
583
+ [89c79de | 2009-05-06 21:42:03 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
472
584
 
473
585
  * Adjusted pretty_print spec again. Made it looser, since we don't really care much about it because it doesn't significantly affect Ramaze functionality.
474
586
 
475
587
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
476
588
 
477
- [220ae9e | 2009-05-05 12:43:51 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
589
+ [220ae9e | 2009-05-05 19:43:51 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
478
590
 
479
591
  * Adjusted Innate::Options#pretty_print spec to work across more systems and conditions, yet still test something non-trivial.
480
592
 
481
593
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
482
594
 
483
- [e51e888 | 2009-05-06 15:50:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
595
+ [e51e888 | 2009-05-06 22:50:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
484
596
 
485
597
  * Polish things a bit more where they went wrong during release
486
598
 
487
- [5138050 | 2009-05-06 15:38:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
599
+ [5138050 | 2009-05-06 22:38:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
488
600
 
489
601
  * Version 2009.05
490
602
 
491
- [9486b35 | 2009-05-06 15:37:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
603
+ [9486b35 | 2009-05-06 22:37:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
492
604
 
493
605
  * VERSION=xxx rake release:xxx
494
606
 
495
- [14feedf | 2009-05-06 15:33:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
607
+ [14feedf | 2009-05-06 22:33:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
496
608
 
497
609
  * Bring rakefile up to date
498
610
 
499
- [2252c28 | 2009-05-06 15:20:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
611
+ [2252c28 | 2009-05-06 22:20:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
500
612
 
501
613
  * Last minute changes to tasks
502
614
 
503
- [ddc4560 | 2009-05-06 15:14:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
615
+ [ddc4560 | 2009-05-06 22:14:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
504
616
 
505
617
  * Add some ycov tasks, not all that tested yet
506
618
 
507
- [146e349 | 2009-05-06 12:56:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
619
+ [146e349 | 2009-05-06 19:56:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
508
620
 
509
621
  * raise a more meaningful error when trying to assign to a non-existent option
510
622
 
511
- [21bbd9b | 2009-05-05 06:08:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
623
+ [21bbd9b | 2009-05-05 13:08:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
512
624
 
513
625
  * Remove some (c)
514
626
 
515
- [8fd62a3 | 2009-05-05 04:48:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
627
+ [8fd62a3 | 2009-05-05 11:48:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
516
628
 
517
629
  * Make Session compatible with the Rack spec, prepare to make it a middleware
518
630
 
519
- [a73a54e | 2009-05-05 04:37:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
631
+ [a73a54e | 2009-05-05 11:37:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
520
632
 
521
633
  * Tell people that using YAML/Marshal cache is a bad idea in some cases
522
634
 
523
- [fff4e2a | 2009-05-05 04:30:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
635
+ [fff4e2a | 2009-05-05 11:30:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
524
636
 
525
637
  * Some docs fixes
526
638
 
527
- [d90138c | 2009-05-04 11:19:35 UTC] Ryan Grove <ryan@wonko.com>
639
+ [d90138c | 2009-05-04 18:19:35 UTC] Ryan Grove <ryan@wonko.com>
528
640
 
529
641
  * Add a read_cache option (off by default) to control caching of template files on read
530
642
 
531
- [aaa9b96 | 2009-05-03 04:04:18 UTC] Ryan Grove <ryan@wonko.com>
643
+ [aaa9b96 | 2009-05-03 11:04:18 UTC] Ryan Grove <ryan@wonko.com>
532
644
 
533
645
  * When the view cache is enabled and Innate is in :live mode, cache view files after the first read to prevent unnecessary filesystem reads in the future.
534
646
 
535
- [06c224f | 2009-05-04 16:49:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
647
+ [06c224f | 2009-05-04 23:49:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
536
648
 
537
649
  * Fix update_mapping_shared, it would try to walk files and was buggy
538
650
 
539
- [e3ad651 | 2009-05-04 03:28:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
651
+ [e3ad651 | 2009-05-04 10:28:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
540
652
 
541
653
  * remove specs for state
542
654
 
543
- [f69716d | 2009-05-03 17:37:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
655
+ [f69716d | 2009-05-04 00:37:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
544
656
 
545
657
  * Implement caching of traits
546
658
 
547
- [0434785 | 2009-05-02 15:56:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
659
+ [0434785 | 2009-05-02 22:56:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
548
660
 
549
661
  * Remove useless token from Etanni
550
662
 
551
- [d0356c6 | 2009-05-02 06:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
663
+ [d0356c6 | 2009-05-02 13:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
552
664
 
553
665
  * Use clearer syntax for the option in view
554
666
 
555
- [2c3c1ca | 2009-05-02 05:40:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
667
+ [2c3c1ca | 2009-05-02 12:40:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
556
668
 
557
669
  * Elaborate what +filename+ means
558
670
 
559
- [12d3666 | 2009-05-02 05:40:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
671
+ [12d3666 | 2009-05-02 12:40:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
560
672
 
561
673
  * Only emit warning when the action is really invalid
562
674
 
563
- [5cb9b41 | 2009-05-02 05:37:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
675
+ [5cb9b41 | 2009-05-02 12:37:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
564
676
 
565
677
  * Put the require of find into innate.rb
566
678
 
567
- [89d5858 | 2009-05-02 14:24:30 UTC] Andreas Karlsson <andreas@proxel.se>
679
+ [89d5858 | 2009-05-02 21:24:30 UTC] Andreas Karlsson <andreas@proxel.se>
568
680
 
569
681
  * Simplify copy_variables by not using eval.
570
682
 
@@ -574,15 +686,15 @@
574
686
 
575
687
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
576
688
 
577
- [d1fe1f4 | 2009-05-02 14:38:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
689
+ [d1fe1f4 | 2009-05-02 21:38:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
578
690
 
579
691
  * copy thread variables in Innate::defer
580
692
 
581
- [83d0a93 | 2009-05-02 13:59:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
693
+ [83d0a93 | 2009-05-02 20:59:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
582
694
 
583
695
  * Remove Innate::STATE
584
696
 
585
- [f9ff691 | 2009-05-01 20:04:20 UTC] Andreas Karlsson <andreas@proxel.se>
697
+ [f9ff691 | 2009-05-02 03:04:20 UTC] Andreas Karlsson <andreas@proxel.se>
586
698
 
587
699
  * Move require due to profiling results.
588
700
 
@@ -593,614 +705,614 @@
593
705
 
594
706
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
595
707
 
596
- [4155ea9 | 2009-05-01 15:51:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
708
+ [4155ea9 | 2009-05-01 22:51:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
597
709
 
598
710
  * Only warn if we encounter an invalid action in render_custom, try to render still
599
711
 
600
- [b4a9e70 | 2009-05-01 15:46:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
712
+ [b4a9e70 | 2009-05-01 22:46:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
601
713
 
602
714
  * Be compatible with rack-test
603
715
 
604
- [3db47bc | 2009-05-01 15:46:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
716
+ [3db47bc | 2009-05-01 22:46:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
605
717
 
606
718
  * Be compatible with 1.8
607
719
 
608
- [b3fb7be | 2009-05-01 14:07:10 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
720
+ [b3fb7be | 2009-05-01 21:07:10 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
609
721
 
610
722
  * In render helper: render_template -> render_file . Changed relevant specs, too.
611
723
 
612
724
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
613
725
 
614
- [f3491f7 | 2009-04-30 04:59:16 UTC] Tadahiko Uehara <kikofx@gmail.com>
726
+ [f3491f7 | 2009-04-30 11:59:16 UTC] Tadahiko Uehara <kikofx@gmail.com>
615
727
 
616
728
  * Skip template/view/layout lookup if the given path doesn't exist.
617
729
 
618
730
 
619
731
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
620
732
 
621
- [e4b5388 | 2009-05-01 08:30:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
733
+ [e4b5388 | 2009-05-01 15:30:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
622
734
 
623
735
  * We don't want to call Innate::setup_dependencies for rendering...
624
736
 
625
- [7c90ec0 | 2009-05-01 07:22:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
737
+ [7c90ec0 | 2009-05-01 14:22:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
626
738
 
627
739
  * Default layout mapping to '/'
628
740
 
629
- [64517b3 | 2009-05-01 07:20:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
741
+ [64517b3 | 2009-05-01 14:20:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
630
742
 
631
743
  * Add some example invocations to the Helper::Render methods
632
744
 
633
- [d531f58 | 2009-05-01 07:19:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
745
+ [d531f58 | 2009-05-01 14:19:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
634
746
 
635
747
  * Adding Helper::Render#render_template due to popular demand
636
748
 
637
- [59229dc | 2009-05-01 06:18:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
749
+ [59229dc | 2009-05-01 13:18:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
638
750
 
639
751
  * Speed up and simplify Etanni a little bit more
640
752
 
641
- [d8c3ca5 | 2009-04-30 09:07:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
753
+ [d8c3ca5 | 2009-04-30 16:07:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
642
754
 
643
755
  * Add option to switch caching of compiled templates
644
756
 
645
- [21c4dfd | 2009-04-30 08:19:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
757
+ [21c4dfd | 2009-04-30 15:19:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
646
758
 
647
759
  * Make Etanni a little bit more compact
648
760
 
649
- [43f6d76 | 2009-04-30 08:19:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
761
+ [43f6d76 | 2009-04-30 15:19:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
650
762
 
651
763
  * First cut of template compilation, it's dumb, but it should speed things up a little
652
764
 
653
- [cca6d4d | 2009-04-29 14:34:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
765
+ [cca6d4d | 2009-04-29 21:34:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
654
766
 
655
767
  * Improve the ColorFormatter, output background as well
656
768
 
657
- [abda94c | 2009-04-29 11:04:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
769
+ [abda94c | 2009-04-29 18:04:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
658
770
 
659
771
  * Only add :trigger to options if there is one
660
772
 
661
- [559e711 | 2009-04-29 07:51:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
773
+ [559e711 | 2009-04-29 14:51:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
662
774
 
663
775
  * Spec cookie setting before redirect. Closes #1
664
776
 
665
- [9c85a49 | 2009-04-28 13:05:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
777
+ [9c85a49 | 2009-04-28 20:05:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
666
778
 
667
779
  * Make the template lookup work without globs, hopefully that works on GAE now
668
780
 
669
- [a0b1f4a | 2009-04-28 12:41:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
781
+ [a0b1f4a | 2009-04-28 19:41:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
670
782
 
671
783
  * Make helper lookup work without glob
672
784
 
673
- [49ed57b | 2009-04-28 12:41:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
785
+ [49ed57b | 2009-04-28 19:41:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
674
786
 
675
787
  * Tell people that routing static files doesn't work
676
788
 
677
- [ff310ab | 2009-04-23 15:30:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
789
+ [ff310ab | 2009-04-23 22:30:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
678
790
 
679
791
  * Avoid issues with symbol comparision on 1.8
680
792
 
681
- [fce62b9 | 2009-04-26 16:30:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
793
+ [fce62b9 | 2009-04-26 23:30:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
682
794
 
683
795
  * Support setting multiple AOP hooks at once in before/after/wrap
684
796
 
685
- [ffd8edd | 2009-04-25 14:59:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
797
+ [ffd8edd | 2009-04-25 21:59:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
686
798
 
687
799
  * Give innate a rubyforge project
688
800
 
689
- [cf62a9c | 2009-04-25 14:59:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
801
+ [cf62a9c | 2009-04-25 21:59:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
690
802
 
691
803
  * Version 2009.04
692
804
 
693
- [0ec2012 | 2009-04-23 06:21:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
805
+ [0ec2012 | 2009-04-23 13:21:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
694
806
 
695
807
  * Allow deletion of mapped apps in DynaMap
696
808
 
697
- [cbedd9c | 2009-04-23 05:04:04 UTC] Ryan Grove <ryan@wonko.com>
809
+ [cbedd9c | 2009-04-23 12:04:04 UTC] Ryan Grove <ryan@wonko.com>
698
810
 
699
811
  * Add path and full_path to Innate::Action
700
812
 
701
813
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
702
814
 
703
- [b9a0d4b | 2009-04-20 05:12:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
815
+ [b9a0d4b | 2009-04-20 12:12:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
704
816
 
705
817
  * Make the u and h aliases for the CGI helper module_functions too
706
818
 
707
- [b68aad4 | 2009-04-20 05:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
819
+ [b68aad4 | 2009-04-20 12:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
708
820
 
709
821
  * Allow further modification of the Action in the render_* methods via block
710
822
 
711
- [dca3531 | 2009-04-19 23:38:06 UTC] Ryan Grove <ryan@wonko.com>
823
+ [dca3531 | 2009-04-20 06:38:06 UTC] Ryan Grove <ryan@wonko.com>
712
824
 
713
825
  * Preserve response headers when redirecting. Closes #1
714
826
 
715
827
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
716
828
 
717
- [d465ca3 | 2009-04-18 02:46:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
829
+ [d465ca3 | 2009-04-18 09:46:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
718
830
 
719
831
  * Version 2009.04.18
720
832
 
721
- [987c5d7 | 2009-04-18 02:44:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
833
+ [987c5d7 | 2009-04-18 09:44:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
722
834
 
723
835
  * Update the release tasks
724
836
 
725
- [f927c9d | 2009-04-17 11:51:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
837
+ [f927c9d | 2009-04-17 18:51:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
726
838
 
727
839
  * Add Content-Disposition support to send_file
728
840
 
729
- [888318c | 2009-04-17 10:43:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
841
+ [888318c | 2009-04-17 17:43:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
730
842
 
731
843
  * Better English in render_custom error
732
844
 
733
- [15078e6 | 2009-04-15 16:49:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
845
+ [15078e6 | 2009-04-15 23:49:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
734
846
 
735
847
  * Add comment about planned deprecation of SendFile helper's default status
736
848
 
737
- [4b487aa | 2009-04-15 16:48:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
849
+ [4b487aa | 2009-04-15 23:48:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
738
850
 
739
851
  * Remove the length from Response, Rack provides that
740
852
 
741
- [1634391 | 2009-04-15 11:02:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
853
+ [1634391 | 2009-04-15 18:02:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
742
854
 
743
855
  * Don't camel-case the helper module name, simply remove underscores, we do case-insensitive lookup anyway
744
856
 
745
- [f97e8d7 | 2009-04-15 10:58:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
857
+ [f97e8d7 | 2009-04-15 17:58:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
746
858
 
747
859
  * Remove core_extensions, we don't need String#each or BasicObject anymore
748
860
 
749
- [0b33546 | 2009-04-15 09:16:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
861
+ [0b33546 | 2009-04-15 16:16:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
750
862
 
751
863
  * Action may be invalid if the node requires a method and view
752
864
 
753
- [39dd843 | 2009-04-15 09:15:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
865
+ [39dd843 | 2009-04-15 16:15:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
754
866
 
755
867
  * Escape non-hash arguments to Helper::Link#route (ryan grove)
756
868
 
757
- [22ee4df | 2009-04-15 07:25:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
869
+ [22ee4df | 2009-04-15 14:25:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
758
870
 
759
871
  * Raise if the Render helper cannot obtain an Action
760
872
 
761
- [e229299 | 2009-04-13 12:48:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
873
+ [e229299 | 2009-04-13 19:48:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
762
874
 
763
875
  * Allow Action#call even if we are outside Current#wrap
764
876
 
765
- [b6e9558 | 2009-04-13 04:37:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
877
+ [b6e9558 | 2009-04-13 11:37:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
766
878
 
767
879
  * Remove Action#exts member and use better terms
768
880
 
769
- [46d2a5e | 2009-04-12 05:03:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
881
+ [46d2a5e | 2009-04-12 12:03:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
770
882
 
771
883
  * FileBased caches have access to @filename now
772
884
 
773
- [f84f18f | 2009-04-12 05:03:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
885
+ [f84f18f | 2009-04-12 12:03:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
774
886
 
775
887
  * Set a PROJECT_README for some rake tasks
776
888
 
777
- [8920482 | 2009-04-12 05:03:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
889
+ [8920482 | 2009-04-12 12:03:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
778
890
 
779
891
  * Improvment and spec for provide example
780
892
 
781
- [a892dea | 2009-04-12 05:02:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
893
+ [a892dea | 2009-04-12 12:02:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
782
894
 
783
895
  * Minor improvment and spec for retro games example
784
896
 
785
- [b3aeb97 | 2009-04-10 12:30:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
897
+ [b3aeb97 | 2009-04-10 19:30:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
786
898
 
787
899
  * Allow overriding of middleware mode for specs
788
900
 
789
- [7d65255 | 2009-04-10 12:07:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
901
+ [7d65255 | 2009-04-10 19:07:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
790
902
 
791
903
  * Compact code
792
904
 
793
- [cde9366 | 2009-04-10 10:51:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
905
+ [cde9366 | 2009-04-10 17:51:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
794
906
 
795
907
  * Simplify specs and make them pass using rack-test
796
908
 
797
- [f4c9572 | 2009-04-10 10:50:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
909
+ [f4c9572 | 2009-04-10 17:50:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
798
910
 
799
911
  * Don't forget to specify an app for rack-test
800
912
 
801
- [41b1955 | 2009-04-10 10:17:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
913
+ [41b1955 | 2009-04-10 17:17:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
802
914
 
803
915
  * Remove spec for render_template
804
916
 
805
- [a3b73ca | 2009-04-10 10:17:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
917
+ [a3b73ca | 2009-04-10 17:17:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
806
918
 
807
919
  * Add `rake setup` task to comply to convention. I will put up the corresponding gems ASAP
808
920
 
809
- [c648bf7 | 2009-04-10 10:16:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
921
+ [c648bf7 | 2009-04-10 17:16:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
810
922
 
811
923
  * Switch to using rack-test for our specs, needs rack-test from the master branch head
812
924
 
813
- [5c08e25 | 2009-04-09 17:52:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
925
+ [5c08e25 | 2009-04-10 00:52:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
814
926
 
815
927
  * Use ContentLength middleware
816
928
 
817
- [0dc50d4 | 2009-04-09 16:10:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
929
+ [0dc50d4 | 2009-04-09 23:10:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
818
930
 
819
931
  * Fix template caching... was using html instead of the wish the glob was for
820
932
 
821
- [622bbe3 | 2009-04-09 16:01:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
933
+ [622bbe3 | 2009-04-09 23:01:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
822
934
 
823
935
  * Fix example apps
824
936
 
825
- [6e9e843 | 2009-04-07 09:56:56 UTC] Sam Carr <samcarr@gmail.com>
937
+ [6e9e843 | 2009-04-07 16:56:56 UTC] Sam Carr <samcarr@gmail.com>
826
938
 
827
939
  * Minor tidy-ups to fix comments, add missing requires, add comments etc.
828
940
 
829
941
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
830
942
 
831
- [8f9af98 | 2009-04-07 18:42:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
943
+ [8f9af98 | 2009-04-08 01:42:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
832
944
 
833
945
  * Set default interval for reloader to 2 seconds
834
946
 
835
- [9f7e749 | 2009-04-07 18:42:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
947
+ [9f7e749 | 2009-04-08 01:42:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
836
948
 
837
949
  * Never assign $0, bad mojo
838
950
 
839
- [281501e | 2009-04-07 17:53:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
951
+ [281501e | 2009-04-08 00:53:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
840
952
 
841
953
  * Don't assign a directory to $0
842
954
 
843
- [8a2ddc7 | 2009-04-07 17:16:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
955
+ [8a2ddc7 | 2009-04-08 00:16:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
844
956
 
845
957
  * Version 2009.04.08
846
958
 
847
- [89ab244 | 2009-04-07 16:17:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
959
+ [89ab244 | 2009-04-07 23:17:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
848
960
 
849
961
  * bring the retro_games example up to date
850
962
 
851
- [c1b6939 | 2009-04-07 14:30:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
963
+ [c1b6939 | 2009-04-07 21:30:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
852
964
 
853
965
  * Fix typo in howto_spec example
854
966
 
855
- [c1f7bb8 | 2009-04-07 12:24:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
967
+ [c1f7bb8 | 2009-04-07 19:24:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
856
968
 
857
969
  * Improve Helper::CGI, don't accept more than one argument per method
858
970
 
859
- [c01a0ce | 2009-04-07 02:07:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
971
+ [c01a0ce | 2009-04-07 09:07:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
860
972
 
861
973
  * Warn if action is invalid
862
974
 
863
- [d749887 | 2009-04-07 02:07:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
975
+ [d749887 | 2009-04-07 09:07:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
864
976
 
865
977
  * Remove Helper::Render#render_template
866
978
 
867
- [fba39b5 | 2009-04-06 03:26:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
979
+ [fba39b5 | 2009-04-06 10:26:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
868
980
 
869
981
  * Remove specs for Helper::Partial
870
982
 
871
- [98bc6f7 | 2009-04-06 03:25:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
983
+ [98bc6f7 | 2009-04-06 10:25:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
872
984
 
873
985
  * Add more specs and refine Helper::Render
874
986
 
875
- [616b5aa | 2009-04-06 03:03:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
987
+ [616b5aa | 2009-04-06 10:03:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
876
988
 
877
989
  * Provide direct access to Helper::Render methods through extension
878
990
 
879
- [696f85d | 2009-04-06 02:58:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
991
+ [696f85d | 2009-04-06 09:58:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
880
992
 
881
993
  * Make Helper::Render#render_template work and add specs
882
994
 
883
- [b0fcf13 | 2009-04-05 23:51:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
995
+ [b0fcf13 | 2009-04-06 06:51:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
884
996
 
885
997
  * Adding Helper::Render, this should be able to cover all our rendering needs
886
998
 
887
- [ea02bbe | 2009-04-05 23:49:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
999
+ [ea02bbe | 2009-04-06 06:49:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
888
1000
 
889
1001
  * Remove Helper::Partial, to be replaced by Helper::Render
890
1002
 
891
- [52c9943 | 2009-04-05 23:47:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1003
+ [52c9943 | 2009-04-06 06:47:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
892
1004
 
893
1005
  * just fix some annoying things
894
1006
 
895
- [cd45648 | 2009-04-05 23:46:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
1007
+ [cd45648 | 2009-04-06 06:46:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
896
1008
 
897
1009
  * Refactor Helper to use HelpersHelper.options
898
1010
 
899
- [4a1b7f6 | 2009-04-05 14:25:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1011
+ [4a1b7f6 | 2009-04-05 21:25:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
900
1012
 
901
1013
  * remove some more methods from Request, they depend on a method in ramaze
902
1014
 
903
- [6e0b421 | 2009-04-05 09:22:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
1015
+ [6e0b421 | 2009-04-05 16:22:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
904
1016
 
905
1017
  * Make multipart building a bit more compact
906
1018
 
907
- [2f17bf6 | 2009-04-05 14:23:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1019
+ [2f17bf6 | 2009-04-05 21:23:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
908
1020
 
909
1021
  * Make some variables more 'communicative', as reek puts it
910
1022
 
911
- [348e179 | 2009-04-04 06:37:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1023
+ [348e179 | 2009-04-04 13:37:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
912
1024
 
913
1025
  * Caching for template locations finally working, this should reduce the disk IO through globbing considerably, even if it is still updating the locations for every request
914
1026
 
915
- [8555277 | 2009-04-04 06:27:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
1027
+ [8555277 | 2009-04-04 13:27:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
916
1028
 
917
1029
  * Better bacon task
918
1030
 
919
- [110243b | 2009-04-03 12:08:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1031
+ [110243b | 2009-04-03 19:08:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
920
1032
 
921
1033
  * Experimental templating path caching
922
1034
 
923
- [258d7c9 | 2009-04-03 13:01:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
1035
+ [258d7c9 | 2009-04-03 20:01:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
924
1036
 
925
1037
  * Use Etanni engine for specs and most examples
926
1038
 
927
- [2bf8941 | 2009-04-03 12:59:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1039
+ [2bf8941 | 2009-04-03 19:59:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
928
1040
 
929
1041
  * Comment out gemspec dependencies until rack is released
930
1042
 
931
- [57078ac | 2009-04-03 12:58:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1043
+ [57078ac | 2009-04-03 19:58:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
932
1044
 
933
1045
  * Remove the extra newlines introduced with Etanni
934
1046
 
935
- [51b4797 | 2009-04-03 12:58:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1047
+ [51b4797 | 2009-04-03 19:58:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
936
1048
 
937
1049
  * Relax views by using #to_s instead of #to_str
938
1050
 
939
- [d8475d3 | 2009-04-03 09:48:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1051
+ [d8475d3 | 2009-04-03 16:48:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
940
1052
 
941
1053
  * Don't carry over view_value into layout actions
942
1054
 
943
- [8e2788f | 2009-04-02 03:50:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1055
+ [8e2788f | 2009-04-02 10:50:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
944
1056
 
945
1057
  * Fix view and layout mapping if there are multiple view_mappings
946
1058
 
947
- [8e93e87 | 2009-03-31 16:35:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1059
+ [8e93e87 | 2009-03-31 23:35:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
948
1060
 
949
1061
  * Version 2009.04.01
950
1062
 
951
- [1a7242b | 2009-03-31 16:32:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
1063
+ [1a7242b | 2009-03-31 23:32:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
952
1064
 
953
1065
  * Optional is called Optioned now, watch out
954
1066
 
955
- [0809fb1 | 2009-03-31 07:50:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1067
+ [0809fb1 | 2009-03-31 14:50:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
956
1068
 
957
1069
  * Set proper default templating engine for html to Etanni
958
1070
 
959
- [e1f9450 | 2009-03-31 06:14:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1071
+ [e1f9450 | 2009-03-31 13:14:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
960
1072
 
961
1073
  * Make sure Etanni returns stripped strings, that should make the specs pass again
962
1074
 
963
- [3c7063b | 2009-03-31 05:49:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1075
+ [3c7063b | 2009-03-31 12:49:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
964
1076
 
965
1077
  * Fix bug where root_mappings where not considered alternatives
966
1078
 
967
- [0ab5ab1 | 2009-03-29 13:44:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
1079
+ [0ab5ab1 | 2009-03-29 20:44:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
968
1080
 
969
1081
  * Unescape params given to the action
970
1082
 
971
- [4fe8226 | 2009-03-28 08:04:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1083
+ [4fe8226 | 2009-03-28 16:04:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
972
1084
 
973
1085
  * Version 2009.03.28
974
1086
 
975
- [57680d3 | 2009-03-28 08:04:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1087
+ [57680d3 | 2009-03-28 16:04:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
976
1088
 
977
1089
  * Split rake tasks into small units for management with raku
978
1090
 
979
- [d7a9278 | 2009-03-26 13:14:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1091
+ [d7a9278 | 2009-03-26 21:14:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
980
1092
 
981
1093
  * Adapt recursive partial spec for new action iv setting semantics
982
1094
 
983
- [4dede34 | 2009-03-26 11:20:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1095
+ [4dede34 | 2009-03-26 19:20:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
984
1096
 
985
1097
  * Nicer code for Action#layout_view_or_method
986
1098
 
987
- [d392fda | 2009-03-26 11:19:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1099
+ [d392fda | 2009-03-26 19:19:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
988
1100
 
989
1101
  * Make Node#resolve smarter if called on an instance
990
1102
 
991
- [3e49468 | 2009-03-26 10:40:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1103
+ [3e49468 | 2009-03-26 18:40:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
992
1104
 
993
1105
  * Put copy_variables before calling of the action method, so instance variables are copied over from the action and usable in the method the same way as in the template
994
1106
 
995
- [408bbd9 | 2009-03-26 02:28:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1107
+ [408bbd9 | 2009-03-26 10:28:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
996
1108
 
997
1109
  * Better lookup for options.roots
998
1110
 
999
- [250188f | 2009-03-25 14:48:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1111
+ [250188f | 2009-03-25 22:48:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1000
1112
 
1001
1113
  * Give the engine the value or a string, not nil
1002
1114
 
1003
- [6784523 | 2009-03-25 14:37:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1115
+ [6784523 | 2009-03-25 22:37:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1004
1116
 
1005
1117
  * Adding Etanni with .xhtml extension
1006
1118
 
1007
- [dc871bf | 2009-03-25 12:35:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
1119
+ [dc871bf | 2009-03-25 20:35:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
1008
1120
 
1009
1121
  * Remove specs for old request methods
1010
1122
 
1011
- [fa7aa95 | 2009-03-25 12:35:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1123
+ [fa7aa95 | 2009-03-25 20:35:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1012
1124
 
1013
1125
  * Don't fail when trying to obtain symbolic view
1014
1126
 
1015
- [a79b532 | 2009-03-25 12:34:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1127
+ [a79b532 | 2009-03-25 20:34:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1016
1128
 
1017
1129
  * Allow Ramaze to inject Request/Response/Session
1018
1130
 
1019
- [3799d36 | 2009-03-25 12:34:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
1131
+ [3799d36 | 2009-03-25 20:34:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
1020
1132
 
1021
1133
  * Using Gem::Specification#to_ruby, yay
1022
1134
 
1023
- [6367793 | 2009-03-25 09:01:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1135
+ [6367793 | 2009-03-25 17:01:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1024
1136
 
1025
1137
  * Remove cruft from View::ERB
1026
1138
 
1027
- [72b02f0 | 2009-03-25 09:00:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1139
+ [72b02f0 | 2009-03-25 17:00:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1028
1140
 
1029
1141
  * Simplify View::get, we don't need lookup by extension anymore
1030
1142
 
1031
- [b4850cd | 2009-03-25 09:00:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
1143
+ [b4850cd | 2009-03-25 17:00:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
1032
1144
 
1033
1145
  * Remove some methods from Request, they fit better into Ramaze
1034
1146
 
1035
- [d919c03 | 2009-03-25 08:59:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1147
+ [d919c03 | 2009-03-25 16:59:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1036
1148
 
1037
1149
  * Remove cruft from Adapter, I added support for arbitrary handlers to rack (patch will go in by tomorrow)
1038
1150
 
1039
- [b7a4f88 | 2009-03-25 05:01:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1151
+ [b7a4f88 | 2009-03-25 13:01:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1040
1152
 
1041
1153
  * Remove some unused methods
1042
1154
 
1043
- [afea731 | 2009-03-24 14:52:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1155
+ [afea731 | 2009-03-24 22:52:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1044
1156
 
1045
1157
  * Version 2009.03.24
1046
1158
 
1047
- [94d0714 | 2009-03-24 10:33:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1159
+ [94d0714 | 2009-03-24 18:33:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1048
1160
 
1049
1161
  * Fix bug where index(arg) was passed 'index' as arg
1050
1162
 
1051
- [28c9f16 | 2009-03-24 07:05:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1163
+ [28c9f16 | 2009-03-24 15:05:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1052
1164
 
1053
1165
  * Nicer output for skipped specs
1054
1166
 
1055
- [ea90a79 | 2009-03-24 07:05:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1167
+ [ea90a79 | 2009-03-24 15:05:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1056
1168
 
1057
1169
  * Fix specs for 1.9
1058
1170
 
1059
- [404cffe | 2009-03-23 10:43:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1171
+ [404cffe | 2009-03-23 18:43:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1060
1172
 
1061
1173
  * Using anchor in combination with route would fail between nodes
1062
1174
 
1063
- [b9c4048 | 2009-03-23 10:23:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1175
+ [b9c4048 | 2009-03-23 18:23:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1064
1176
 
1065
1177
  * Update README to reflect latest developments
1066
1178
 
1067
- [bd4456e | 2009-03-23 06:53:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1179
+ [bd4456e | 2009-03-23 14:53:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1068
1180
 
1069
1181
  * Copy action.variables into instance variables before calling engine
1070
1182
 
1071
- [85b1b75 | 2009-03-23 06:27:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1183
+ [85b1b75 | 2009-03-23 14:27:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1072
1184
 
1073
1185
  * Only render_template if the resulting action is valid
1074
1186
 
1075
- [1e9009c | 2009-03-23 06:03:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1187
+ [1e9009c | 2009-03-23 14:03:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1076
1188
 
1077
1189
  * Make the methods in Helper::CGI module functions
1078
1190
 
1079
- [3e20690 | 2009-03-21 02:36:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1191
+ [3e20690 | 2009-03-21 10:36:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1080
1192
 
1081
1193
  * Fix outstanding issues around State and spec them
1082
1194
 
1083
- [1906be4 | 2009-03-20 17:15:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
1195
+ [1906be4 | 2009-03-21 01:15:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
1084
1196
 
1085
1197
  * Clean up a bit after suggestions from nitpick
1086
1198
 
1087
- [e89cde5 | 2009-03-20 10:35:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1199
+ [e89cde5 | 2009-03-20 18:35:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1088
1200
 
1089
1201
  * Only set root in spec if found
1090
1202
 
1091
- [45e1307 | 2009-03-20 10:34:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1203
+ [45e1307 | 2009-03-20 18:34:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1092
1204
 
1093
1205
  * Add some aliases for options given to Innate.start, should make life easier
1094
1206
 
1095
- [c418e85 | 2009-03-20 09:25:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1207
+ [c418e85 | 2009-03-20 17:25:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1096
1208
 
1097
1209
  * Add specs for extended behaviour of Request#domain
1098
1210
 
1099
- [17a1ca3 | 2009-03-20 09:24:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1211
+ [17a1ca3 | 2009-03-20 17:24:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1100
1212
 
1101
1213
  * Support put/delete in shared :mock
1102
1214
 
1103
- [f857946 | 2009-03-20 09:24:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
1215
+ [f857946 | 2009-03-20 17:24:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
1104
1216
 
1105
1217
  * Take advantage of new Rack::Request#url for Request#domain
1106
1218
 
1107
- [b849861 | 2009-03-20 09:23:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1219
+ [b849861 | 2009-03-20 17:23:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1108
1220
 
1109
1221
  * small style change
1110
1222
 
1111
- [a0d3176 | 2009-03-20 09:23:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1223
+ [a0d3176 | 2009-03-20 17:23:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1112
1224
 
1113
1225
  * Don't rescue anything in Helper, all exceptions get shown
1114
1226
 
1115
- [3e5869d | 2009-03-19 12:57:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1227
+ [3e5869d | 2009-03-19 20:57:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1116
1228
 
1117
1229
  * Remove unused method from node spec
1118
1230
 
1119
- [27ffac3 | 2009-03-19 12:48:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
1231
+ [27ffac3 | 2009-03-19 20:48:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
1120
1232
 
1121
1233
  * Clean up and remove methods that aren't used anymore
1122
1234
 
1123
- [1e09f3c | 2009-03-19 12:47:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1235
+ [1e09f3c | 2009-03-19 20:47:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1124
1236
 
1125
1237
  * Improve spec/helper.rb to work with rcov
1126
1238
 
1127
- [ca75800 | 2009-03-19 12:46:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
1239
+ [ca75800 | 2009-03-19 20:46:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
1128
1240
 
1129
1241
  * Fix logical typo
1130
1242
 
1131
- [057b52e | 2009-03-19 12:12:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1243
+ [057b52e | 2009-03-19 20:12:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1132
1244
 
1133
1245
  * Spec Node mapping generation
1134
1246
 
1135
- [05a244a | 2009-03-19 12:09:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1247
+ [05a244a | 2009-03-19 20:09:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1136
1248
 
1137
1249
  * Move node aspects into the aspect helper, make traits faster
1138
1250
 
1139
- [f774349 | 2009-03-19 10:18:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1251
+ [f774349 | 2009-03-19 18:18:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1140
1252
 
1141
1253
  * Better session id, use securerandom if possible (ruby >= 1.8.7)
1142
1254
 
1143
- [4b8d305 | 2009-03-19 09:58:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
1255
+ [4b8d305 | 2009-03-19 17:58:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
1144
1256
 
1145
1257
  * update_method_arities only once per request
1146
1258
 
1147
- [3d7a493 | 2009-03-19 09:51:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1259
+ [3d7a493 | 2009-03-19 17:51:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1148
1260
 
1149
1261
  * Remove some debugging output
1150
1262
 
1151
- [2650232 | 2009-03-19 09:51:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1263
+ [2650232 | 2009-03-19 17:51:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1152
1264
 
1153
1265
  * No need for next
1154
1266
 
1155
- [b8e2c90 | 2009-03-18 11:49:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1267
+ [b8e2c90 | 2009-03-18 19:49:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1156
1268
 
1157
1269
  * Run Innate.setup_dependencies for shared :mock
1158
1270
 
1159
- [335c4d0 | 2009-03-18 11:49:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1271
+ [335c4d0 | 2009-03-18 19:49:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1160
1272
 
1161
1273
  * Forgot commiting the change to Node#root_mappings
1162
1274
 
1163
- [e7a022c | 2009-03-18 11:48:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1275
+ [e7a022c | 2009-03-18 19:48:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1164
1276
 
1165
1277
  * Node docs more compatible with YARD
1166
1278
 
1167
- [8bab954 | 2009-03-18 11:37:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
1279
+ [8bab954 | 2009-03-18 19:37:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
1168
1280
 
1169
1281
  * Adding Helper::Link#route_location, makes life easier for Ramaze
1170
1282
 
1171
- [ce9a71d | 2009-03-18 11:35:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1283
+ [ce9a71d | 2009-03-18 19:35:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1172
1284
 
1173
1285
  * More intelligent automatic mapping
1174
1286
 
1175
- [3227e0b | 2009-03-18 09:40:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
1287
+ [3227e0b | 2009-03-18 17:40:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
1176
1288
 
1177
1289
  * Split up the specs for Node a little
1178
1290
 
1179
- [176f1f8 | 2009-03-17 12:09:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1291
+ [176f1f8 | 2009-03-17 20:09:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1180
1292
 
1181
1293
  * And even more docs for Node
1182
1294
 
1183
- [6992116 | 2009-03-17 11:43:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1295
+ [6992116 | 2009-03-17 19:43:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1184
1296
 
1185
1297
  * Update specs for new template lookup
1186
1298
 
1187
- [68ba841 | 2009-03-17 11:41:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1299
+ [68ba841 | 2009-03-17 19:41:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1188
1300
 
1189
1301
  * Add more docs, yard uses @example instead of @usage
1190
1302
 
1191
- [45c7a24 | 2009-03-17 11:40:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
1303
+ [45c7a24 | 2009-03-17 19:40:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
1192
1304
 
1193
1305
  * Document some of the stuff that goes on in the Node#layout method, allow removing layout from node
1194
1306
 
1195
- [fb36a5f | 2009-03-17 11:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1307
+ [fb36a5f | 2009-03-17 19:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1196
1308
 
1197
1309
  * Remove the Node#layout_root method
1198
1310
 
1199
- [f2e4cc7 | 2009-03-17 11:38:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1311
+ [f2e4cc7 | 2009-03-17 19:38:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1200
1312
 
1201
1313
  * Use param as variable name for the options hash to avoid confusion
1202
1314
 
1203
- [a457bdf | 2009-03-17 11:30:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1315
+ [a457bdf | 2009-03-17 19:30:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1204
1316
 
1205
1317
  * Refactor Node options
1206
1318
 
@@ -1229,2336 +1341,2336 @@
1229
1341
 
1230
1342
  More about this soon in the docs.
1231
1343
 
1232
- [9b78d9c | 2009-03-17 11:28:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1344
+ [9b78d9c | 2009-03-17 19:28:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1233
1345
 
1234
1346
  * Fix the non-node references to Node.options
1235
1347
 
1236
- [64cfecb | 2009-03-17 11:27:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1348
+ [64cfecb | 2009-03-17 19:27:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1237
1349
 
1238
1350
  * Move some Node.options to Innate.options again, they make more sense there
1239
1351
 
1240
- [f2db256 | 2009-03-16 07:00:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1352
+ [f2db256 | 2009-03-16 15:00:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1241
1353
 
1242
1354
  * Handle nil in path_glob gracefully
1243
1355
 
1244
- [1b2435b | 2009-03-16 06:38:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1356
+ [1b2435b | 2009-03-16 14:38:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1245
1357
 
1246
1358
  * Even more docs for Node
1247
1359
 
1248
- [c9dad64 | 2009-03-16 06:38:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
1360
+ [c9dad64 | 2009-03-16 14:38:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
1249
1361
 
1250
1362
  * Better information about ambigous templates
1251
1363
 
1252
- [9fef72f | 2009-03-16 06:38:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1364
+ [9fef72f | 2009-03-16 14:38:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1253
1365
 
1254
1366
  * Some more docs for Node
1255
1367
 
1256
- [07230ee | 2009-03-16 05:53:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1368
+ [07230ee | 2009-03-16 13:53:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1257
1369
 
1258
1370
  * Simple example for provides
1259
1371
 
1260
- [9fa53a0 | 2009-03-16 05:53:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
1372
+ [9fa53a0 | 2009-03-16 13:53:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
1261
1373
 
1262
1374
  * Some docs for Node#provide
1263
1375
 
1264
- [93ffd36 | 2009-03-16 01:58:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1376
+ [93ffd36 | 2009-03-16 09:58:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1265
1377
 
1266
1378
  * Add Innate::Helper::Link#route_self
1267
1379
 
1268
- [89b5f05 | 2009-03-15 08:09:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1380
+ [89b5f05 | 2009-03-15 16:09:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1269
1381
 
1270
1382
  * Try setting $0 correctly in Innate.start
1271
1383
 
1272
- [75fe61d | 2009-03-15 03:25:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1384
+ [75fe61d | 2009-03-15 11:25:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1273
1385
 
1274
1386
  * Options of modules in Innate should be subs of Innate.options, not simple references
1275
1387
 
1276
- [19797aa | 2009-03-14 13:38:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1388
+ [19797aa | 2009-03-14 21:38:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1277
1389
 
1278
1390
  * Proper fallback for Options#[]=
1279
1391
 
1280
- [53e5412 | 2009-03-14 13:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1392
+ [53e5412 | 2009-03-14 21:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1281
1393
 
1282
1394
  * Allow multiple public roots
1283
1395
 
1284
- [88f6b82 | 2009-03-14 05:25:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1396
+ [88f6b82 | 2009-03-14 13:25:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1285
1397
 
1286
1398
  * The :app trait isn't needed anymore
1287
1399
 
1288
- [f3b5d20 | 2009-03-14 05:18:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1400
+ [f3b5d20 | 2009-03-14 13:18:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1289
1401
 
1290
1402
  * Add missing options/stub.rb
1291
1403
 
1292
- [33c2fbe | 2009-03-14 05:17:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1404
+ [33c2fbe | 2009-03-14 13:17:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1293
1405
 
1294
1406
  * Allow to change the object wrapped by Rack::MockRequest
1295
1407
 
1296
- [2e5eccf | 2009-03-14 05:12:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1408
+ [2e5eccf | 2009-03-14 13:12:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
1297
1409
 
1298
1410
  * Refactor to use new options convention, each module has its own options now
1299
1411
 
1300
- [b271865 | 2009-03-14 05:09:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1412
+ [b271865 | 2009-03-14 13:09:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1301
1413
 
1302
1414
  * Make specs easier by setting $0 correctly
1303
1415
 
1304
- [346c8f3 | 2009-03-14 05:09:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1416
+ [346c8f3 | 2009-03-14 13:09:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1305
1417
 
1306
1418
  * More specs for Innate::Options
1307
1419
 
1308
- [786a340 | 2009-03-14 05:08:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1420
+ [786a340 | 2009-03-14 13:08:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1309
1421
 
1310
1422
  * Improve Innate::Options and add Innate::Optional
1311
1423
 
1312
- [5d84d92 | 2009-03-12 12:28:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1424
+ [5d84d92 | 2009-03-12 20:28:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1313
1425
 
1314
1426
  * Rewire to use Innate::MiddlewareCompiler and allow Ramaze to use its own URLMap
1315
1427
 
1316
- [a4461b8 | 2009-03-12 12:26:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
1428
+ [a4461b8 | 2009-03-12 20:26:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
1317
1429
 
1318
1430
  * Fix Helper::Flash spec, we need to return a string
1319
1431
 
1320
- [7d22edb | 2009-03-12 12:26:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1432
+ [7d22edb | 2009-03-12 20:26:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1321
1433
 
1322
1434
  * Nicer debugging output for routing
1323
1435
 
1324
- [12d63ac | 2009-03-12 10:23:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
1436
+ [12d63ac | 2009-03-12 18:23:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
1325
1437
 
1326
1438
  * Dynamic MiddlewareCompiler, removes last Rack namespaced class
1327
1439
 
1328
- [aa7e2e1 | 2009-03-09 11:09:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1440
+ [aa7e2e1 | 2009-03-09 19:09:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1329
1441
 
1330
1442
  * Move default hash into Action::create to prevent silly behaviour
1331
1443
 
1332
- [68b8ec0 | 2009-03-07 06:48:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1444
+ [68b8ec0 | 2009-03-07 14:48:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1333
1445
 
1334
1446
  * Refactor of content representation, should work smooth now
1335
1447
 
1336
- [e1ade5a | 2009-03-06 06:42:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1448
+ [e1ade5a | 2009-03-06 14:42:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1337
1449
 
1338
1450
  * Improve Helper::Link#anchor on suggestions of endoh
1339
1451
 
1340
- [d7ec2e6 | 2009-03-06 06:16:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1452
+ [d7ec2e6 | 2009-03-06 14:16:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1341
1453
 
1342
1454
  * Some explanation about session.expires
1343
1455
 
1344
- [7b95de4 | 2009-03-06 06:15:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1456
+ [7b95de4 | 2009-03-06 14:15:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1345
1457
 
1346
1458
  * Refactor provides, any engine just has to respond to ::call now
1347
1459
 
1348
- [e9302f0 | 2009-03-05 05:37:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
1460
+ [e9302f0 | 2009-03-05 13:37:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
1349
1461
 
1350
1462
  * Another change to template exts, only respect the wish to simplify things
1351
1463
 
1352
- [5bc84c1 | 2009-03-05 04:19:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
1464
+ [5bc84c1 | 2009-03-05 12:19:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
1353
1465
 
1354
1466
  * Remove our Rack::Reloader - i'll try to improve the one in Rack instead and Ramaze has its own anyway
1355
1467
 
1356
- [3712cff | 2009-03-05 04:06:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1468
+ [3712cff | 2009-03-05 12:06:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1357
1469
 
1358
1470
  * Utilize application-specific configuration
1359
1471
 
1360
- [527a29f | 2009-03-05 04:04:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1472
+ [527a29f | 2009-03-05 12:04:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1361
1473
 
1362
1474
  * Split up to_template with path_glob and ext_glob
1363
1475
 
1364
- [66ea210 | 2009-03-04 07:53:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1476
+ [66ea210 | 2009-03-04 15:53:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1365
1477
 
1366
1478
  * Allow multiple values for options.app.(root|view|layout|public)
1367
1479
 
1368
- [671aaea | 2009-03-05 09:02:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1480
+ [671aaea | 2009-03-05 17:02:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1369
1481
 
1370
1482
  * View::register overwrites
1371
1483
 
1372
- [663d623 | 2009-03-02 17:20:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1484
+ [663d623 | 2009-03-03 01:20:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1373
1485
 
1374
1486
  * Options is not Enumerable anymore, add to_hash instead
1375
1487
 
1376
- [e30a191 | 2009-03-02 17:20:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1488
+ [e30a191 | 2009-03-03 01:20:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1377
1489
 
1378
1490
  * simplify helper failure
1379
1491
 
1380
- [c1328ed | 2009-03-02 08:13:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1492
+ [c1328ed | 2009-03-02 16:13:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1381
1493
 
1382
1494
  * Use Options#[] for faster access and add Innate::teardown_dependencies
1383
1495
 
1384
- [a56126b | 2009-03-02 08:13:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1496
+ [a56126b | 2009-03-02 16:13:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1385
1497
 
1386
1498
  * Fix middleware compilation
1387
1499
 
1388
- [7d92080 | 2009-03-01 10:46:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1500
+ [7d92080 | 2009-03-01 18:46:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1389
1501
 
1390
1502
  * Add spec for render_template with variable.
1391
1503
 
1392
- [b5cdf83 | 2009-03-01 07:56:20 UTC] Tadahiko Uehara <kikofx@gmail.com>
1504
+ [b5cdf83 | 2009-03-01 15:56:20 UTC] Tadahiko Uehara <kikofx@gmail.com>
1393
1505
 
1394
1506
  * Use Array#first instead of to_s to get extension from provide wish in
1395
1507
 
1396
1508
  Array#to_s in 1.9 joins with brackets. # ['foo'].to_s #=> "[\"foo\"]"
1397
1509
 
1398
- [2e8bb64 | 2009-03-01 15:20:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1510
+ [2e8bb64 | 2009-03-01 23:20:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1399
1511
 
1400
1512
  * Nicer exception for some missing helpers
1401
1513
 
1402
- [a5de43a | 2009-03-01 15:20:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1514
+ [a5de43a | 2009-03-01 23:20:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1403
1515
 
1404
1516
  * MiddlewareCompiler#use now has traditional rack meaning, use apps for the old behaviour
1405
1517
 
1406
- [aedca0f | 2009-03-01 15:19:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1518
+ [aedca0f | 2009-03-01 23:19:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1407
1519
 
1408
1520
  * Use options[:mode] to avoid problems with facets
1409
1521
 
1410
- [f17eec8 | 2009-03-01 07:02:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1522
+ [f17eec8 | 2009-03-01 15:02:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1411
1523
 
1412
1524
  * Add Innate::defer to schedule code for running in background
1413
1525
 
1414
- [b7e58fa | 2009-02-28 08:12:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1526
+ [b7e58fa | 2009-02-28 16:12:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1415
1527
 
1416
1528
  * Simplify view API a bit
1417
1529
 
1418
- [37a05e8 | 2009-02-25 07:04:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1530
+ [37a05e8 | 2009-02-25 15:04:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
1419
1531
 
1420
1532
  * Fix version for rack in gemspec
1421
1533
 
1422
- [e29cd02 | 2009-02-25 07:03:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1534
+ [e29cd02 | 2009-02-25 15:03:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
1423
1535
 
1424
1536
  * innate doesn't rely on github
1425
1537
 
1426
- [08d6773 | 2009-02-25 07:01:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1538
+ [08d6773 | 2009-02-25 15:01:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1427
1539
 
1428
1540
  * Version 2009.02.25
1429
1541
 
1430
- [04201ef | 2009-02-25 06:27:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1542
+ [04201ef | 2009-02-25 14:27:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1431
1543
 
1432
1544
  * cleanup
1433
1545
 
1434
- [295a241 | 2009-02-25 06:27:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1546
+ [295a241 | 2009-02-25 14:27:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1435
1547
 
1436
1548
  * Add Traited#class_trait and docs
1437
1549
 
1438
- [6ed8499 | 2009-02-25 06:04:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1550
+ [6ed8499 | 2009-02-25 14:04:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1439
1551
 
1440
1552
  * rebuild middleware if block is passed to Innate.start
1441
1553
 
1442
- [8ce86a7 | 2009-02-25 06:04:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1554
+ [8ce86a7 | 2009-02-25 14:04:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1443
1555
 
1444
1556
  * Make the real failures on helper requires visible
1445
1557
 
1446
- [232214e | 2009-02-25 06:03:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1558
+ [232214e | 2009-02-25 14:03:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1447
1559
 
1448
1560
  * Remove optimization for wrap_action_call, leads to really weird recursion
1449
1561
 
1450
- [38d0a7b | 2009-02-25 05:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1562
+ [38d0a7b | 2009-02-25 13:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1451
1563
 
1452
1564
  * Simplify setting of mode and compilation of middleware
1453
1565
 
1454
- [8c02417 | 2009-02-25 04:40:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1566
+ [8c02417 | 2009-02-25 12:40:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1455
1567
 
1456
1568
  * Speed up wrap_action_call
1457
1569
 
1458
- [cea8af5 | 2009-02-25 04:37:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1570
+ [cea8af5 | 2009-02-25 12:37:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1459
1571
 
1460
1572
  * Speed up ancestral_trait
1461
1573
 
1462
- [608a7eb | 2009-02-24 13:45:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1574
+ [608a7eb | 2009-02-24 21:45:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1463
1575
 
1464
1576
  * Remove Innate::Setup, that goes into Ramaze
1465
1577
 
1466
- [785b1e5 | 2009-02-24 13:45:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1578
+ [785b1e5 | 2009-02-24 21:45:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1467
1579
 
1468
1580
  * Remove reference to Innate in log to avoid confusion
1469
1581
 
1470
- [3df0612 | 2009-02-24 13:28:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1582
+ [3df0612 | 2009-02-24 21:28:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1471
1583
 
1472
1584
  * Remove the providing_hash example until we come up with a better way to show it
1473
1585
 
1474
- [8309299 | 2009-02-24 13:25:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1586
+ [8309299 | 2009-02-24 21:25:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1475
1587
 
1476
1588
  * small cleanup
1477
1589
 
1478
- [93be7ad | 2009-02-24 13:25:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1590
+ [93be7ad | 2009-02-24 21:25:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1479
1591
 
1480
1592
  * Spec the session example
1481
1593
 
1482
- [7b39146 | 2009-02-24 13:24:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1594
+ [7b39146 | 2009-02-24 21:24:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1483
1595
 
1484
1596
  * Add missing template for node spec
1485
1597
 
1486
- [d8ccfce | 2009-02-24 13:22:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1598
+ [d8ccfce | 2009-02-24 21:22:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
1487
1599
 
1488
1600
  * Add todolist example
1489
1601
 
1490
- [fd73cef | 2009-02-24 13:06:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1602
+ [fd73cef | 2009-02-24 21:06:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
1491
1603
 
1492
1604
  * Don't serve a view without method if params are given
1493
1605
 
1494
- [58f9ecd | 2009-02-24 12:05:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1606
+ [58f9ecd | 2009-02-24 20:05:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1495
1607
 
1496
1608
  * Fix spec for example/link
1497
1609
 
1498
- [607fc72 | 2009-02-24 12:05:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1610
+ [607fc72 | 2009-02-24 20:05:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1499
1611
 
1500
1612
  * Provide shared multipart to enable easy POST specs
1501
1613
 
1502
- [9b833f8 | 2009-02-24 12:04:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1614
+ [9b833f8 | 2009-02-24 20:04:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1503
1615
 
1504
1616
  * Innate::Node, rename LIST to NODE_LIST and HELPERS to DEFAULT_HELPERS
1505
1617
 
1506
- [397cff4 | 2009-02-24 12:03:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1618
+ [397cff4 | 2009-02-24 20:03:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1507
1619
 
1508
1620
  * A little bit nicer each in retro games
1509
1621
 
1510
- [0ab5dfe | 2009-02-24 11:09:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1622
+ [0ab5dfe | 2009-02-24 19:09:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
1511
1623
 
1512
1624
  * We don't provide error handling out of the box, remove example
1513
1625
 
1514
- [9466549 | 2009-02-24 11:06:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
1626
+ [9466549 | 2009-02-24 19:06:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
1515
1627
 
1516
1628
  * Clean up code of the whywiki
1517
1629
 
1518
- [715371b | 2009-02-24 10:58:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1630
+ [715371b | 2009-02-24 18:58:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
1519
1631
 
1520
1632
  * Bring examples up to date
1521
1633
 
1522
- [378977c | 2009-02-22 13:14:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1634
+ [378977c | 2009-02-22 21:14:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1523
1635
 
1524
1636
  * Add some docs
1525
1637
 
1526
- [566303c | 2009-02-22 12:34:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1638
+ [566303c | 2009-02-22 20:34:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
1527
1639
 
1528
1640
  * Make Innate::setup and Innate::sync available to Ramaze
1529
1641
 
1530
- [6fa8645 | 2009-02-22 12:16:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1642
+ [6fa8645 | 2009-02-22 20:16:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1531
1643
 
1532
1644
  * Make it easier for Ramaze to set a default engine
1533
1645
 
1534
- [dfe34cd | 2009-02-21 12:54:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1646
+ [dfe34cd | 2009-02-21 20:54:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1535
1647
 
1536
1648
  * Correct usage of git tag
1537
1649
 
1538
- [42d3883 | 2009-02-21 03:28:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1650
+ [42d3883 | 2009-02-21 11:28:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1539
1651
 
1540
1652
  * Version 2009.02.21
1541
1653
 
1542
- [374f218 | 2009-02-21 03:26:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1654
+ [374f218 | 2009-02-21 11:26:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1543
1655
 
1544
1656
  * Bring retro games example back to life
1545
1657
 
1546
- [800c1e2 | 2009-02-20 08:38:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
1658
+ [800c1e2 | 2009-02-20 16:38:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
1547
1659
 
1548
1660
  * Make Innate::Route() and Innate::Rewrite() available for Ramaze
1549
1661
 
1550
- [f9d5d68 | 2009-02-20 06:48:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1662
+ [f9d5d68 | 2009-02-20 14:48:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
1551
1663
 
1552
1664
  * Don't fail fatal if no app root can be found
1553
1665
 
1554
- [ddd6e77 | 2009-02-20 06:48:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1666
+ [ddd6e77 | 2009-02-20 14:48:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1555
1667
 
1556
1668
  * Rename action_not_found(path) to action_missing(path), easier to remember
1557
1669
 
1558
- [e682e18 | 2009-02-20 06:47:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1670
+ [e682e18 | 2009-02-20 14:47:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1559
1671
 
1560
1672
  * Add trigger for options.mode to reset middleware
1561
1673
 
1562
- [0efafb9 | 2009-02-19 08:29:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1674
+ [0efafb9 | 2009-02-19 16:29:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1563
1675
 
1564
1676
  * Update options spec for trigger
1565
1677
 
1566
- [f3741ee | 2009-02-19 08:26:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1678
+ [f3741ee | 2009-02-19 16:26:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
1567
1679
 
1568
1680
  * Fix MiddlewareCompiler#static and add #directory
1569
1681
 
1570
- [0ce72dc | 2009-02-19 08:07:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1682
+ [0ce72dc | 2009-02-19 16:07:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1571
1683
 
1572
1684
  * Put the dynamap module functions into the SingletonMethods so Ramaze can have them too
1573
1685
 
1574
- [b392fa7 | 2009-02-19 08:06:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1686
+ [b392fa7 | 2009-02-19 16:06:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
1575
1687
 
1576
1688
  * Add options.app.public which recompiles middleware on change
1577
1689
 
1578
- [e9d3e04 | 2009-02-19 08:06:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1690
+ [e9d3e04 | 2009-02-19 16:06:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
1579
1691
 
1580
1692
  * Add Options#trigger, runs a block when an option changed
1581
1693
 
1582
- [a3bdfdc | 2009-02-19 06:56:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1694
+ [a3bdfdc | 2009-02-19 14:56:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
1583
1695
 
1584
1696
  * Proper name for node in session spec
1585
1697
 
1586
- [bc942f2 | 2009-02-19 06:52:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1698
+ [bc942f2 | 2009-02-19 14:52:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1587
1699
 
1588
1700
  * Some more yard-compatible docs
1589
1701
 
1590
- [9f97f72 | 2009-02-19 06:16:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1702
+ [9f97f72 | 2009-02-19 14:16:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
1591
1703
 
1592
1704
  * Make aliasing views more consistent
1593
1705
 
1594
- [3d10ef2 | 2009-02-19 05:40:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1706
+ [3d10ef2 | 2009-02-19 13:40:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1595
1707
 
1596
1708
  * Clean up session spec
1597
1709
 
1598
- [027f20b | 2009-02-19 05:38:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1710
+ [027f20b | 2009-02-19 13:38:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1599
1711
 
1600
1712
  * Cache the session just as long as the cookie is scheduled to exist
1601
1713
 
1602
- [0279f91 | 2009-02-19 05:37:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
1714
+ [0279f91 | 2009-02-19 13:37:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
1603
1715
 
1604
1716
  * Further improvments to the spec task
1605
1717
 
1606
- [f69b4cf | 2009-02-16 18:50:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1718
+ [f69b4cf | 2009-02-17 02:50:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1607
1719
 
1608
1720
  * publish for real
1609
1721
 
1610
- [81048fa | 2009-02-16 18:48:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1722
+ [81048fa | 2009-02-17 02:48:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
1611
1723
 
1612
1724
  * add rake publish via grancher
1613
1725
 
1614
- [c825e8b | 2009-02-15 11:29:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1726
+ [c825e8b | 2009-02-15 19:29:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1615
1727
 
1616
1728
  * Use current node's extension if it is not provided to render_template.
1617
1729
 
1618
- [4338891 | 2009-02-15 11:29:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1730
+ [4338891 | 2009-02-15 19:29:02 UTC] Tadahiko Uehara <kikofx@gmail.com>
1619
1731
 
1620
1732
  * Use current node's extension if it is not provided to render_template.
1621
1733
 
1622
- [e97696f | 2009-02-15 01:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1734
+ [e97696f | 2009-02-15 09:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1623
1735
 
1624
1736
  * Warn if no app.root was set
1625
1737
 
1626
1738
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1627
1739
 
1628
- [70f09fd | 2009-02-14 15:08:44 UTC] Tadahiko Uehara <kikofx@gmail.com>
1740
+ [70f09fd | 2009-02-14 23:08:44 UTC] Tadahiko Uehara <kikofx@gmail.com>
1629
1741
 
1630
1742
  * Clear layout before rendering a template in #render_template.
1631
1743
 
1632
- [4318c09 | 2009-02-15 02:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1744
+ [4318c09 | 2009-02-15 10:05:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1633
1745
 
1634
1746
  * Warn if no app.root was set
1635
1747
 
1636
- [22a7a1d | 2009-02-14 15:08:44 UTC] Tadahiko Uehara <kikofx@gmail.com>
1748
+ [22a7a1d | 2009-02-14 23:08:44 UTC] Tadahiko Uehara <kikofx@gmail.com>
1637
1749
 
1638
1750
  * Clear layout before rendering a template in #render_template.
1639
1751
 
1640
- [4a31e76 | 2009-02-13 09:02:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1752
+ [4a31e76 | 2009-02-13 17:02:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
1641
1753
 
1642
1754
  * Reflect change to Fiber from Ramaze
1643
1755
 
1644
- [59ad732 | 2009-02-11 09:09:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1756
+ [59ad732 | 2009-02-11 17:09:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1645
1757
 
1646
1758
  * Add bacon dependency for spec
1647
1759
 
1648
1760
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1649
1761
 
1650
- [d93b2e5 | 2009-02-11 09:15:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1762
+ [d93b2e5 | 2009-02-11 17:15:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1651
1763
 
1652
1764
  * exit status 1 if specs fail
1653
1765
 
1654
1766
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1655
1767
 
1656
- [89327f5 | 2009-02-11 09:11:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1768
+ [89327f5 | 2009-02-11 17:11:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1657
1769
 
1658
1770
  * Remove debug info, seems to work on RunCodeRun now
1659
1771
 
1660
1772
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1661
1773
 
1662
- [529f7e7 | 2009-02-11 08:50:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1774
+ [529f7e7 | 2009-02-11 16:50:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1663
1775
 
1664
1776
  * Install dependencies on for specs
1665
1777
 
1666
1778
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1667
1779
 
1668
- [da3fb06 | 2009-02-11 09:33:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1780
+ [da3fb06 | 2009-02-11 17:33:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1669
1781
 
1670
1782
  * Use eval with binding argument, Binding#eval is 1.8.7+
1671
1783
 
1672
1784
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1673
1785
 
1674
- [7be640a | 2009-02-11 09:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1786
+ [7be640a | 2009-02-11 17:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1675
1787
 
1676
1788
  * debug RunCodeRun
1677
1789
 
1678
1790
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1679
1791
 
1680
- [c422ae6 | 2009-02-11 08:50:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1792
+ [c422ae6 | 2009-02-11 16:50:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1681
1793
 
1682
1794
  * Support for multiple extensions per engine
1683
1795
 
1684
1796
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1685
1797
 
1686
- [2cae45a | 2009-02-11 06:44:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1798
+ [2cae45a | 2009-02-11 14:44:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1687
1799
 
1688
1800
  * Add options.app.prefix - only outbound for now
1689
1801
 
1690
1802
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1691
1803
 
1692
- [dcbdfdb | 2009-02-11 06:43:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1804
+ [dcbdfdb | 2009-02-11 14:43:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1693
1805
 
1694
1806
  * Add rake ydoc task
1695
1807
 
1696
1808
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1697
1809
 
1698
- [3715913 | 2009-02-11 10:33:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1810
+ [3715913 | 2009-02-11 18:33:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1699
1811
 
1700
1812
  * Use eval with binding argument, Binding#eval is 1.8.7+
1701
1813
 
1702
- [eb77842 | 2009-02-11 10:15:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1814
+ [eb77842 | 2009-02-11 18:15:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
1703
1815
 
1704
1816
  * exit status 1 if specs fail
1705
1817
 
1706
- [544533d | 2009-02-11 10:11:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1818
+ [544533d | 2009-02-11 18:11:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1707
1819
 
1708
1820
  * Remove debug info, seems to work on RunCodeRun now
1709
1821
 
1710
- [29d7021 | 2009-02-11 10:09:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1822
+ [29d7021 | 2009-02-11 18:09:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1711
1823
 
1712
1824
  * Add bacon dependency for spec
1713
1825
 
1714
- [d4ca17d | 2009-02-11 10:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1826
+ [d4ca17d | 2009-02-11 18:07:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
1715
1827
 
1716
1828
  * debug RunCodeRun
1717
1829
 
1718
- [8756390 | 2009-02-11 09:50:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1830
+ [8756390 | 2009-02-11 17:50:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
1719
1831
 
1720
1832
  * Support for multiple extensions per engine
1721
1833
 
1722
- [d5c003d | 2009-02-11 09:50:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1834
+ [d5c003d | 2009-02-11 17:50:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1723
1835
 
1724
1836
  * Install dependencies on for specs
1725
1837
 
1726
- [35f2ece | 2009-02-11 07:44:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1838
+ [35f2ece | 2009-02-11 15:44:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
1727
1839
 
1728
1840
  * Add options.app.prefix - only outbound for now
1729
1841
 
1730
- [d212cd2 | 2009-02-11 07:43:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1842
+ [d212cd2 | 2009-02-11 15:43:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
1731
1843
 
1732
1844
  * Add rake ydoc task
1733
1845
 
1734
- [5210279 | 2009-02-09 08:47:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1846
+ [5210279 | 2009-02-09 16:47:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1735
1847
 
1736
1848
  * params defaults to []
1737
1849
 
1738
1850
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1739
1851
 
1740
- [53cf3b0 | 2009-02-09 08:47:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1852
+ [53cf3b0 | 2009-02-09 16:47:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1741
1853
 
1742
1854
  * Fix render_template
1743
1855
 
1744
1856
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1745
1857
 
1746
- [b8abf58 | 2009-02-09 08:37:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1858
+ [b8abf58 | 2009-02-09 16:37:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1747
1859
 
1748
1860
  * Cosmetics
1749
1861
 
1750
1862
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1751
1863
 
1752
- [b25f9e7 | 2009-02-09 08:36:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1864
+ [b25f9e7 | 2009-02-09 16:36:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1753
1865
 
1754
1866
  * Some more usage of Innate::node
1755
1867
 
1756
1868
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1757
1869
 
1758
- [ad4f3ff | 2009-02-09 08:15:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1870
+ [ad4f3ff | 2009-02-09 16:15:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1759
1871
 
1760
1872
  * Add convenience method Innate::node
1761
1873
 
1762
1874
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1763
1875
 
1764
- [d713321 | 2009-02-09 07:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1876
+ [d713321 | 2009-02-09 15:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1765
1877
 
1766
1878
  * Allow alias_view to point to another Node
1767
1879
 
1768
1880
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1769
1881
 
1770
- [af92ee4 | 2009-02-09 07:15:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1882
+ [af92ee4 | 2009-02-09 15:15:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1771
1883
 
1772
1884
  * Allow templates for methods like this__nested__one
1773
1885
 
1774
1886
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1775
1887
 
1776
- [56f119e | 2009-02-09 07:15:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1888
+ [56f119e | 2009-02-09 15:15:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1777
1889
 
1778
1890
  * Add options.action.needs_method
1779
1891
 
1780
1892
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1781
1893
 
1782
- [3cc7b5c | 2009-02-09 07:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1894
+ [3cc7b5c | 2009-02-09 15:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1783
1895
 
1784
1896
  * Adapt specs for new API (memcached returns no value on delete)
1785
1897
 
1786
1898
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1787
1899
 
1788
- [3698234 | 2009-02-09 07:00:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1900
+ [3698234 | 2009-02-09 15:00:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1789
1901
 
1790
1902
  * Action is made a bit more modular so one can call Action#render
1791
1903
 
1792
1904
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1793
1905
 
1794
- [27520cb | 2009-02-08 06:51:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1906
+ [27520cb | 2009-02-08 14:51:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1795
1907
 
1796
1908
  * Correct behaviour for alias_view with spec
1797
1909
 
1798
1910
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1799
1911
 
1800
- [e5fcc9b | 2009-02-08 06:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1912
+ [e5fcc9b | 2009-02-08 14:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1801
1913
 
1802
1914
  * Adapt node spec to new behaviour
1803
1915
 
1804
1916
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1805
1917
 
1806
- [487acde | 2009-02-08 06:41:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1918
+ [487acde | 2009-02-08 14:41:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1807
1919
 
1808
1920
  * Fix alias_view, still needs spec
1809
1921
 
1810
1922
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1811
1923
 
1812
- [34269db | 2009-02-08 06:35:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1924
+ [34269db | 2009-02-08 14:35:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1813
1925
 
1814
1926
  * Fix update_method_arities for new traits
1815
1927
 
1816
1928
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1817
1929
 
1818
- [030c75b | 2009-02-08 06:35:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1930
+ [030c75b | 2009-02-08 14:35:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1819
1931
 
1820
1932
  * Better error message if no action was found
1821
1933
 
1822
1934
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1823
1935
 
1824
- [8e5b4dd | 2009-02-08 05:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1936
+ [8e5b4dd | 2009-02-08 13:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1825
1937
 
1826
1938
  * Restructure innate.rb and introduce options.mode
1827
1939
 
1828
1940
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1829
1941
 
1830
- [6524d1c | 2009-02-08 05:41:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1942
+ [6524d1c | 2009-02-08 13:41:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1831
1943
 
1832
1944
  * Fix trait memory-leak
1833
1945
 
1834
1946
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1835
1947
 
1836
- [82673cd | 2009-02-09 09:47:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1948
+ [82673cd | 2009-02-09 17:47:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
1837
1949
 
1838
1950
  * params defaults to []
1839
1951
 
1840
- [fe17b8d | 2009-02-09 09:47:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1952
+ [fe17b8d | 2009-02-09 17:47:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
1841
1953
 
1842
1954
  * Fix render_template
1843
1955
 
1844
- [9d23d82 | 2009-02-09 09:37:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1956
+ [9d23d82 | 2009-02-09 17:37:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
1845
1957
 
1846
1958
  * Cosmetics
1847
1959
 
1848
- [e6b6d79 | 2009-02-09 09:36:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1960
+ [e6b6d79 | 2009-02-09 17:36:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1849
1961
 
1850
1962
  * Some more usage of Innate::node
1851
1963
 
1852
- [da464b9 | 2009-02-09 09:15:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1964
+ [da464b9 | 2009-02-09 17:15:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
1853
1965
 
1854
1966
  * Add convenience method Innate::node
1855
1967
 
1856
- [ed2bdee | 2009-02-09 08:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1968
+ [ed2bdee | 2009-02-09 16:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1857
1969
 
1858
1970
  * Allow alias_view to point to another Node
1859
1971
 
1860
- [95238a3 | 2009-02-09 08:15:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1972
+ [95238a3 | 2009-02-09 16:15:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
1861
1973
 
1862
1974
  * Allow templates for methods like this__nested__one
1863
1975
 
1864
- [fc75dca | 2009-02-09 08:15:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1976
+ [fc75dca | 2009-02-09 16:15:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
1865
1977
 
1866
1978
  * Add options.action.needs_method
1867
1979
 
1868
- [190e66b | 2009-02-09 08:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1980
+ [190e66b | 2009-02-09 16:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
1869
1981
 
1870
1982
  * Adapt specs for new API (memcached returns no value on delete)
1871
1983
 
1872
- [68ad412 | 2009-02-09 08:00:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1984
+ [68ad412 | 2009-02-09 16:00:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
1873
1985
 
1874
1986
  * Action is made a bit more modular so one can call Action#render
1875
1987
 
1876
- [4818105 | 2009-02-08 07:51:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1988
+ [4818105 | 2009-02-08 15:51:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1877
1989
 
1878
1990
  * Correct behaviour for alias_view with spec
1879
1991
 
1880
- [ffee12e | 2009-02-08 07:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1992
+ [ffee12e | 2009-02-08 15:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1881
1993
 
1882
1994
  * Adapt node spec to new behaviour
1883
1995
 
1884
- [2034ce4 | 2009-02-08 07:41:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1996
+ [2034ce4 | 2009-02-08 15:41:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
1885
1997
 
1886
1998
  * Fix alias_view, still needs spec
1887
1999
 
1888
- [2778db9 | 2009-02-08 07:35:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2000
+ [2778db9 | 2009-02-08 15:35:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
1889
2001
 
1890
2002
  * Fix update_method_arities for new traits
1891
2003
 
1892
- [faae0e0 | 2009-02-08 07:35:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
2004
+ [faae0e0 | 2009-02-08 15:35:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
1893
2005
 
1894
2006
  * Better error message if no action was found
1895
2007
 
1896
- [ca68ade | 2009-02-08 06:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2008
+ [ca68ade | 2009-02-08 14:42:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1897
2009
 
1898
2010
  * Restructure innate.rb and introduce options.mode
1899
2011
 
1900
- [228951a | 2009-02-08 06:41:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2012
+ [228951a | 2009-02-08 14:41:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
1901
2013
 
1902
2014
  * Fix trait memory-leak
1903
2015
 
1904
- [fb91811 | 2009-02-07 08:20:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2016
+ [fb91811 | 2009-02-07 16:20:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
1905
2017
 
1906
2018
  * Remove unused actions in Helper::Flash spec
1907
2019
 
1908
2020
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1909
2021
 
1910
- [4205f14 | 2009-02-07 08:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
2022
+ [4205f14 | 2009-02-07 16:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1911
2023
 
1912
2024
  * Fix usage of parameters in accept_language
1913
2025
 
1914
2026
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1915
2027
 
1916
- [bf69983 | 2009-02-07 08:11:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2028
+ [bf69983 | 2009-02-07 16:11:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1917
2029
 
1918
2030
  * Specs for layouts
1919
2031
 
1920
2032
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1921
2033
 
1922
- [256c8c9 | 2009-02-07 08:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2034
+ [256c8c9 | 2009-02-07 16:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1923
2035
 
1924
2036
  * New layout behaviour
1925
2037
 
1926
2038
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1927
2039
 
1928
- [d78cedb | 2009-02-07 06:58:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2040
+ [d78cedb | 2009-02-07 14:58:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
1929
2041
 
1930
2042
  * Allow adding multiple caches at once
1931
2043
 
1932
2044
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1933
2045
 
1934
- [ff74c88 | 2009-02-07 06:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2046
+ [ff74c88 | 2009-02-07 14:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1935
2047
 
1936
2048
  * wrap_action_call hooks should return the body
1937
2049
 
1938
2050
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1939
2051
 
1940
- [0b34ab6 | 2009-02-07 03:57:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2052
+ [0b34ab6 | 2009-02-07 11:57:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1941
2053
 
1942
2054
  * Better parsing of Request#accept_language
1943
2055
 
1944
2056
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1945
2057
 
1946
- [bff2472 | 2009-02-07 03:56:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2058
+ [bff2472 | 2009-02-07 11:56:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1947
2059
 
1948
2060
  * Faster Innate.options
1949
2061
 
1950
2062
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1951
2063
 
1952
- [532f3a2 | 2009-02-06 08:44:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2064
+ [532f3a2 | 2009-02-06 16:44:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
1953
2065
 
1954
2066
  * Minor fixes and docs for rakefile
1955
2067
 
1956
2068
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1957
2069
 
1958
- [345157b | 2009-02-06 08:44:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2070
+ [345157b | 2009-02-06 16:44:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
1959
2071
 
1960
2072
  * Provide default for alias_view
1961
2073
 
1962
2074
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1963
2075
 
1964
- [febab0f | 2009-02-06 08:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2076
+ [febab0f | 2009-02-06 16:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1965
2077
 
1966
2078
  * Version 2009.02.06
1967
2079
 
1968
2080
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
1969
2081
 
1970
- [3ed0607 | 2009-02-07 09:20:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2082
+ [3ed0607 | 2009-02-07 17:20:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
1971
2083
 
1972
2084
  * Remove unused actions in Helper::Flash spec
1973
2085
 
1974
- [e80d217 | 2009-02-07 09:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
2086
+ [e80d217 | 2009-02-07 17:13:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
1975
2087
 
1976
2088
  * Fix usage of parameters in accept_language
1977
2089
 
1978
- [3f5adb8 | 2009-02-07 09:11:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2090
+ [3f5adb8 | 2009-02-07 17:11:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
1979
2091
 
1980
2092
  * Specs for layouts
1981
2093
 
1982
- [f2bdd45 | 2009-02-07 09:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2094
+ [f2bdd45 | 2009-02-07 17:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
1983
2095
 
1984
2096
  * New layout behaviour
1985
2097
 
1986
- [e9c6ae3 | 2009-02-07 07:58:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2098
+ [e9c6ae3 | 2009-02-07 15:58:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
1987
2099
 
1988
2100
  * Allow adding multiple caches at once
1989
2101
 
1990
- [defd5aa | 2009-02-07 07:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2102
+ [defd5aa | 2009-02-07 15:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
1991
2103
 
1992
2104
  * wrap_action_call hooks should return the body
1993
2105
 
1994
- [6d20f61 | 2009-02-07 04:57:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2106
+ [6d20f61 | 2009-02-07 12:57:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
1995
2107
 
1996
2108
  * Better parsing of Request#accept_language
1997
2109
 
1998
- [00ed695 | 2009-02-07 04:56:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2110
+ [00ed695 | 2009-02-07 12:56:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
1999
2111
 
2000
2112
  * Faster Innate.options
2001
2113
 
2002
- [ec09fde | 2009-02-06 09:44:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2114
+ [ec09fde | 2009-02-06 17:44:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2003
2115
 
2004
2116
  * Minor fixes and docs for rakefile
2005
2117
 
2006
- [45497a2 | 2009-02-06 09:44:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2118
+ [45497a2 | 2009-02-06 17:44:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2007
2119
 
2008
2120
  * Provide default for alias_view
2009
2121
 
2010
- [1dd1d29 | 2009-02-06 09:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2122
+ [1dd1d29 | 2009-02-06 17:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2011
2123
 
2012
2124
  * Version 2009.02.06
2013
2125
 
2014
- [01ca014 | 2009-02-03 17:37:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2126
+ [01ca014 | 2009-02-04 01:37:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2015
2127
 
2016
2128
  * Delete :root and :file parameters after root is figured. Because they
2017
2129
 
2018
2130
 
2019
2131
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2020
2132
 
2021
- [caf7b61 | 2009-02-03 17:32:01 UTC] Tadahiko Uehara <kikofx@gmail.com>
2133
+ [caf7b61 | 2009-02-04 01:32:01 UTC] Tadahiko Uehara <kikofx@gmail.com>
2022
2134
 
2023
2135
  * Add Action#name, taken from Ramaze.
2024
2136
 
2025
2137
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2026
2138
 
2027
- [d10e1e4 | 2009-02-03 18:37:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2139
+ [d10e1e4 | 2009-02-04 02:37:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2028
2140
 
2029
2141
  * Delete :root and :file parameters after root is figured. Because they
2030
2142
 
2031
2143
 
2032
2144
 
2033
- [a0eaff1 | 2009-02-03 18:32:01 UTC] Tadahiko Uehara <kikofx@gmail.com>
2145
+ [a0eaff1 | 2009-02-04 02:32:01 UTC] Tadahiko Uehara <kikofx@gmail.com>
2034
2146
 
2035
2147
  * Add Action#name, taken from Ramaze.
2036
2148
 
2037
- [f83a30c | 2009-02-01 06:50:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2149
+ [f83a30c | 2009-02-01 14:50:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2038
2150
 
2039
2151
  * Rack now has nested parameter parsing
2040
2152
 
2041
2153
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2042
2154
 
2043
- [cc3f110 | 2009-02-01 18:35:42 UTC] Tadahiko Uehara <kikofx@gmail.com>
2155
+ [cc3f110 | 2009-02-02 02:35:42 UTC] Tadahiko Uehara <kikofx@gmail.com>
2044
2156
 
2045
2157
  * use view name as name of the method when method is unavailable.
2046
2158
 
2047
- [20518d4 | 2009-02-01 18:37:47 UTC] Tadahiko Uehara <kikofx@gmail.com>
2159
+ [20518d4 | 2009-02-02 02:37:47 UTC] Tadahiko Uehara <kikofx@gmail.com>
2048
2160
 
2049
2161
  * update aspect spec to check before/after_all, instance_eval and view without method.
2050
2162
 
2051
- [ad974e8 | 2009-02-02 04:28:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2163
+ [ad974e8 | 2009-02-02 12:28:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2052
2164
 
2053
2165
  * instance_eval the aspect blocks
2054
2166
 
2055
- [12460ae | 2009-02-01 18:37:47 UTC] Tadahiko Uehara <kikofx@gmail.com>
2167
+ [12460ae | 2009-02-02 02:37:47 UTC] Tadahiko Uehara <kikofx@gmail.com>
2056
2168
 
2057
2169
  * update aspect spec to check before/after_all, instance_eval and view without method.
2058
2170
 
2059
- [ac3cd91 | 2009-02-01 18:35:42 UTC] Tadahiko Uehara <kikofx@gmail.com>
2171
+ [ac3cd91 | 2009-02-02 02:35:42 UTC] Tadahiko Uehara <kikofx@gmail.com>
2060
2172
 
2061
2173
  * use view name as name of the method when method is unavailable.
2062
2174
 
2063
- [1ac84ef | 2009-02-01 18:32:14 UTC] Tadahiko Uehara <kikofx@gmail.com>
2175
+ [1ac84ef | 2009-02-02 02:32:14 UTC] Tadahiko Uehara <kikofx@gmail.com>
2064
2176
 
2065
2177
  * instance_eval the aspect block.
2066
2178
 
2067
- [2287f32 | 2009-02-01 18:31:17 UTC] Tadahiko Uehara <kikofx@gmail.com>
2179
+ [2287f32 | 2009-02-02 02:31:17 UTC] Tadahiko Uehara <kikofx@gmail.com>
2068
2180
 
2069
2181
  * block_holder can be a hash or an actual block. lets first check it.
2070
2182
 
2071
- [b180b45 | 2009-02-01 07:50:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2183
+ [b180b45 | 2009-02-01 15:50:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2072
2184
 
2073
2185
  * Rack now has nested parameter parsing
2074
2186
 
2075
- [71639b6 | 2009-01-31 11:45:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2187
+ [71639b6 | 2009-01-31 19:45:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2076
2188
 
2077
2189
  * Some yard-style docs
2078
2190
 
2079
2191
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2080
2192
 
2081
- [6b70d31 | 2009-01-31 11:45:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2193
+ [6b70d31 | 2009-01-31 19:45:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2082
2194
 
2083
2195
  * Remove useless adapters
2084
2196
 
2085
2197
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2086
2198
 
2087
- [50b78b5 | 2009-01-31 11:45:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
2199
+ [50b78b5 | 2009-01-31 19:45:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
2088
2200
 
2089
2201
  * Make Node#wrap_action_call work, for now only aspects are registered
2090
2202
 
2091
2203
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2092
2204
 
2093
- [2a827d7 | 2009-01-31 11:43:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2205
+ [2a827d7 | 2009-01-31 19:43:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2094
2206
 
2095
2207
  * Improve Action#copy_variables
2096
2208
 
2097
2209
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2098
2210
 
2099
- [4ae1a01 | 2009-01-31 12:45:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2211
+ [4ae1a01 | 2009-01-31 20:45:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2100
2212
 
2101
2213
  * Remove useless adapters
2102
2214
 
2103
- [f75e32d | 2009-01-31 12:45:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2215
+ [f75e32d | 2009-01-31 20:45:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2104
2216
 
2105
2217
  * Some yard-style docs
2106
2218
 
2107
- [a7c4120 | 2009-01-31 12:45:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
2219
+ [a7c4120 | 2009-01-31 20:45:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
2108
2220
 
2109
2221
  * Make Node#wrap_action_call work, for now only aspects are registered
2110
2222
 
2111
- [46c35c0 | 2009-01-31 12:43:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2223
+ [46c35c0 | 2009-01-31 20:43:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2112
2224
 
2113
2225
  * Improve Action#copy_variables
2114
2226
 
2115
- [b7595b3 | 2009-01-30 10:12:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2227
+ [b7595b3 | 2009-01-30 18:12:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2116
2228
 
2117
2229
  * Fix assignment for (before|after)_all
2118
2230
 
2119
2231
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2120
2232
 
2121
- [76e1be6 | 2009-01-30 11:48:17 UTC] Tadahiko Uehara <kikofx@gmail.com>
2233
+ [76e1be6 | 2009-01-30 19:48:17 UTC] Tadahiko Uehara <kikofx@gmail.com>
2122
2234
 
2123
2235
  * Fixed forgotten merge portion in previous 5de42ee51db98a4ca211a4513056f47389904420.
2124
2236
 
2125
- [7076383 | 2009-01-30 11:12:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2237
+ [7076383 | 2009-01-30 19:12:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
2126
2238
 
2127
2239
  * Fix assignment for (before|after)_all
2128
2240
 
2129
- [3e9a5a8 | 2009-01-30 09:57:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2241
+ [3e9a5a8 | 2009-01-30 17:57:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2130
2242
 
2131
2243
  * Add before_all/after_all aspects
2132
2244
 
2133
2245
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2134
2246
 
2135
- [1335bf2 | 2009-01-30 10:57:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2247
+ [1335bf2 | 2009-01-30 18:57:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2136
2248
 
2137
2249
  * Add before_all/after_all aspects
2138
2250
 
2139
- [8b57671 | 2009-01-29 14:21:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2251
+ [8b57671 | 2009-01-29 22:21:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2140
2252
 
2141
2253
  * trap only once
2142
2254
 
2143
2255
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2144
2256
 
2145
- [9e56624 | 2009-01-29 12:37:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2257
+ [9e56624 | 2009-01-29 20:37:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2146
2258
 
2147
2259
  * method_arities is a trait now
2148
2260
 
2149
2261
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2150
2262
 
2151
- [82646b1 | 2009-01-29 12:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2263
+ [82646b1 | 2009-01-29 20:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2152
2264
 
2153
2265
  * Improve Node::setup, automap is now mapping and behaves like ramaze needs it
2154
2266
 
2155
2267
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2156
2268
 
2157
- [97e8308 | 2009-01-29 12:38:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2269
+ [97e8308 | 2009-01-29 20:38:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2158
2270
 
2159
2271
  * Better naming and arguments for Adapter::start
2160
2272
 
2161
2273
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2162
2274
 
2163
- [b182882 | 2009-01-29 12:38:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2275
+ [b182882 | 2009-01-29 20:38:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2164
2276
 
2165
2277
  * Even if started is true, still do basic setup
2166
2278
 
2167
2279
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2168
2280
 
2169
- [e3ffd52 | 2009-01-29 12:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2281
+ [e3ffd52 | 2009-01-29 20:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2170
2282
 
2171
2283
  * Don't use custom adapter in example
2172
2284
 
2173
2285
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2174
2286
 
2175
- [5d95198 | 2009-01-29 12:08:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2287
+ [5d95198 | 2009-01-29 20:08:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2176
2288
 
2177
2289
  * Fix precedence issue in find_method
2178
2290
 
2179
2291
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2180
2292
 
2181
- [64d317f | 2009-01-29 10:04:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2293
+ [64d317f | 2009-01-29 18:04:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2182
2294
 
2183
2295
  * Remove requires for rubygems
2184
2296
 
2185
2297
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2186
2298
 
2187
- [508edc9 | 2009-01-29 10:02:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2299
+ [508edc9 | 2009-01-29 18:02:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2188
2300
 
2189
2301
  * Remove whywiki_haml/whywiki_nagoro examples
2190
2302
 
2191
2303
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2192
2304
 
2193
- [b55cf95 | 2009-01-29 15:21:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2305
+ [b55cf95 | 2009-01-29 23:21:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2194
2306
 
2195
2307
  * trap only once
2196
2308
 
2197
- [4d1eda4 | 2009-01-29 13:57:54 UTC] Tadahiko Uehara <kikofx@gmail.com>
2309
+ [4d1eda4 | 2009-01-29 21:57:54 UTC] Tadahiko Uehara <kikofx@gmail.com>
2198
2310
 
2199
2311
  * Remove leftover code from previous addition.
2200
2312
 
2201
- [b41c42a | 2009-01-29 13:39:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2313
+ [b41c42a | 2009-01-29 21:39:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2202
2314
 
2203
2315
  * Work around issue in Rack::URLMap and add spec
2204
2316
 
2205
- [9dde517 | 2009-01-29 13:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2317
+ [9dde517 | 2009-01-29 21:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2206
2318
 
2207
2319
  * Improve Node::setup, automap is now mapping and behaves like ramaze needs it
2208
2320
 
2209
- [861ef4d | 2009-01-29 13:38:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2321
+ [861ef4d | 2009-01-29 21:38:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2210
2322
 
2211
2323
  * Better naming and arguments for Adapter::start
2212
2324
 
2213
- [456c144 | 2009-01-29 13:38:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2325
+ [456c144 | 2009-01-29 21:38:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2214
2326
 
2215
2327
  * Even if started is true, still do basic setup
2216
2328
 
2217
- [76e4b23 | 2009-01-29 13:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2329
+ [76e4b23 | 2009-01-29 21:37:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2218
2330
 
2219
2331
  * Don't use custom adapter in example
2220
2332
 
2221
- [6921322 | 2009-01-29 13:37:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2333
+ [6921322 | 2009-01-29 21:37:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2222
2334
 
2223
2335
  * method_arities is a trait now
2224
2336
 
2225
- [f66c001 | 2009-01-29 13:25:41 UTC] Tadahiko Uehara <kikofx@gmail.com>
2337
+ [f66c001 | 2009-01-29 21:25:41 UTC] Tadahiko Uehara <kikofx@gmail.com>
2226
2338
 
2227
2339
  * Add layout spec and some more.
2228
2340
 
2229
- [3dab943 | 2009-01-29 13:08:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2341
+ [3dab943 | 2009-01-29 21:08:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2230
2342
 
2231
2343
  * Fix precedence issue in find_method
2232
2344
 
2233
- [be40b43 | 2009-01-29 11:04:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2345
+ [be40b43 | 2009-01-29 19:04:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2234
2346
 
2235
2347
  * Remove requires for rubygems
2236
2348
 
2237
- [21d17f3 | 2009-01-29 11:02:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2349
+ [21d17f3 | 2009-01-29 19:02:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2238
2350
 
2239
2351
  * Remove whywiki_haml/whywiki_nagoro examples
2240
2352
 
2241
- [03c14eb | 2009-01-28 10:55:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2353
+ [03c14eb | 2009-01-28 18:55:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2242
2354
 
2243
2355
  * Move code for copying Action#variables
2244
2356
 
2245
2357
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2246
2358
 
2247
- [1084897 | 2009-01-28 13:38:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2359
+ [1084897 | 2009-01-28 21:38:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2248
2360
 
2249
2361
  * Fix cache specs, why the hell did they pass?
2250
2362
 
2251
2363
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2252
2364
 
2253
- [1968cb7 | 2009-01-28 12:55:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
2365
+ [1968cb7 | 2009-01-28 20:55:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
2254
2366
 
2255
2367
  * Add some specs for examples
2256
2368
 
2257
2369
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2258
2370
 
2259
- [9285cec | 2009-01-28 10:56:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2371
+ [9285cec | 2009-01-28 18:56:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2260
2372
 
2261
2373
  * Add Node::HELPERS for helpers used on inclusion
2262
2374
 
2263
2375
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2264
2376
 
2265
- [e6b9002 | 2009-01-28 11:04:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2377
+ [e6b9002 | 2009-01-28 19:04:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2266
2378
 
2267
2379
  * Remove require for route_exceptions
2268
2380
 
2269
2381
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2270
2382
 
2271
- [7b98be1 | 2009-01-28 10:55:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2383
+ [7b98be1 | 2009-01-28 18:55:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2272
2384
 
2273
2385
  * Rack::RouteExceptions is now in rack-contrib
2274
2386
 
2275
2387
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2276
2388
 
2277
- [e83fc84 | 2009-01-27 12:41:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2389
+ [e83fc84 | 2009-01-27 20:41:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2278
2390
 
2279
2391
  * Nicer inspect of session
2280
2392
 
2281
2393
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2282
2394
 
2283
- [6b0be6f | 2009-01-27 12:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2395
+ [6b0be6f | 2009-01-27 20:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2284
2396
 
2285
2397
  * Set cookie on the response object returned, not the original one
2286
2398
 
2287
2399
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2288
2400
 
2289
- [5b2403c | 2009-01-27 11:49:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2401
+ [5b2403c | 2009-01-27 19:49:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2290
2402
 
2291
2403
  * Fix specs for 1.9
2292
2404
 
2293
2405
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2294
2406
 
2295
- [36dbcc0 | 2009-01-27 11:49:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2407
+ [36dbcc0 | 2009-01-27 19:49:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2296
2408
 
2297
2409
  * 1.9 will return symbols instead of strings as method names
2298
2410
 
2299
2411
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2300
2412
 
2301
- [9e5520e | 2009-01-27 11:48:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
2413
+ [9e5520e | 2009-01-27 19:48:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
2302
2414
 
2303
2415
  * A bit nicer code style
2304
2416
 
2305
2417
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2306
2418
 
2307
- [eb0935f | 2009-01-27 11:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2419
+ [eb0935f | 2009-01-27 19:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2308
2420
 
2309
2421
  * Map casts to #to_s, :/ is very common in ramaze code
2310
2422
 
2311
2423
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2312
2424
 
2313
- [580673b | 2009-01-27 11:47:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2425
+ [580673b | 2009-01-27 19:47:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2314
2426
 
2315
2427
  * Fix handling of binding for 1.9
2316
2428
 
2317
2429
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2318
2430
 
2319
- [f67b9a0 | 2009-01-27 11:46:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2431
+ [f67b9a0 | 2009-01-27 19:46:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2320
2432
 
2321
2433
  * In current 1.9 the original require won't work for some gems
2322
2434
 
2323
2435
  Signed-off-by: Tadahiko Uehara <kikofX@gmail.com>
2324
2436
 
2325
- [9133eb2 | 2009-01-28 14:38:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2437
+ [9133eb2 | 2009-01-28 22:38:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2326
2438
 
2327
2439
  * Fix cache specs, why the hell did they pass?
2328
2440
 
2329
- [741a79c | 2009-01-28 13:55:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
2441
+ [741a79c | 2009-01-28 21:55:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
2330
2442
 
2331
2443
  * Add some specs for examples
2332
2444
 
2333
- [122c35f | 2009-01-28 12:04:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2445
+ [122c35f | 2009-01-28 20:04:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2334
2446
 
2335
2447
  * Remove require for route_exceptions
2336
2448
 
2337
- [2405c23 | 2009-01-28 11:56:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2449
+ [2405c23 | 2009-01-28 19:56:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2338
2450
 
2339
2451
  * Add Node::HELPERS for helpers used on inclusion
2340
2452
 
2341
- [94cde03 | 2009-01-28 11:55:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2453
+ [94cde03 | 2009-01-28 19:55:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2342
2454
 
2343
2455
  * Move code for copying Action#variables
2344
2456
 
2345
- [4452766 | 2009-01-28 11:55:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2457
+ [4452766 | 2009-01-28 19:55:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2346
2458
 
2347
2459
  * Rack::RouteExceptions is now in rack-contrib
2348
2460
 
2349
- [2922c7b | 2009-01-28 12:44:43 UTC] Tadahiko Uehara <kikofx@gmail.com>
2461
+ [2922c7b | 2009-01-28 20:44:43 UTC] Tadahiko Uehara <kikofx@gmail.com>
2350
2462
 
2351
2463
  * Add some specs.
2352
2464
 
2353
2465
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2354
2466
 
2355
- [cfc74b8 | 2009-01-28 12:43:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2467
+ [cfc74b8 | 2009-01-28 20:43:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2356
2468
 
2357
2469
  * Add missing fallback argument to redirect_referrer.
2358
2470
 
2359
2471
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2360
2472
 
2361
- [e4534e1 | 2009-01-27 08:37:21 UTC] Tadahiko Uehara <kikofx@gmail.com>
2473
+ [e4534e1 | 2009-01-27 16:37:21 UTC] Tadahiko Uehara <kikofx@gmail.com>
2362
2474
 
2363
2475
  * Fix typo in example.
2364
2476
 
2365
2477
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
2366
2478
 
2367
- [53b7764 | 2009-01-28 13:44:43 UTC] Tadahiko Uehara <kikofx@gmail.com>
2479
+ [53b7764 | 2009-01-28 21:44:43 UTC] Tadahiko Uehara <kikofx@gmail.com>
2368
2480
 
2369
2481
  * Add some specs.
2370
2482
 
2371
- [35b3fe7 | 2009-01-28 13:43:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2483
+ [35b3fe7 | 2009-01-28 21:43:50 UTC] Tadahiko Uehara <kikofx@gmail.com>
2372
2484
 
2373
2485
  * Add missing fallback argument to redirect_referrer.
2374
2486
 
2375
- [eeffc7d | 2009-01-27 13:41:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2487
+ [eeffc7d | 2009-01-27 21:41:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2376
2488
 
2377
2489
  * Nicer inspect of session
2378
2490
 
2379
- [1daeb8f | 2009-01-27 13:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2491
+ [1daeb8f | 2009-01-27 21:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2380
2492
 
2381
2493
  * Set cookie on the response object returned, not the original one
2382
2494
 
2383
- [c7f8f10 | 2009-01-27 12:49:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2495
+ [c7f8f10 | 2009-01-27 20:49:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2384
2496
 
2385
2497
  * Fix specs for 1.9
2386
2498
 
2387
- [9075cff | 2009-01-27 12:49:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2499
+ [9075cff | 2009-01-27 20:49:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2388
2500
 
2389
2501
  * 1.9 will return symbols instead of strings as method names
2390
2502
 
2391
- [fdd2197 | 2009-01-27 12:48:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
2503
+ [fdd2197 | 2009-01-27 20:48:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
2392
2504
 
2393
2505
  * A bit nicer code style
2394
2506
 
2395
- [a2003fe | 2009-01-27 12:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2507
+ [a2003fe | 2009-01-27 20:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2396
2508
 
2397
2509
  * Map casts to #to_s, :/ is very common in ramaze code
2398
2510
 
2399
- [06331c4 | 2009-01-27 12:47:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2511
+ [06331c4 | 2009-01-27 20:47:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2400
2512
 
2401
2513
  * Fix handling of binding for 1.9
2402
2514
 
2403
- [e7070f2 | 2009-01-27 12:46:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2515
+ [e7070f2 | 2009-01-27 20:46:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2404
2516
 
2405
2517
  * In current 1.9 the original require won't work for some gems
2406
2518
 
2407
- [047baef | 2009-01-27 09:37:21 UTC] Tadahiko Uehara <kikofx@gmail.com>
2519
+ [047baef | 2009-01-27 17:37:21 UTC] Tadahiko Uehara <kikofx@gmail.com>
2408
2520
 
2409
2521
  * Fix typo in example.
2410
2522
 
2411
- [d3304dd | 2009-01-26 16:50:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2523
+ [d3304dd | 2009-01-27 00:50:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2412
2524
 
2413
2525
  * pass arguments to start to start!
2414
2526
 
2415
- [8f37866 | 2009-01-26 07:47:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2527
+ [8f37866 | 2009-01-26 15:47:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2416
2528
 
2417
2529
  * Prettier output for rake spec
2418
2530
 
2419
- [602c6c1 | 2009-01-26 07:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2531
+ [602c6c1 | 2009-01-26 15:42:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2420
2532
 
2421
2533
  * spec for provide json and layout
2422
2534
 
2423
- [725f209 | 2009-01-26 07:42:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
2535
+ [725f209 | 2009-01-26 15:42:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
2424
2536
 
2425
2537
  * Fix layout render
2426
2538
 
2427
- [c71fca2 | 2009-01-26 06:41:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2539
+ [c71fca2 | 2009-01-26 14:41:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2428
2540
 
2429
2541
  * Remove Content-Type before dispatch, only add if not set
2430
2542
 
2431
- [07547ba | 2009-01-25 09:09:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
2543
+ [07547ba | 2009-01-25 17:09:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
2432
2544
 
2433
2545
  * add options.action.wish for higher order control over wishes
2434
2546
 
2435
- [8394dc5 | 2009-01-25 09:08:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
2547
+ [8394dc5 | 2009-01-25 17:08:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
2436
2548
 
2437
2549
  * small fixes for options
2438
2550
 
2439
- [aa53722 | 2009-01-24 05:05:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2551
+ [aa53722 | 2009-01-24 13:05:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2440
2552
 
2441
2553
  * Expand specs for options
2442
2554
 
2443
- [67f124d | 2009-01-24 05:05:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2555
+ [67f124d | 2009-01-24 13:05:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2444
2556
 
2445
2557
  * Expand specs for flash
2446
2558
 
2447
- [e28bcda | 2009-01-24 05:05:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2559
+ [e28bcda | 2009-01-24 13:05:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2448
2560
 
2449
2561
  * Fix Flash#delete
2450
2562
 
2451
- [a78085c | 2009-01-24 05:04:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2563
+ [a78085c | 2009-01-24 13:04:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2452
2564
 
2453
2565
  * Prune never reached code from options dsl
2454
2566
 
2455
- [dd778ba | 2009-01-24 05:04:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2567
+ [dd778ba | 2009-01-24 13:04:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2456
2568
 
2457
2569
  * Docs for Helper::Link#route
2458
2570
 
2459
- [3013397 | 2009-01-24 05:03:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2571
+ [3013397 | 2009-01-24 13:03:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2460
2572
 
2461
2573
  * Provide Innate::start! method
2462
2574
 
2463
- [bdfe9da | 2009-01-24 05:03:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2575
+ [bdfe9da | 2009-01-24 13:03:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2464
2576
 
2465
2577
  * Ignore adapter for coverage
2466
2578
 
2467
- [2484dd4 | 2009-01-24 03:34:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2579
+ [2484dd4 | 2009-01-24 11:34:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
2468
2580
 
2469
2581
  * Innate::Helper::Link#route defaults to '/'
2470
2582
 
2471
- [1e68525 | 2009-01-24 03:34:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2583
+ [1e68525 | 2009-01-24 11:34:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2472
2584
 
2473
2585
  * Spec Innate::Helper::Link
2474
2586
 
2475
- [8d988f0 | 2009-01-23 16:58:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2587
+ [8d988f0 | 2009-01-24 00:58:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2476
2588
 
2477
2589
  * Add clean task
2478
2590
 
2479
- [ce74581 | 2009-01-23 15:53:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
2591
+ [ce74581 | 2009-01-23 23:53:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
2480
2592
 
2481
2593
  * Spec Innate::Helper::CGI
2482
2594
 
2483
- [6823756 | 2009-01-23 15:52:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2595
+ [6823756 | 2009-01-23 23:52:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2484
2596
 
2485
2597
  * Spec Innate::Helper::Partial
2486
2598
 
2487
- [27fa85a | 2009-01-23 15:52:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2599
+ [27fa85a | 2009-01-23 23:52:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2488
2600
 
2489
2601
  * Add specs for DynaMap
2490
2602
 
2491
- [8e1ee7d | 2009-01-23 15:51:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2603
+ [8e1ee7d | 2009-01-23 23:51:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2492
2604
 
2493
2605
  * Spec more of Request
2494
2606
 
2495
- [766023a | 2009-01-23 15:51:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2607
+ [766023a | 2009-01-23 23:51:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2496
2608
 
2497
2609
  * Expand redirect spec
2498
2610
 
2499
- [66229fc | 2009-01-23 15:51:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2611
+ [66229fc | 2009-01-23 23:51:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2500
2612
 
2501
2613
  * Use shared mock a bit
2502
2614
 
2503
- [6e62527 | 2009-01-23 15:50:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2615
+ [6e62527 | 2009-01-23 23:50:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2504
2616
 
2505
2617
  * Spec that helper methods are no actions by default
2506
2618
 
2507
- [b5dd53b | 2009-01-23 15:50:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
2619
+ [b5dd53b | 2009-01-23 23:50:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
2508
2620
 
2509
2621
  * add shared :mock
2510
2622
 
2511
- [84a057d | 2009-01-23 15:49:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2623
+ [84a057d | 2009-01-23 23:49:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2512
2624
 
2513
2625
  * Fix throw/catch around :respond/:redirect
2514
2626
 
2515
- [f56dbe4 | 2009-01-23 15:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2627
+ [f56dbe4 | 2009-01-23 23:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2516
2628
 
2517
2629
  * Rename Node#to_view to Node#find_view
2518
2630
 
2519
- [0ca8a71 | 2009-01-23 15:47:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2631
+ [0ca8a71 | 2009-01-23 23:47:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2520
2632
 
2521
2633
  * add CGI to autoload, it's used very seldom
2522
2634
 
2523
- [ce88e79 | 2009-01-23 15:46:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2635
+ [ce88e79 | 2009-01-23 23:46:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2524
2636
 
2525
2637
  * We need URI for Request
2526
2638
 
2527
- [597b9a4 | 2009-01-23 15:46:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2639
+ [597b9a4 | 2009-01-23 23:46:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2528
2640
 
2529
2641
  * Add rcov task
2530
2642
 
2531
- [a583746 | 2009-01-22 15:01:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2643
+ [a583746 | 2009-01-22 23:01:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2532
2644
 
2533
2645
  * Don't try to use ERB for things that aren't strings
2534
2646
 
2535
- [959e891 | 2009-01-22 15:01:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2647
+ [959e891 | 2009-01-22 23:01:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2536
2648
 
2537
2649
  * Some improvments for specs, add shared :session
2538
2650
 
2539
- [d17596b | 2009-01-22 15:00:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2651
+ [d17596b | 2009-01-22 23:00:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2540
2652
 
2541
2653
  * redirect_referrer should work like in Ramaze
2542
2654
 
2543
- [da7d7c6 | 2009-01-22 15:00:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2655
+ [da7d7c6 | 2009-01-22 23:00:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
2544
2656
 
2545
2657
  * Use r, not Rs
2546
2658
 
2547
- [775fa4b | 2009-01-22 15:00:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2659
+ [775fa4b | 2009-01-22 23:00:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2548
2660
 
2549
2661
  * Clean up Helper::Aspect
2550
2662
 
2551
- [1286960 | 2009-01-22 14:59:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2663
+ [1286960 | 2009-01-22 22:59:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2552
2664
 
2553
2665
  * Nicer glob
2554
2666
 
2555
- [5551462 | 2009-01-22 14:58:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2667
+ [5551462 | 2009-01-22 22:58:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
2556
2668
 
2557
2669
  * Innate::HelperAccess::helper doesn't extend anymore, do that in your helper as needed
2558
2670
 
2559
- [b6675e0 | 2009-01-22 14:57:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2671
+ [b6675e0 | 2009-01-22 22:57:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2560
2672
 
2561
2673
  * Remove Innate::Helper::DEFAULT
2562
2674
 
2563
- [1a602c3 | 2009-01-22 14:56:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2675
+ [1a602c3 | 2009-01-22 22:56:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
2564
2676
 
2565
2677
  * Don't fret on existing Innate::ROOT
2566
2678
 
2567
- [656c951 | 2009-01-22 14:55:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2679
+ [656c951 | 2009-01-22 22:55:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2568
2680
 
2569
2681
  * Spec for flash
2570
2682
 
2571
- [206a101 | 2009-01-21 10:56:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2683
+ [206a101 | 2009-01-21 18:56:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2572
2684
 
2573
2685
  * Node automap doesn't need to replace spaces
2574
2686
 
2575
- [c518707 | 2009-01-21 10:53:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2687
+ [c518707 | 2009-01-21 18:53:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2576
2688
 
2577
2689
  * Seems like ERB likes this better
2578
2690
 
2579
- [39f033b | 2009-01-21 10:53:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2691
+ [39f033b | 2009-01-21 18:53:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2580
2692
 
2581
2693
  * Only search public instance methods
2582
2694
 
2583
- [696d7af | 2009-01-21 10:52:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2695
+ [696d7af | 2009-01-21 18:52:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2584
2696
 
2585
2697
  * Compact try_resolve
2586
2698
 
2587
- [fd2bb5f | 2009-01-21 10:52:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2699
+ [fd2bb5f | 2009-01-21 18:52:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2588
2700
 
2589
2701
  * Use Traited in Node, finally gives us inheritable configuration
2590
2702
 
2591
- [3891bc2 | 2009-01-21 10:51:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2703
+ [3891bc2 | 2009-01-21 18:51:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2592
2704
 
2593
2705
  * Better fulfill_wish
2594
2706
 
2595
- [3552421 | 2009-01-21 10:50:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
2707
+ [3552421 | 2009-01-21 18:50:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
2596
2708
 
2597
2709
  * remove Action::CONTENT_TYPE, we can add '.sass' in ramaze
2598
2710
 
2599
- [5dbfec2 | 2009-01-21 10:49:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
2711
+ [5dbfec2 | 2009-01-21 18:49:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
2600
2712
 
2601
2713
  * Nicer output of specs
2602
2714
 
2603
- [c6666eb | 2009-01-21 10:49:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2715
+ [c6666eb | 2009-01-21 18:49:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2604
2716
 
2605
2717
  * Specs for Traited
2606
2718
 
2607
- [934ba5f | 2009-01-21 10:49:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2719
+ [934ba5f | 2009-01-21 18:49:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2608
2720
 
2609
2721
  * Add Traited, like Ramaze traits, but limited in scope
2610
2722
 
2611
- [9b57ea4 | 2009-01-21 04:17:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2723
+ [9b57ea4 | 2009-01-21 12:17:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2612
2724
 
2613
2725
  * Refactor some Node code, faster arity check and warning on ambiguity for layouts
2614
2726
 
2615
- [4853060 | 2009-01-21 04:12:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2727
+ [4853060 | 2009-01-21 12:12:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2616
2728
 
2617
2729
  * Squeeze slack from Node::automap and Node::setup
2618
2730
 
2619
- [4038a4d | 2009-01-21 04:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2731
+ [4038a4d | 2009-01-21 12:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2620
2732
 
2621
2733
  * Assign layout on include... gotta improve that for inherit
2622
2734
 
2623
- [5b8c69b | 2009-01-21 04:10:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
2735
+ [5b8c69b | 2009-01-21 12:10:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
2624
2736
 
2625
2737
  * Don't use RouteExceptions by default, but use CommonLogger
2626
2738
 
2627
- [18ab6cb | 2009-01-21 04:10:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2739
+ [18ab6cb | 2009-01-21 12:10:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2628
2740
 
2629
2741
  * Remove test code from hello example
2630
2742
 
2631
- [c6e0016 | 2009-01-21 04:10:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2743
+ [c6e0016 | 2009-01-21 12:10:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2632
2744
 
2633
2745
  * Simpler Innate::View::None
2634
2746
 
2635
- [576fc84 | 2009-01-21 04:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2747
+ [576fc84 | 2009-01-21 12:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
2636
2748
 
2637
2749
  * ERB now initialized with '<%>' and sensible filename
2638
2750
 
2639
- [42ced1f | 2009-01-21 04:08:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2751
+ [42ced1f | 2009-01-21 12:08:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2640
2752
 
2641
2753
  * Add docs to Innate::DynaMap and accept block on Innate::map
2642
2754
 
2643
- [782b029 | 2009-01-21 04:07:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2755
+ [782b029 | 2009-01-21 12:07:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2644
2756
 
2645
2757
  * Clean up setup of caches, won't register on initialize anymore
2646
2758
 
2647
- [cabc6b2 | 2009-01-21 04:07:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2759
+ [cabc6b2 | 2009-01-21 12:07:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
2648
2760
 
2649
2761
  * Add Innate::Cache::DRb
2650
2762
 
2651
- [82e0dae | 2009-01-19 10:53:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2763
+ [82e0dae | 2009-01-19 18:53:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2652
2764
 
2653
2765
  * Improve Helper::Redirect and port specs
2654
2766
 
2655
- [255643c | 2009-01-18 11:31:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2767
+ [255643c | 2009-01-18 19:31:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2656
2768
 
2657
2769
  * Explain how layouts respect provides
2658
2770
 
2659
- [87c30c9 | 2009-01-18 11:20:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
2771
+ [87c30c9 | 2009-01-18 19:20:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
2660
2772
 
2661
2773
  * A bit more compact code
2662
2774
 
2663
- [27d7f2e | 2009-01-18 11:18:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2775
+ [27d7f2e | 2009-01-18 19:18:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2664
2776
 
2665
2777
  * Unify layout/view file lookup so layout respects wish
2666
2778
 
2667
- [ba91e65 | 2009-01-18 11:02:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2779
+ [ba91e65 | 2009-01-18 19:02:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
2668
2780
 
2669
2781
  * Reduce code needed to setup specs
2670
2782
 
2671
- [f9d9ef1 | 2009-01-18 11:02:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2783
+ [f9d9ef1 | 2009-01-18 19:02:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2672
2784
 
2673
2785
  * Fixes and improvments for Helper
2674
2786
 
2675
- [722336e | 2009-01-18 11:02:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
2787
+ [722336e | 2009-01-18 19:02:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
2676
2788
 
2677
2789
  * Make Innate::middleware less boring
2678
2790
 
2679
- [c8ca27e | 2009-01-18 11:01:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2791
+ [c8ca27e | 2009-01-18 19:01:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2680
2792
 
2681
2793
  * Pass block to Innate::start to build your middleware
2682
2794
 
2683
- [2124ae4 | 2009-01-18 11:00:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2795
+ [2124ae4 | 2009-01-18 19:00:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2684
2796
 
2685
2797
  * Innate::Route and Innate::Rewrite behave correct now
2686
2798
 
2687
- [96a3674 | 2009-01-18 10:09:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2799
+ [96a3674 | 2009-01-18 18:09:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
2688
2800
 
2689
2801
  * Simplify Helper API and add some docs
2690
2802
 
2691
- [64420a2 | 2009-01-18 02:26:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
2803
+ [64420a2 | 2009-01-18 10:26:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
2692
2804
 
2693
2805
  * Don't assign :caller
2694
2806
 
2695
- [12f7119 | 2009-01-17 08:20:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2807
+ [12f7119 | 2009-01-17 16:20:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2696
2808
 
2697
2809
  * Add example for error handling
2698
2810
 
2699
- [e38b669 | 2009-01-17 08:20:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2811
+ [e38b669 | 2009-01-17 16:20:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2700
2812
 
2701
2813
  * Fix error handling
2702
2814
 
2703
- [3bfe38c | 2009-01-17 07:56:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
2815
+ [3bfe38c | 2009-01-17 15:56:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
2704
2816
 
2705
2817
  * Innate::Current isn't needed for static files
2706
2818
 
2707
- [e9a9a03 | 2009-01-17 07:55:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
2819
+ [e9a9a03 | 2009-01-17 15:55:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
2708
2820
 
2709
2821
  * Heed shadow warnings
2710
2822
 
2711
- [eec3639 | 2009-01-17 07:54:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2823
+ [eec3639 | 2009-01-17 15:54:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2712
2824
 
2713
2825
  * More timeout on trap
2714
2826
 
2715
- [7a8c8f2 | 2009-01-17 07:54:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2827
+ [7a8c8f2 | 2009-01-17 15:54:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2716
2828
 
2717
2829
  * Add merging for options
2718
2830
 
2719
- [9ff7e94 | 2009-01-17 07:34:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
2831
+ [9ff7e94 | 2009-01-17 15:34:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
2720
2832
 
2721
2833
  * Exception handling by recall, can you feel the power?
2722
2834
 
2723
- [c8e4bec | 2009-01-17 05:12:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2835
+ [c8e4bec | 2009-01-17 13:12:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
2724
2836
 
2725
2837
  * Check log.color option
2726
2838
 
2727
- [97957b9 | 2009-01-17 05:03:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2839
+ [97957b9 | 2009-01-17 13:03:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2728
2840
 
2729
2841
  * Remove Rack::Profile, there's one in rack-contrib
2730
2842
 
2731
- [91aab79 | 2009-01-17 05:00:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2843
+ [91aab79 | 2009-01-17 13:00:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2732
2844
 
2733
2845
  * Add Response#reset
2734
2846
 
2735
- [2aa69fc | 2009-01-17 05:00:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2847
+ [2aa69fc | 2009-01-17 13:00:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2736
2848
 
2737
2849
  * Port Helper::SendFile and spec
2738
2850
 
2739
- [8dfca77 | 2009-01-17 04:51:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2851
+ [8dfca77 | 2009-01-17 12:51:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
2740
2852
 
2741
2853
  * Don't require rubygems twice on specs
2742
2854
 
2743
- [db69ee3 | 2009-01-17 04:50:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2855
+ [db69ee3 | 2009-01-17 12:50:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2744
2856
 
2745
2857
  * Simple logging options
2746
2858
 
2747
- [1c81540 | 2009-01-17 04:49:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
2859
+ [1c81540 | 2009-01-17 12:49:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
2748
2860
 
2749
2861
  * Minor mod
2750
2862
 
2751
- [fba8f58 | 2009-01-17 04:49:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
2863
+ [fba8f58 | 2009-01-17 12:49:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
2752
2864
 
2753
2865
  * Automatic mapping for Node, '/' if only one Node exists
2754
2866
 
2755
- [044b979 | 2009-01-17 04:47:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2867
+ [044b979 | 2009-01-17 12:47:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
2756
2868
 
2757
2869
  * Innate::Cache::add method like Ramaze::Cache::add
2758
2870
 
2759
- [cda601a | 2009-01-13 10:35:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2871
+ [cda601a | 2009-01-13 18:35:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2760
2872
 
2761
2873
  * Clean up Node spec
2762
2874
 
2763
- [88866be | 2009-01-13 10:32:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2875
+ [88866be | 2009-01-13 18:32:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2764
2876
 
2765
2877
  * Fix Session spec
2766
2878
 
2767
- [5974e23 | 2009-01-13 10:32:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2879
+ [5974e23 | 2009-01-13 18:32:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2768
2880
 
2769
2881
  * Fix Node spec
2770
2882
 
2771
- [675e3bc | 2009-01-13 10:32:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
2883
+ [675e3bc | 2009-01-13 18:32:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
2772
2884
 
2773
2885
  * Fix aspect spec
2774
2886
 
2775
- [1b9a1c8 | 2009-01-13 10:31:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
2887
+ [1b9a1c8 | 2009-01-13 18:31:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
2776
2888
 
2777
2889
  * Spec Request
2778
2890
 
2779
- [0932816 | 2009-01-13 08:35:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2891
+ [0932816 | 2009-01-13 16:35:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2780
2892
 
2781
2893
  * Port specs for Node parameters
2782
2894
 
2783
- [37b1392 | 2009-01-13 08:35:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2895
+ [37b1392 | 2009-01-13 16:35:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2784
2896
 
2785
2897
  * Port specs for Route
2786
2898
 
2787
- [972e2de | 2009-01-13 08:35:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2899
+ [972e2de | 2009-01-13 16:35:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
2788
2900
 
2789
2901
  * Reset Response when action is found
2790
2902
 
2791
- [58a9143 | 2009-01-13 08:35:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2903
+ [58a9143 | 2009-01-13 16:35:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2792
2904
 
2793
2905
  * Further fixes of provides, only modify the path if a provide is found
2794
2906
 
2795
- [b87493f | 2009-01-13 08:32:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2907
+ [b87493f | 2009-01-13 16:32:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
2796
2908
 
2797
2909
  * Fix Innate::Route and add Innate::Rewrite
2798
2910
 
2799
- [33be02f | 2009-01-13 08:32:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2911
+ [33be02f | 2009-01-13 16:32:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2800
2912
 
2801
2913
  * Add Innate::Response
2802
2914
 
2803
- [7cedab1 | 2009-01-10 07:59:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
2915
+ [7cedab1 | 2009-01-10 15:59:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
2804
2916
 
2805
2917
  * Add routing middleware
2806
2918
 
2807
- [9459903 | 2009-01-09 08:34:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2919
+ [9459903 | 2009-01-09 16:34:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2808
2920
 
2809
2921
  * Adding aspect helper as default and squeeze out some bugs
2810
2922
 
2811
- [170f032 | 2009-01-07 14:01:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2923
+ [170f032 | 2009-01-07 22:01:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
2812
2924
 
2813
2925
  * Some additions and improvments to Request
2814
2926
 
2815
- [79979ce | 2009-01-07 13:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2927
+ [79979ce | 2009-01-07 21:12:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
2816
2928
 
2817
2929
  * Don't rescue in Node::call so we don't get double backtraces
2818
2930
 
2819
- [48f92c1 | 2009-01-07 13:11:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2931
+ [48f92c1 | 2009-01-07 21:11:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2820
2932
 
2821
2933
  * render is no helper
2822
2934
 
2823
- [13584b8 | 2009-01-07 13:11:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2935
+ [13584b8 | 2009-01-07 21:11:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2824
2936
 
2825
2937
  * LogHub can now be toggled on and off, so you don't have to modify the loggers
2826
2938
 
2827
- [88d1c7f | 2009-01-07 13:10:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2939
+ [88d1c7f | 2009-01-07 21:10:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2828
2940
 
2829
2941
  * Clean up logging a bit
2830
2942
 
2831
- [6036864 | 2009-01-07 12:55:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
2943
+ [6036864 | 2009-01-07 20:55:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
2832
2944
 
2833
2945
  * flash is default helper as well
2834
2946
 
2835
- [740015b | 2009-01-07 12:52:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2947
+ [740015b | 2009-01-07 20:52:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2836
2948
 
2837
2949
  * Add Helper::Flash
2838
2950
 
2839
- [753ba5a | 2009-01-07 12:52:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2951
+ [753ba5a | 2009-01-07 20:52:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2840
2952
 
2841
2953
  * Add Innate::Session::Flash
2842
2954
 
2843
- [e74d7ac | 2009-01-07 11:09:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2955
+ [e74d7ac | 2009-01-07 19:09:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2844
2956
 
2845
2957
  * Spec for Helper::Aspect
2846
2958
 
2847
- [f0ba7e7 | 2009-01-07 11:09:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2959
+ [f0ba7e7 | 2009-01-07 19:09:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
2848
2960
 
2849
2961
  * Activate default helpers on inclusion of Innate::Node
2850
2962
 
2851
- [f1ff921 | 2009-01-07 11:08:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2963
+ [f1ff921 | 2009-01-07 19:08:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
2852
2964
 
2853
2965
  * Execute Helper::Aspect hooks in Action
2854
2966
 
2855
- [6687cd6 | 2009-01-07 11:03:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2967
+ [6687cd6 | 2009-01-07 19:03:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
2856
2968
 
2857
2969
  * Helper::Partial from Ramaze
2858
2970
 
2859
- [470bee9 | 2009-01-06 12:28:18 UTC] TJ Vanderpoel <bougy.man@gmail.com>
2971
+ [470bee9 | 2009-01-06 20:28:18 UTC] TJ Vanderpoel <bougy.man@gmail.com>
2860
2972
 
2861
2973
  * fixed requires and Wiki#provide to refer to erb instead of haml
2862
2974
 
2863
- [015034d | 2009-01-06 12:26:53 UTC] TJ Vanderpoel <bougy.man@gmail.com>
2975
+ [015034d | 2009-01-06 20:26:53 UTC] TJ Vanderpoel <bougy.man@gmail.com>
2864
2976
 
2865
2977
  * converted haml templated to erb
2866
2978
 
2867
- [a6fa567 | 2009-01-05 14:15:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2979
+ [a6fa567 | 2009-01-05 22:15:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
2868
2980
 
2869
2981
  * Don't be so noisy about state
2870
2982
 
2871
- [44a11ec | 2009-01-05 14:15:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2983
+ [44a11ec | 2009-01-05 22:15:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
2872
2984
 
2873
2985
  * Reduce view glob
2874
2986
 
2875
- [2b5dad5 | 2009-01-05 14:15:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
2987
+ [2b5dad5 | 2009-01-05 22:15:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
2876
2988
 
2877
2989
  * Action#sync_variables
2878
2990
 
2879
- [155d9ad | 2009-01-05 14:14:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2991
+ [155d9ad | 2009-01-05 22:14:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2880
2992
 
2881
2993
  * Don't define ROOT twice
2882
2994
 
2883
- [bcce1e2 | 2009-01-05 13:01:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2995
+ [bcce1e2 | 2009-01-05 21:01:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2884
2996
 
2885
2997
  * The cookie of Mock::Session may be changed
2886
2998
 
2887
- [8cb296b | 2009-01-05 12:10:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2999
+ [8cb296b | 2009-01-05 20:10:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2888
3000
 
2889
3001
  * Better lookup so Ramaze can integrate
2890
3002
 
2891
- [b4f556d | 2009-01-05 11:06:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3003
+ [b4f556d | 2009-01-05 19:06:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
2892
3004
 
2893
3005
  * Action#binding as shortcut
2894
3006
 
2895
- [5f5602a | 2009-01-05 10:15:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
3007
+ [5f5602a | 2009-01-05 18:15:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
2896
3008
 
2897
3009
  * Move all templating engines that have dependencies to Ramaze
2898
3010
 
2899
- [91da40d | 2009-01-05 09:58:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
3011
+ [91da40d | 2009-01-05 17:58:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
2900
3012
 
2901
3013
  * Remove done todos
2902
3014
 
2903
- [4e5f3f2 | 2009-01-05 09:57:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3015
+ [4e5f3f2 | 2009-01-05 17:57:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
2904
3016
 
2905
3017
  * Update specs for new options
2906
3018
 
2907
- [24ef9cf | 2009-01-05 09:57:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3019
+ [24ef9cf | 2009-01-05 17:57:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
2908
3020
 
2909
3021
  * Fix options usage in node spec
2910
3022
 
2911
- [2ce93fd | 2009-01-05 09:57:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
3023
+ [2ce93fd | 2009-01-05 17:57:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
2912
3024
 
2913
3025
  * Only run Options#dsl instance_eval if block given
2914
3026
 
2915
- [1613987 | 2009-01-05 09:46:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3027
+ [1613987 | 2009-01-05 17:46:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
2916
3028
 
2917
3029
  * Expired cache values should not be returned
2918
3030
 
2919
- [9849a07 | 2009-01-05 09:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
3031
+ [9849a07 | 2009-01-05 17:41:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
2920
3032
 
2921
3033
  * fix setup for cache spec
2922
3034
 
2923
- [25c5303 | 2009-01-05 09:39:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3035
+ [25c5303 | 2009-01-05 17:39:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2924
3036
 
2925
3037
  * Unify requires for specs and don't use Lint
2926
3038
 
2927
- [353ebb2 | 2009-01-05 09:38:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
3039
+ [353ebb2 | 2009-01-05 17:38:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2928
3040
 
2929
3041
  * Allow choice between Fiber and Threads via options
2930
3042
 
2931
- [a814522 | 2009-01-05 09:38:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3043
+ [a814522 | 2009-01-05 17:38:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
2932
3044
 
2933
3045
  * Use new options syntax
2934
3046
 
2935
- [f8982ae | 2009-01-05 09:32:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3047
+ [f8982ae | 2009-01-05 17:32:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
2936
3048
 
2937
3049
  * Refactor sessions, lazy, efficient, and deep
2938
3050
 
2939
- [167e44a | 2009-01-05 09:25:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3051
+ [167e44a | 2009-01-05 17:25:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2940
3052
 
2941
3053
  * Final draft of caching implementation, should fix all problems and be ready for arbitrary backends
2942
3054
 
2943
- [8275eb8 | 2009-01-05 09:24:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
3055
+ [8275eb8 | 2009-01-05 17:24:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
2944
3056
 
2945
3057
  * Action#content_type should be public
2946
3058
 
2947
- [a565059 | 2009-01-05 07:41:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
3059
+ [a565059 | 2009-01-05 15:41:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
2948
3060
 
2949
3061
  * Don't spec spec/innate/cache/common.rb
2950
3062
 
2951
- [96caaf5 | 2009-01-05 07:41:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3063
+ [96caaf5 | 2009-01-05 15:41:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2952
3064
 
2953
3065
  * Add Options#method_missing and #dsl reopens the previous Options instance
2954
3066
 
2955
- [1b564e7 | 2009-01-05 07:40:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3067
+ [1b564e7 | 2009-01-05 15:40:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
2956
3068
 
2957
3069
  * Require date in rakefile
2958
3070
 
2959
- [4fa57b7 | 2009-01-04 09:58:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
3071
+ [4fa57b7 | 2009-01-04 17:58:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2960
3072
 
2961
3073
  * Make trap optional
2962
3074
 
2963
- [26d161c | 2009-01-04 07:56:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
3075
+ [26d161c | 2009-01-04 15:56:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
2964
3076
 
2965
3077
  * Some more functionality for Options, use it
2966
3078
 
2967
- [3a535ea | 2009-01-03 09:24:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3079
+ [3a535ea | 2009-01-03 17:24:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
2968
3080
 
2969
3081
  * Better namespaced configuration, not as convenient or magical but much more effective
2970
3082
 
2971
- [8522a01 | 2009-01-01 15:00:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3083
+ [8522a01 | 2009-01-01 23:00:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
2972
3084
 
2973
3085
  * Allow deleting session data
2974
3086
 
2975
- [9ef3b8a | 2009-01-01 15:00:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
3087
+ [9ef3b8a | 2009-01-01 23:00:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
2976
3088
 
2977
3089
  * Remove useless stuff from marshal store
2978
3090
 
2979
- [75916be | 2009-01-01 14:59:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3091
+ [75916be | 2009-01-01 22:59:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
2980
3092
 
2981
3093
  * Allow setting port
2982
3094
 
2983
- [01fa845 | 2008-12-31 10:51:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3095
+ [01fa845 | 2008-12-31 18:51:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
2984
3096
 
2985
3097
  * the session cache defaults already, add more docs for Cache
2986
3098
 
2987
- [1d3f663 | 2008-12-31 10:20:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3099
+ [1d3f663 | 2008-12-31 18:20:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2988
3100
 
2989
3101
  * Unify Cache::(Marshal|YAML) and simplify specs
2990
3102
 
2991
- [a496e6e | 2008-12-31 10:10:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
3103
+ [a496e6e | 2008-12-31 18:10:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
2992
3104
 
2993
3105
  * Clean up Cache::YAML
2994
3106
 
2995
- [08c9bd0 | 2008-12-31 10:09:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
3107
+ [08c9bd0 | 2008-12-31 18:09:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
2996
3108
 
2997
3109
  * Add Cache::Marshal
2998
3110
 
2999
- [95ec4fc | 2008-12-31 09:32:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3111
+ [95ec4fc | 2008-12-31 17:32:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3000
3112
 
3001
3113
  * HTML templates may have .htm extension
3002
3114
 
3003
- [d2470a7 | 2008-12-31 09:32:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3115
+ [d2470a7 | 2008-12-31 17:32:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3004
3116
 
3005
3117
  * Add Maruku templating engine
3006
3118
 
3007
- [10bf350 | 2008-12-31 09:23:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3119
+ [10bf350 | 2008-12-31 17:23:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3008
3120
 
3009
3121
  * Only things that include Node are comparable with it
3010
3122
 
3011
- [f41b1ea | 2008-12-31 09:22:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3123
+ [f41b1ea | 2008-12-31 17:22:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3012
3124
 
3013
3125
  * Prepare Helper so Ramaze can inject its own path and namespace
3014
3126
 
3015
- [940e3f6 | 2008-12-31 09:21:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3127
+ [940e3f6 | 2008-12-31 17:21:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3016
3128
 
3017
3129
  * Break up if nothing is mapped
3018
3130
 
3019
- [af1da32 | 2008-12-31 09:21:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3131
+ [af1da32 | 2008-12-31 17:21:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3020
3132
 
3021
3133
  * Layout may be a special layout file, a method or a normal template
3022
3134
 
3023
- [68cf7c1 | 2008-12-31 09:20:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3135
+ [68cf7c1 | 2008-12-31 17:20:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3024
3136
 
3025
3137
  * Move VERSION into lib/innate/version.rb
3026
3138
 
3027
- [e963c21 | 2008-12-31 09:16:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3139
+ [e963c21 | 2008-12-31 17:16:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3028
3140
 
3029
3141
  * Add erb templating
3030
3142
 
3031
- [9fe7fea | 2008-12-31 03:00:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3143
+ [9fe7fea | 2008-12-31 11:00:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3032
3144
 
3033
3145
  * Update gemspec
3034
3146
 
3035
- [2f70869 | 2008-12-31 03:00:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
3147
+ [2f70869 | 2008-12-31 11:00:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
3036
3148
 
3037
3149
  * Remove bin/innate from gespec
3038
3150
 
3039
- [10acbc0 | 2008-12-31 02:36:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3151
+ [10acbc0 | 2008-12-31 10:36:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3040
3152
 
3041
3153
  * Version 2008.12.31
3042
3154
 
3043
- [6e3a0d5 | 2008-12-31 00:21:19 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3155
+ [6e3a0d5 | 2008-12-31 08:21:19 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3044
3156
 
3045
3157
  * Numerous minor English corrections and adjustments.
3046
3158
 
3047
3159
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
3048
3160
 
3049
- [b5ea6a4 | 2008-12-30 13:20:10 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3161
+ [b5ea6a4 | 2008-12-30 21:20:10 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3050
3162
 
3051
3163
  * A few minor English adjustments in README.
3052
3164
 
3053
3165
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
3054
3166
 
3055
- [b85da01 | 2008-12-30 03:02:41 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3167
+ [b85da01 | 2008-12-30 11:02:41 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3056
3168
 
3057
3169
  * Corrected wrong statement about Innate.
3058
3170
 
3059
3171
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
3060
3172
 
3061
- [464a25e | 2008-12-30 02:58:32 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3173
+ [464a25e | 2008-12-30 10:58:32 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3062
3174
 
3063
3175
  * One small change in choice of words.
3064
3176
 
3065
3177
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
3066
3178
 
3067
- [14e356e | 2008-12-30 02:56:36 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3179
+ [14e356e | 2008-12-30 10:56:36 UTC] Pistos <gitsomegrace.5.pistos@geoshell.com>
3068
3180
 
3069
3181
  * Some English adjustments in README.
3070
3182
 
3071
3183
  Signed-off-by: Michael Fellinger <m.fellinger@gmail.com>
3072
3184
 
3073
- [2848eb6 | 2008-12-30 09:01:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3185
+ [2848eb6 | 2008-12-30 17:01:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3074
3186
 
3075
3187
  * Add spec for options, not passing yet
3076
3188
 
3077
- [3c12d1c | 2008-12-30 09:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3189
+ [3c12d1c | 2008-12-30 17:00:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3078
3190
 
3079
3191
  * Better spec setup
3080
3192
 
3081
- [4e58286 | 2008-12-30 09:00:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3193
+ [4e58286 | 2008-12-30 17:00:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3082
3194
 
3083
3195
  * Refactor option.rb
3084
3196
 
3085
- [5f56567 | 2008-12-30 08:59:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3197
+ [5f56567 | 2008-12-30 16:59:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3086
3198
 
3087
3199
  * Make use of new caching in Session
3088
3200
 
3089
- [b4ff9c1 | 2008-12-30 08:58:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
3201
+ [b4ff9c1 | 2008-12-30 16:58:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
3090
3202
 
3091
3203
  * Small refactor regarding Innate.options and startup
3092
3204
 
3093
- [ad3a45f | 2008-12-30 06:52:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3205
+ [ad3a45f | 2008-12-30 14:52:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3094
3206
 
3095
3207
  * Execute update_method_arities only once every request, add docs
3096
3208
 
3097
- [b4d956e | 2008-12-30 06:44:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3209
+ [b4d956e | 2008-12-30 14:44:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3098
3210
 
3099
3211
  * Correct order of ancestor lookup, make spec
3100
3212
 
3101
- [9e55aa6 | 2008-12-30 06:42:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
3213
+ [9e55aa6 | 2008-12-30 14:42:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
3102
3214
 
3103
3215
  * Fix node subclassing, for now
3104
3216
 
3105
- [0c6526b | 2008-12-30 02:53:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3217
+ [0c6526b | 2008-12-30 10:53:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3106
3218
 
3107
3219
  * Exapnd readme even more :)
3108
3220
 
3109
- [9f6e69e | 2008-12-29 08:14:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
3221
+ [9f6e69e | 2008-12-29 16:14:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
3110
3222
 
3111
3223
  * Update readme with future plans for ramaze
3112
3224
 
3113
- [9ac04bd | 2008-12-28 11:06:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3225
+ [9ac04bd | 2008-12-28 19:06:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3114
3226
 
3115
3227
  * Update readme, more to come
3116
3228
 
3117
- [2e7a9d4 | 2008-12-28 09:52:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3229
+ [2e7a9d4 | 2008-12-28 17:52:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3118
3230
 
3119
3231
  * Don't actually modify repo on release, just output needed steps
3120
3232
 
3121
- [c89e0ce | 2008-12-28 09:47:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3233
+ [c89e0ce | 2008-12-28 17:47:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3122
3234
 
3123
3235
  * Don't override rubys VERSION
3124
3236
 
3125
- [c074bc1 | 2008-12-28 09:45:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3237
+ [c074bc1 | 2008-12-28 17:45:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3126
3238
 
3127
3239
  * Really add robust_params now
3128
3240
 
3129
- [36157e3 | 2008-12-28 09:42:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3241
+ [36157e3 | 2008-12-28 17:42:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3130
3242
 
3131
3243
  * Update Rakefile with release task
3132
3244
 
3133
- [bfc3b84 | 2008-12-28 09:42:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
3245
+ [bfc3b84 | 2008-12-28 17:42:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
3134
3246
 
3135
3247
  * Add Request#robust_params and remove useless spec
3136
3248
 
3137
- [fb076fa | 2008-12-28 09:30:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3249
+ [fb076fa | 2008-12-28 17:30:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3138
3250
 
3139
3251
  * Add Rakefile
3140
3252
 
3141
- [7eebd57 | 2008-12-28 09:30:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
3253
+ [7eebd57 | 2008-12-28 17:30:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
3142
3254
 
3143
3255
  * Add copyright
3144
3256
 
3145
- [770e0e7 | 2008-12-28 08:02:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
3257
+ [770e0e7 | 2008-12-28 16:02:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
3146
3258
 
3147
3259
  * Rename whywiki to whywiki_haml
3148
3260
 
3149
- [26a4093 | 2008-12-28 07:29:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3261
+ [26a4093 | 2008-12-28 15:29:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3150
3262
 
3151
3263
  * Finally add a gemspec
3152
3264
 
3153
- [71f4adc | 2008-12-28 07:29:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3265
+ [71f4adc | 2008-12-28 15:29:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3154
3266
 
3155
3267
  * Remove the favicon.svg
3156
3268
 
3157
- [e5a89c4 | 2008-12-28 07:25:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3269
+ [e5a89c4 | 2008-12-28 15:25:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3158
3270
 
3159
3271
  * Minor update to readme
3160
3272
 
3161
- [93dee0b | 2008-12-27 04:47:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3273
+ [93dee0b | 2008-12-27 12:47:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3162
3274
 
3163
3275
  * the nagoro layout uses nagoro of course
3164
3276
 
3165
- [2633b69 | 2008-12-27 04:45:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
3277
+ [2633b69 | 2008-12-27 12:45:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
3166
3278
 
3167
3279
  * Add Nagoro templating engine
3168
3280
 
3169
- [93c347f | 2008-12-27 04:45:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3281
+ [93c347f | 2008-12-27 12:45:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3170
3282
 
3171
3283
  * Add Innate::sync as shortcut for Innate::STATE.sync
3172
3284
 
3173
- [d8299a0 | 2008-12-27 04:45:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3285
+ [d8299a0 | 2008-12-27 12:45:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3174
3286
 
3175
3287
  * Use __send__ to talk with Node
3176
3288
 
3177
- [aad2313 | 2008-12-27 04:44:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3289
+ [aad2313 | 2008-12-27 12:44:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3178
3290
 
3179
3291
  * methods in Innate module are all module_function
3180
3292
 
3181
- [1abdaa0 | 2008-12-27 04:44:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3293
+ [1abdaa0 | 2008-12-27 12:44:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3182
3294
 
3183
3295
  * Use STATE.sync to avoid nested transactions to PStore
3184
3296
 
3185
- [c00ad1d | 2008-12-27 04:43:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3297
+ [c00ad1d | 2008-12-27 12:43:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3186
3298
 
3187
3299
  * Add whywiki with nagoro templates
3188
3300
 
3189
- [ec64847 | 2008-12-27 03:29:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3301
+ [ec64847 | 2008-12-27 11:29:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3190
3302
 
3191
3303
  * Handle empty haml templates gracefully, allow symbols to indicate layout names
3192
3304
 
3193
- [c1f528b | 2008-12-27 03:29:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
3305
+ [c1f528b | 2008-12-27 11:29:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
3194
3306
 
3195
3307
  * Error handling explained
3196
3308
 
3197
- [a9f657c | 2008-12-27 03:28:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3309
+ [a9f657c | 2008-12-27 11:28:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3198
3310
 
3199
3311
  * Don't output debugging info on startup anymore
3200
3312
 
3201
- [1b6ea66 | 2008-12-27 03:28:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3313
+ [1b6ea66 | 2008-12-27 11:28:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3202
3314
 
3203
3315
  * Add generic spec helper
3204
3316
 
3205
- [ffe012d | 2008-12-27 03:28:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3317
+ [ffe012d | 2008-12-27 11:28:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
3206
3318
 
3207
3319
  * Add example/app/whywiki, 15 lines smaller than ramaze (63 LoC)
3208
3320
 
3209
- [5d00cf3 | 2008-12-26 14:50:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3321
+ [5d00cf3 | 2008-12-26 22:50:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3210
3322
 
3211
3323
  * Fix bug in Helper::Link, make specs work
3212
3324
 
3213
- [6067687 | 2008-12-26 14:46:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
3325
+ [6067687 | 2008-12-26 22:46:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
3214
3326
 
3215
3327
  * A bit of docs for Innate::View
3216
3328
 
3217
- [63d2bbd | 2008-12-26 14:46:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3329
+ [63d2bbd | 2008-12-26 22:46:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3218
3330
 
3219
3331
  * Document Innate::State::Thread and Innate::State::Fiber
3220
3332
 
3221
- [4d8fe6d | 2008-12-26 14:46:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3333
+ [4d8fe6d | 2008-12-26 22:46:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3222
3334
 
3223
3335
  * Document Innate::StateAccessor
3224
3336
 
3225
- [122472e | 2008-12-26 14:45:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3337
+ [122472e | 2008-12-26 22:45:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3226
3338
 
3227
3339
  * Minor docs for session
3228
3340
 
3229
- [a44618a | 2008-12-26 14:45:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3341
+ [a44618a | 2008-12-26 22:45:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3230
3342
 
3231
3343
  * Document Innate::Request
3232
3344
 
3233
- [853cbb7 | 2008-12-26 14:44:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3345
+ [853cbb7 | 2008-12-26 22:44:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3234
3346
 
3235
3347
  * Document Innate::Node
3236
3348
 
3237
- [bf4240f | 2008-12-26 14:44:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
3349
+ [bf4240f | 2008-12-26 22:44:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
3238
3350
 
3239
3351
  * Better Node#action_not_found
3240
3352
 
3241
- [ef2d77c | 2008-12-26 14:43:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
3353
+ [ef2d77c | 2008-12-26 22:43:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
3242
3354
 
3243
3355
  * Handle empty PATH_INFO reasonably, log failure
3244
3356
 
3245
- [882b793 | 2008-12-26 14:41:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3357
+ [882b793 | 2008-12-26 22:41:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3246
3358
 
3247
3359
  * Document Innate::Helper
3248
3360
 
3249
- [a7c3887 | 2008-12-26 14:41:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3361
+ [a7c3887 | 2008-12-26 22:41:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3250
3362
 
3251
3363
  * Document Innate::DynaMap
3252
3364
 
3253
- [816dad6 | 2008-12-26 14:41:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
3365
+ [816dad6 | 2008-12-26 22:41:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
3254
3366
 
3255
3367
  * Document Innate::Current
3256
3368
 
3257
- [24bc498 | 2008-12-26 14:40:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3369
+ [24bc498 | 2008-12-26 22:40:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3258
3370
 
3259
3371
  * Document Innate::Adapter
3260
3372
 
3261
- [9493582 | 2008-12-26 14:40:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3373
+ [9493582 | 2008-12-26 22:40:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3262
3374
 
3263
3375
  * Avoid useless variable in the thread wrapper
3264
3376
 
3265
- [d989063 | 2008-12-26 14:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3377
+ [d989063 | 2008-12-26 22:39:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3266
3378
 
3267
3379
  * Some improvments to StateAccessor
3268
3380
 
3269
- [cf47b2e | 2008-12-26 14:37:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3381
+ [cf47b2e | 2008-12-26 22:37:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3270
3382
 
3271
3383
  * Only include Innate::Helper, that will take care of Trinity already
3272
3384
 
3273
- [76cd130 | 2008-12-26 14:36:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3385
+ [76cd130 | 2008-12-26 22:36:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3274
3386
 
3275
3387
  * A bit of cleanup for Action
3276
3388
 
3277
- [e6b16fc | 2008-12-26 14:36:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3389
+ [e6b16fc | 2008-12-26 22:36:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3278
3390
 
3279
3391
  * Add Action#content_type=
3280
3392
 
3281
- [f49d415 | 2008-12-26 14:35:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3393
+ [f49d415 | 2008-12-26 22:35:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3282
3394
 
3283
3395
  * Innate::call can optionally take a parameter that indicates the cached middleware stack to use
3284
3396
 
3285
- [8b6caa1 | 2008-12-26 14:35:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
3397
+ [8b6caa1 | 2008-12-26 22:35:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
3286
3398
 
3287
3399
  * Add Request#local_net? and rename Request#locales to Request#accept_language
3288
3400
 
3289
- [02c4df7 | 2008-12-26 14:32:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3401
+ [02c4df7 | 2008-12-26 22:32:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3290
3402
 
3291
3403
  * Don't mess up the if innate is there already
3292
3404
 
3293
- [bf5c96c | 2008-12-26 14:32:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3405
+ [bf5c96c | 2008-12-26 22:32:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3294
3406
 
3295
3407
  * Update README with two quick samples of usage
3296
3408
 
3297
- [035b03e | 2008-12-26 14:31:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3409
+ [035b03e | 2008-12-26 22:31:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3298
3410
 
3299
3411
  * Add new example to show how to spec
3300
3412
 
3301
- [bfbcb08 | 2008-12-24 04:27:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3413
+ [bfbcb08 | 2008-12-24 12:27:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3302
3414
 
3303
3415
  * Give respond/respond! some default values
3304
3416
 
3305
- [d491aaa | 2008-12-18 06:23:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3417
+ [d491aaa | 2008-12-18 14:23:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
3306
3418
 
3307
3419
  * give middleware_compiler a handy shortcut for static directories
3308
3420
 
3309
- [5090bee | 2008-11-16 11:42:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
3421
+ [5090bee | 2008-11-16 19:42:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
3310
3422
 
3311
3423
  * Some basic methods for Request
3312
3424
 
3313
- [aeebe55 | 2008-11-16 11:42:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
3425
+ [aeebe55 | 2008-11-16 19:42:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
3314
3426
 
3315
3427
  * Minor refactor after a peek via reek
3316
3428
 
3317
- [03580f4 | 2008-11-16 11:41:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3429
+ [03580f4 | 2008-11-16 19:41:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3318
3430
 
3319
3431
  * Remove wiki example
3320
3432
 
3321
- [ce29024 | 2008-10-10 14:41:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
3433
+ [ce29024 | 2008-10-10 21:41:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
3322
3434
 
3323
3435
  * Only load coderay stylesheet if set
3324
3436
 
3325
- [eafd404 | 2008-10-10 14:39:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3437
+ [eafd404 | 2008-10-10 21:39:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3326
3438
 
3327
3439
  * Speed up index page x3
3328
3440
 
3329
- [a543b33 | 2008-10-10 14:07:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3441
+ [a543b33 | 2008-10-10 21:07:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3330
3442
 
3331
3443
  * Avoid too much debugging output
3332
3444
 
3333
- [7e1cf38 | 2008-10-10 14:06:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3445
+ [7e1cf38 | 2008-10-10 21:06:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3334
3446
 
3335
3447
  * Support feeds in wiki
3336
3448
 
3337
- [78338d3 | 2008-10-09 14:08:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
3449
+ [78338d3 | 2008-10-09 21:08:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
3338
3450
 
3339
3451
  * Major updates to wiki
3340
3452
 
3341
- [547e6f9 | 2008-10-09 07:25:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3453
+ [547e6f9 | 2008-10-09 14:25:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3342
3454
 
3343
3455
  * History and localization for wiki
3344
3456
 
3345
- [866c9a9 | 2008-10-09 05:40:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3457
+ [866c9a9 | 2008-10-09 12:40:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3346
3458
 
3347
3459
  * Fix code highlighting
3348
3460
 
3349
- [d10d3a5 | 2008-10-06 13:49:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3461
+ [d10d3a5 | 2008-10-06 20:49:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3350
3462
 
3351
3463
  * Adapt wiki for new loadpath and swfs
3352
3464
 
3353
- [73b95f2 | 2008-10-06 13:48:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3465
+ [73b95f2 | 2008-10-06 20:48:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3354
3466
 
3355
3467
  * Adding org
3356
3468
 
3357
- [cb4289d | 2008-10-06 13:46:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3469
+ [cb4289d | 2008-10-06 20:46:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3358
3470
 
3359
3471
  * Adding the screencasts
3360
3472
 
3361
- [864170c | 2008-10-06 13:33:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3473
+ [864170c | 2008-10-06 20:33:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3362
3474
 
3363
3475
  * Minor changes to smongrel and emongrel
3364
3476
 
3365
- [c96c73b | 2008-10-06 13:33:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
3477
+ [c96c73b | 2008-10-06 20:33:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
3366
3478
 
3367
3479
  * Fixing the link helper
3368
3480
 
3369
- [16b6383 | 2008-10-06 13:32:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3481
+ [16b6383 | 2008-10-06 20:32:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3370
3482
 
3371
3483
  * Adding innate/request
3372
3484
 
3373
- [bc3b59d | 2008-10-06 13:32:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3485
+ [bc3b59d | 2008-10-06 20:32:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
3374
3486
 
3375
3487
  * Current::action and Current::actions
3376
3488
 
3377
- [1a302c2 | 2008-10-06 13:30:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3489
+ [1a302c2 | 2008-10-06 20:30:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3378
3490
 
3379
3491
  * Major update to wiki, almost done.
3380
3492
 
3381
- [e2b07a1 | 2008-10-04 11:56:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3493
+ [e2b07a1 | 2008-10-04 18:56:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
3382
3494
 
3383
3495
  * Layout shouldn't invoke node method again
3384
3496
 
3385
- [cf743d0 | 2008-09-30 13:17:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3497
+ [cf743d0 | 2008-09-30 20:17:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
3386
3498
 
3387
3499
  * Fix typo
3388
3500
 
3389
- [4b36ea6 | 2008-09-30 13:15:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3501
+ [4b36ea6 | 2008-09-30 20:15:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3390
3502
 
3391
3503
  * Wishful thinking, now real!
3392
3504
 
3393
- [0d5138e | 2008-09-30 13:15:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
3505
+ [0d5138e | 2008-09-30 20:15:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
3394
3506
 
3395
3507
  * Refactor of Redirect helper
3396
3508
 
3397
- [9a4fa66 | 2008-09-30 13:14:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
3509
+ [9a4fa66 | 2008-09-30 20:14:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
3398
3510
 
3399
3511
  * Fix Action, method value has lower priority
3400
3512
 
3401
- [a8445bb | 2008-09-30 08:13:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3513
+ [a8445bb | 2008-09-30 15:13:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3402
3514
 
3403
3515
  * Example for the new mime-type based functionality
3404
3516
 
3405
- [b8335aa | 2008-09-30 08:13:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3517
+ [b8335aa | 2008-09-30 15:13:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3406
3518
 
3407
3519
  * Intelligently handle requests to *.json or *.yaml
3408
3520
 
3409
- [f2ea5cd | 2008-09-30 07:11:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3521
+ [f2ea5cd | 2008-09-30 14:11:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
3410
3522
 
3411
3523
  * Remove debugging output
3412
3524
 
3413
- [384306d | 2008-09-30 07:11:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3525
+ [384306d | 2008-09-30 14:11:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3414
3526
 
3415
3527
  * View is a module
3416
3528
 
3417
- [b1b14df | 2008-09-30 07:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3529
+ [b1b14df | 2008-09-30 14:11:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3418
3530
 
3419
3531
  * Incoporate wish into view lookup and simplify
3420
3532
 
3421
- [47f4112 | 2008-09-30 07:10:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3533
+ [47f4112 | 2008-09-30 14:10:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3422
3534
 
3423
3535
  * custom middleware setup for wiki
3424
3536
 
3425
- [eb2d73b | 2008-09-30 07:10:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3537
+ [eb2d73b | 2008-09-30 14:10:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3426
3538
 
3427
3539
  * Wikis git instance should use Log
3428
3540
 
3429
- [404c879 | 2008-09-29 17:24:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3541
+ [404c879 | 2008-09-30 00:24:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3430
3542
 
3431
3543
  * Improve view.rb and add tenjin
3432
3544
 
3433
- [d647e68 | 2008-09-29 17:23:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3545
+ [d647e68 | 2008-09-30 00:23:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3434
3546
 
3435
3547
  * Better logging
3436
3548
 
3437
- [6ddb623 | 2008-09-29 17:02:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
3549
+ [6ddb623 | 2008-09-30 00:02:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
3438
3550
 
3439
3551
  * Update readme
3440
3552
 
3441
- [8e2eefd | 2008-09-28 10:28:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3553
+ [8e2eefd | 2008-09-28 17:28:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3442
3554
 
3443
3555
  * View is a module
3444
3556
 
3445
- [f6fa84d | 2008-09-28 10:27:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
3557
+ [f6fa84d | 2008-09-28 17:27:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
3446
3558
 
3447
3559
  * Don't fail if no view dir is there, less barking
3448
3560
 
3449
- [97da233 | 2008-09-28 10:27:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3561
+ [97da233 | 2008-09-28 17:27:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3450
3562
 
3451
3563
  * Don't overwrite response.status
3452
3564
 
3453
- [0909c3c | 2008-09-28 10:27:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3565
+ [0909c3c | 2008-09-28 17:27:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3454
3566
 
3455
3567
  * Remove cruft from innate.rb
3456
3568
 
3457
- [91e0c5a | 2008-09-28 10:26:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3569
+ [91e0c5a | 2008-09-28 17:26:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3458
3570
 
3459
3571
  * Allow custom middleware and improve setup
3460
3572
 
3461
- [ddb4790 | 2008-09-28 10:24:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3573
+ [ddb4790 | 2008-09-28 17:24:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3462
3574
 
3463
3575
  * Move DynaMap into its own file
3464
3576
 
3465
- [68be38f | 2008-09-28 10:24:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3577
+ [68be38f | 2008-09-28 17:24:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
3466
3578
 
3467
3579
  * Add custom_middleware example
3468
3580
 
3469
- [9b36583 | 2008-09-28 09:35:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3581
+ [9b36583 | 2008-09-28 16:35:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
3470
3582
 
3471
3583
  * Add coderay css
3472
3584
 
3473
- [76fcd85 | 2008-09-28 09:34:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
3585
+ [76fcd85 | 2008-09-28 16:34:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
3474
3586
 
3475
3587
  * Adding innate/setup.rb as stub for the ramaze one
3476
3588
 
3477
- [bbde91a | 2008-09-28 09:34:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
3589
+ [bbde91a | 2008-09-28 16:34:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
3478
3590
 
3479
3591
  * Extend Innate::View, add Builder
3480
3592
 
3481
- [7d5446b | 2008-09-28 09:33:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3593
+ [7d5446b | 2008-09-28 16:33:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
3482
3594
 
3483
3595
  * Add mutex for Thread
3484
3596
 
3485
- [0031baa | 2008-09-28 09:33:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3597
+ [0031baa | 2008-09-28 16:33:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3486
3598
 
3487
3599
  * Improve action lookup for templates by ext
3488
3600
 
3489
- [b0b4558 | 2008-09-28 09:32:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
3601
+ [b0b4558 | 2008-09-28 16:32:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
3490
3602
 
3491
3603
  * Add Innate.start :file => __FILE__ or :dir => dir
3492
3604
 
3493
- [4ed4d95 | 2008-09-28 09:32:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
3605
+ [4ed4d95 | 2008-09-28 16:32:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
3494
3606
 
3495
3607
  * autoload for Rack::Profile
3496
3608
 
3497
- [ff8a776 | 2008-09-28 09:31:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3609
+ [ff8a776 | 2008-09-28 16:31:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
3498
3610
 
3499
3611
  * Some refactoring in wiki
3500
3612
 
3501
- [9593728 | 2008-09-28 09:31:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3613
+ [9593728 | 2008-09-28 16:31:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
3502
3614
 
3503
3615
  * Caching for git requests, major speedup in wiki
3504
3616
 
3505
- [4a836e1 | 2008-09-28 09:30:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3617
+ [4a836e1 | 2008-09-28 16:30:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
3506
3618
 
3507
3619
  * Using coderay for wiki
3508
3620
 
3509
- [56d29c6 | 2008-09-27 07:46:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
3621
+ [56d29c6 | 2008-09-27 14:46:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
3510
3622
 
3511
3623
  * State::Thread relays errors
3512
3624
 
3513
- [248f854 | 2008-09-27 07:46:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
3625
+ [248f854 | 2008-09-27 14:46:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
3514
3626
 
3515
3627
  * Better Helper::Link#r
3516
3628
 
3517
- [c4d3f73 | 2008-09-27 07:45:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3629
+ [c4d3f73 | 2008-09-27 14:45:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
3518
3630
 
3519
3631
  * Improve lookup of app root
3520
3632
 
3521
- [4541d8b | 2008-09-26 14:17:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3633
+ [4541d8b | 2008-09-26 21:17:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
3522
3634
 
3523
3635
  * Innate::Options#to_hash
3524
3636
 
3525
- [5cb29d7 | 2008-09-26 14:17:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3637
+ [5cb29d7 | 2008-09-26 21:17:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3526
3638
 
3527
3639
  * Improve DEFAULT helper lookup
3528
3640
 
3529
- [2dc09bd | 2008-09-26 14:17:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3641
+ [2dc09bd | 2008-09-26 21:17:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
3530
3642
 
3531
3643
  * Require haml on demand
3532
3644
 
3533
- [e52a14f | 2008-09-26 14:17:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3645
+ [e52a14f | 2008-09-26 21:17:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
3534
3646
 
3535
3647
  * Revamp Adapter system
3536
3648
 
3537
- [590295e | 2008-09-26 14:16:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3649
+ [590295e | 2008-09-26 21:16:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3538
3650
 
3539
3651
  * Add Innate::Log stub
3540
3652
 
3541
- [6bdea11 | 2008-09-26 14:15:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3653
+ [6bdea11 | 2008-09-26 21:15:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3542
3654
 
3543
3655
  * Add example/app/retro_games
3544
3656
 
3545
- [b846469 | 2008-09-26 13:39:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3657
+ [b846469 | 2008-09-26 20:39:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3546
3658
 
3547
3659
  * Add README.md
3548
3660
 
3549
- [5804ece | 2008-09-26 12:49:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3661
+ [5804ece | 2008-09-26 19:49:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3550
3662
 
3551
3663
  * Minor refactor of Action
3552
3664
 
3553
- [3483e0c | 2008-09-26 12:31:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3665
+ [3483e0c | 2008-09-26 19:31:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3554
3666
 
3555
3667
  * Remove haml dependency
3556
3668
 
3557
- [4ac02fc | 2008-09-26 12:28:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3669
+ [4ac02fc | 2008-09-26 19:28:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
3558
3670
 
3559
3671
  * Don't require the profile middleware anymore
3560
3672
 
3561
- [2912d04 | 2008-09-26 12:23:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
3673
+ [2912d04 | 2008-09-26 19:23:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
3562
3674
 
3563
3675
  * Smarter helper system
3564
3676
 
@@ -3577,89 +3689,89 @@
3577
3689
  makes more sense, it does the usual: exposing public helper methods to
3578
3690
  lookup for actions.
3579
3691
 
3580
- [f8de255 | 2008-09-21 14:08:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
3692
+ [f8de255 | 2008-09-21 21:08:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
3581
3693
 
3582
3694
  * Add example for Helper::Link
3583
3695
 
3584
- [e6f86ba | 2008-09-21 14:07:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
3696
+ [e6f86ba | 2008-09-21 21:07:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
3585
3697
 
3586
3698
  * Mods to spec for Helper::Link
3587
3699
 
3588
- [348f504 | 2008-09-21 14:07:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3700
+ [348f504 | 2008-09-21 21:07:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
3589
3701
 
3590
3702
  * Mods to Helper::Link
3591
3703
 
3592
- [014537e | 2008-09-21 14:06:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3704
+ [014537e | 2008-09-21 21:06:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3593
3705
 
3594
3706
  * Remove debugging output
3595
3707
 
3596
- [5ca101e | 2008-09-21 14:06:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3708
+ [5ca101e | 2008-09-21 21:06:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
3597
3709
 
3598
3710
  * Default helpers
3599
3711
 
3600
- [7a06d13 | 2008-09-21 13:24:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
3712
+ [7a06d13 | 2008-09-21 20:24:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
3601
3713
 
3602
3714
  * Add :secure option to Session
3603
3715
 
3604
- [1e7dabf | 2008-09-21 12:58:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3716
+ [1e7dabf | 2008-09-21 19:58:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
3605
3717
 
3606
3718
  * Adding helper for aspect and redirect
3607
3719
 
3608
- [8f0a947 | 2008-09-21 12:57:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3720
+ [8f0a947 | 2008-09-21 19:57:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
3609
3721
 
3610
3722
  * Catch :respond and :redirect
3611
3723
 
3612
- [067f96b | 2008-09-21 12:54:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3724
+ [067f96b | 2008-09-21 19:54:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
3613
3725
 
3614
3726
  * Remove strategy.rb
3615
3727
 
3616
- [1a0adb9 | 2008-09-21 12:50:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3728
+ [1a0adb9 | 2008-09-21 19:50:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
3617
3729
 
3618
3730
  * Use Fiber on 1.9 and Thread on 1.8 with less hacks
3619
3731
 
3620
- [e4fe857 | 2008-09-20 09:13:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3732
+ [e4fe857 | 2008-09-20 16:13:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3621
3733
 
3622
3734
  * Adding session example
3623
3735
 
3624
- [1b25235 | 2008-09-20 09:13:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3736
+ [1b25235 | 2008-09-20 16:13:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
3625
3737
 
3626
3738
  * Simpler hello example
3627
3739
 
3628
- [5c43219 | 2008-09-20 09:12:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3740
+ [5c43219 | 2008-09-20 16:12:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
3629
3741
 
3630
3742
  * Adding session and fixing bugs
3631
3743
 
3632
- [5b8ad21 | 2008-09-18 12:57:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3744
+ [5b8ad21 | 2008-09-18 19:57:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3633
3745
 
3634
3746
  * Adding Innate::Helper
3635
3747
 
3636
- [0a60a5b | 2008-09-16 06:52:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3748
+ [0a60a5b | 2008-09-16 13:52:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
3637
3749
 
3638
3750
  * Latest 1.9 finally gives Fiber #initialize, yay!
3639
3751
 
3640
- [446ea5a | 2008-09-16 04:51:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3752
+ [446ea5a | 2008-09-16 11:51:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3641
3753
 
3642
3754
  * Remove failed files from reloader cache
3643
3755
 
3644
- [c365a60 | 2008-09-16 04:51:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3756
+ [c365a60 | 2008-09-16 11:51:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
3645
3757
 
3646
3758
  * Cleanup and put MiddlewareCompiler in own file
3647
3759
 
3648
- [ce3b0f6 | 2008-09-16 04:49:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3760
+ [ce3b0f6 | 2008-09-16 11:49:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
3649
3761
 
3650
3762
  * Some major updates to the wiki
3651
3763
 
3652
- [43fc727 | 2008-09-16 03:22:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3764
+ [43fc727 | 2008-09-16 10:22:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
3653
3765
 
3654
3766
  * Caching middleware and improve node lookup
3655
3767
 
3656
3768
  * Gives us major speed boost
3657
3769
 
3658
- [ac83995 | 2008-09-16 01:36:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3770
+ [ac83995 | 2008-09-16 08:36:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
3659
3771
 
3660
3772
  * Improve action compilation
3661
3773
 
3662
- [ed1f83a | 2008-09-15 11:17:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3774
+ [ed1f83a | 2008-09-15 18:17:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
3663
3775
 
3664
3776
  * Initial commit
3665
3777