ramaze 0.3.0 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -2
- data/bin/ramaze +9 -3
- data/doc/AUTHORS +6 -2
- data/doc/CHANGELOG +272 -66
- data/doc/GPL +12 -13
- data/doc/README.html +729 -0
- data/doc/changes.txt +5757 -0
- data/doc/changes.xml +5759 -0
- data/doc/meta/announcement.txt +48 -39
- data/doc/tutorial/todolist.mkd +10 -12
- data/examples/blog/start.rb +1 -0
- data/examples/caching.rb +1 -0
- data/examples/element.rb +3 -0
- data/examples/hello.rb +1 -3
- data/examples/identity.rb +5 -8
- data/examples/layout.rb +1 -0
- data/examples/linking.rb +1 -0
- data/examples/memleak_detector.rb +1 -0
- data/examples/nitro_form.rb +1 -0
- data/examples/rammit/start.rb +1 -0
- data/examples/rapaste/Rakefile +7 -0
- data/examples/rapaste/{src/controller.rb → controller/paste.rb} +28 -3
- data/examples/rapaste/{src/model.rb → model/paste.rb} +0 -4
- data/examples/rapaste/public/css/display.css +17 -0
- data/examples/rapaste/spec/rapaste.rb +2 -2
- data/examples/rapaste/start.rb +9 -4
- data/examples/rapaste/{template → view}/copy.xhtml +0 -0
- data/examples/rapaste/{template → view}/index.xhtml +0 -0
- data/examples/rapaste/{template → view}/layout.xhtml +3 -0
- data/examples/rapaste/{template → view}/list.xhtml +4 -3
- data/examples/rapaste/view/search.xhtml +41 -0
- data/examples/rapaste/{template → view}/view.xhtml +0 -0
- data/examples/simple.rb +3 -3
- data/examples/templates/template/external.amrita +9 -9
- data/examples/templates/template/external.redcloth +19 -0
- data/examples/templates/template_amrita2.rb +40 -7
- data/examples/templates/template_erubis.rb +3 -3
- data/examples/templates/template_ezamar.rb +1 -3
- data/examples/templates/template_haml.rb +1 -3
- data/examples/templates/template_liquid.rb +3 -3
- data/examples/templates/template_markaby.rb +1 -3
- data/examples/templates/template_nagoro.rb +1 -3
- data/examples/templates/template_redcloth.rb +59 -0
- data/examples/templates/template_remarkably.rb +1 -3
- data/examples/templates/template_xslt.rb +1 -4
- data/examples/todolist/src/controller/main.rb +1 -1
- data/examples/todolist/start.rb +1 -2
- data/examples/upload/start.rb +19 -0
- data/examples/upload/view/index.xhtml +25 -0
- data/examples/whywiki/start.rb +1 -3
- data/examples/wikore/start.rb +3 -0
- data/examples/wiktacular/mkd/newpagename/current.mkd +1 -0
- data/examples/wiktacular/mkd/newpagename/current.mkd.bak +1 -0
- data/examples/wiktacular/start.rb +1 -0
- data/lib/proto/controller/main.rb +0 -3
- data/lib/proto/public/js/jquery.js +106 -93
- data/lib/proto/spec/main.rb +2 -5
- data/lib/proto/start.rb +0 -3
- data/lib/ramaze.rb +3 -2
- data/lib/ramaze/action.rb +6 -10
- data/lib/ramaze/adapter/lsws.rb +19 -0
- data/lib/ramaze/contrib/email.rb +84 -0
- data/lib/ramaze/contrib/email.rb-darcs-backup0 +81 -0
- data/lib/ramaze/contrib/gettext.rb +1 -0
- data/lib/ramaze/contrib/gettext/parser.rb +46 -0
- data/lib/ramaze/contrib/route.rb +3 -36
- data/lib/ramaze/controller.rb +4 -6
- data/lib/ramaze/controller/resolve.rb +28 -1
- data/lib/ramaze/dispatcher.rb +1 -1
- data/lib/ramaze/dispatcher/file.rb +17 -0
- data/lib/ramaze/global/globalstruct.rb +7 -4
- data/lib/ramaze/helper/auth.rb +1 -1
- data/lib/ramaze/helper/identity.rb +25 -15
- data/lib/ramaze/helper/link.rb +29 -8
- data/lib/ramaze/helper/maruku.rb +7 -0
- data/lib/ramaze/helper/partial.rb +25 -10
- data/lib/ramaze/route.rb +56 -0
- data/lib/ramaze/snippets/metaid.rb +17 -0
- data/lib/ramaze/spec/helper.rb +0 -2
- data/lib/ramaze/spec/helper/mock_http.rb +6 -0
- data/lib/ramaze/spec/helper/pretty_output.rb +5 -1
- data/lib/ramaze/store/default.rb +3 -1
- data/lib/ramaze/template.rb +1 -1
- data/lib/ramaze/template/amrita2.rb +21 -15
- data/lib/ramaze/template/bijou.rb +39 -0
- data/lib/ramaze/template/builder.rb +28 -0
- data/lib/ramaze/template/redcloth.rb +24 -0
- data/lib/ramaze/template/sass.rb +3 -1
- data/lib/ramaze/tool/create.rb +2 -1
- data/lib/ramaze/tool/localize.rb +6 -1
- data/lib/ramaze/trinity/request.rb +8 -0
- data/lib/ramaze/trinity/session.rb +8 -5
- data/lib/ramaze/version.rb +1 -1
- data/rake_tasks/gem.rake +0 -1
- data/rake_tasks/maintenance.rake +4 -1
- data/spec/contrib/route.rb +14 -63
- data/spec/examples/linking.rb +2 -2
- data/spec/examples/templates/template_redcloth.rb +28 -0
- data/spec/ramaze/controller/subclass.rb +21 -0
- data/spec/ramaze/dispatcher/file.rb +31 -0
- data/spec/ramaze/helper/link.rb +46 -0
- data/spec/ramaze/helper/partial.rb +22 -1
- data/spec/ramaze/helper/template/locals.xhtml +1 -0
- data/spec/ramaze/helper/template/recursive_locals.xhtml +7 -0
- data/spec/ramaze/params.rb +8 -0
- data/spec/ramaze/request.rb +14 -0
- data/spec/ramaze/route.rb +107 -0
- data/spec/ramaze/session.rb +4 -2
- data/spec/ramaze/template/amrita2.rb +21 -7
- data/spec/ramaze/template/amrita2/external.amrita +6 -0
- data/spec/ramaze/template/amrita2/sum.amrita +1 -1
- data/spec/ramaze/template/bijou.rb +25 -0
- data/spec/ramaze/template/builder.rb +55 -0
- data/spec/ramaze/template/builder/external.rxml +3 -0
- data/spec/ramaze/template/haml.rb +15 -0
- data/spec/ramaze/template/haml/locals.haml +1 -0
- data/spec/ramaze/template/redcloth.rb +38 -0
- data/spec/ramaze/template/redcloth/external.redcloth +1 -0
- metadata +472 -442
- data/examples/rapaste/rapaste.sqlite +0 -0
- data/spec/ramaze/template/amrita2/data.amrita +0 -6
- data/spec/ramaze/template/amrita2/index.amrita +0 -1
data/Rakefile
CHANGED
@@ -71,7 +71,6 @@ task :rcov_dir do
|
|
71
71
|
mkdir_p 'doc/output/tools/rcov/'
|
72
72
|
end
|
73
73
|
|
74
|
-
require 'spec/rake/spectask'
|
75
74
|
desc "Generate HTML coverage report"
|
76
75
|
task :rcov_summary => :rcov_dir do
|
77
76
|
`rcov --version`
|
@@ -150,8 +149,10 @@ end
|
|
150
149
|
|
151
150
|
desc "show who made how many patches"
|
152
151
|
task :patchstat do
|
152
|
+
total = authors.inject(0.0){|s,(n,a)| s + a[:patches]}
|
153
153
|
authors.sort_by{|k,v| -v[:patches]}.each do |name, author|
|
154
|
-
|
154
|
+
patches = author[:patches]
|
155
|
+
puts("%s %4d [%6.2f%% ]" % [name, patches, patches/total * 100])
|
155
156
|
end
|
156
157
|
end
|
157
158
|
|
data/bin/ramaze
CHANGED
@@ -1,11 +1,17 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
begin
|
4
|
-
|
4
|
+
$:.unshift File.join(File.dirname(__FILE__), '../lib')
|
5
|
+
require 'ramaze'
|
5
6
|
rescue LoadError
|
6
|
-
|
7
|
+
$:.shift
|
7
8
|
|
8
|
-
|
9
|
+
begin
|
10
|
+
require 'rubygems'
|
11
|
+
rescue LoadError
|
12
|
+
end
|
13
|
+
require 'ramaze'
|
14
|
+
end
|
9
15
|
|
10
16
|
RAMAZE_VERSION = "Ramaze Version #{Ramaze::VERSION}"
|
11
17
|
|
data/doc/AUTHORS
CHANGED
@@ -1,16 +1,20 @@
|
|
1
1
|
Following persons (in alphabetical order) have contributed to Ramaze:
|
2
2
|
|
3
3
|
Aman Gupta - aman@ramaze.net
|
4
|
-
Carlo Zottmann -
|
4
|
+
Carlo Zottmann - carlo@zottmann.org
|
5
|
+
Chris Duncan - celldee@gmail.com
|
5
6
|
Christian Neukirchen - chneukirchen@gmail.com
|
6
7
|
Clive Crous - clive@crous.co.za
|
7
8
|
Fabian Buch - fabian.buch@fabian-buch.de
|
8
9
|
Gabriele Renzi - rff.rff@gmail.com
|
9
10
|
Jonathan Buch - john@oxyliquit.de
|
11
|
+
Keita Yamaguchi - keita.yamaguchi@gmail.com
|
10
12
|
Lars Olsson - lasso@lassoweb.se
|
11
13
|
Martin Hilbig - blueonyx@dev-area.net
|
12
|
-
Michael Fellinger -
|
14
|
+
Michael Fellinger - m.fellinger@gmail.com
|
13
15
|
Pistos - jesuswasramazing.10.pistos@geoshell.com
|
16
|
+
Richard Outten - outtenr@gmail.com
|
14
17
|
Stephan Maka - stephan@spaceboyz.net
|
18
|
+
skaar - skaar@waste.org
|
15
19
|
zenix - comp.lang.zenix+ramaze@gmail.com
|
16
20
|
|
data/doc/CHANGELOG
CHANGED
@@ -1,3 +1,212 @@
|
|
1
|
+
Mon Jan 28 15:42:25 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
2
|
+
* jQuery 1.2.3b
|
3
|
+
|
4
|
+
Mon Jan 28 11:27:25 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
5
|
+
* Grammar rephrasing on 0.3.5 announcement.
|
6
|
+
|
7
|
+
Mon Jan 28 10:34:22 JST 2008 Aman Gupta <aman@ramaze.net>
|
8
|
+
* Run rake authors and update announcement for release
|
9
|
+
|
10
|
+
Sun Jan 27 06:11:03 JST 2008 Chris Duncan <celldee@gmail.com>
|
11
|
+
* Tidy up the spec pretty output change
|
12
|
+
|
13
|
+
Sat Jan 26 17:15:45 JST 2008 Chris Duncan <celldee@gmail.com>
|
14
|
+
* Print Bacon contexts and assertions when using pretty output
|
15
|
+
|
16
|
+
Mon Jan 28 09:23:18 JST 2008 Aman Gupta <aman@ramaze.net>
|
17
|
+
* Only set Content-Type for builder if we are in a response
|
18
|
+
|
19
|
+
Sun Jan 27 11:53:21 JST 2008 Aman Gupta <aman@ramaze.net>
|
20
|
+
* Create empty model directory in Tool::Create since gem packaging removes empty directories
|
21
|
+
|
22
|
+
Sun Jan 27 11:38:32 JST 2008 Aman Gupta <aman@ramaze.net>
|
23
|
+
* Improve render_template: warn if file doesn't exist, figure out file extension if not provided
|
24
|
+
|
25
|
+
Sun Jan 27 11:20:44 JST 2008 Aman Gupta <aman@ramaze.net>
|
26
|
+
* Standardize all examples- remove copyright notice, add require 'rubygems' and Ramaze.start
|
27
|
+
|
28
|
+
Sun Jan 27 11:06:45 JST 2008 Aman Gupta <aman@ramaze.net>
|
29
|
+
* Add spec for sub-classed MainController
|
30
|
+
|
31
|
+
Sun Jan 27 10:58:24 JST 2008 Aman Gupta <aman@ramaze.net>
|
32
|
+
* Move Ramaze::Contrib::Route to Ramaze::Route, add simple string router and alternative Ramaze::Route('name') do end syntax for lambda routers
|
33
|
+
|
34
|
+
Sun Jan 27 09:49:27 JST 2008 Aman Gupta <aman@ramaze.net>
|
35
|
+
* template_root should take symbols as argument
|
36
|
+
|
37
|
+
Sun Jan 27 09:42:24 JST 2008 Aman Gupta <aman@ramaze.net>
|
38
|
+
* Clean up session spec
|
39
|
+
|
40
|
+
Sun Jan 27 05:16:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
41
|
+
* Correcting Action#engine
|
42
|
+
|
43
|
+
Sun Jan 27 05:08:16 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
44
|
+
* Minor improvments for identity helper
|
45
|
+
|
46
|
+
Sun Jan 27 04:36:30 JST 2008 Jonathan Buch <john@oxyliquit.de>
|
47
|
+
* Allow (non leading) dots in template extensions
|
48
|
+
|
49
|
+
Sat Jan 26 16:50:46 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
50
|
+
* Add missing brace to auth helper
|
51
|
+
|
52
|
+
Tue Jan 22 15:17:19 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
53
|
+
* Adding MarukuHelper
|
54
|
+
|
55
|
+
Mon Jan 21 17:19:22 JST 2008 Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
56
|
+
* Add the RedCloth templating engine.
|
57
|
+
|
58
|
+
Mon Jan 21 04:42:47 JST 2008 Aman Gupta <aman@ramaze.net>
|
59
|
+
* Update doc/AUTHORS
|
60
|
+
|
61
|
+
Mon Jan 21 04:41:32 JST 2008 Aman Gupta <aman@ramaze.net>
|
62
|
+
* Session::IP_COUNT = nil to disable ip counting in sessions
|
63
|
+
|
64
|
+
Sun Jan 20 17:55:42 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
65
|
+
* A couple of improvments for rapaste, adding diff ability (incomplete due to style problems), adding rake task for spec, modifying directory layout for new proto
|
66
|
+
|
67
|
+
Sun Jan 20 16:51:13 JST 2008 Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
68
|
+
* Update the amrita2(2.0.0) template engine.
|
69
|
+
|
70
|
+
Sun Jan 20 04:40:39 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
71
|
+
* Small improvments to doc/GPL from http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
72
|
+
|
73
|
+
Sat Jan 19 07:49:55 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
74
|
+
* Fixing up IdentityHelper for latest ruby-openid-2.0.3
|
75
|
+
|
76
|
+
Sat Jan 19 01:31:58 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
77
|
+
* Changing some stuff in the tutorial to make it comply to latest proto layout (hope it's all we need to change)
|
78
|
+
|
79
|
+
Fri Jan 18 07:54:07 JST 2008 Jonathan Buch <john@oxyliquit.de>
|
80
|
+
* add testcase for params, 'should handle valueless params'
|
81
|
+
|
82
|
+
Thu Jan 17 02:56:26 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
83
|
+
* Fixed EmailHelper.
|
84
|
+
|
85
|
+
Tue Jan 15 12:18:36 JST 2008 jesusisramazing.10.pistos@geoshell.com
|
86
|
+
* Refactor of EmailHelper.
|
87
|
+
|
88
|
+
Tue Jan 15 12:03:42 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
89
|
+
* Refactored file upload example.
|
90
|
+
|
91
|
+
Tue Jan 15 12:01:23 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
92
|
+
* Give rapaste GET search and a nice search form in the layout.
|
93
|
+
|
94
|
+
Tue Jan 15 04:21:04 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
95
|
+
* Added search functionality to Rapaste.
|
96
|
+
|
97
|
+
Tue Jan 15 02:10:31 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
98
|
+
* Update authors and nicer output of rake patchstat
|
99
|
+
|
100
|
+
Sun Jan 13 17:48:46 JST 2008 Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
101
|
+
* Add Content-Language based localization.
|
102
|
+
|
103
|
+
Mon Jan 14 08:05:08 JST 2008 rff.rff@gmail.com
|
104
|
+
* tests for if-modified-since and etags
|
105
|
+
|
106
|
+
Mon Jan 14 08:02:26 JST 2008 rff.rff@gmail.com
|
107
|
+
* support if_modified_since and if_none_match as special headers in mock_request
|
108
|
+
|
109
|
+
Mon Jan 14 06:52:39 JST 2008 rff.rff@gmail.com
|
110
|
+
*
|
111
|
+
this patch adds shallow etag support.
|
112
|
+
The implementation is completely untested though
|
113
|
+
|
114
|
+
Sun Jan 13 08:27:25 JST 2008 Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
115
|
+
* Add support for Last-Modified and If-Modified-Since headers in Ramaze::Dispatcher::File.
|
116
|
+
|
117
|
+
Mon Jan 14 21:29:19 JST 2008 Keita Yamaguchi <keita.yamaguchi@gmail.com>
|
118
|
+
* Add a gettext parser module.
|
119
|
+
|
120
|
+
Tue Jan 15 01:02:51 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
121
|
+
* Fix runner detection for Windows
|
122
|
+
|
123
|
+
Tue Jan 15 01:02:33 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
124
|
+
* Only set Content-Type for Sass if we are in a response
|
125
|
+
|
126
|
+
Tue Jan 15 01:02:23 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
127
|
+
* Remove copyright notices from proto files
|
128
|
+
|
129
|
+
Tue Jan 15 01:02:12 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
130
|
+
* Don't require spec/rake/spectask in Rakefile
|
131
|
+
|
132
|
+
Mon Jan 14 23:33:23 JST 2008 Chris Duncan <celldee@gmail.com>
|
133
|
+
* Removed include REXML from spec/helper.rb and changed main.rb in proto to use got.at method instead of got.at_xpath.
|
134
|
+
|
135
|
+
Mon Jan 14 08:29:01 JST 2008 Jonathan Buch <john@oxyliquit.de>
|
136
|
+
* LinkHelper: make A() and Rs() more like R(), add specs
|
137
|
+
|
138
|
+
Mon Jan 14 07:05:10 JST 2008 Aman Gupta <aman@ramaze.net>
|
139
|
+
* Add Builder template engine for generating XML
|
140
|
+
|
141
|
+
Sun Jan 13 11:12:51 JST 2008 Aman Gupta <aman@ramaze.net>
|
142
|
+
* Avoid requiring ramaze twice when using ramaze binary
|
143
|
+
|
144
|
+
Sat Jan 12 01:36:09 JST 2008 skaar@waste.org
|
145
|
+
* Add support for href prefix for breadcrumbs
|
146
|
+
|
147
|
+
Sat Jan 12 04:31:53 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
148
|
+
* Added file upload example.
|
149
|
+
|
150
|
+
Fri Jan 11 06:28:06 JST 2008 jesuswasramazing.10.pistos@geoshell.com
|
151
|
+
* Added EmailHelper.
|
152
|
+
|
153
|
+
Fri Jan 11 00:16:15 JST 2008 keita.yamaguchi@gmail.com
|
154
|
+
* Remove empty msgid from pot file when update
|
155
|
+
|
156
|
+
Fri Jan 11 06:06:27 JST 2008 Carlo Zottmann <carlo@zottmann.org>
|
157
|
+
* The type of transaction (read vs. read/write) wasn't pushed down the line to YAML::Store, which causes the YAML storage file to be re-written each and every time it's accessed.
|
158
|
+
|
159
|
+
Fri Jan 11 05:23:50 JST 2008 Aman Gupta <aman@ramaze.net>
|
160
|
+
* Use _why's metaid to avoid unnecessary @__locals variable in render_template
|
161
|
+
|
162
|
+
Thu Jan 10 19:26:30 JST 2008 Aman Gupta <aman@ramaze.net>
|
163
|
+
* Add additional version of recursive render_template spec that uses locals
|
164
|
+
|
165
|
+
Thu Jan 10 19:14:19 JST 2008 Aman Gupta <aman@ramaze.net>
|
166
|
+
* Add support for locals with render_template
|
167
|
+
|
168
|
+
Thu Jan 10 16:38:10 JST 2008 Aman Gupta <aman@ramaze.net>
|
169
|
+
* Add session cookie options to Session::COOKIE so default values can be modified using Ramaze::Session::COOKIE.merge!(:expires => 120.days.from_now)
|
170
|
+
|
171
|
+
Thu Jan 10 14:50:43 JST 2008 Aman Gupta <aman@ramaze.net>
|
172
|
+
* bin/ramaze should use local version of ramaze when run out of a darcs repo
|
173
|
+
|
174
|
+
Thu Jan 10 14:50:27 JST 2008 Aman Gupta <aman@ramaze.net>
|
175
|
+
* Ramaze no longer requires rspec
|
176
|
+
|
177
|
+
Thu Jan 10 14:24:26 JST 2008 Aman Gupta <aman@ramaze.net>
|
178
|
+
* Only use default MainController no other controllers are present
|
179
|
+
|
180
|
+
Fri Jan 11 17:28:46 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
181
|
+
* Improve spec for Request#to_ivs a bit
|
182
|
+
|
183
|
+
Fri Jan 11 17:27:41 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
184
|
+
* The last fix for adapter require wasn't very elegant, do it better
|
185
|
+
|
186
|
+
Fri Jan 11 17:17:26 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
187
|
+
* Adding Request#to_ivs
|
188
|
+
|
189
|
+
Fri Jan 11 17:14:05 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
190
|
+
* Improve adapter handling, if we find a const we don't require or complain.
|
191
|
+
|
192
|
+
Fri Jan 11 17:12:31 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
193
|
+
* Adding adapter for litespeed
|
194
|
+
|
195
|
+
Thu Jan 10 09:20:11 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
196
|
+
* s/Carlo Zottmann/Richard Outten/
|
197
|
+
|
198
|
+
Thu Jan 10 03:50:47 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
199
|
+
* Repo version 0.3.1
|
200
|
+
|
201
|
+
Thu Jan 10 03:48:30 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
202
|
+
* Version 0.3.0
|
203
|
+
|
204
|
+
Thu Jan 10 03:48:11 JST 2008 Michael Fellinger <manveru@weez-int.com>
|
205
|
+
tagged 0.3.0
|
206
|
+
|
207
|
+
Thu Jan 10 02:06:22 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
208
|
+
* Update changelog
|
209
|
+
|
1
210
|
Thu Jan 10 02:04:02 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
2
211
|
* Cosmetic change in error.xhtml
|
3
212
|
|
@@ -7,21 +216,6 @@ Thu Jan 10 02:03:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
|
7
216
|
Thu Jan 10 02:02:16 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
8
217
|
* Update announcment
|
9
218
|
|
10
|
-
Tue Jan 8 09:50:59 JST 2008 Aman Gupta <aman@ramaze.net>
|
11
|
-
* Add diff to top of syntax list in rapaste
|
12
|
-
|
13
|
-
Tue Jan 8 09:50:44 JST 2008 Aman Gupta <aman@ramaze.net>
|
14
|
-
* Don't look for templates in public/
|
15
|
-
|
16
|
-
Tue Jan 8 17:10:53 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
17
|
-
* Adding thin to 'obvious' options in global.rb
|
18
|
-
|
19
|
-
Mon Jan 7 03:55:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
20
|
-
* Make Dictionary#find return nil if nothing is found.
|
21
|
-
|
22
|
-
Mon Jan 7 01:38:37 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
23
|
-
* Extend Dictionary with a nice #find method.
|
24
|
-
|
25
219
|
Tue Jan 8 23:14:01 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
26
220
|
* A couple of beautifications for specs of Dispatcher::Directory, Template::XSLT and Contrib::Route
|
27
221
|
|
@@ -34,8 +228,14 @@ Tue Jan 8 23:13:07 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
|
34
228
|
Tue Jan 8 23:12:08 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
35
229
|
* Change testcase_requires to spec_require, shorter and reads better.
|
36
230
|
|
37
|
-
|
38
|
-
*
|
231
|
+
Tue Jan 8 09:50:59 JST 2008 Aman Gupta <aman@ramaze.net>
|
232
|
+
* Add diff to top of syntax list in rapaste
|
233
|
+
|
234
|
+
Tue Jan 8 09:50:44 JST 2008 Aman Gupta <aman@ramaze.net>
|
235
|
+
* Don't look for templates in public/
|
236
|
+
|
237
|
+
Tue Jan 8 17:10:53 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
238
|
+
* Adding thin to 'obvious' options in global.rb
|
39
239
|
|
40
240
|
Mon Jan 7 17:57:41 JST 2008 Aman Gupta <aman@ramaze.net>
|
41
241
|
* Move public/error.zmr to template/error.xhtml, cleanup js, use page.xhtml layout
|
@@ -91,6 +291,12 @@ Mon Jan 7 12:29:11 JST 2008 Aman Gupta <aman@ramaze.net>
|
|
91
291
|
Mon Jan 7 12:26:49 JST 2008 Aman Gupta <aman@ramaze.net>
|
92
292
|
* Alias acquire to aquire
|
93
293
|
|
294
|
+
Mon Jan 7 03:55:11 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
295
|
+
* Make Dictionary#find return nil if nothing is found.
|
296
|
+
|
297
|
+
Mon Jan 7 01:38:37 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
298
|
+
* Extend Dictionary with a nice #find method.
|
299
|
+
|
94
300
|
Sun Jan 6 18:45:28 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
95
301
|
* Add possibility to put index file into public directories and subdirectories.
|
96
302
|
|
@@ -169,9 +375,15 @@ Wed Jan 2 10:25:50 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
|
169
375
|
Wed Jan 2 10:06:01 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
170
376
|
* Don't use Nagoro for the whywiki example
|
171
377
|
|
378
|
+
Wed Jan 2 08:51:38 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
379
|
+
* Add -I for libpath to spec task
|
380
|
+
|
172
381
|
Wed Jan 2 08:50:39 JST 2008 Aman Gupta <aman@ramaze.net>
|
173
382
|
* Update benchmark/test.rb: use httperf, turn off sourcereload, read adapter from ARGV[0]
|
174
383
|
|
384
|
+
Wed Jan 2 08:15:32 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
385
|
+
* Finally switch to bacon totally, enjoy :D
|
386
|
+
|
175
387
|
Wed Jan 2 06:59:12 JST 2008 Aman Gupta <aman@ramaze.net>
|
176
388
|
* Block arguments in 1.9 cannot be instance variables
|
177
389
|
|
@@ -181,12 +393,6 @@ Wed Jan 2 06:52:26 JST 2008 Aman Gupta <aman@ramaze.net>
|
|
181
393
|
Wed Jan 2 06:20:42 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
182
394
|
* Do not use ThreadGroup for collecting adapter threads, use Set instead, a lot more reliable over 1.8=>1.9
|
183
395
|
|
184
|
-
Wed Jan 2 08:51:38 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
185
|
-
* Add -I for libpath to spec task
|
186
|
-
|
187
|
-
Wed Jan 2 08:15:32 JST 2008 Michael Fellinger <m.fellinger@gmail.com>
|
188
|
-
* Finally switch to bacon totally, enjoy :D
|
189
|
-
|
190
396
|
Tue Jan 1 18:30:11 JST 2008 Aman Gupta <aman@ramaze.net>
|
191
397
|
* Speed up trinity/session spec, show # of passing tests instead of assertions
|
192
398
|
|
@@ -259,24 +465,15 @@ Wed Dec 26 16:21:44 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
259
465
|
Wed Dec 26 16:20:32 JST 2007 Aman Gupta <aman@ramaze.net>
|
260
466
|
* Escape regexps so specs run in directories with strange characters
|
261
467
|
|
468
|
+
Wed Dec 26 13:55:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
469
|
+
* Speed up snippet specs, shaves off 10 secs of spectime.
|
470
|
+
|
262
471
|
Tue Dec 25 14:20:04 JST 2007 Aman Gupta <aman@ramaze.net>
|
263
472
|
* Update amrita2 template engine
|
264
473
|
|
265
474
|
Tue Dec 25 14:19:53 JST 2007 Aman Gupta <aman@ramaze.net>
|
266
475
|
* Add specs for Symbol#to_proc snippet
|
267
476
|
|
268
|
-
Wed Dec 26 13:55:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
269
|
-
* Speed up snippet specs, shaves off 10 secs of spectime.
|
270
|
-
|
271
|
-
Tue Dec 25 12:10:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
272
|
-
* Make our Symbol#to_proc equivalent to the activesupport one :P
|
273
|
-
|
274
|
-
Tue Dec 25 12:06:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
275
|
-
* Don't rely on Symbol#to_proc in our source
|
276
|
-
|
277
|
-
Fri Dec 21 18:47:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
278
|
-
* Rakefile should require time
|
279
|
-
|
280
477
|
Tue Dec 25 13:12:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
281
478
|
* little beautification
|
282
479
|
|
@@ -301,6 +498,15 @@ Tue Dec 25 12:48:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
301
498
|
Sat Dec 22 21:48:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
302
499
|
* Small fix for whywiki spec
|
303
500
|
|
501
|
+
Tue Dec 25 12:10:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
502
|
+
* Make our Symbol#to_proc equivalent to the activesupport one :P
|
503
|
+
|
504
|
+
Tue Dec 25 12:06:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
505
|
+
* Don't rely on Symbol#to_proc in our source
|
506
|
+
|
507
|
+
Fri Dec 21 18:47:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
508
|
+
* Rakefile should require time
|
509
|
+
|
304
510
|
Thu Dec 20 01:25:49 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
305
511
|
* / is now the "add new" action, /list is now the listing.
|
306
512
|
|
@@ -316,9 +522,6 @@ Wed Dec 19 02:23:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
316
522
|
Tue Dec 18 04:55:22 JST 2007 jesuswasramazing.10.pistos@geoshell.com
|
317
523
|
* Save theme selection in session.
|
318
524
|
|
319
|
-
Mon Dec 17 10:17:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
320
|
-
* Improved Tool::Localize
|
321
|
-
|
322
525
|
Mon Dec 17 12:56:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
323
526
|
* Add examples/rapaste
|
324
527
|
|
@@ -340,6 +543,9 @@ Fri Dec 7 11:40:11 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
340
543
|
Thu Dec 6 11:54:46 JST 2007 Aman Gupta <aman@ramaze.net>
|
341
544
|
* Improve facebook API error handling (I'll move this to a gem or external lib eventually..)
|
342
545
|
|
546
|
+
Mon Dec 17 10:17:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
547
|
+
* Improved Tool::Localize
|
548
|
+
|
343
549
|
Thu Dec 6 15:29:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
344
550
|
* Introducing caching for Controller::action_methods in Cache.action_methods.
|
345
551
|
|
@@ -361,15 +567,15 @@ Sun Dec 2 04:33:47 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
361
567
|
Sun Dec 2 04:33:26 JST 2007 Aman Gupta <aman@ramaze.net>
|
362
568
|
* Fix timeout error with :adapter => :fcgi
|
363
569
|
|
570
|
+
Fri Nov 30 12:59:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
571
|
+
* Add lookup for index template like /foo__index
|
572
|
+
|
364
573
|
Fri Nov 30 16:12:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
365
574
|
* Add SessionFlash#delete
|
366
575
|
|
367
576
|
Fri Nov 30 16:09:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
368
577
|
* Failsafe for Request#local_net? - 'unkown' seems to be a common address...
|
369
578
|
|
370
|
-
Fri Nov 30 12:59:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
371
|
-
* Add lookup for index template like /foo__index
|
372
|
-
|
373
579
|
Thu Nov 29 08:39:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
374
580
|
* Version 0.2.1
|
375
581
|
|
@@ -385,12 +591,6 @@ Thu Nov 29 08:27:40 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
385
591
|
Thu Nov 29 08:23:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
386
592
|
* Spec and fix for bug in String#unindent
|
387
593
|
|
388
|
-
Wed Nov 28 17:32:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
389
|
-
* Allow multiple keys for Request#[]
|
390
|
-
|
391
|
-
Wed Nov 28 14:46:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
392
|
-
* Add spec for and fix implementation of Request#local_net?
|
393
|
-
|
394
594
|
Wed Nov 28 12:53:36 JST 2007 Aman Gupta <aman@ramaze.net>
|
395
595
|
* Allow helper modules to be defined in contrib/ or same file as the app
|
396
596
|
|
@@ -406,8 +606,11 @@ Tue Nov 27 08:14:25 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
406
606
|
Tue Nov 27 08:12:32 JST 2007 Aman Gupta <aman@ramaze.net>
|
407
607
|
* Make StdErr output in specs readable
|
408
608
|
|
409
|
-
|
410
|
-
*
|
609
|
+
Wed Nov 28 17:32:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
610
|
+
* Allow multiple keys for Request#[]
|
611
|
+
|
612
|
+
Wed Nov 28 14:46:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
613
|
+
* Add spec for and fix implementation of Request#local_net?
|
411
614
|
|
412
615
|
Mon Nov 26 10:37:05 JST 2007 Aman Gupta <aman@ramaze.net>
|
413
616
|
* Fix rcov coverage report generation task
|
@@ -421,6 +624,9 @@ Tue Sep 18 21:00:27 JST 2007 rff.rff@gmail.com
|
|
421
624
|
Tue Sep 4 20:33:08 JST 2007 rff.rff@gmail.com
|
422
625
|
* coverage task, first try
|
423
626
|
|
627
|
+
Mon Nov 26 10:39:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
628
|
+
* Fix code in comment for gestalt.rb
|
629
|
+
|
424
630
|
Mon Nov 26 01:14:29 JST 2007 Aman Gupta <aman@ramaze.net>
|
425
631
|
* Fix for nginx caching issue with sourceview's javascript
|
426
632
|
|
@@ -445,12 +651,12 @@ Sun Nov 25 08:45:54 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
445
651
|
Fri Nov 23 02:13:00 JST 2007 Aman Gupta <aman@ramaze.net>
|
446
652
|
* Fix breakage when trinity/response.rb is source reloaded
|
447
653
|
|
448
|
-
Thu Nov 22 18:36:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
449
|
-
* Use the almighty IPAddr to check for local IPs, _so_ _much_ _nicer_ and supports both IPv4 and IPv6 :D (is it obvious that i'm 10 minutes before a long weekend?)
|
450
|
-
|
451
654
|
Thu Nov 22 18:11:57 JST 2007 Aman Gupta <aman@ramaze.net>
|
452
655
|
* Calculate avg patches per day in patchsize rake task
|
453
656
|
|
657
|
+
Thu Nov 22 18:36:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
658
|
+
* Use the almighty IPAddr to check for local IPs, _so_ _much_ _nicer_ and supports both IPv4 and IPv6 :D (is it obvious that i'm 10 minutes before a long weekend?)
|
659
|
+
|
454
660
|
Thu Nov 22 17:19:46 JST 2007 Aman Gupta <aman@ramaze.net>
|
455
661
|
* Add String#unindent snippet and use it in Ramaise
|
456
662
|
|
@@ -460,9 +666,6 @@ Thu Nov 22 16:44:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
460
666
|
Thu Nov 22 16:42:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
461
667
|
* Do go the usual Dispatcher::Action path when we encounter an error so Action::FILTER are applied.
|
462
668
|
|
463
|
-
Thu Nov 22 11:57:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
464
|
-
* Adding Request#ip and Request#local_net?
|
465
|
-
|
466
669
|
Thu Nov 22 09:57:37 JST 2007 Aman Gupta <aman@ramaze.net>
|
467
670
|
* Fix Haml/Sass options handling
|
468
671
|
|
@@ -481,18 +684,21 @@ Wed Nov 21 14:52:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
481
684
|
Wed Nov 21 12:48:35 JST 2007 Aman Gupta <aman@ramaze.net>
|
482
685
|
* Simplify Thread.into + spec
|
483
686
|
|
687
|
+
Thu Nov 22 11:57:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
688
|
+
* Adding Request#ip and Request#local_net?
|
689
|
+
|
484
690
|
Wed Nov 21 12:26:43 JST 2007 Aman Gupta <aman@ramaze.net>
|
485
691
|
* Random minor spec cleanups
|
486
692
|
|
487
693
|
Wed Nov 21 07:02:19 JST 2007 Aman Gupta <aman@ramaze.net>
|
488
694
|
* Use cache as a wrapper for value_cache when no args are provided
|
489
695
|
|
490
|
-
Tue Nov 20 17:51:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
491
|
-
* redirect_referrer on login in AuthHelper, a lot more useful and smoother
|
492
|
-
|
493
696
|
Tue Nov 20 17:05:00 JST 2007 Aman Gupta <aman@ramaze.net>
|
494
697
|
* Minor cleanups to sourceview example
|
495
698
|
|
699
|
+
Tue Nov 20 17:51:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
700
|
+
* redirect_referrer on login in AuthHelper, a lot more useful and smoother
|
701
|
+
|
496
702
|
Tue Nov 20 13:27:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
497
703
|
* Update allison raketask to use new version.
|
498
704
|
|
@@ -568,15 +774,12 @@ Mon Nov 12 12:52:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
|
568
774
|
Mon Nov 12 12:48:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
569
775
|
* Rewrite of helper/formatting for number_format
|
570
776
|
|
571
|
-
Mon Nov 12 11:09:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
572
|
-
* Fixing Session::IP_COUNT, the same session-id should not be counted multiple times.
|
573
|
-
|
574
|
-
Thu Nov 8 16:16:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
575
|
-
* Update (c) and shipped libs
|
576
|
-
|
577
777
|
Sat Nov 10 07:34:53 JST 2007 Aman Gupta <aman@ramaze.net>
|
578
778
|
* Bugfix from merb to get_args.rb
|
579
779
|
|
780
|
+
Mon Nov 12 11:09:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
781
|
+
* Fixing Session::IP_COUNT, the same session-id should not be counted multiple times.
|
782
|
+
|
580
783
|
Fri Nov 9 17:57:49 JST 2007 Aman Gupta <aman@ramaze.net>
|
581
784
|
* Don't log backtraces for Ramaze::Error::NoAction
|
582
785
|
|
@@ -595,8 +798,8 @@ Thu Nov 8 03:20:51 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
595
798
|
Thu Nov 8 03:19:25 JST 2007 Aman Gupta <aman@ramaze.net>
|
596
799
|
* Ran rake authors
|
597
800
|
|
598
|
-
|
599
|
-
*
|
801
|
+
Thu Nov 8 16:16:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
802
|
+
* Update (c) and shipped libs
|
600
803
|
|
601
804
|
Tue Nov 6 15:55:10 JST 2007 Aman Gupta <aman@ramaze.net>
|
602
805
|
* Simplify hash.inject([]) to hash.map
|
@@ -604,6 +807,9 @@ Tue Nov 6 15:55:10 JST 2007 Aman Gupta <aman@ramaze.net>
|
|
604
807
|
Tue Nov 6 15:53:05 JST 2007 Aman Gupta <aman@ramaze.net>
|
605
808
|
* Show last used email in AUTHORS file
|
606
809
|
|
810
|
+
Tue Nov 6 16:12:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
|
811
|
+
* Move spec/helper/context to spec/helper/browser
|
812
|
+
|
607
813
|
Mon Nov 5 05:50:18 JST 2007 Aman Gupta <aman@ramaze.net>
|
608
814
|
* Remove simple_auth dependency on base64, use Array#pack('m') instead
|
609
815
|
|