ramaze 0.1.4 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +26 -6
- data/bin/ramaze +8 -1
- data/doc/AUTHORS +13 -11
- data/doc/CHANGELOG +472 -13
- data/doc/LEGAL +22 -0
- data/doc/README +1 -4
- data/doc/TODO +7 -2
- data/doc/changes.txt +472 -13
- data/doc/changes.xml +472 -13
- data/doc/meta/announcement.txt +21 -23
- data/doc/readme_chunks/appendix.txt +0 -3
- data/doc/readme_chunks/features.txt +1 -1
- data/examples/auth/auth.rb +49 -0
- data/examples/auth/template/layout.haml +20 -0
- data/examples/auth/template/login.haml +16 -0
- data/examples/blog/spec/blog.rb +1 -0
- data/examples/caching.rb +5 -6
- data/examples/css.rb +37 -0
- data/examples/layout.rb +3 -17
- data/examples/simple_auth.rb +23 -0
- data/examples/sourceview/public/images/file.gif +0 -0
- data/examples/sourceview/public/images/folder.gif +0 -0
- data/examples/sourceview/public/images/tv-collapsable-last.gif +0 -0
- data/examples/sourceview/public/images/tv-collapsable.gif +0 -0
- data/examples/sourceview/public/images/tv-expandable-last.gif +0 -0
- data/examples/sourceview/public/images/tv-expandable.gif +0 -0
- data/examples/sourceview/public/images/tv-item-last.gif +0 -0
- data/examples/sourceview/public/images/tv-item.gif +0 -0
- data/examples/sourceview/public/jquery.js +11 -0
- data/examples/sourceview/public/jquery.treeview.css +47 -0
- data/examples/sourceview/public/jquery.treeview.js +223 -0
- data/examples/sourceview/public/sourceview.js +16 -0
- data/examples/sourceview/sourceview.rb +74 -0
- data/examples/sourceview/template/index.haml +43 -0
- data/examples/templates/template/external.nag +28 -0
- data/examples/templates/template/external.xsl +57 -0
- data/examples/templates/template_amrita2.rb +2 -4
- data/examples/templates/template_erubis.rb +1 -1
- data/examples/templates/template_haml.rb +1 -1
- data/examples/templates/template_liquid.rb +2 -4
- data/examples/templates/template_markaby.rb +2 -4
- data/examples/templates/template_nagoro.rb +53 -0
- data/examples/templates/template_remarkably.rb +2 -4
- data/examples/templates/template_xslt.rb +52 -0
- data/examples/whywiki/spec/whywiki.rb +63 -0
- data/examples/whywiki/start.rb +11 -13
- data/examples/whywiki/template/edit.xhtml +3 -3
- data/examples/whywiki/template/show.xhtml +5 -8
- data/examples/wikore/spec/wikore.rb +115 -0
- data/examples/wikore/src/controller.rb +81 -0
- data/examples/wikore/src/model.rb +51 -0
- data/examples/wikore/start.rb +6 -0
- data/examples/wikore/template/index.xhtml +8 -0
- data/examples/wiktacular/spec/wiktacular.rb +1 -0
- data/examples/wiktacular/src/controller.rb +1 -1
- data/lib/ramaze.rb +6 -3
- data/lib/ramaze/action.rb +2 -13
- data/lib/ramaze/action/render.rb +36 -18
- data/lib/ramaze/adapter.rb +1 -1
- data/lib/ramaze/adapter/cgi.rb +0 -3
- data/lib/ramaze/adapter/evented_mongrel.rb +7 -0
- data/lib/ramaze/adapter/mongrel.rb +4 -13
- data/lib/ramaze/adapter/swiftiplied_mongrel.rb +7 -0
- data/lib/ramaze/cache.rb +12 -7
- data/lib/ramaze/contrib.rb +22 -0
- data/lib/ramaze/contrib/auto_params.rb +128 -0
- data/lib/ramaze/contrib/auto_params/get_args.rb +56 -0
- data/lib/ramaze/contrib/gzip_filter.rb +57 -0
- data/lib/ramaze/contrib/route.rb +40 -0
- data/lib/ramaze/contrib/sequel/fill.rb +12 -0
- data/lib/ramaze/controller.rb +17 -6
- data/lib/ramaze/controller/resolve.rb +51 -14
- data/lib/ramaze/dispatcher.rb +15 -13
- data/lib/ramaze/dispatcher/action.rb +4 -3
- data/lib/ramaze/dispatcher/directory.rb +3 -3
- data/lib/ramaze/dispatcher/error.rb +1 -1
- data/lib/ramaze/dispatcher/file.rb +17 -6
- data/lib/ramaze/error.rb +3 -0
- data/lib/ramaze/gestalt.rb +28 -8
- data/lib/ramaze/global.rb +26 -6
- data/lib/ramaze/global/globalstruct.rb +31 -6
- data/lib/ramaze/helper.rb +2 -1
- data/lib/ramaze/helper/aspect.rb +2 -2
- data/lib/ramaze/helper/auth.rb +6 -9
- data/lib/ramaze/helper/cache.rb +89 -9
- data/lib/ramaze/helper/cgi.rb +2 -2
- data/lib/ramaze/helper/formatting.rb +44 -0
- data/lib/ramaze/helper/link.rb +7 -5
- data/lib/ramaze/helper/partial.rb +6 -4
- data/lib/ramaze/helper/redirect.rb +24 -9
- data/lib/ramaze/helper/stack.rb +6 -1
- data/lib/ramaze/inform/growl.rb +1 -1
- data/lib/ramaze/inform/informer.rb +2 -1
- data/lib/ramaze/inform/informing.rb +6 -0
- data/lib/ramaze/inform/syslog.rb +1 -0
- data/lib/ramaze/snippets/array/put_within.rb +24 -0
- data/lib/ramaze/snippets/dictionary.rb +499 -0
- data/lib/ramaze/snippets/numeric/filesize_format.rb +19 -0
- data/lib/ramaze/snippets/ordered_set.rb +31 -0
- data/lib/ramaze/snippets/string/DIVIDE.rb +1 -1
- data/lib/ramaze/snippets/string/snake_case.rb +1 -1
- data/lib/ramaze/snippets/struct/values_at.rb +5 -1
- data/lib/ramaze/snippets/thread/into.rb +25 -0
- data/lib/ramaze/sourcereload.rb +39 -19
- data/lib/ramaze/spec/helper.rb +4 -1
- data/lib/ramaze/spec/helper/{context.rb → browser.rb} +3 -0
- data/lib/ramaze/spec/helper/layout.rb +3 -0
- data/lib/ramaze/spec/helper/minimal.rb +3 -0
- data/lib/ramaze/spec/helper/mock_http.rb +8 -5
- data/lib/ramaze/spec/helper/requester.rb +4 -1
- data/lib/ramaze/spec/helper/wrap.rb +15 -7
- data/lib/ramaze/template.rb +5 -1
- data/lib/ramaze/template/ezamar/engine.rb +2 -3
- data/lib/ramaze/template/ezamar/morpher.rb +26 -45
- data/lib/ramaze/template/nagoro.rb +53 -0
- data/lib/ramaze/template/none.rb +14 -0
- data/lib/ramaze/template/xslt.rb +96 -0
- data/lib/ramaze/tool.rb +0 -1
- data/lib/ramaze/tool/localize.rb +7 -2
- data/lib/ramaze/trinity/request.rb +1 -0
- data/lib/ramaze/trinity/session.rb +3 -3
- data/lib/ramaze/version.rb +2 -2
- data/rake_tasks/conf.rake +1 -2
- data/rake_tasks/{maintaince.rake → maintenance.rake} +25 -17
- data/spec/contrib/auto_params.rb +97 -0
- data/spec/contrib/route.rb +60 -0
- data/spec/contrib/sequel/fill.rb +46 -0
- data/spec/examples/caching.rb +1 -2
- data/spec/examples/css.rb +12 -0
- data/spec/examples/element.rb +0 -1
- data/spec/examples/hello.rb +0 -1
- data/spec/examples/simple.rb +0 -1
- data/spec/helper.rb +3 -2
- data/spec/ramaze/action/cache.rb +24 -7
- data/spec/ramaze/action/layout.rb +19 -11
- data/spec/ramaze/action/template/sub/sub_wrapper.xhtml +1 -0
- data/spec/ramaze/controller.rb +11 -0
- data/spec/ramaze/controller/template_resolving.rb +28 -27
- data/spec/ramaze/dispatcher.rb +32 -0
- data/spec/ramaze/dispatcher/directory.rb +2 -1
- data/spec/ramaze/element.rb +1 -1
- data/spec/ramaze/gestalt.rb +28 -0
- data/spec/ramaze/helper/aspect.rb +14 -3
- data/spec/ramaze/helper/cache.rb +78 -13
- data/spec/ramaze/helper/formatting.rb +20 -0
- data/spec/ramaze/helper/link.rb +2 -0
- data/spec/ramaze/helper/partial.rb +12 -1
- data/spec/ramaze/helper/redirect.rb +44 -8
- data/spec/ramaze/helper/stack.rb +3 -3
- data/spec/ramaze/helper/template/loop.xhtml +3 -0
- data/spec/ramaze/helper/template/num.xhtml +1 -0
- data/spec/ramaze/helper/template/recursive.xhtml +8 -0
- data/spec/ramaze/morpher.rb +25 -6
- data/spec/ramaze/params.rb +6 -2
- data/spec/ramaze/request.rb +5 -2
- data/spec/ramaze/session.rb +19 -0
- data/spec/ramaze/template.rb +2 -2
- data/spec/ramaze/template/amrita2.rb +2 -2
- data/spec/ramaze/template/erubis.rb +2 -2
- data/spec/ramaze/template/ezamar.rb +6 -3
- data/spec/ramaze/template/haml.rb +3 -3
- data/spec/ramaze/template/liquid.rb +1 -1
- data/spec/ramaze/template/markaby.rb +1 -1
- data/spec/ramaze/template/nagoro.rb +65 -0
- data/spec/ramaze/template/nagoro/another/long/action.nag +1 -0
- data/spec/ramaze/template/nagoro/combined.nag +1 -0
- data/spec/ramaze/template/nagoro/file_only.nag +1 -0
- data/spec/ramaze/template/nagoro/index.nag +1 -0
- data/spec/ramaze/template/nagoro/nested.nag +1 -0
- data/spec/ramaze/template/nagoro/some__long__action.nag +1 -0
- data/spec/ramaze/template/nagoro/sum.nag +1 -0
- data/spec/ramaze/template/remarkably.rb +1 -1
- data/spec/ramaze/template/sass.rb +1 -1
- data/spec/ramaze/template/xslt.rb +93 -0
- data/spec/ramaze/template/xslt/concat_words.xsl +16 -0
- data/spec/ramaze/template/xslt/index.xsl +14 -0
- data/spec/ramaze/template/xslt/products.xsl +32 -0
- data/spec/ramaze/template/xslt/ruby_version.xsl +14 -0
- data/spec/snippets/array/put_within.rb +32 -0
- data/spec/snippets/numeric/filesize_format.rb +12 -0
- data/spec/snippets/ordered_set.rb +56 -0
- data/spec/snippets/ramaze/caller_lines.rb +6 -3
- data/spec/snippets/string/snake_case.rb +3 -0
- metadata +118 -22
- data/doc/README.html +0 -737
- data/examples/fcgi.rb +0 -13
- data/lib/ramaze/snippets/numeric/human_readable_filesize_format.rb +0 -33
- data/lib/ramaze/tool/tidy.rb +0 -104
- data/spec/ramaze/controller/template/edit.xhtml +0 -1
- data/spec/ramaze/controller/template/edit/content.xhtml +0 -1
- data/spec/ramaze/tidy.rb +0 -12
- data/spec/snippets/numeric/human_readable_filesize_format.rb +0 -11
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ $:.unshift File.join(File.dirname(__FILE__), "lib")
|
|
14
14
|
require 'ramaze/version'
|
15
15
|
load 'rake_tasks/conf.rake'
|
16
16
|
load 'rake_tasks/gem.rake'
|
17
|
-
load 'rake_tasks/
|
17
|
+
load 'rake_tasks/maintenance.rake'
|
18
18
|
load 'rake_tasks/spec.rake'
|
19
19
|
|
20
20
|
task :default => ['test:all']
|
@@ -121,16 +121,14 @@ end
|
|
121
121
|
desc "show how many patches we made so far"
|
122
122
|
task :patchsize do
|
123
123
|
size = `darcs changes`.split("\n").reject{|l| l =~ /^\s/ or l.empty?}.size
|
124
|
-
puts "currently we
|
124
|
+
puts "currently we have #{size} patches"
|
125
125
|
puts "shall i now play some Death-Metal for you?" if size == 666
|
126
126
|
end
|
127
127
|
|
128
128
|
desc "show who made how many patches"
|
129
129
|
task :patchstat do
|
130
|
-
|
131
|
-
|
132
|
-
committs.sort.each do |committer, patches|
|
133
|
-
puts "#{committer.ljust(25)}: #{patches}"
|
130
|
+
authors.sort_by{|k,v| -v[:patches]}.each do |name, author|
|
131
|
+
puts "#{name} #{author[:patches]}"
|
134
132
|
end
|
135
133
|
end
|
136
134
|
|
@@ -164,3 +162,25 @@ task "testdoc" do
|
|
164
162
|
end
|
165
163
|
end
|
166
164
|
end
|
165
|
+
|
166
|
+
desc 'listing of available traits per class/module'
|
167
|
+
task 'traits' do
|
168
|
+
nodes = Hash.new{|h,k| h[k] = []}
|
169
|
+
Dir['lib/**/*.rb'].each do |file|
|
170
|
+
content = File.read(file)
|
171
|
+
traits = content.grep(/^\s*trait\s*:/)
|
172
|
+
traits.each do |trait|
|
173
|
+
space = content[0..content.index(trait)].scan(/^\s*(?:class|module)\s+(.*)$/)
|
174
|
+
space = space.flatten.join('::')
|
175
|
+
nodes[space] << trait.strip
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
nodes.each do |space, traits|
|
180
|
+
puts space
|
181
|
+
traits.each do |trait|
|
182
|
+
print ' ', trait, "\n"
|
183
|
+
end
|
184
|
+
puts
|
185
|
+
end
|
186
|
+
end
|
data/bin/ramaze
CHANGED
@@ -93,7 +93,13 @@ opts = OptionParser.new do |opt|
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
96
|
-
|
96
|
+
begin
|
97
|
+
opts.parse!(ARGV)
|
98
|
+
rescue OptionParser::MissingArgument => ex
|
99
|
+
puts ex
|
100
|
+
exit 1
|
101
|
+
end
|
102
|
+
|
97
103
|
runner = (ARGV + ['start.rb']).find{|f| File.exists?(f)}
|
98
104
|
execute = options.delete :execute
|
99
105
|
instant = options.delete :instant
|
@@ -117,6 +123,7 @@ else
|
|
117
123
|
begin
|
118
124
|
puts "running `#{runner}'"
|
119
125
|
require runner.to_s
|
126
|
+
options[:runner] = runner
|
120
127
|
rescue LoadError => ex
|
121
128
|
puts ex
|
122
129
|
puts ex.backtrace
|
data/doc/AUTHORS
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
Following persons (in alphabetical order) have contributed to Ramaze:
|
2
2
|
|
3
|
-
Aman Gupta
|
4
|
-
Christian Neukirchen
|
5
|
-
Clive Crous
|
6
|
-
Fabian Buch
|
7
|
-
Gabriele Renzi
|
8
|
-
Jonathan Buch
|
9
|
-
Lars Olsson
|
10
|
-
Martin Hilbig
|
11
|
-
Michael Fellinger
|
12
|
-
Pistos
|
13
|
-
|
3
|
+
Aman Gupta - aman@ramaze.net
|
4
|
+
Christian Neukirchen - chneukirchen@gmail.com
|
5
|
+
Clive Crous - clive@crous.co.za
|
6
|
+
Fabian Buch - fabian.buch@fabian-buch.de
|
7
|
+
Gabriele Renzi - rff.rff@gmail.com
|
8
|
+
Jonathan Buch - john@oxyliquit.de
|
9
|
+
Lars Olsson - lasso@lassoweb.se
|
10
|
+
Martin Hilbig - blueonyx@dev-area.net
|
11
|
+
Michael Fellinger - m.fellinger@gmail.com
|
12
|
+
Pistos - jesuswasramazing.10.pistos@geoshell.com
|
13
|
+
Stephan Maka - stephan@spaceboyz.net
|
14
|
+
zenix - comp.lang.zenix+ramaze@gmail.com
|
15
|
+
|
data/doc/CHANGELOG
CHANGED
@@ -1,8 +1,470 @@
|
|
1
|
-
|
2
|
-
* Update
|
1
|
+
Tue Nov 20 01:16:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
2
|
+
* Update TODO, Version and announcement
|
3
3
|
|
4
|
-
|
5
|
-
*
|
4
|
+
Mon Nov 19 23:03:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
5
|
+
* add (c) for Thread::into
|
6
|
+
|
7
|
+
Mon Nov 19 22:56:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
8
|
+
* Adding Thread::into, almost forgot about it.
|
9
|
+
|
10
|
+
Mon Nov 19 18:31:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
11
|
+
* Update doc/meta/announcement
|
12
|
+
|
13
|
+
Mon Nov 19 22:47:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
14
|
+
* Remove Tool::Tidy and all traces of it, it's leaking memory, has problems upgrading and isn't used by anybody i know of.
|
15
|
+
|
16
|
+
Sun Nov 18 13:19:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
17
|
+
* Using OrderedSet instead of Set helps keeping sessions deleted in chronological order
|
18
|
+
|
19
|
+
Sun Nov 18 12:33:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
20
|
+
* Fix runner/starter/SEEED/APPDIR for bin/ramaze once again.
|
21
|
+
|
22
|
+
Sun Nov 18 08:18:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
23
|
+
* Fix typo in string#/
|
24
|
+
|
25
|
+
Sun Nov 18 08:11:50 JST 2007 Aman Gupta <aman@ramaze.net>
|
26
|
+
* Fix some spelling mistakes and clean up authors and patchstat rake tasks
|
27
|
+
|
28
|
+
Sun Nov 18 08:06:50 JST 2007 Aman Gupta <aman@ramaze.net>
|
29
|
+
* Updated doc/AUTHORS
|
30
|
+
|
31
|
+
Sat Nov 17 05:30:08 JST 2007 Aman Gupta <aman@ramaze.net>
|
32
|
+
* Add simple spec for examples/css
|
33
|
+
|
34
|
+
Fri Nov 16 14:26:12 JST 2007 Aman Gupta <aman@ramaze.net>
|
35
|
+
* Add dynamic css controller example + related sourcereload/caching enhancements
|
36
|
+
|
37
|
+
Fri Nov 16 13:19:10 JST 2007 Aman Gupta <aman@ramaze.net>
|
38
|
+
* New caching implementation, add support for :ttl and :key options + rdoc + specs
|
39
|
+
|
40
|
+
Fri Nov 16 13:00:19 JST 2007 Aman Gupta <aman@ramaze.net>
|
41
|
+
* Clean up examples/caching
|
42
|
+
|
43
|
+
Fri Nov 16 09:19:25 JST 2007 Aman Gupta <aman@ramaze.net>
|
44
|
+
* Improve file cache to work with mapped controllers
|
45
|
+
|
46
|
+
Thu Nov 15 06:44:55 JST 2007 Aman Gupta <aman@ramaze.net>
|
47
|
+
* Add Controller#cache wrapper for trait :actions_cached
|
48
|
+
|
49
|
+
Thu Nov 15 06:41:58 JST 2007 Aman Gupta <aman@ramaze.net>
|
50
|
+
* Prevent already initialized constant warnings in session spec
|
51
|
+
|
52
|
+
Tue Nov 13 12:56:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
53
|
+
* Add traits task to list traits we have, only for quick and dirty overview, a bit buggy
|
54
|
+
|
55
|
+
Mon Nov 12 13:04:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
56
|
+
* Add spec for IP_COUNT_LIMIT bug
|
57
|
+
|
58
|
+
Mon Nov 12 12:52:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
59
|
+
* Improvment for add-copyright task
|
60
|
+
|
61
|
+
Mon Nov 12 12:48:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
62
|
+
* Rewrite of helper/formatting for number_format
|
63
|
+
|
64
|
+
Mon Nov 12 11:09:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
65
|
+
* Fixing Session::IP_COUNT, the same session-id should not be counted multiple times.
|
66
|
+
|
67
|
+
Thu Nov 8 16:16:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
68
|
+
* Update (c) and shipped libs
|
69
|
+
|
70
|
+
Sat Nov 10 07:34:53 JST 2007 Aman Gupta <aman@ramaze.net>
|
71
|
+
* Bugfix from merb to get_args.rb
|
72
|
+
|
73
|
+
Fri Nov 9 17:57:49 JST 2007 Aman Gupta <aman@ramaze.net>
|
74
|
+
* Don't log backtraces for Ramaze::Error::NoAction
|
75
|
+
|
76
|
+
Fri Nov 9 17:56:36 JST 2007 Aman Gupta <aman@ramaze.net>
|
77
|
+
* Add Ramaze::Contrib::AutoParams for merb 0.4 style action parameterization
|
78
|
+
|
79
|
+
Thu Nov 8 04:20:54 JST 2007 Aman Gupta <aman@ramaze.net>
|
80
|
+
* Hack to fix strange rack behavior on PUT requests
|
81
|
+
|
82
|
+
Thu Nov 8 03:21:00 JST 2007 Aman Gupta <aman@ramaze.net>
|
83
|
+
* Print spec failure output so its readable
|
84
|
+
|
85
|
+
Thu Nov 8 03:20:51 JST 2007 Aman Gupta <aman@ramaze.net>
|
86
|
+
* Allow get('/action', { :input => 'value' }) and get('/action', 'input=value')
|
87
|
+
|
88
|
+
Thu Nov 8 03:19:25 JST 2007 Aman Gupta <aman@ramaze.net>
|
89
|
+
* Ran rake authors
|
90
|
+
|
91
|
+
Tue Nov 6 16:12:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
92
|
+
* Move spec/helper/context to spec/helper/browser
|
93
|
+
|
94
|
+
Tue Nov 6 15:55:10 JST 2007 Aman Gupta <aman@ramaze.net>
|
95
|
+
* Simplify hash.inject([]) to hash.map
|
96
|
+
|
97
|
+
Tue Nov 6 15:53:05 JST 2007 Aman Gupta <aman@ramaze.net>
|
98
|
+
* Show last used email in AUTHORS file
|
99
|
+
|
100
|
+
Mon Nov 5 05:50:18 JST 2007 Aman Gupta <aman@ramaze.net>
|
101
|
+
* Remove simple_auth dependency on base64, use Array#pack('m') instead
|
102
|
+
|
103
|
+
Sun Nov 4 09:21:35 JST 2007 Aman Gupta <aman@ramaze.net>
|
104
|
+
* Add simple_auth example that implements Basic HTTP Authentication
|
105
|
+
|
106
|
+
Sun Nov 4 07:37:43 JST 2007 Aman Gupta <aman@ramaze.net>
|
107
|
+
* Cleanup RedirectHelper spec and add test for respond() with custom status code
|
108
|
+
|
109
|
+
Fri Nov 2 11:12:13 JST 2007 Aman Gupta <aman@ramaze.net>
|
110
|
+
* Add Controller#respond to RedirectHelper + specs
|
111
|
+
|
112
|
+
Wed Oct 31 05:26:20 JST 2007 Aman Gupta <aman@ramaze.net>
|
113
|
+
* Add FormattingHelper + specs
|
114
|
+
|
115
|
+
Tue Oct 30 02:53:53 JST 2007 Aman Gupta <aman@ramaze.net>
|
116
|
+
* Render aspects around actions before applying layout, and prevent aspects for render_template and layout rendering
|
117
|
+
|
118
|
+
Thu Oct 25 10:08:41 JST 2007 Aman Gupta <aman@ramaze.net>
|
119
|
+
* Change deprecated <%%> and invalid < use to prepare for Nagoro
|
120
|
+
|
121
|
+
Thu Oct 25 10:07:38 JST 2007 Aman Gupta <aman@ramaze.net>
|
122
|
+
* Fix references to Ezamar in template/nagoro.rb
|
123
|
+
|
124
|
+
Thu Oct 25 10:06:22 JST 2007 Aman Gupta <aman@ramaze.net>
|
125
|
+
* Refactored OrderedSet + specs again
|
126
|
+
|
127
|
+
Thu Oct 25 07:48:07 JST 2007 Aman Gupta <aman@ramaze.net>
|
128
|
+
* Update String#snake_case so CSSController automaps to /css instead of /c_s_s
|
129
|
+
|
130
|
+
Thu Oct 25 06:56:24 JST 2007 Aman Gupta <aman@ramaze.net>
|
131
|
+
* Layout cleanup - remove unused &block and don't include layout for render_template calls
|
132
|
+
|
133
|
+
Thu Oct 25 06:17:28 JST 2007 Aman Gupta <aman@ramaze.net>
|
134
|
+
* Clean up OrderedSet implementation and add more specs
|
135
|
+
|
136
|
+
Thu Oct 25 04:24:30 JST 2007 Aman Gupta <aman@ramaze.net>
|
137
|
+
* render_template fix and specs for usage within loops and recursively
|
138
|
+
|
139
|
+
Thu Oct 25 04:18:00 JST 2007 Aman Gupta <aman@ramaze.net>
|
140
|
+
* Allow for <%=@var%> style constructs with Ezamar (no spaces required)
|
141
|
+
|
142
|
+
Thu Oct 25 04:16:05 JST 2007 Aman Gupta <aman@ramaze.net>
|
143
|
+
* Implement Dispatcher::Action::FILTER as an OrderedSet so it isn't affected by source reload
|
144
|
+
|
145
|
+
Wed Oct 24 08:23:22 JST 2007 Aman Gupta <aman@ramaze.net>
|
146
|
+
* Conform to http spec regarding absolute uris in Location header
|
147
|
+
|
148
|
+
Mon Oct 22 12:40:52 JST 2007 Aman Gupta <aman@ramaze.net>
|
149
|
+
* Update auth example to use new :load_engines config option
|
150
|
+
|
151
|
+
Sun Oct 21 05:36:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
152
|
+
* Minor improvment of spec wrapper
|
153
|
+
|
154
|
+
Sun Oct 21 03:59:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
155
|
+
* ran fix-end-spaces
|
156
|
+
|
157
|
+
Sun Oct 21 13:54:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
158
|
+
* Don't create meta-cache structure
|
159
|
+
|
160
|
+
Sun Oct 21 13:50:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
161
|
+
* Require fileutils for Ramaze::Action::render
|
162
|
+
|
163
|
+
Sun Oct 21 12:40:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
164
|
+
* Fix cache spec and add Action#extended_path again
|
165
|
+
|
166
|
+
Sun Oct 21 09:04:35 JST 2007 Aman Gupta <aman@ramaze.net>
|
167
|
+
* Fix off-by-one on spec output and cleanup template_root references in various specs
|
168
|
+
|
169
|
+
Sun Oct 21 07:11:59 JST 2007 Aman Gupta <aman@ramaze.net>
|
170
|
+
* Stop RDoc from complaining
|
171
|
+
|
172
|
+
Sun Oct 21 08:09:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
173
|
+
* Fix Global options for (template|public)_root in spec/helper
|
174
|
+
|
175
|
+
Sun Oct 21 00:17:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
176
|
+
* Don't activate Dispatcher::Directory by default.
|
177
|
+
|
178
|
+
Sat Oct 20 23:38:04 JST 2007 Aman Gupta <aman@ramaze.net>
|
179
|
+
* Updated benchmark formatting for wiki and latest benchmarks
|
180
|
+
|
181
|
+
Sat Oct 20 23:27:50 JST 2007 Aman Gupta <aman@ramaze.net>
|
182
|
+
* Add Global.load_engines to specify templating engines to load at startup
|
183
|
+
|
184
|
+
Sat Oct 20 03:27:54 JST 2007 Aman Gupta <aman@ramaze.net>
|
185
|
+
* Clean up Controller#extension_order and add comment to Action#uncached_render
|
186
|
+
|
187
|
+
Sat Oct 20 01:23:49 JST 2007 Aman Gupta <aman@ramaze.net>
|
188
|
+
* Add None template engine that does no processing
|
189
|
+
|
190
|
+
Fri Oct 19 06:39:15 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
191
|
+
* Minor CgiHelper docfix
|
192
|
+
|
193
|
+
Fri Oct 19 06:35:49 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
194
|
+
* whywiki example cleanups - remove extra output, use Rs() instead of R(self) and use methods defined by CgiHelper instead of CGI.(un)?escape
|
195
|
+
|
196
|
+
Fri Oct 19 01:38:46 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
197
|
+
* Allow render_template to work recursively + spec
|
198
|
+
|
199
|
+
Thu Oct 18 21:29:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
200
|
+
* Add spec for whywiki (ty @ riffraff)
|
201
|
+
|
202
|
+
Thu Oct 18 13:47:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
203
|
+
* Add Ramaze::APPDIR to complement Ramaze::SEEED, make Global.public_root and Global.template_root relative from the APPDIR so we don't have to care where we run start.rb from
|
204
|
+
|
205
|
+
Thu Oct 18 13:47:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
206
|
+
* Change spec to point to an unexisting file in any case
|
207
|
+
|
208
|
+
Thu Oct 18 13:42:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
209
|
+
* Some improvments for whywiki
|
210
|
+
|
211
|
+
Thu Oct 18 08:40:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
212
|
+
* Introduce Controller::engine and change specs to use the new form
|
213
|
+
|
214
|
+
Wed Oct 17 22:07:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
215
|
+
* LinkHelper was escaping query-parameters, update implementation and specs.
|
216
|
+
|
217
|
+
Wed Oct 17 22:07:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
218
|
+
* Add template example for nagoro
|
219
|
+
|
220
|
+
Wed Oct 17 21:31:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
221
|
+
* Remove some junk from Rakefile, we don't use svn
|
222
|
+
|
223
|
+
Wed Oct 17 21:28:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
224
|
+
* Make examples/sourceview work anywhere
|
225
|
+
|
226
|
+
Thu Oct 18 04:24:59 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
227
|
+
* A few cleanups to the whywiki example (thanks gimb)
|
228
|
+
|
229
|
+
Tue Oct 16 07:13:53 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
230
|
+
* Add caching to sourceview
|
231
|
+
|
232
|
+
Tue Oct 16 23:49:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
233
|
+
* Keep the session[:STACK] out if we don't need it
|
234
|
+
|
235
|
+
Tue Oct 16 23:09:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
236
|
+
* Simplify redirection
|
237
|
+
|
238
|
+
Tue Oct 16 23:08:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
239
|
+
* Correct $LOAD_PATH in spec/helper.rb
|
240
|
+
|
241
|
+
Tue Oct 16 22:31:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
242
|
+
* Sequel API change
|
243
|
+
|
244
|
+
Tue Oct 16 23:53:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
245
|
+
* Small improvment for docs of RedirectHelper
|
246
|
+
|
247
|
+
Tue Oct 16 23:52:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
248
|
+
* Small beautification to Dispatcher::File
|
249
|
+
|
250
|
+
Tue Oct 16 21:00:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
251
|
+
* Adapt Nagoro for latest API changes
|
252
|
+
|
253
|
+
Mon Oct 15 13:58:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
254
|
+
* Add (for now optional) support for Nagoro templates.
|
255
|
+
|
256
|
+
Fri Oct 12 21:41:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
257
|
+
* Fix ezamar morpher, seems to break on 0.6 - simplify implementation at the same time... couldn't do a real benchmark for the new vs old since the old one doesn't seem to be able to process more complex documents, new one builds on XPATH functionality of hpricot and is a lot more robust but at the same time much easier to understand. Extend specs for it and don't require it by default anymore.
|
258
|
+
|
259
|
+
Wed Oct 17 00:20:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
260
|
+
* Don't mention coderay in README anymore
|
261
|
+
|
262
|
+
Thu Oct 11 13:30:35 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
263
|
+
* Minor sourceview cleanups
|
264
|
+
|
265
|
+
Fri Oct 12 00:26:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
266
|
+
* layout example should not have an Element
|
267
|
+
|
268
|
+
Thu Oct 11 12:51:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
269
|
+
* Numeric#human_readable_filesize_format #=> Numeric#filesize_format
|
270
|
+
|
271
|
+
Thu Oct 11 10:31:18 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
272
|
+
* Add sourceview example- syntax highlighting source browser for ramaze source code
|
273
|
+
|
274
|
+
Fri Oct 5 14:48:48 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
275
|
+
* gzip filter added
|
276
|
+
|
277
|
+
Wed Oct 10 21:25:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
278
|
+
* Fix <title> in layout example
|
279
|
+
|
280
|
+
Wed Oct 10 02:07:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
281
|
+
* Remove mention of Nginx from feature CGI
|
282
|
+
|
283
|
+
Fri Oct 5 14:29:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
284
|
+
* Add Global.boring to avoid logging of some static files
|
285
|
+
|
286
|
+
Fri Oct 5 10:50:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
287
|
+
* Don't overwrite Global on sourcereload
|
288
|
+
|
289
|
+
Wed Oct 3 13:38:40 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
290
|
+
* Move auth example into its own dir and separate out templates so action stubs aren't required. Make AuthHelper#login_required private
|
291
|
+
|
292
|
+
Wed Oct 3 10:05:30 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
293
|
+
* Add benchmark suite
|
294
|
+
|
295
|
+
Wed Oct 3 08:47:47 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
296
|
+
* AuthHelper cleanups and an example using Sequel
|
297
|
+
|
298
|
+
Wed Oct 3 08:43:55 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
299
|
+
* Ignore /favicon.ico by default
|
300
|
+
|
301
|
+
Sun Oct 7 07:26:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
302
|
+
* rescue MissingArgument for missing arguments in bin/ramaze
|
303
|
+
|
304
|
+
Sat Oct 6 00:27:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
305
|
+
* Add doc/LEGAL that is required by doc/LEGAL, holds a list of licenses and authors of files we use but do not 'own'.
|
306
|
+
|
307
|
+
Wed Oct 3 08:36:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
308
|
+
* Add the needed adapter/swiftiplied_mongrel and adapter/evented_mongrel
|
309
|
+
|
310
|
+
Wed Oct 3 08:31:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
311
|
+
* Support :adapter => (:evented_mongrel|:swiftiplied_mongrel), setting by ENV with :adapter => :mongrel and (SWIFT|EVENT)=1 should still work. we require 'mongrel' in any case, could that lead to problems?
|
312
|
+
|
313
|
+
Wed Oct 3 00:25:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
314
|
+
* Fix hash-order issue for gestalt spec.
|
315
|
+
|
316
|
+
Sat Sep 29 22:37:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
317
|
+
* Gestalt should accept symbols as attributes
|
318
|
+
|
319
|
+
Mon Oct 1 01:33:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
320
|
+
* Fix reference and logging of CGI adapter.
|
321
|
+
|
322
|
+
Sun Sep 30 14:14:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
323
|
+
* Fix docs for AuthHelper
|
324
|
+
|
325
|
+
Thu Sep 27 01:02:07 JST 2007 Jonathan Buch <john@oxyliquit.de>
|
326
|
+
* [localize] normalize session locale too
|
327
|
+
|
328
|
+
Wed Sep 26 19:20:09 JST 2007 Jonathan Buch <john@oxyliquit.de>
|
329
|
+
* Minor cleanup of whitespace
|
330
|
+
|
331
|
+
Wed Sep 26 18:55:46 JST 2007 Jonathan Buch <john@oxyliquit.de>
|
332
|
+
* [localize] normalize dictionary to regard symbols and strings the same, add usage doc
|
333
|
+
|
334
|
+
Wed Sep 26 02:11:54 JST 2007 Jonathan Buch <john@oxyliquit.de>
|
335
|
+
* Expand new Layout lookup so it can be relative paths too (no / at beginning means current controller)
|
336
|
+
|
337
|
+
Wed Sep 26 01:08:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
338
|
+
* Add Stephan Maka to authors.
|
339
|
+
|
340
|
+
Tue Sep 25 13:23:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
341
|
+
* spec/helper/wrap now handles rubygems version mismatch better.
|
342
|
+
|
343
|
+
Tue Sep 25 13:17:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
344
|
+
* Do not automatically wrap layout paths in R(self, path) anymore, this allows for absolute paths so you can use layouts from other controllers easily.
|
345
|
+
|
346
|
+
Tue Sep 25 23:05:10 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
347
|
+
* trivial comment changes
|
348
|
+
|
349
|
+
Sun Sep 23 04:17:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
350
|
+
* Remove unused methods from Action
|
351
|
+
|
352
|
+
Sun Sep 23 14:12:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
353
|
+
* Global.ignore now only ignores files if they don't exist.
|
354
|
+
|
355
|
+
Sun Sep 23 14:09:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
356
|
+
* Fix requires for to specs.
|
357
|
+
|
358
|
+
Sat Sep 22 07:55:25 JST 2007 stephan@spaceboyz.net
|
359
|
+
* XSLT template example: add Content-Type
|
360
|
+
|
361
|
+
Fri Sep 21 22:00:29 JST 2007 stephan@spaceboyz.net
|
362
|
+
* XSLT template spec: two more examples
|
363
|
+
|
364
|
+
Fri Sep 21 20:56:48 JST 2007 stephan@spaceboyz.net
|
365
|
+
* XSLT templates: add extFunctions capability
|
366
|
+
|
367
|
+
Thu Sep 20 10:10:44 JST 2007 stephan@spaceboyz.net
|
368
|
+
* Ramaze support for XSLT templates, example
|
369
|
+
|
370
|
+
Fri Sep 21 23:08:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
371
|
+
* Instruct SourceReload to expand filenames before loading to make sure they really do exist where we think they do.
|
372
|
+
|
373
|
+
Fri Sep 21 17:17:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
374
|
+
* Slight 'beautifcation' for specwrapper
|
375
|
+
|
376
|
+
Fri Sep 21 17:09:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
377
|
+
* SourceReload#reload_glob is now SourceReload.trait[:reload_glob] for ultimate control.
|
378
|
+
|
379
|
+
Fri Sep 21 15:42:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
380
|
+
* This improves logging a bit by introducing the :dev tag and so lowering the overall output in default mode.
|
381
|
+
|
382
|
+
Thu Sep 20 00:36:55 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
383
|
+
* alias Ramaze.contrib to Ramaze::Contrib.load
|
384
|
+
|
385
|
+
Fri Sep 21 00:33:37 JST 2007 stephan@spaceboyz.net
|
386
|
+
* Gestalt: allow text in arguments, properly escape this text and attributes
|
387
|
+
|
388
|
+
Wed Sep 19 15:24:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
389
|
+
* Add $0 to files being sourcereloaded.
|
390
|
+
|
391
|
+
Wed Sep 19 15:21:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
392
|
+
* Implement Global.ignore and spec it.
|
393
|
+
|
394
|
+
Tue Sep 18 19:46:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
395
|
+
* Add Global.cache_alternative so you can specify a different cache-class to use for only certain caches. For example: Ramaze::Global.cache_alternative[:sessions] = Ramaze::MemcachedCache
|
396
|
+
|
397
|
+
Tue Sep 18 14:41:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
398
|
+
* Small improvment to the sequel/fill contrib
|
399
|
+
|
400
|
+
Tue Sep 18 14:33:30 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
401
|
+
* Add contrib/sequel/fill
|
402
|
+
|
403
|
+
Tue Sep 18 13:54:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
404
|
+
* alias redirect_referer to redirect_referrer in RedirectHelper
|
405
|
+
|
406
|
+
Tue Sep 18 10:48:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
407
|
+
* Allow custom /helper directory in apps, will be searched before ramazes helpers.
|
408
|
+
|
409
|
+
Mon Sep 17 20:45:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
410
|
+
* Add the wikore example and fix spec for wiktacular a little.
|
411
|
+
|
412
|
+
Mon Sep 17 20:44:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
413
|
+
* Improve output of spec wrapper a bit.
|
414
|
+
|
415
|
+
Wed Sep 12 21:52:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
416
|
+
* Adding path for OSX to tool/tidy and improve readability of the spec for it a bit.
|
417
|
+
|
418
|
+
Wed Sep 12 18:08:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
419
|
+
* Fixing dependence on the debug.rb implementation of ruby, since this may vary between different versions/implementations, use gestalt.rb instead, the oldest and most stable file we have.
|
420
|
+
|
421
|
+
Tue Sep 11 17:47:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
422
|
+
* Small beautification/speedup for the mocked http
|
423
|
+
|
424
|
+
Wed Sep 12 01:29:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
425
|
+
* Clean up the controller/resolve part a bit, implement raise_no_filter which throws a NoFilter error now and fix a minor bug that would result in a faulty response if an element of Cache.resolved was no valid action. Added docs for all methods in Controller.
|
426
|
+
|
427
|
+
Tue Sep 11 23:48:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
428
|
+
* Restructuring of how contribs are handled, introducing the Ramaze::Contrib namespace, adding Global.contribs so we can add a unified shutdown in future, fixing routing so it won't try to match an already resolved route again and thereby avoiding recursion.
|
429
|
+
|
430
|
+
Tue Sep 11 14:41:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
431
|
+
* Adding snippet for Array#put_within/put_before/put_after plus specs. docs missing.
|
432
|
+
|
433
|
+
Mon Sep 10 15:32:42 JST 2007 Aman Gupta <ramaze@tmm1.net>
|
434
|
+
* Updated spec for route
|
435
|
+
|
436
|
+
Mon Sep 10 13:45:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
437
|
+
* This introduces the first contrib for routes, slight restructuring of Controller::resolve to allow filtering based on Controller::FILTER like we know it from Dispatcher. Added dictionary.rb from facets to allow sorted but hash-like routes-adding. Spec for routes added as small showcase.
|
438
|
+
|
439
|
+
Mon Sep 10 13:45:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
440
|
+
* Add basic Ramaze::contrib as future helping instance for contributed things.
|
441
|
+
|
442
|
+
Fri Sep 7 17:32:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
443
|
+
* make snippets/struct/values_at behaviour compatible with standard ruby (orig. by riffraff)
|
444
|
+
|
445
|
+
Fri Sep 7 17:31:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
446
|
+
* Fix for directory-listing, always sort files/dirs shown
|
447
|
+
|
448
|
+
Thu Sep 6 22:52:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
449
|
+
tagged 0.1.4
|
450
|
+
|
451
|
+
Thu Sep 6 22:51:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
452
|
+
* Update doc/CHANGELOG
|
453
|
+
|
454
|
+
Thu Sep 6 22:51:32 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
455
|
+
* Version 0.1.4
|
456
|
+
|
457
|
+
Thu Sep 6 22:51:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
458
|
+
* Make Struct#values_at backwards-compatible but remove Symbol#to_int (deprecated by ruby1.9)
|
459
|
+
|
460
|
+
Thu Sep 6 22:49:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
461
|
+
* Fix typo in human_readable_filesize_format
|
462
|
+
|
463
|
+
Thu Sep 6 22:49:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
464
|
+
* Update things in /doc
|
465
|
+
|
466
|
+
Thu Sep 6 22:48:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
467
|
+
* Update doc/AUTHORS
|
6
468
|
|
7
469
|
Thu Sep 6 14:28:18 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
8
470
|
* Fixing some more spaces.
|
@@ -31,9 +493,6 @@ Thu Sep 6 00:50:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
31
493
|
Thu Sep 6 00:46:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
32
494
|
* Medium refactoring of bin/ramaze, adding better functionality in Global for it and adding some niceties for Global.public_root/template_root
|
33
495
|
|
34
|
-
Thu Sep 6 00:41:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
35
|
-
* Fixing directory listing and adding spec
|
36
|
-
|
37
496
|
Wed Sep 5 19:52:59 JST 2007 rff.rff@gmail.com
|
38
497
|
* spec for Informer case statement in initialize
|
39
498
|
|
@@ -61,6 +520,9 @@ Tue Sep 4 21:07:59 JST 2007 rff.rff@gmail.com
|
|
61
520
|
Tue Sep 4 20:54:14 JST 2007 rff.rff@gmail.com
|
62
521
|
* spec for Ramaze#caller_info
|
63
522
|
|
523
|
+
Thu Sep 6 00:41:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
524
|
+
* Fixing directory listing and adding spec
|
525
|
+
|
64
526
|
Mon Sep 3 19:56:07 JST 2007 rff.rff@gmail.com
|
65
527
|
* remove useless snippets/openstruct
|
66
528
|
|
@@ -112,21 +574,18 @@ Mon Sep 3 01:56:03 JST 2007 rff.rff@gmail.com
|
|
112
574
|
Mon Sep 3 16:52:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
113
575
|
* Rewrite of Kernel#aquire
|
114
576
|
|
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
577
|
Sun Sep 2 17:51:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
119
578
|
* Changing implementation of __DIR__ a bit.
|
120
579
|
|
121
580
|
Fri Aug 31 21:49:04 JST 2007 rff.rff@gmail.com
|
122
581
|
* more tests for wiktacular to show post() usage
|
123
582
|
|
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
583
|
Fri Aug 31 08:37:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
128
584
|
* Fixing typo in StackHelper docs.
|
129
585
|
|
586
|
+
Thu Aug 30 18:09:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
587
|
+
* Adding the filecache meta structure and renaming Global.action_file_cached to Global.file_cache, adding Global.file_cache_meta_dir
|
588
|
+
|
130
589
|
Tue Aug 28 23:15:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
131
590
|
* Make the wiktacular spec work standalone and fix its dependence on hash-order
|
132
591
|
|