ramaze 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/ramaze +58 -26
- data/doc/AUTHORS +2 -0
- data/doc/CHANGELOG +401 -0
- data/doc/README +14 -9
- data/doc/README.html +737 -0
- data/doc/TODO +14 -14
- data/doc/changes.txt +401 -0
- data/doc/changes.xml +401 -0
- data/doc/meta/announcement.txt +28 -15
- data/doc/meta/configuration.txt +3 -3
- data/doc/meta/internals.txt +2 -2
- data/doc/meta/users.kml +62 -0
- data/doc/readme_chunks/examples.txt +1 -1
- data/doc/readme_chunks/features.txt +13 -8
- data/doc/tutorial/todolist.html +2 -2
- data/doc/tutorial/todolist.mkd +2 -2
- data/examples/blog/README +3 -0
- data/examples/blog/spec/blog.rb +101 -0
- data/examples/blog/{main.rb → start.rb} +0 -0
- data/examples/caching.rb +16 -5
- data/examples/layout.rb +41 -0
- data/examples/templates/template_amrita2.rb +1 -1
- data/examples/templates/template_erubis.rb +1 -1
- data/examples/templates/template_ezamar.rb +1 -1
- data/examples/templates/template_haml.rb +1 -1
- data/examples/templates/template_liquid.rb +1 -1
- data/examples/templates/template_markaby.rb +1 -1
- data/examples/templates/template_remarkably.rb +1 -1
- data/examples/todolist/README +1 -0
- data/{spec/examples → examples/todolist/spec}/todolist.rb +3 -3
- data/examples/todolist/{main.rb → start.rb} +0 -0
- data/examples/whywiki/{main.rb → start.rb} +0 -0
- data/examples/wiktacular/README +2 -0
- data/examples/wiktacular/spec/wiktacular.rb +146 -0
- data/examples/wiktacular/src/controller.rb +11 -0
- data/examples/wiktacular/src/model.rb +5 -1
- data/examples/wiktacular/{main.rb → start.rb} +0 -1
- data/examples/wiktacular/template/edit.xhtml +1 -2
- data/examples/wiktacular/template/html_layout.xhtml +27 -0
- data/examples/wiktacular/template/index.xhtml +8 -10
- data/examples/wiktacular/template/new.xhtml +1 -2
- data/lib/proto/{main.rb → start.rb} +0 -0
- data/lib/proto/template/index.xhtml +1 -1
- data/lib/ramaze/action/render.rb +58 -4
- data/lib/ramaze/action.rb +20 -0
- data/lib/ramaze/adapter/cgi.rb +7 -4
- data/lib/ramaze/adapter/fcgi.rb +6 -4
- data/lib/ramaze/adapter/mongrel.rb +4 -0
- data/lib/ramaze/adapter/webrick.rb +20 -9
- data/lib/ramaze/adapter.rb +3 -1
- data/lib/ramaze/cache/memcached.rb +2 -26
- data/lib/ramaze/cache.rb +8 -4
- data/lib/ramaze/controller/resolve.rb +26 -8
- data/lib/ramaze/controller.rb +44 -7
- data/lib/ramaze/dispatcher/action.rb +5 -1
- data/lib/ramaze/dispatcher/directory.rb +115 -0
- data/lib/ramaze/dispatcher/error.rb +19 -5
- data/lib/ramaze/dispatcher/file.rb +2 -2
- data/lib/ramaze/dispatcher.rb +52 -39
- data/lib/ramaze/global/dsl.rb +3 -2
- data/lib/ramaze/global/globalstruct.rb +26 -4
- data/lib/ramaze/global.rb +20 -11
- data/lib/ramaze/helper/aspect.rb +29 -11
- data/lib/ramaze/helper/auth.rb +2 -2
- data/lib/ramaze/helper/cache.rb +2 -0
- data/lib/ramaze/helper/identity.rb +21 -6
- data/lib/ramaze/helper/link.rb +1 -1
- data/lib/ramaze/helper/pager.rb +158 -100
- data/lib/ramaze/helper/partial.rb +22 -0
- data/lib/ramaze/helper/redirect.rb +1 -2
- data/lib/ramaze/helper/stack.rb +1 -1
- data/lib/ramaze/inform/informer.rb +20 -0
- data/lib/ramaze/inform/syslog.rb +5 -0
- data/lib/ramaze/snippets/kernel/__dir__.rb +21 -0
- data/lib/ramaze/snippets/kernel/aquire.rb +22 -12
- data/lib/ramaze/snippets/numeric/human_readable_filesize_format.rb +33 -0
- data/lib/ramaze/snippets/ramaze/caller_lines.rb +1 -1
- data/lib/ramaze/snippets/struct/values_at.rb +11 -4
- data/lib/ramaze/sourcereload.rb +29 -1
- data/{spec → lib/ramaze/spec}/helper/context.rb +0 -0
- data/{spec → lib/ramaze/spec}/helper/layout.rb +1 -1
- data/{spec → lib/ramaze/spec}/helper/minimal.rb +0 -0
- data/{spec → lib/ramaze/spec}/helper/mock_http.rb +0 -0
- data/{spec → lib/ramaze/spec}/helper/requester.rb +0 -0
- data/{spec → lib/ramaze/spec}/helper/simple_http.rb +0 -0
- data/{spec → lib/ramaze/spec}/helper/wrap.rb +0 -0
- data/lib/ramaze/spec/helper.rb +60 -0
- data/lib/ramaze/store/default.rb +3 -0
- data/lib/ramaze/template/ezamar/render_partial.rb +3 -0
- data/lib/ramaze/template/sass.rb +45 -0
- data/lib/ramaze/template.rb +1 -1
- data/lib/ramaze/tool/create.rb +5 -5
- data/lib/ramaze/tool/localize.rb +26 -5
- data/lib/ramaze/tool/mime.rb +7 -0
- data/lib/ramaze/trinity/response.rb +15 -0
- data/lib/ramaze/trinity/session.rb +1 -1
- data/lib/ramaze/version.rb +1 -1
- data/lib/ramaze.rb +5 -0
- data/rake_tasks/conf.rake +4 -4
- data/rake_tasks/maintaince.rake +12 -7
- data/rake_tasks/spec.rake +7 -4
- data/spec/examples/caching.rb +6 -8
- data/spec/helper.rb +3 -60
- data/spec/ramaze/action/basics.rb +17 -0
- data/spec/ramaze/action/cache.rb +28 -0
- data/spec/ramaze/action/layout.rb +110 -0
- data/spec/ramaze/action/render.rb +14 -0
- data/spec/ramaze/action/template/bar.xhtml +1 -0
- data/spec/ramaze/action/template/other_wrapper.xhtml +1 -0
- data/spec/ramaze/action/template/single_wrapper.xhtml +1 -0
- data/spec/ramaze/controller/template/edit/content.xhtml +1 -0
- data/spec/ramaze/controller/template/edit.xhtml +1 -0
- data/spec/ramaze/controller/template_resolving.rb +2 -2
- data/spec/ramaze/dispatcher/directory.rb +53 -0
- data/spec/ramaze/dispatcher/file.rb +0 -3
- data/spec/ramaze/error.rb +17 -2
- data/spec/ramaze/helper/aspect.rb +14 -20
- data/spec/ramaze/helper/pager.rb +83 -1
- data/spec/ramaze/helper/partial.rb +1 -1
- data/spec/ramaze/helper/template/test_template.xhtml +1 -0
- data/spec/ramaze/inform/informer.rb +37 -5
- data/spec/ramaze/localize.rb +1 -1
- data/spec/ramaze/template/haml.rb +5 -5
- data/spec/ramaze/template/sass/file.css.sass +5 -0
- data/spec/ramaze/template/sass.rb +46 -0
- data/spec/ramaze/template.rb +1 -1
- data/spec/ramaze/trinity/session.rb +27 -0
- data/spec/snippets/kernel/__dir__.rb +8 -0
- data/spec/snippets/kernel/aquire.rb +71 -0
- data/spec/snippets/kernel/constant.rb +27 -0
- data/spec/snippets/numeric/human_readable_filesize_format.rb +11 -0
- data/spec/snippets/ramaze/caller_info.rb +39 -0
- data/spec/snippets/ramaze/caller_lines.rb +27 -0
- data/spec/snippets/string/DIVIDE.rb +18 -0
- data/spec/snippets/string/camel_case.rb +25 -0
- data/spec/snippets/string/color.rb +11 -0
- data/spec/snippets/string/snake_case.rb +17 -0
- data/spec/snippets/struct/fill.rb +27 -0
- data/spec/snippets/struct/values_at.rb +39 -0
- metadata +71 -31
- data/examples/todolist/todolist.db +0 -5
- data/examples/wiktacular/src/page.rb +0 -66
- data/lib/ramaze/helper/feed.rb +0 -135
- data/lib/ramaze/helper/form.rb +0 -204
- data/lib/ramaze/snippets/openstruct/temp.rb +0 -13
- data/lib/ramaze/store/yaml.rb +0 -170
- data/spec/ramaze/helper/feed.rb +0 -127
- data/spec/ramaze/helper/form.rb +0 -146
- data/spec/ramaze/store/yaml.rb +0 -76
data/doc/TODO
CHANGED
|
@@ -5,20 +5,20 @@ position specified in the list.
|
|
|
5
5
|
/home/manveru/prog/projects/ramaze/lib/ramaze/template/ezamar/morpher.rb
|
|
6
6
|
- Add pure Ruby implementation as a fall-back.
|
|
7
7
|
|
|
8
|
-
/home/manveru/prog/projects/ramaze/lib/ramaze/helper/
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
/home/manveru/prog/projects/ramaze/lib/ramaze/helper/pager.rb
|
|
9
|
+
++
|
|
10
|
+
|
|
11
|
+
/home/manveru/prog/projects/ramaze/spec/ramaze/action/basics.rb
|
|
12
|
+
|
|
13
|
+
/home/manveru/prog/projects/ramaze/lib/ramaze/action.rb
|
|
14
|
+
|
|
15
|
+
/home/manveru/prog/projects/ramaze/lib/ramaze/template/ezamar/engine.rb
|
|
16
|
+
- provide C version or maybe use erbuis
|
|
17
|
+
|
|
18
|
+
/home/manveru/prog/projects/ramaze/lib/ramaze/helper/identity.rb
|
|
19
|
+
- maybe using StackHelper, but this is a really minimal overlap?
|
|
20
|
+
|
|
21
|
+
/home/manveru/prog/projects/ramaze/spec/snippets/ramaze/caller_info.rb
|
|
19
22
|
|
|
20
23
|
/home/manveru/prog/projects/ramaze/lib/ramaze/helper/redirect.rb
|
|
21
24
|
- maybe some more options, like a delay
|
|
22
|
-
|
|
23
|
-
/home/manveru/prog/projects/ramaze/lib/ramaze/template/ezamar.rb
|
|
24
|
-
- put the pipeline into the Controller for use with all templates.
|
data/doc/changes.txt
CHANGED
|
@@ -1,3 +1,404 @@
|
|
|
1
|
+
Thu Sep 6 21:24:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
2
|
+
* Update doc/AUTHORS
|
|
3
|
+
|
|
4
|
+
Thu Sep 6 21:21:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
5
|
+
* Update announcement
|
|
6
|
+
|
|
7
|
+
Thu Sep 6 14:28:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
8
|
+
* Fixing some more spaces.
|
|
9
|
+
|
|
10
|
+
Thu Sep 6 14:28:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
11
|
+
* Adding (c) to Numeric#human_readable_filesize_format
|
|
12
|
+
|
|
13
|
+
Thu Sep 6 14:27:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
14
|
+
* Adding --instant option to start bin/ramaze with an empty controller.
|
|
15
|
+
|
|
16
|
+
Thu Sep 6 14:23:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
17
|
+
* Adding Numeric#human_readable_filesize_format and using it in the directory-listing.
|
|
18
|
+
|
|
19
|
+
Thu Sep 6 01:10:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
20
|
+
* remove some useless debugging-information
|
|
21
|
+
|
|
22
|
+
Thu Sep 6 00:57:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
23
|
+
* remove deprecated spec from dispatcher/file
|
|
24
|
+
|
|
25
|
+
Thu Sep 6 00:52:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
26
|
+
* Remove the now useless controller/directory
|
|
27
|
+
|
|
28
|
+
Thu Sep 6 00:50:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
29
|
+
* Minor fix to Action#extended_path
|
|
30
|
+
|
|
31
|
+
Thu Sep 6 00:46:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
32
|
+
* Medium refactoring of bin/ramaze, adding better functionality in Global for it and adding some niceties for Global.public_root/template_root
|
|
33
|
+
|
|
34
|
+
Thu Sep 6 00:41:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
35
|
+
* Fixing directory listing and adding spec
|
|
36
|
+
|
|
37
|
+
Wed Sep 5 19:52:59 JST 2007 rff.rff@gmail.com
|
|
38
|
+
* spec for Informer case statement in initialize
|
|
39
|
+
|
|
40
|
+
Wed Sep 5 19:07:09 JST 2007 rff.rff@gmail.com
|
|
41
|
+
* spec for Action#to_hash
|
|
42
|
+
|
|
43
|
+
Wed Sep 5 18:36:22 JST 2007 rff.rff@gmail.com
|
|
44
|
+
* spec for Struct#values_at
|
|
45
|
+
|
|
46
|
+
Wed Sep 5 18:34:39 JST 2007 rff.rff@gmail.com
|
|
47
|
+
* spec for Struct#fill
|
|
48
|
+
|
|
49
|
+
Wed Sep 5 18:32:13 JST 2007 rff.rff@gmail.com
|
|
50
|
+
* make snippets/struct/values_at behaviour compatible with standard ruby
|
|
51
|
+
|
|
52
|
+
Wed Sep 5 13:14:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
53
|
+
* The usual, fixing some end-spaces.
|
|
54
|
+
|
|
55
|
+
Tue Sep 4 21:10:56 JST 2007 rff.rff@gmail.com
|
|
56
|
+
* doc fix for caller_lines
|
|
57
|
+
|
|
58
|
+
Tue Sep 4 21:07:59 JST 2007 rff.rff@gmail.com
|
|
59
|
+
* spec for Ramaze#caller_lines
|
|
60
|
+
|
|
61
|
+
Tue Sep 4 20:54:14 JST 2007 rff.rff@gmail.com
|
|
62
|
+
* spec for Ramaze#caller_info
|
|
63
|
+
|
|
64
|
+
Mon Sep 3 19:56:07 JST 2007 rff.rff@gmail.com
|
|
65
|
+
* remove useless snippets/openstruct
|
|
66
|
+
|
|
67
|
+
Mon Sep 3 19:41:57 JST 2007 rff.rff@gmail.com
|
|
68
|
+
* spec for String#snake_case
|
|
69
|
+
|
|
70
|
+
Mon Sep 3 19:35:56 JST 2007 rff.rff@gmail.com
|
|
71
|
+
* spec for String#DIVIDE
|
|
72
|
+
|
|
73
|
+
Mon Sep 3 19:31:55 JST 2007 rff.rff@gmail.com
|
|
74
|
+
* spec for String#color
|
|
75
|
+
|
|
76
|
+
Mon Sep 3 19:24:05 JST 2007 rff.rff@gmail.com
|
|
77
|
+
* tests for snippet/string/camel_case
|
|
78
|
+
|
|
79
|
+
Mon Sep 3 17:59:38 JST 2007 rff.rff@gmail.com
|
|
80
|
+
* small spec for __DIR__ snippet
|
|
81
|
+
|
|
82
|
+
Mon Sep 3 17:55:32 JST 2007 rff.rff@gmail.com
|
|
83
|
+
* snippets specs for aquire,constant
|
|
84
|
+
|
|
85
|
+
Mon Sep 3 18:13:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
86
|
+
* Fixing rake_tasks/spec for example specs
|
|
87
|
+
|
|
88
|
+
Mon Sep 3 16:37:46 JST 2007 rff.rff@gmail.com
|
|
89
|
+
* more minimal READMES
|
|
90
|
+
|
|
91
|
+
Mon Sep 3 16:19:39 JST 2007 rff.rff@gmail.com
|
|
92
|
+
* README for examples/blog
|
|
93
|
+
|
|
94
|
+
Mon Sep 3 05:41:40 JST 2007 rff.rff@gmail.com
|
|
95
|
+
* Og's logger will write to STDERR which means that even if all tests pass
|
|
96
|
+
SpecWrapper will show it in red and show the error report.
|
|
97
|
+
It seems that using Ramaze::Inform as the default logger for it works,
|
|
98
|
+
but maybe it should be done in start.rb, or we should use Logger.set(STDOUT)
|
|
99
|
+
|
|
100
|
+
Mon Sep 3 02:41:20 JST 2007 rff.rff@gmail.com
|
|
101
|
+
* removed require ramaze from wiktacular specs )
|
|
102
|
+
|
|
103
|
+
Mon Sep 3 02:35:51 JST 2007 rff.rff@gmail.com
|
|
104
|
+
* these are just simple specs for example/blog, again more useful to
|
|
105
|
+
show users how to write tests than to test the ramaze infrastructure.
|
|
106
|
+
|
|
107
|
+
Strangely, all test pass but it is shown with a red bar from ramaze's rake.
|
|
108
|
+
|
|
109
|
+
Mon Sep 3 01:56:03 JST 2007 rff.rff@gmail.com
|
|
110
|
+
* specs for wiktacular/{revert/unrevert} + refactoring
|
|
111
|
+
|
|
112
|
+
Mon Sep 3 16:52:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
113
|
+
* Rewrite of Kernel#aquire
|
|
114
|
+
|
|
115
|
+
Mon Sep 3 21:39:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
116
|
+
* Make Struct#values_at backwards-compatible but remove Symbol#to_int (deprecated by ruby1.9)
|
|
117
|
+
|
|
118
|
+
Sun Sep 2 17:51:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
119
|
+
* Changing implementation of __DIR__ a bit.
|
|
120
|
+
|
|
121
|
+
Fri Aug 31 21:49:04 JST 2007 rff.rff@gmail.com
|
|
122
|
+
* more tests for wiktacular to show post() usage
|
|
123
|
+
|
|
124
|
+
Thu Aug 30 18:09:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
125
|
+
* Adding the filecache meta structure and renaming Global.action_file_cached to Global.file_cache, adding Global.file_cache_meta_dir
|
|
126
|
+
|
|
127
|
+
Fri Aug 31 08:37:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
128
|
+
* Fixing typo in StackHelper docs.
|
|
129
|
+
|
|
130
|
+
Tue Aug 28 23:15:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
131
|
+
* Make the wiktacular spec work standalone and fix its dependence on hash-order
|
|
132
|
+
|
|
133
|
+
Tue Aug 28 23:00:07 JST 2007 rff.rff@gmail.com
|
|
134
|
+
* added __DIR__ snippet and change wiktacular to use it
|
|
135
|
+
|
|
136
|
+
Tue Aug 28 22:25:48 JST 2007 rff.rff@gmail.com
|
|
137
|
+
* last __DIR__ usage in spec
|
|
138
|
+
|
|
139
|
+
Tue Aug 28 22:24:04 JST 2007 rff.rff@gmail.com
|
|
140
|
+
* __DIR__ usage in examples
|
|
141
|
+
|
|
142
|
+
Tue Aug 28 22:17:03 JST 2007 rff.rff@gmail.com
|
|
143
|
+
* more __DIR__ usage in specs
|
|
144
|
+
|
|
145
|
+
Tue Aug 28 22:11:52 JST 2007 rff.rff@gmail.com
|
|
146
|
+
* changed todolist's spec to use __DIR__
|
|
147
|
+
|
|
148
|
+
Tue Aug 28 22:09:56 JST 2007 rff.rff@gmail.com
|
|
149
|
+
* use __DIR__ in specs
|
|
150
|
+
|
|
151
|
+
Tue Aug 28 20:30:04 JST 2007 rff.rff@gmail.com
|
|
152
|
+
* refactor controller/model to hide path handling
|
|
153
|
+
|
|
154
|
+
Tue Aug 28 20:22:02 JST 2007 rff.rff@gmail.com
|
|
155
|
+
* make wiktacular test work
|
|
156
|
+
the dummy specs for wiktacular are now runnable standalone or from rake.
|
|
157
|
+
It was a path problem. Needs consolidation in the model.
|
|
158
|
+
|
|
159
|
+
Tue Aug 28 21:08:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
160
|
+
* Remove restriction on Haml, version 1.7.0 fixed the activesupport issue.
|
|
161
|
+
|
|
162
|
+
Tue Aug 28 19:07:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
163
|
+
* Make executing spec-files directly work again.
|
|
164
|
+
|
|
165
|
+
Tue Aug 28 19:06:32 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
166
|
+
* Update memcached, remove our flush_all hack, since this is supported by the latest version, add alias from #clear to #flush_all
|
|
167
|
+
|
|
168
|
+
Mon Aug 27 00:37:48 JST 2007 rff.rff@gmail.com
|
|
169
|
+
* fixed todolist.rb so that spec run fine both from ramaze's rakefile and standalone
|
|
170
|
+
|
|
171
|
+
Mon Aug 27 00:26:12 JST 2007 rff.rff@gmail.com
|
|
172
|
+
* re-added a commodity spec/helper to avoid changing all spec files
|
|
173
|
+
|
|
174
|
+
Mon Aug 27 00:23:16 JST 2007 rff.rff@gmail.com
|
|
175
|
+
* example/todolist's db will be deleted at each test run, so we remay
|
|
176
|
+
|
|
177
|
+
Mon Aug 27 00:09:50 JST 2007 rff.rff@gmail.com
|
|
178
|
+
* move todolist's test in example/todolist/spec
|
|
179
|
+
|
|
180
|
+
Mon Aug 27 00:06:23 JST 2007 rff.rff@gmail.com
|
|
181
|
+
* mv spec/helper -> ramaze/spec/helper and accomodated requires.
|
|
182
|
+
|
|
183
|
+
This means that end-users can use it for their own proijects by requiring
|
|
184
|
+
ramaze/spec/helper, and we can add tests to the examples instead of leaving them
|
|
185
|
+
in ramaze's spec directory.
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
Mon Aug 27 00:04:19 JST 2007 rff.rff@gmail.com
|
|
189
|
+
* add cancel links to wiktacular templates
|
|
190
|
+
|
|
191
|
+
Sun Aug 26 22:48:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
192
|
+
* Add missing html_layout.xhtml for wiktacular example.
|
|
193
|
+
|
|
194
|
+
Tue Aug 21 14:15:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
195
|
+
* Fixing and improving filebased caching. '/' should be transformed to '/index' in Dispatcher::File.
|
|
196
|
+
|
|
197
|
+
Sat Aug 18 20:54:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
198
|
+
* adding some path related methods to Action
|
|
199
|
+
|
|
200
|
+
Sat Aug 18 20:13:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
201
|
+
* Adding filebased cache of actions... very alpha so please try it and suggest improvments (code donations more than welcome)
|
|
202
|
+
|
|
203
|
+
Sun Aug 12 18:02:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
204
|
+
* Add Action#fullpath
|
|
205
|
+
|
|
206
|
+
Sun Aug 12 14:22:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
207
|
+
* Create new Action for requests, modifying the cached one is dangerous.
|
|
208
|
+
|
|
209
|
+
Sat Aug 11 20:24:27 JST 2007 Fabian Buch <fabian.buch@fabian-buch.de>
|
|
210
|
+
* changed Adapter to circumvent JRubys TCPServer bug (http://jira.codehaus.org/browse/JRUBY-1266)
|
|
211
|
+
Ramaze now works in JRuby with Webrick, tested on a PPC-Mac with JRuby 1.0
|
|
212
|
+
|
|
213
|
+
Wed Aug 8 20:12:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
214
|
+
* Add detailed error-message if haml 1.7.0 is installed but no activesupport.
|
|
215
|
+
|
|
216
|
+
Wed Aug 8 19:50:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
217
|
+
* Improve text for redirection.
|
|
218
|
+
|
|
219
|
+
Wed Aug 8 19:49:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
220
|
+
* Make examples/caching not based on computation, that is very error-prone and slow, use rand instead.
|
|
221
|
+
|
|
222
|
+
Wed Aug 8 19:47:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
223
|
+
* More robust spec for informer
|
|
224
|
+
|
|
225
|
+
Fri Aug 3 14:56:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
226
|
+
* Fixing multiple actions per layout.
|
|
227
|
+
|
|
228
|
+
Fri Aug 3 00:13:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
229
|
+
* Remove references to FeedHelper/FormHelper from the features readme chunk.
|
|
230
|
+
|
|
231
|
+
Fri Aug 3 00:08:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
232
|
+
* Update doc/meta/configuration.txt to reflect cookies => sessions.
|
|
233
|
+
|
|
234
|
+
Fri Aug 3 00:03:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
235
|
+
* Global.cookies is now Global.sessions and actually works ;)
|
|
236
|
+
|
|
237
|
+
Thu Aug 2 13:42:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
238
|
+
* Add examples/layout.rb
|
|
239
|
+
|
|
240
|
+
Tue Jul 31 21:16:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
241
|
+
* Making layouts more flexible but not yet stackable.
|
|
242
|
+
|
|
243
|
+
Mon Jul 30 20:48:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
244
|
+
* Fix aspect spec and aspects for template-only actions.
|
|
245
|
+
|
|
246
|
+
Mon Jul 30 18:11:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
247
|
+
* Harmonize Fcgi documentation and code
|
|
248
|
+
|
|
249
|
+
Mon Jul 30 09:06:20 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
|
250
|
+
* Updated spec for aspect helper
|
|
251
|
+
|
|
252
|
+
Mon Jul 30 11:02:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
253
|
+
* Update description of gem
|
|
254
|
+
|
|
255
|
+
Sat Aug 11 15:04:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
256
|
+
* Remove the faulty path from the post_install message on installing a gem.
|
|
257
|
+
|
|
258
|
+
Sun Jul 29 22:11:07 JST 2007 comp.lang.zenix+ramaze@gmail.com
|
|
259
|
+
* Added directory listing & another option
|
|
260
|
+
|
|
261
|
+
Sun Jul 29 02:18:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
262
|
+
* move Dispatcher::build_response to Response#build
|
|
263
|
+
|
|
264
|
+
Sat Jul 28 21:56:41 JST 2007 Jonathan Buch <jo@helloit.fi>
|
|
265
|
+
* partial helper module docs, pager add docs for private methods too
|
|
266
|
+
|
|
267
|
+
Sat Jul 28 19:59:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
268
|
+
* Docs for Dispatcher::Action and RenderPartial, improving docs a bit concerning aspects *_all
|
|
269
|
+
|
|
270
|
+
Sat Jul 28 19:46:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
271
|
+
* Full docs for Cache
|
|
272
|
+
|
|
273
|
+
Sat Jul 28 19:44:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
274
|
+
* Full docs for CacheHelper
|
|
275
|
+
|
|
276
|
+
Sat Jul 28 19:43:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
277
|
+
* A bit of meta-docs for IdentityHelper.
|
|
278
|
+
|
|
279
|
+
Sat Jul 28 19:30:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
280
|
+
* finalize docs for controller/resolve
|
|
281
|
+
|
|
282
|
+
Sat Jul 28 19:26:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
283
|
+
* document Localize class
|
|
284
|
+
|
|
285
|
+
Sat Jul 28 19:24:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
286
|
+
* Remove FormHelper and specs
|
|
287
|
+
|
|
288
|
+
Sat Jul 28 19:22:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
289
|
+
* Remove ReFeed/FeedHelper and Store::YAML and their specs
|
|
290
|
+
|
|
291
|
+
Sat Jul 28 20:22:41 JST 2007 Jonathan Buch <jo@helloit.fi>
|
|
292
|
+
* Pager: documentation, major spec update
|
|
293
|
+
|
|
294
|
+
Sat Jul 28 06:27:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
295
|
+
* Fix typos in AuthHelper
|
|
296
|
+
|
|
297
|
+
Sat Jul 28 06:06:26 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
|
298
|
+
* Haml/Sass spec cleanup
|
|
299
|
+
|
|
300
|
+
Fri Jul 27 13:42:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
301
|
+
* Documentation for mongrel/fcgi/cgi and sourcereload, reduces some overhead in the Cgi and Fcgi adapters.
|
|
302
|
+
|
|
303
|
+
Fri Jul 27 13:35:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
304
|
+
* update docs concerning FeedHelper and ReFeed.
|
|
305
|
+
|
|
306
|
+
Fri Jul 27 13:28:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
307
|
+
* Change wiktacular so it uses layout instead of Page.
|
|
308
|
+
|
|
309
|
+
Fri Jul 27 13:26:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
310
|
+
* Put initial mapping into Controller::inherited so layout can work with it. Controller::startup is too late. Also introduces a change to delete any old mapping on usage of Controller::map.
|
|
311
|
+
|
|
312
|
+
Fri Jul 27 08:54:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
313
|
+
* Add default content-type text/css for Sass and update specs for it
|
|
314
|
+
|
|
315
|
+
Fri Jul 27 08:48:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
316
|
+
* Add autoload for Sass
|
|
317
|
+
|
|
318
|
+
Fri Jul 27 08:34:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
319
|
+
* Fix typo in proto/template/index.xhtml
|
|
320
|
+
|
|
321
|
+
Fri Jul 27 04:48:23 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
|
322
|
+
* initial support for Sass CSS templates
|
|
323
|
+
|
|
324
|
+
Thu Jul 26 20:45:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
325
|
+
* Implementing layouts, view this patch to find out more as it also adds docs and specs
|
|
326
|
+
|
|
327
|
+
Thu Jul 26 17:35:47 JST 2007 Jonathan Buch <jo@helloit.fi>
|
|
328
|
+
* Documentation for tool/localize
|
|
329
|
+
|
|
330
|
+
Thu Jul 26 19:09:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
331
|
+
* Add another spec for Action()
|
|
332
|
+
|
|
333
|
+
Thu Jul 26 01:37:17 JST 2007 comp.lang.zenix+ramaze@gmail.com
|
|
334
|
+
* Added capitalization to Ramaze::Tool::Create output
|
|
335
|
+
|
|
336
|
+
Wed Jul 25 18:29:41 JST 2007 comp.lang.zenix+ramaze@gmail.com
|
|
337
|
+
* Updated user map information, added riffraff
|
|
338
|
+
|
|
339
|
+
Wed Jul 25 15:51:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
340
|
+
* minor beautification and docs for controller/resolve
|
|
341
|
+
|
|
342
|
+
Wed Jul 25 15:42:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
343
|
+
* fix a end-space
|
|
344
|
+
|
|
345
|
+
Wed Jul 25 15:41:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
346
|
+
* Further improvment on error-handling on exception during render
|
|
347
|
+
|
|
348
|
+
Wed Jul 25 16:15:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
349
|
+
* Add tries to require rubygems
|
|
350
|
+
|
|
351
|
+
Wed Jul 25 13:55:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
352
|
+
* fix typo in bin/ramaze
|
|
353
|
+
|
|
354
|
+
Tue Jul 24 20:47:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
355
|
+
* Documentation for Dispatcher, GlobalStruct, Dispatcher::Error, Tool::MIME, Response, Store::Default (adds some beautification in Dispatcher)
|
|
356
|
+
|
|
357
|
+
Tue Jul 24 14:15:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
358
|
+
* document AspectHelper and Syslog
|
|
359
|
+
|
|
360
|
+
Tue Jul 24 14:00:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
361
|
+
* document some raketasks
|
|
362
|
+
|
|
363
|
+
Tue Jul 24 14:00:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
364
|
+
* move error-message in sourcereload into the failed hook
|
|
365
|
+
|
|
366
|
+
Tue Jul 24 14:00:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
367
|
+
* full docs for sourcereload
|
|
368
|
+
|
|
369
|
+
Tue Jul 24 13:59:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
370
|
+
* docs for informer
|
|
371
|
+
|
|
372
|
+
Tue Jul 24 13:59:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
373
|
+
* main.rb is now start.rb
|
|
374
|
+
|
|
375
|
+
Tue Jul 24 08:16:25 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
|
376
|
+
* tmm1's location on the ramaze users map
|
|
377
|
+
|
|
378
|
+
Tue Jul 24 01:48:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
379
|
+
* add placemark for zenix
|
|
380
|
+
|
|
381
|
+
Tue Jul 24 01:30:54 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
|
382
|
+
* Added Pistos avatar.
|
|
383
|
+
|
|
384
|
+
Tue Jul 24 01:03:54 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
|
385
|
+
* Update of Pistos' description on Google Map.
|
|
386
|
+
|
|
387
|
+
Tue Jul 24 01:03:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
388
|
+
* update users.kml
|
|
389
|
+
|
|
390
|
+
Tue Jul 24 00:46:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
391
|
+
* add doc/meta/users.kml
|
|
392
|
+
|
|
393
|
+
Sun Jul 22 03:24:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
394
|
+
* fix abort for bin/ramaze
|
|
395
|
+
|
|
396
|
+
Sat Jul 21 22:20:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
397
|
+
* Add desc to release task
|
|
398
|
+
|
|
399
|
+
Sat Jul 21 22:09:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
400
|
+
* Update CHANGELOG and AUTHORS
|
|
401
|
+
|
|
1
402
|
Sat Jul 21 22:08:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
2
403
|
tagged 0.1.3
|
|
3
404
|
|
data/doc/changes.xml
CHANGED
|
@@ -1,4 +1,405 @@
|
|
|
1
1
|
<changelog>
|
|
2
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906122453' local_date='Thu Sep 6 21:24:53 JST 2007' inverted='False' hash='20070906122453-cbc08-56ba48b3ae98aca2d91a4965da6820fa830282a2.gz'>
|
|
3
|
+
<name>Update doc/AUTHORS</name>
|
|
4
|
+
</patch>
|
|
5
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906122125' local_date='Thu Sep 6 21:21:25 JST 2007' inverted='False' hash='20070906122125-cbc08-c45ca171cbe7771353ea20fa9276ddad43d98495.gz'>
|
|
6
|
+
<name>Update announcement</name>
|
|
7
|
+
</patch>
|
|
8
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906052818' local_date='Thu Sep 6 14:28:18 JST 2007' inverted='False' hash='20070906052818-cbc08-69eb56affde06f09994d686311b9fb6c4a2c2d47.gz'>
|
|
9
|
+
<name>Fixing some more spaces.</name>
|
|
10
|
+
</patch>
|
|
11
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906052801' local_date='Thu Sep 6 14:28:01 JST 2007' inverted='False' hash='20070906052801-cbc08-ebcd3d3089f32fdfe372b6ac55ccda4a6b19f3ac.gz'>
|
|
12
|
+
<name>Adding (c) to Numeric#human_readable_filesize_format</name>
|
|
13
|
+
</patch>
|
|
14
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906052751' local_date='Thu Sep 6 14:27:51 JST 2007' inverted='False' hash='20070906052751-cbc08-c089de3cb84a0bada97d99997c3d6d8d5329989b.gz'>
|
|
15
|
+
<name>Adding --instant option to start bin/ramaze with an empty controller.</name>
|
|
16
|
+
</patch>
|
|
17
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906052336' local_date='Thu Sep 6 14:23:36 JST 2007' inverted='False' hash='20070906052336-cbc08-1cfd47c7380a6c306d2ac175529eca88f22976f4.gz'>
|
|
18
|
+
<name>Adding Numeric#human_readable_filesize_format and using it in the directory-listing.</name>
|
|
19
|
+
</patch>
|
|
20
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905161041' local_date='Thu Sep 6 01:10:41 JST 2007' inverted='False' hash='20070905161041-cbc08-a30019d14dc325c6a3c8d493b7f42a1e51c89b4c.gz'>
|
|
21
|
+
<name>remove some useless debugging-information</name>
|
|
22
|
+
</patch>
|
|
23
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905155747' local_date='Thu Sep 6 00:57:47 JST 2007' inverted='False' hash='20070905155747-cbc08-6ef402fc7437c09413b175b2baa0c8e519654361.gz'>
|
|
24
|
+
<name>remove deprecated spec from dispatcher/file</name>
|
|
25
|
+
</patch>
|
|
26
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905155229' local_date='Thu Sep 6 00:52:29 JST 2007' inverted='False' hash='20070905155229-cbc08-4a69b425b85abd616500c74405670e9b55ad398b.gz'>
|
|
27
|
+
<name>Remove the now useless controller/directory</name>
|
|
28
|
+
</patch>
|
|
29
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905155024' local_date='Thu Sep 6 00:50:24 JST 2007' inverted='False' hash='20070905155024-cbc08-4d933e0f54243e8bfe4333a0426aef237f9051c7.gz'>
|
|
30
|
+
<name>Minor fix to Action#extended_path</name>
|
|
31
|
+
</patch>
|
|
32
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905154638' local_date='Thu Sep 6 00:46:38 JST 2007' inverted='False' hash='20070905154638-cbc08-889e3e71b93f7e14945a69e854f3f60f56ce7988.gz'>
|
|
33
|
+
<name>Medium refactoring of bin/ramaze, adding better functionality in Global for it and adding some niceties for Global.public_root/template_root</name>
|
|
34
|
+
</patch>
|
|
35
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905154147' local_date='Thu Sep 6 00:41:47 JST 2007' inverted='False' hash='20070905154147-cbc08-20a22b0ca00e49968d5cef126e5bb9c886494b42.gz'>
|
|
36
|
+
<name>Fixing directory listing and adding spec</name>
|
|
37
|
+
</patch>
|
|
38
|
+
<patch author='rff.rff@gmail.com' date='20070905105259' local_date='Wed Sep 5 19:52:59 JST 2007' inverted='False' hash='20070905105259-16231-d1992d2b870aaa1c06a969f5342090bb74695544.gz'>
|
|
39
|
+
<name>spec for Informer case statement in initialize</name>
|
|
40
|
+
</patch>
|
|
41
|
+
<patch author='rff.rff@gmail.com' date='20070905100709' local_date='Wed Sep 5 19:07:09 JST 2007' inverted='False' hash='20070905100709-16231-b62338c93c5239b3ea7c788a109fada71430145a.gz'>
|
|
42
|
+
<name>spec for Action#to_hash</name>
|
|
43
|
+
</patch>
|
|
44
|
+
<patch author='rff.rff@gmail.com' date='20070905093622' local_date='Wed Sep 5 18:36:22 JST 2007' inverted='False' hash='20070905093622-16231-bae521f283acb291f48629bbcdecbaafc9da2a3e.gz'>
|
|
45
|
+
<name>spec for Struct#values_at</name>
|
|
46
|
+
</patch>
|
|
47
|
+
<patch author='rff.rff@gmail.com' date='20070905093439' local_date='Wed Sep 5 18:34:39 JST 2007' inverted='False' hash='20070905093439-16231-5f729a2f467e3a6ea621d9f86f24f30aeebcb57f.gz'>
|
|
48
|
+
<name>spec for Struct#fill</name>
|
|
49
|
+
</patch>
|
|
50
|
+
<patch author='rff.rff@gmail.com' date='20070905093213' local_date='Wed Sep 5 18:32:13 JST 2007' inverted='False' hash='20070905093213-16231-698db091f4390bc4dd05b229614dbd1791c9d605.gz'>
|
|
51
|
+
<name>make snippets/struct/values_at behaviour compatible with standard ruby</name>
|
|
52
|
+
</patch>
|
|
53
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070905041424' local_date='Wed Sep 5 13:14:24 JST 2007' inverted='False' hash='20070905041424-cbc08-b144d474b97e4a65060ed6ea55a2a4ce3f3c6153.gz'>
|
|
54
|
+
<name>The usual, fixing some end-spaces.</name>
|
|
55
|
+
</patch>
|
|
56
|
+
<patch author='rff.rff@gmail.com' date='20070904121056' local_date='Tue Sep 4 21:10:56 JST 2007' inverted='False' hash='20070904121056-16231-b73b0d266c33c0ab5e09fa736fab454db85d761b.gz'>
|
|
57
|
+
<name>doc fix for caller_lines</name>
|
|
58
|
+
</patch>
|
|
59
|
+
<patch author='rff.rff@gmail.com' date='20070904120759' local_date='Tue Sep 4 21:07:59 JST 2007' inverted='False' hash='20070904120759-16231-6ca5b1bdc1f0ff352d79d4679ba575241b1590fb.gz'>
|
|
60
|
+
<name>spec for Ramaze#caller_lines</name>
|
|
61
|
+
</patch>
|
|
62
|
+
<patch author='rff.rff@gmail.com' date='20070904115414' local_date='Tue Sep 4 20:54:14 JST 2007' inverted='False' hash='20070904115414-16231-fe11cfd5240d308d86a686f81840d57e17e318d9.gz'>
|
|
63
|
+
<name>spec for Ramaze#caller_info</name>
|
|
64
|
+
</patch>
|
|
65
|
+
<patch author='rff.rff@gmail.com' date='20070903105607' local_date='Mon Sep 3 19:56:07 JST 2007' inverted='False' hash='20070903105607-16231-e4cb423a69038db989c785b6f42c6cc413c20a83.gz'>
|
|
66
|
+
<name>remove useless snippets/openstruct</name>
|
|
67
|
+
</patch>
|
|
68
|
+
<patch author='rff.rff@gmail.com' date='20070903104157' local_date='Mon Sep 3 19:41:57 JST 2007' inverted='False' hash='20070903104157-16231-202012303caedb1c8b32a0c2f70d7be54fa9bb8c.gz'>
|
|
69
|
+
<name>spec for String#snake_case</name>
|
|
70
|
+
</patch>
|
|
71
|
+
<patch author='rff.rff@gmail.com' date='20070903103556' local_date='Mon Sep 3 19:35:56 JST 2007' inverted='False' hash='20070903103556-16231-2dc6c14c95616a1af833de81829534a3b753818c.gz'>
|
|
72
|
+
<name>spec for String#DIVIDE</name>
|
|
73
|
+
</patch>
|
|
74
|
+
<patch author='rff.rff@gmail.com' date='20070903103155' local_date='Mon Sep 3 19:31:55 JST 2007' inverted='False' hash='20070903103155-16231-2594498e70d00a18545098aba9c597e56b003721.gz'>
|
|
75
|
+
<name>spec for String#color</name>
|
|
76
|
+
</patch>
|
|
77
|
+
<patch author='rff.rff@gmail.com' date='20070903102405' local_date='Mon Sep 3 19:24:05 JST 2007' inverted='False' hash='20070903102405-16231-9c1986174b7d4fa9a2b7c5a8b25bb091815011aa.gz'>
|
|
78
|
+
<name>tests for snippet/string/camel_case</name>
|
|
79
|
+
</patch>
|
|
80
|
+
<patch author='rff.rff@gmail.com' date='20070903085938' local_date='Mon Sep 3 17:59:38 JST 2007' inverted='False' hash='20070903085938-16231-638c3943e20a078a03f5c83b00e8138214afbb11.gz'>
|
|
81
|
+
<name>small spec for __DIR__ snippet</name>
|
|
82
|
+
</patch>
|
|
83
|
+
<patch author='rff.rff@gmail.com' date='20070903085532' local_date='Mon Sep 3 17:55:32 JST 2007' inverted='False' hash='20070903085532-16231-ffa11e72d0702e90c6dd510b552ef1ca23f65713.gz'>
|
|
84
|
+
<name>snippets specs for aquire,constant</name>
|
|
85
|
+
</patch>
|
|
86
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070903091349' local_date='Mon Sep 3 18:13:49 JST 2007' inverted='False' hash='20070903091349-cbc08-d462b1c80464478c2ec94cb9c7766d46cbc41bec.gz'>
|
|
87
|
+
<name>Fixing rake_tasks/spec for example specs</name>
|
|
88
|
+
</patch>
|
|
89
|
+
<patch author='rff.rff@gmail.com' date='20070903073746' local_date='Mon Sep 3 16:37:46 JST 2007' inverted='False' hash='20070903073746-16231-44cadf59448b80e8ac1ee048599523ebe9eeccbd.gz'>
|
|
90
|
+
<name>more minimal READMES</name>
|
|
91
|
+
</patch>
|
|
92
|
+
<patch author='rff.rff@gmail.com' date='20070903071939' local_date='Mon Sep 3 16:19:39 JST 2007' inverted='False' hash='20070903071939-16231-0d64dfbbac11c38ecc66c42045269ef4bb46edcc.gz'>
|
|
93
|
+
<name>README for examples/blog</name>
|
|
94
|
+
</patch>
|
|
95
|
+
<patch author='rff.rff@gmail.com' date='20070902204140' local_date='Mon Sep 3 05:41:40 JST 2007' inverted='False' hash='20070902204140-16231-99df4cd25e18ecc5f8b0a741d81767e9d36a0847.gz'>
|
|
96
|
+
<name>Og's logger will write to STDERR which means that even if all tests pass</name>
|
|
97
|
+
<comment>SpecWrapper will show it in red and show the error report.
|
|
98
|
+
It seems that using Ramaze::Inform as the default logger for it works,
|
|
99
|
+
but maybe it should be done in start.rb, or we should use Logger.set(STDOUT)</comment>
|
|
100
|
+
</patch>
|
|
101
|
+
<patch author='rff.rff@gmail.com' date='20070902174120' local_date='Mon Sep 3 02:41:20 JST 2007' inverted='False' hash='20070902174120-16231-3da0b0f57dca68f42edb4a7c3c173c6f5a761dbf.gz'>
|
|
102
|
+
<name>removed require ramaze from wiktacular specs )</name>
|
|
103
|
+
</patch>
|
|
104
|
+
<patch author='rff.rff@gmail.com' date='20070902173551' local_date='Mon Sep 3 02:35:51 JST 2007' inverted='False' hash='20070902173551-16231-63352c3a114451a2af11e84754ca0eaa40962470.gz'>
|
|
105
|
+
<name>these are just simple specs for example/blog, again more useful to </name>
|
|
106
|
+
<comment>show users how to write tests than to test the ramaze infrastructure.
|
|
107
|
+
|
|
108
|
+
Strangely, all test pass but it is shown with a red bar from ramaze's rake.</comment>
|
|
109
|
+
</patch>
|
|
110
|
+
<patch author='rff.rff@gmail.com' date='20070902165603' local_date='Mon Sep 3 01:56:03 JST 2007' inverted='False' hash='20070902165603-16231-1aabd8ceee9ccfb1649cc6bb6d019c4965090f68.gz'>
|
|
111
|
+
<name>specs for wiktacular/{revert/unrevert} + refactoring</name>
|
|
112
|
+
</patch>
|
|
113
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070903075243' local_date='Mon Sep 3 16:52:43 JST 2007' inverted='False' hash='20070903075243-cbc08-cd15855555b8063d33049b4bc12e41110e6324fc.gz'>
|
|
114
|
+
<name>Rewrite of Kernel#aquire</name>
|
|
115
|
+
</patch>
|
|
116
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070903123902' local_date='Mon Sep 3 21:39:02 JST 2007' inverted='False' hash='20070903123902-cbc08-95359b7247eb89b3986291dfb65d0b069662f7ca.gz'>
|
|
117
|
+
<name>Make Struct#values_at backwards-compatible but remove Symbol#to_int (deprecated by ruby1.9)</name>
|
|
118
|
+
</patch>
|
|
119
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070902085110' local_date='Sun Sep 2 17:51:10 JST 2007' inverted='False' hash='20070902085110-cbc08-7a8c930a80b946e99933544676f4444dc3480c23.gz'>
|
|
120
|
+
<name>Changing implementation of __DIR__ a bit.</name>
|
|
121
|
+
</patch>
|
|
122
|
+
<patch author='rff.rff@gmail.com' date='20070831124904' local_date='Fri Aug 31 21:49:04 JST 2007' inverted='False' hash='20070831124904-16231-330b7146f8fac0f8d57e1673c89bee8891a1d292.gz'>
|
|
123
|
+
<name>more tests for wiktacular to show post() usage</name>
|
|
124
|
+
</patch>
|
|
125
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070830090925' local_date='Thu Aug 30 18:09:25 JST 2007' inverted='False' hash='20070830090925-cbc08-90b47bfc4baef5a651fde8e9044ebed6b899e235.gz'>
|
|
126
|
+
<name>Adding the filecache meta structure and renaming Global.action_file_cached to Global.file_cache, adding Global.file_cache_meta_dir</name>
|
|
127
|
+
</patch>
|
|
128
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070830233748' local_date='Fri Aug 31 08:37:48 JST 2007' inverted='False' hash='20070830233748-cbc08-9437b1877fa2b68512f3ca1a278102a333a4b046.gz'>
|
|
129
|
+
<name>Fixing typo in StackHelper docs.</name>
|
|
130
|
+
</patch>
|
|
131
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070828141540' local_date='Tue Aug 28 23:15:40 JST 2007' inverted='False' hash='20070828141540-cbc08-7bb843f127c0b5ec97732c749bbc990619b41149.gz'>
|
|
132
|
+
<name>Make the wiktacular spec work standalone and fix its dependence on hash-order</name>
|
|
133
|
+
</patch>
|
|
134
|
+
<patch author='rff.rff@gmail.com' date='20070828140007' local_date='Tue Aug 28 23:00:07 JST 2007' inverted='False' hash='20070828140007-16231-c7951974fe7fa4ca572fcb0cb7d420c9dce7e9ab.gz'>
|
|
135
|
+
<name>added __DIR__ snippet and change wiktacular to use it</name>
|
|
136
|
+
</patch>
|
|
137
|
+
<patch author='rff.rff@gmail.com' date='20070828132548' local_date='Tue Aug 28 22:25:48 JST 2007' inverted='False' hash='20070828132548-16231-081a0d032b19af4342a028f6d653f7c62babfb75.gz'>
|
|
138
|
+
<name>last __DIR__ usage in spec</name>
|
|
139
|
+
</patch>
|
|
140
|
+
<patch author='rff.rff@gmail.com' date='20070828132404' local_date='Tue Aug 28 22:24:04 JST 2007' inverted='False' hash='20070828132404-16231-ee7b518470de97df253bc02414b81803dbaba7e8.gz'>
|
|
141
|
+
<name>__DIR__ usage in examples</name>
|
|
142
|
+
</patch>
|
|
143
|
+
<patch author='rff.rff@gmail.com' date='20070828131703' local_date='Tue Aug 28 22:17:03 JST 2007' inverted='False' hash='20070828131703-16231-7a8ba30368453782b1000294fe4d6b0749c76691.gz'>
|
|
144
|
+
<name>more __DIR__ usage in specs</name>
|
|
145
|
+
</patch>
|
|
146
|
+
<patch author='rff.rff@gmail.com' date='20070828131152' local_date='Tue Aug 28 22:11:52 JST 2007' inverted='False' hash='20070828131152-16231-8522d3cbc32ae5e97d4b48c443c462a869c03f41.gz'>
|
|
147
|
+
<name>changed todolist's spec to use __DIR__</name>
|
|
148
|
+
</patch>
|
|
149
|
+
<patch author='rff.rff@gmail.com' date='20070828130956' local_date='Tue Aug 28 22:09:56 JST 2007' inverted='False' hash='20070828130956-16231-e94e47e30d2423a56da0800cc5170c2814274a2e.gz'>
|
|
150
|
+
<name>use __DIR__ in specs</name>
|
|
151
|
+
</patch>
|
|
152
|
+
<patch author='rff.rff@gmail.com' date='20070828113004' local_date='Tue Aug 28 20:30:04 JST 2007' inverted='False' hash='20070828113004-16231-ea298a725705f9feb9b2f8bf328d1624adab62b7.gz'>
|
|
153
|
+
<name>refactor controller/model to hide path handling</name>
|
|
154
|
+
</patch>
|
|
155
|
+
<patch author='rff.rff@gmail.com' date='20070828112202' local_date='Tue Aug 28 20:22:02 JST 2007' inverted='False' hash='20070828112202-16231-34bb273c48c4ff4e1b37806182ce5b48bf7d50c8.gz'>
|
|
156
|
+
<name>make wiktacular test work</name>
|
|
157
|
+
<comment>the dummy specs for wiktacular are now runnable standalone or from rake.
|
|
158
|
+
It was a path problem. Needs consolidation in the model.</comment>
|
|
159
|
+
</patch>
|
|
160
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070828120800' local_date='Tue Aug 28 21:08:00 JST 2007' inverted='False' hash='20070828120800-cbc08-b186a15c1b67ed35659a7159e30cac87eb056a5a.gz'>
|
|
161
|
+
<name>Remove restriction on Haml, version 1.7.0 fixed the activesupport issue.</name>
|
|
162
|
+
</patch>
|
|
163
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070828100746' local_date='Tue Aug 28 19:07:46 JST 2007' inverted='False' hash='20070828100746-cbc08-a55c8edf26f236653bc969322a5a4447e7894b01.gz'>
|
|
164
|
+
<name>Make executing spec-files directly work again.</name>
|
|
165
|
+
</patch>
|
|
166
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070828100632' local_date='Tue Aug 28 19:06:32 JST 2007' inverted='False' hash='20070828100632-cbc08-06f51cfca4cbd77e9a23c3d46929ccba83a89ac6.gz'>
|
|
167
|
+
<name>Update memcached, remove our flush_all hack, since this is supported by the latest version, add alias from #clear to #flush_all</name>
|
|
168
|
+
</patch>
|
|
169
|
+
<patch author='rff.rff@gmail.com' date='20070826153748' local_date='Mon Aug 27 00:37:48 JST 2007' inverted='False' hash='20070826153748-16231-480e1a640b56722cc6e908c4f7465cf4dd0fd7b9.gz'>
|
|
170
|
+
<name>fixed todolist.rb so that spec run fine both from ramaze's rakefile and standalone</name>
|
|
171
|
+
</patch>
|
|
172
|
+
<patch author='rff.rff@gmail.com' date='20070826152612' local_date='Mon Aug 27 00:26:12 JST 2007' inverted='False' hash='20070826152612-16231-3b046d896b2ae8656f9ff71b47eb91c9dc398818.gz'>
|
|
173
|
+
<name>re-added a commodity spec/helper to avoid changing all spec files</name>
|
|
174
|
+
</patch>
|
|
175
|
+
<patch author='rff.rff@gmail.com' date='20070826152316' local_date='Mon Aug 27 00:23:16 JST 2007' inverted='False' hash='20070826152316-16231-d8337448e82d2f52610701670276de8747ae0cc7.gz'>
|
|
176
|
+
<name>example/todolist's db will be deleted at each test run, so we remay</name>
|
|
177
|
+
</patch>
|
|
178
|
+
<patch author='rff.rff@gmail.com' date='20070826150950' local_date='Mon Aug 27 00:09:50 JST 2007' inverted='False' hash='20070826150950-16231-a39be5951bde933c53b98479d0250a206c1beac2.gz'>
|
|
179
|
+
<name>move todolist's test in example/todolist/spec</name>
|
|
180
|
+
</patch>
|
|
181
|
+
<patch author='rff.rff@gmail.com' date='20070826150623' local_date='Mon Aug 27 00:06:23 JST 2007' inverted='False' hash='20070826150623-16231-f6ae8bcb82cc3f7a475dcbbe80bf4ac9d3516438.gz'>
|
|
182
|
+
<name>mv spec/helper -> ramaze/spec/helper and accomodated requires.</name>
|
|
183
|
+
<comment>
|
|
184
|
+
This means that end-users can use it for their own proijects by requiring
|
|
185
|
+
ramaze/spec/helper, and we can add tests to the examples instead of leaving them
|
|
186
|
+
in ramaze's spec directory.
|
|
187
|
+
</comment>
|
|
188
|
+
</patch>
|
|
189
|
+
<patch author='rff.rff@gmail.com' date='20070826150419' local_date='Mon Aug 27 00:04:19 JST 2007' inverted='False' hash='20070826150419-16231-50c56d7d970146f5b3b5bad1e2b60cfa0799a22d.gz'>
|
|
190
|
+
<name>add cancel links to wiktacular templates</name>
|
|
191
|
+
</patch>
|
|
192
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070826134825' local_date='Sun Aug 26 22:48:25 JST 2007' inverted='False' hash='20070826134825-cbc08-83677c59aa32e94caf4bac12eb1f974d27f15252.gz'>
|
|
193
|
+
<name>Add missing html_layout.xhtml for wiktacular example.</name>
|
|
194
|
+
</patch>
|
|
195
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070821051523' local_date='Tue Aug 21 14:15:23 JST 2007' inverted='False' hash='20070821051523-cbc08-a3e75a3e21796234081aff7668b245a311233221.gz'>
|
|
196
|
+
<name>Fixing and improving filebased caching. '/' should be transformed to '/index' in Dispatcher::File.</name>
|
|
197
|
+
</patch>
|
|
198
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070818115411' local_date='Sat Aug 18 20:54:11 JST 2007' inverted='False' hash='20070818115411-cbc08-8ac7152893495621617546ffe3b80e553b140195.gz'>
|
|
199
|
+
<name>adding some path related methods to Action</name>
|
|
200
|
+
</patch>
|
|
201
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070818111329' local_date='Sat Aug 18 20:13:29 JST 2007' inverted='False' hash='20070818111329-cbc08-546ac53e919052a7bcf23e8c3acae840374c40c6.gz'>
|
|
202
|
+
<name>Adding filebased cache of actions... very alpha so please try it and suggest improvments (code donations more than welcome)</name>
|
|
203
|
+
</patch>
|
|
204
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070812090249' local_date='Sun Aug 12 18:02:49 JST 2007' inverted='False' hash='20070812090249-cbc08-e5b63eef7bec79549c2369b3aadb33e44f653619.gz'>
|
|
205
|
+
<name>Add Action#fullpath</name>
|
|
206
|
+
</patch>
|
|
207
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070812052214' local_date='Sun Aug 12 14:22:14 JST 2007' inverted='False' hash='20070812052214-cbc08-b61bfa4b4c21d165ea43347762ac96072bc9ecda.gz'>
|
|
208
|
+
<name>Create new Action for requests, modifying the cached one is dangerous.</name>
|
|
209
|
+
</patch>
|
|
210
|
+
<patch author='Fabian Buch <fabian.buch@fabian-buch.de>' date='20070811112427' local_date='Sat Aug 11 20:24:27 JST 2007' inverted='False' hash='20070811112427-464fd-5c11ee75a3aea71d6cae4da73518f9728fe9863a.gz'>
|
|
211
|
+
<name>changed Adapter to circumvent JRubys TCPServer bug (http://jira.codehaus.org/browse/JRUBY-1266)</name>
|
|
212
|
+
<comment>Ramaze now works in JRuby with Webrick, tested on a PPC-Mac with JRuby 1.0</comment>
|
|
213
|
+
</patch>
|
|
214
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070808111239' local_date='Wed Aug 8 20:12:39 JST 2007' inverted='False' hash='20070808111239-cbc08-25629fd2894c46ee3f57242c286cad99d3962c99.gz'>
|
|
215
|
+
<name>Add detailed error-message if haml 1.7.0 is installed but no activesupport.</name>
|
|
216
|
+
</patch>
|
|
217
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070808105020' local_date='Wed Aug 8 19:50:20 JST 2007' inverted='False' hash='20070808105020-cbc08-1e912abdce166648511fe8c66a0939961d3a593d.gz'>
|
|
218
|
+
<name>Improve text for redirection.</name>
|
|
219
|
+
</patch>
|
|
220
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070808104911' local_date='Wed Aug 8 19:49:11 JST 2007' inverted='False' hash='20070808104911-cbc08-1bc0f0b3c6e306317938ee2af42f006ab5e7b67a.gz'>
|
|
221
|
+
<name>Make examples/caching not based on computation, that is very error-prone and slow, use rand instead.</name>
|
|
222
|
+
</patch>
|
|
223
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070808104757' local_date='Wed Aug 8 19:47:57 JST 2007' inverted='False' hash='20070808104757-cbc08-dab0ad27411096f9bbb399e5e14330f39b080928.gz'>
|
|
224
|
+
<name>More robust spec for informer</name>
|
|
225
|
+
</patch>
|
|
226
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070803055615' local_date='Fri Aug 3 14:56:15 JST 2007' inverted='False' hash='20070803055615-cbc08-1600638aa91ea8f76a10d9e46ed21eac1491e980.gz'>
|
|
227
|
+
<name>Fixing multiple actions per layout.</name>
|
|
228
|
+
</patch>
|
|
229
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070802151301' local_date='Fri Aug 3 00:13:01 JST 2007' inverted='False' hash='20070802151301-cbc08-e0463c2e9892fed469f3efe297bf2899fda28374.gz'>
|
|
230
|
+
<name>Remove references to FeedHelper/FormHelper from the features readme chunk.</name>
|
|
231
|
+
</patch>
|
|
232
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070802150840' local_date='Fri Aug 3 00:08:40 JST 2007' inverted='False' hash='20070802150840-cbc08-3a23202eb59f52f9e9b8fdbfd9332664f912c77e.gz'>
|
|
233
|
+
<name>Update doc/meta/configuration.txt to reflect cookies => sessions.</name>
|
|
234
|
+
</patch>
|
|
235
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070802150313' local_date='Fri Aug 3 00:03:13 JST 2007' inverted='False' hash='20070802150313-cbc08-281f844bee8a53edee8dabc4f127ef36fa9065fa.gz'>
|
|
236
|
+
<name>Global.cookies is now Global.sessions and actually works ;)</name>
|
|
237
|
+
</patch>
|
|
238
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070802044218' local_date='Thu Aug 2 13:42:18 JST 2007' inverted='False' hash='20070802044218-cbc08-ce58e33ad37a8848b550c1edd043804c0b2d2a7f.gz'>
|
|
239
|
+
<name>Add examples/layout.rb</name>
|
|
240
|
+
</patch>
|
|
241
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070731121629' local_date='Tue Jul 31 21:16:29 JST 2007' inverted='False' hash='20070731121629-cbc08-5115e136a66997cb4b3a86855d5ff37504329a3e.gz'>
|
|
242
|
+
<name>Making layouts more flexible but not yet stackable.</name>
|
|
243
|
+
</patch>
|
|
244
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070730114841' local_date='Mon Jul 30 20:48:41 JST 2007' inverted='False' hash='20070730114841-cbc08-71664810ac8719cae452bbd974b33c75b23c766d.gz'>
|
|
245
|
+
<name>Fix aspect spec and aspects for template-only actions.</name>
|
|
246
|
+
</patch>
|
|
247
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070730091116' local_date='Mon Jul 30 18:11:16 JST 2007' inverted='False' hash='20070730091116-cbc08-62f375d8ac26b5bd9ad74f8736f993a3cead4da7.gz'>
|
|
248
|
+
<name>Harmonize Fcgi documentation and code</name>
|
|
249
|
+
</patch>
|
|
250
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070730000620' local_date='Mon Jul 30 09:06:20 JST 2007' inverted='False' hash='20070730000620-a47f2-8ee2e1c14daccf5f317f3757e98519f0c73d0529.gz'>
|
|
251
|
+
<name>Updated spec for aspect helper</name>
|
|
252
|
+
</patch>
|
|
253
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070730020225' local_date='Mon Jul 30 11:02:25 JST 2007' inverted='False' hash='20070730020225-cbc08-b5c6f6e8d385c2e4195706dee87b785bbf257d73.gz'>
|
|
254
|
+
<name>Update description of gem</name>
|
|
255
|
+
</patch>
|
|
256
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070811060413' local_date='Sat Aug 11 15:04:13 JST 2007' inverted='False' hash='20070811060413-cbc08-b0f661d63b12515e28ad4e2c908072c2dd61d758.gz'>
|
|
257
|
+
<name>Remove the faulty path from the post_install message on installing a gem.</name>
|
|
258
|
+
</patch>
|
|
259
|
+
<patch author='comp.lang.zenix+ramaze@gmail.com' date='20070729131107' local_date='Sun Jul 29 22:11:07 JST 2007' inverted='False' hash='20070729131107-206fc-fe11fc42dc52fc21b84cfd95aa29988be5a7d5f0.gz'>
|
|
260
|
+
<name>Added directory listing & another option</name>
|
|
261
|
+
</patch>
|
|
262
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728171834' local_date='Sun Jul 29 02:18:34 JST 2007' inverted='False' hash='20070728171834-cbc08-9c206125d8ef00717e977e0f79812f7772f57947.gz'>
|
|
263
|
+
<name>move Dispatcher::build_response to Response#build</name>
|
|
264
|
+
</patch>
|
|
265
|
+
<patch author='Jonathan Buch <jo@helloit.fi>' date='20070728125641' local_date='Sat Jul 28 21:56:41 JST 2007' inverted='False' hash='20070728125641-21a65-2a50569dc204069e7d403f26d17de3a493615847.gz'>
|
|
266
|
+
<name>partial helper module docs, pager add docs for private methods too</name>
|
|
267
|
+
</patch>
|
|
268
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728105945' local_date='Sat Jul 28 19:59:45 JST 2007' inverted='False' hash='20070728105945-cbc08-eb2481294e2813beaf9708a1a13ff985d1179267.gz'>
|
|
269
|
+
<name>Docs for Dispatcher::Action and RenderPartial, improving docs a bit concerning aspects *_all</name>
|
|
270
|
+
</patch>
|
|
271
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728104645' local_date='Sat Jul 28 19:46:45 JST 2007' inverted='False' hash='20070728104645-cbc08-a4130e5d3d4392b6900732f98b17e3eccddf9469.gz'>
|
|
272
|
+
<name>Full docs for Cache</name>
|
|
273
|
+
</patch>
|
|
274
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728104449' local_date='Sat Jul 28 19:44:49 JST 2007' inverted='False' hash='20070728104449-cbc08-99e43a9c569a8a902ad155c3d4fec44b0fcb92f6.gz'>
|
|
275
|
+
<name>Full docs for CacheHelper</name>
|
|
276
|
+
</patch>
|
|
277
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728104316' local_date='Sat Jul 28 19:43:16 JST 2007' inverted='False' hash='20070728104316-cbc08-230cfc5497c48176e28053a2e32af553db8d6c72.gz'>
|
|
278
|
+
<name>A bit of meta-docs for IdentityHelper.</name>
|
|
279
|
+
</patch>
|
|
280
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728103005' local_date='Sat Jul 28 19:30:05 JST 2007' inverted='False' hash='20070728103005-cbc08-df7fce42c912e153ee343be831db58e256f8a4ca.gz'>
|
|
281
|
+
<name>finalize docs for controller/resolve</name>
|
|
282
|
+
</patch>
|
|
283
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728102635' local_date='Sat Jul 28 19:26:35 JST 2007' inverted='False' hash='20070728102635-cbc08-485d28d04dd4d34c5a7e8e9bf507698587ae4d4d.gz'>
|
|
284
|
+
<name>document Localize class</name>
|
|
285
|
+
</patch>
|
|
286
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728102438' local_date='Sat Jul 28 19:24:38 JST 2007' inverted='False' hash='20070728102438-cbc08-388ef316a30e7a136bea19dd0000864ceffa8454.gz'>
|
|
287
|
+
<name>Remove FormHelper and specs</name>
|
|
288
|
+
</patch>
|
|
289
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070728102252' local_date='Sat Jul 28 19:22:52 JST 2007' inverted='False' hash='20070728102252-cbc08-9fdde38700554b2b74446782302b8e269d3c0e8c.gz'>
|
|
290
|
+
<name>Remove ReFeed/FeedHelper and Store::YAML and their specs</name>
|
|
291
|
+
</patch>
|
|
292
|
+
<patch author='Jonathan Buch <jo@helloit.fi>' date='20070728112241' local_date='Sat Jul 28 20:22:41 JST 2007' inverted='False' hash='20070728112241-21a65-ce8e1967f306ad92b82dc9e482835ea5232287cc.gz'>
|
|
293
|
+
<name>Pager: documentation, major spec update</name>
|
|
294
|
+
</patch>
|
|
295
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070727212735' local_date='Sat Jul 28 06:27:35 JST 2007' inverted='False' hash='20070727212735-cbc08-c7647b7dc5a669dd53c4a0867ae3514959b375d7.gz'>
|
|
296
|
+
<name>Fix typos in AuthHelper</name>
|
|
297
|
+
</patch>
|
|
298
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070727210626' local_date='Sat Jul 28 06:06:26 JST 2007' inverted='False' hash='20070727210626-a47f2-bb0c7ea347725d46f3eb45c103a635f4a377b3cf.gz'>
|
|
299
|
+
<name>Haml/Sass spec cleanup</name>
|
|
300
|
+
</patch>
|
|
301
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070727044223' local_date='Fri Jul 27 13:42:23 JST 2007' inverted='False' hash='20070727044223-cbc08-08191d6a485e2b2adabc4f452b08ae38e461a865.gz'>
|
|
302
|
+
<name>Documentation for mongrel/fcgi/cgi and sourcereload, reduces some overhead in the Cgi and Fcgi adapters.</name>
|
|
303
|
+
</patch>
|
|
304
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070727043526' local_date='Fri Jul 27 13:35:26 JST 2007' inverted='False' hash='20070727043526-cbc08-08185d0079e1f37d85967f7ef892d2baecaa7caf.gz'>
|
|
305
|
+
<name>update docs concerning FeedHelper and ReFeed.</name>
|
|
306
|
+
</patch>
|
|
307
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070727042836' local_date='Fri Jul 27 13:28:36 JST 2007' inverted='False' hash='20070727042836-cbc08-104a34300e5e13290cd7f0c1c997623e7056d888.gz'>
|
|
308
|
+
<name>Change wiktacular so it uses layout instead of Page.</name>
|
|
309
|
+
</patch>
|
|
310
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070727042608' local_date='Fri Jul 27 13:26:08 JST 2007' inverted='False' hash='20070727042608-cbc08-8af2675e2f52380eb55bdef76536f240d5cea347.gz'>
|
|
311
|
+
<name>Put initial mapping into Controller::inherited so layout can work with it. Controller::startup is too late. Also introduces a change to delete any old mapping on usage of Controller::map.</name>
|
|
312
|
+
</patch>
|
|
313
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070726235425' local_date='Fri Jul 27 08:54:25 JST 2007' inverted='False' hash='20070726235425-cbc08-2febf8565a4b10f3142f7aff529ce74f62e91f30.gz'>
|
|
314
|
+
<name>Add default content-type text/css for Sass and update specs for it</name>
|
|
315
|
+
</patch>
|
|
316
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070726234835' local_date='Fri Jul 27 08:48:35 JST 2007' inverted='False' hash='20070726234835-cbc08-a06b8dc7bd18db9aa05cd0b84fd412fc547756cb.gz'>
|
|
317
|
+
<name>Add autoload for Sass</name>
|
|
318
|
+
</patch>
|
|
319
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070726233404' local_date='Fri Jul 27 08:34:04 JST 2007' inverted='False' hash='20070726233404-cbc08-57ffd18f51c1615848921f71f1b8472e25ba51e9.gz'>
|
|
320
|
+
<name>Fix typo in proto/template/index.xhtml</name>
|
|
321
|
+
</patch>
|
|
322
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070726194823' local_date='Fri Jul 27 04:48:23 JST 2007' inverted='False' hash='20070726194823-a47f2-c9202b1804ea79fb88c54b85e4cc205c4499ed7e.gz'>
|
|
323
|
+
<name>initial support for Sass CSS templates</name>
|
|
324
|
+
</patch>
|
|
325
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070726114557' local_date='Thu Jul 26 20:45:57 JST 2007' inverted='False' hash='20070726114557-cbc08-4c9849c268c888b30dd26674bf526542af9b16dd.gz'>
|
|
326
|
+
<name>Implementing layouts, view this patch to find out more as it also adds docs and specs</name>
|
|
327
|
+
</patch>
|
|
328
|
+
<patch author='Jonathan Buch <jo@helloit.fi>' date='20070726083547' local_date='Thu Jul 26 17:35:47 JST 2007' inverted='False' hash='20070726083547-21a65-5e8ba6f8c413e9a870b67aa727ef246f885334ff.gz'>
|
|
329
|
+
<name>Documentation for tool/localize</name>
|
|
330
|
+
</patch>
|
|
331
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070726100958' local_date='Thu Jul 26 19:09:58 JST 2007' inverted='False' hash='20070726100958-cbc08-55e0879676ae549859d2701d667b8d5975501d48.gz'>
|
|
332
|
+
<name>Add another spec for Action()</name>
|
|
333
|
+
</patch>
|
|
334
|
+
<patch author='comp.lang.zenix+ramaze@gmail.com' date='20070725163717' local_date='Thu Jul 26 01:37:17 JST 2007' inverted='False' hash='20070725163717-206fc-09386e489404b5499da43893a3ab045ce6e85ba3.gz'>
|
|
335
|
+
<name>Added capitalization to Ramaze::Tool::Create output</name>
|
|
336
|
+
</patch>
|
|
337
|
+
<patch author='comp.lang.zenix+ramaze@gmail.com' date='20070725092941' local_date='Wed Jul 25 18:29:41 JST 2007' inverted='False' hash='20070725092941-206fc-aa36e326c6d4f4e89f4e91c77fab69ba01da9f43.gz'>
|
|
338
|
+
<name>Updated user map information, added riffraff</name>
|
|
339
|
+
</patch>
|
|
340
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070725065141' local_date='Wed Jul 25 15:51:41 JST 2007' inverted='False' hash='20070725065141-cbc08-91e17b2d5bc2ab51f91c72a01ba63cd3baefced6.gz'>
|
|
341
|
+
<name>minor beautification and docs for controller/resolve</name>
|
|
342
|
+
</patch>
|
|
343
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070725064251' local_date='Wed Jul 25 15:42:51 JST 2007' inverted='False' hash='20070725064251-cbc08-a6f473c21b84f972dbf300d0d89abec3c61b75c4.gz'>
|
|
344
|
+
<name>fix a end-space</name>
|
|
345
|
+
</patch>
|
|
346
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070725064107' local_date='Wed Jul 25 15:41:07 JST 2007' inverted='False' hash='20070725064107-cbc08-3b40e273cc3f4c9cb8d33b7d0ae4c0eb9d6fd161.gz'>
|
|
347
|
+
<name>Further improvment on error-handling on exception during render</name>
|
|
348
|
+
</patch>
|
|
349
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070725071551' local_date='Wed Jul 25 16:15:51 JST 2007' inverted='False' hash='20070725071551-cbc08-b2ad42d7cc89d811c17a832933f092aaa91a2e13.gz'>
|
|
350
|
+
<name>Add tries to require rubygems</name>
|
|
351
|
+
</patch>
|
|
352
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070725045521' local_date='Wed Jul 25 13:55:21 JST 2007' inverted='False' hash='20070725045521-cbc08-5b74800fd96a14ca447d7c3148d9f5843b4d9484.gz'>
|
|
353
|
+
<name>fix typo in bin/ramaze</name>
|
|
354
|
+
</patch>
|
|
355
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724114731' local_date='Tue Jul 24 20:47:31 JST 2007' inverted='False' hash='20070724114731-cbc08-38ec529359d312921b115c60eba60e780ac57cb4.gz'>
|
|
356
|
+
<name>Documentation for Dispatcher, GlobalStruct, Dispatcher::Error, Tool::MIME, Response, Store::Default (adds some beautification in Dispatcher)</name>
|
|
357
|
+
</patch>
|
|
358
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724051536' local_date='Tue Jul 24 14:15:36 JST 2007' inverted='False' hash='20070724051536-cbc08-36cb997dc2afbf9679b3eb7a9499df833b153620.gz'>
|
|
359
|
+
<name>document AspectHelper and Syslog</name>
|
|
360
|
+
</patch>
|
|
361
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724050058' local_date='Tue Jul 24 14:00:58 JST 2007' inverted='False' hash='20070724050058-cbc08-6af25e586ace3c3898fe631430c755b6da183e9c.gz'>
|
|
362
|
+
<name>document some raketasks</name>
|
|
363
|
+
</patch>
|
|
364
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724050030' local_date='Tue Jul 24 14:00:30 JST 2007' inverted='False' hash='20070724050030-cbc08-6e85a20436e64ff80dce1d61cf3a6c262b1ca83d.gz'>
|
|
365
|
+
<name>move error-message in sourcereload into the failed hook</name>
|
|
366
|
+
</patch>
|
|
367
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724050017' local_date='Tue Jul 24 14:00:17 JST 2007' inverted='False' hash='20070724050017-cbc08-3fa824e99ca35df6f328065df5d66f7c2024bbb5.gz'>
|
|
368
|
+
<name>full docs for sourcereload</name>
|
|
369
|
+
</patch>
|
|
370
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724045957' local_date='Tue Jul 24 13:59:57 JST 2007' inverted='False' hash='20070724045957-cbc08-db82dbb73b9eba744db377d4b1ff09c5f32546d2.gz'>
|
|
371
|
+
<name>docs for informer</name>
|
|
372
|
+
</patch>
|
|
373
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070724045915' local_date='Tue Jul 24 13:59:15 JST 2007' inverted='False' hash='20070724045915-cbc08-b8ef1686af0140002d7c04bcbaaf420ff85a3668.gz'>
|
|
374
|
+
<name>main.rb is now start.rb</name>
|
|
375
|
+
</patch>
|
|
376
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070723231625' local_date='Tue Jul 24 08:16:25 JST 2007' inverted='False' hash='20070723231625-a47f2-fa8b18ad56190767c37df1b62813004f1da3a8e6.gz'>
|
|
377
|
+
<name>tmm1's location on the ramaze users map</name>
|
|
378
|
+
</patch>
|
|
379
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070723164824' local_date='Tue Jul 24 01:48:24 JST 2007' inverted='False' hash='20070723164824-cbc08-b3c30d1b9d217b55266724d2942b0cc32eb2d528.gz'>
|
|
380
|
+
<name>add placemark for zenix</name>
|
|
381
|
+
</patch>
|
|
382
|
+
<patch author='jesuswasramazing.10.pistos@geoshell.com' date='20070723163054' local_date='Tue Jul 24 01:30:54 JST 2007' inverted='False' hash='20070723163054-55b44-5844e3f13acda0a481519925e3c85e2680d6ce34.gz'>
|
|
383
|
+
<name>Added Pistos avatar.</name>
|
|
384
|
+
</patch>
|
|
385
|
+
<patch author='jesuswasramazing.10.pistos@geoshell.com' date='20070723160354' local_date='Tue Jul 24 01:03:54 JST 2007' inverted='False' hash='20070723160354-55b44-ccea6492ac540c1070758f2bc2b14e70ddbf5521.gz'>
|
|
386
|
+
<name>Update of Pistos' description on Google Map.</name>
|
|
387
|
+
</patch>
|
|
388
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070723160312' local_date='Tue Jul 24 01:03:12 JST 2007' inverted='False' hash='20070723160312-cbc08-993d0abdbdc0d6b0551d905ea20518cfdb3d1aae.gz'>
|
|
389
|
+
<name>update users.kml</name>
|
|
390
|
+
</patch>
|
|
391
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070723154603' local_date='Tue Jul 24 00:46:03 JST 2007' inverted='False' hash='20070723154603-cbc08-8ce641be45266ade03a10bfde2135ad4c5134dc8.gz'>
|
|
392
|
+
<name>add doc/meta/users.kml</name>
|
|
393
|
+
</patch>
|
|
394
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070721182406' local_date='Sun Jul 22 03:24:06 JST 2007' inverted='False' hash='20070721182406-cbc08-499bdbcf9c9008a09bd2e6205fd99475296fedac.gz'>
|
|
395
|
+
<name>fix abort for bin/ramaze</name>
|
|
396
|
+
</patch>
|
|
397
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070721132017' local_date='Sat Jul 21 22:20:17 JST 2007' inverted='False' hash='20070721132017-cbc08-0b12766ca005570b752cc4e14ff13f43d2e6074b.gz'>
|
|
398
|
+
<name>Add desc to release task</name>
|
|
399
|
+
</patch>
|
|
400
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070721130912' local_date='Sat Jul 21 22:09:12 JST 2007' inverted='False' hash='20070721130912-cbc08-c317c8780eebeafb28e4db869413492cc369634e.gz'>
|
|
401
|
+
<name>Update CHANGELOG and AUTHORS</name>
|
|
402
|
+
</patch>
|
|
2
403
|
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070721130806' local_date='Sat Jul 21 22:08:06 JST 2007' inverted='False' hash='20070721130806-cbc08-619388b49738c336152cd2a39c5fb82a2f4aecc0.gz'>
|
|
3
404
|
<name>TAG 0.1.3</name>
|
|
4
405
|
</patch>
|