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/doc/changes.xml
CHANGED
@@ -1,9 +1,471 @@
|
|
1
1
|
<changelog>
|
2
|
-
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='
|
3
|
-
<name>Update
|
2
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071119161642' local_date='Tue Nov 20 01:16:42 JST 2007' inverted='False' hash='20071119161642-cbc08-632aba02fbc7d80356a4e5300eddc680ebbe1b33.gz'>
|
3
|
+
<name>Update TODO, Version and announcement</name>
|
4
4
|
</patch>
|
5
|
-
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='
|
6
|
-
<name>
|
5
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071119140334' local_date='Mon Nov 19 23:03:34 JST 2007' inverted='False' hash='20071119140334-cbc08-e32aacfd67914d719f4af74f3e19f013424d1b01.gz'>
|
6
|
+
<name>add (c) for Thread::into</name>
|
7
|
+
</patch>
|
8
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071119135622' local_date='Mon Nov 19 22:56:22 JST 2007' inverted='False' hash='20071119135622-cbc08-6d3e79c24b4e50e1ee4869e2a6e1e1d4452abbde.gz'>
|
9
|
+
<name>Adding Thread::into, almost forgot about it.</name>
|
10
|
+
</patch>
|
11
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071119093159' local_date='Mon Nov 19 18:31:59 JST 2007' inverted='False' hash='20071119093159-cbc08-9e9fb449bd79e977a8a0904a7237008519cee710.gz'>
|
12
|
+
<name>Update doc/meta/announcement</name>
|
13
|
+
</patch>
|
14
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071119134743' local_date='Mon Nov 19 22:47:43 JST 2007' inverted='False' hash='20071119134743-cbc08-2fa141e41d950e1d13bbe8f3991938c07ced82ca.gz'>
|
15
|
+
<name>Remove Tool::Tidy and all traces of it, it's leaking memory, has problems upgrading and isn't used by anybody i know of.</name>
|
16
|
+
</patch>
|
17
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071118041907' local_date='Sun Nov 18 13:19:07 JST 2007' inverted='False' hash='20071118041907-cbc08-e2491414ec7a8183817d4def2ba99b345af8a774.gz'>
|
18
|
+
<name>Using OrderedSet instead of Set helps keeping sessions deleted in chronological order</name>
|
19
|
+
</patch>
|
20
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071118033317' local_date='Sun Nov 18 12:33:17 JST 2007' inverted='False' hash='20071118033317-cbc08-a66cfe42286cd51ec1b00a5098adec69d704cc12.gz'>
|
21
|
+
<name>Fix runner/starter/SEEED/APPDIR for bin/ramaze once again.</name>
|
22
|
+
</patch>
|
23
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071117231809' local_date='Sun Nov 18 08:18:09 JST 2007' inverted='False' hash='20071117231809-cbc08-b17179a4448fd690f1caf335472babd6d8827b22.gz'>
|
24
|
+
<name>Fix typo in string#/</name>
|
25
|
+
</patch>
|
26
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071117231150' local_date='Sun Nov 18 08:11:50 JST 2007' inverted='False' hash='20071117231150-569a4-2b34b3e2eac14ec9bee93859219c9eccf159d6fa.gz'>
|
27
|
+
<name>Fix some spelling mistakes and clean up authors and patchstat rake tasks</name>
|
28
|
+
</patch>
|
29
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071117230650' local_date='Sun Nov 18 08:06:50 JST 2007' inverted='False' hash='20071117230650-569a4-710b1c2af1c5907df1eb9868c85c2f0984076394.gz'>
|
30
|
+
<name>Updated doc/AUTHORS</name>
|
31
|
+
</patch>
|
32
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071116203008' local_date='Sat Nov 17 05:30:08 JST 2007' inverted='False' hash='20071116203008-569a4-6d771646cfed616e788a8fdbd31c6f92f107ed93.gz'>
|
33
|
+
<name>Add simple spec for examples/css</name>
|
34
|
+
</patch>
|
35
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071116052612' local_date='Fri Nov 16 14:26:12 JST 2007' inverted='False' hash='20071116052612-569a4-85932ecc9c39f7041b71619412d4b09fad351ff9.gz'>
|
36
|
+
<name>Add dynamic css controller example + related sourcereload/caching enhancements</name>
|
37
|
+
</patch>
|
38
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071116041910' local_date='Fri Nov 16 13:19:10 JST 2007' inverted='False' hash='20071116041910-569a4-c585e497b1b85eded27b2dcdafa6a499f894c18a.gz'>
|
39
|
+
<name>New caching implementation, add support for :ttl and :key options + rdoc + specs</name>
|
40
|
+
</patch>
|
41
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071116040019' local_date='Fri Nov 16 13:00:19 JST 2007' inverted='False' hash='20071116040019-569a4-545b7213ff3fdc538404dc07e2a0bfcc521a9d4e.gz'>
|
42
|
+
<name>Clean up examples/caching</name>
|
43
|
+
</patch>
|
44
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071116001925' local_date='Fri Nov 16 09:19:25 JST 2007' inverted='False' hash='20071116001925-569a4-c212bacb19402bd48972ee640b7beb5ddb7dd91a.gz'>
|
45
|
+
<name>Improve file cache to work with mapped controllers</name>
|
46
|
+
</patch>
|
47
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071114214455' local_date='Thu Nov 15 06:44:55 JST 2007' inverted='False' hash='20071114214455-569a4-6ecacc3c41138008950e467ccedb8d7fc6082c13.gz'>
|
48
|
+
<name>Add Controller#cache wrapper for trait :actions_cached</name>
|
49
|
+
</patch>
|
50
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071114214158' local_date='Thu Nov 15 06:41:58 JST 2007' inverted='False' hash='20071114214158-569a4-071bb3f5614577a592fdd76fdae2ca5de4c50f83.gz'>
|
51
|
+
<name>Prevent already initialized constant warnings in session spec</name>
|
52
|
+
</patch>
|
53
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071113035607' local_date='Tue Nov 13 12:56:07 JST 2007' inverted='False' hash='20071113035607-cbc08-54b2c7138fac379a00b75d297ce5d0afbfad6817.gz'>
|
54
|
+
<name>Add traits task to list traits we have, only for quick and dirty overview, a bit buggy</name>
|
55
|
+
</patch>
|
56
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071112040437' local_date='Mon Nov 12 13:04:37 JST 2007' inverted='False' hash='20071112040437-cbc08-03f2f331caa99259845bf84122021a48428b87a9.gz'>
|
57
|
+
<name>Add spec for IP_COUNT_LIMIT bug</name>
|
58
|
+
</patch>
|
59
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071112035234' local_date='Mon Nov 12 12:52:34 JST 2007' inverted='False' hash='20071112035234-cbc08-268c5fddf02f0da4794d93f8ad06c7a265c75227.gz'>
|
60
|
+
<name>Improvment for add-copyright task</name>
|
61
|
+
</patch>
|
62
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071112034851' local_date='Mon Nov 12 12:48:51 JST 2007' inverted='False' hash='20071112034851-cbc08-61ade39ddd3c1307de28633b83a49caebfe31222.gz'>
|
63
|
+
<name>Rewrite of helper/formatting for number_format</name>
|
64
|
+
</patch>
|
65
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071112020941' local_date='Mon Nov 12 11:09:41 JST 2007' inverted='False' hash='20071112020941-cbc08-135069db16ebf794775517faaaa1ffa6727b86c6.gz'>
|
66
|
+
<name>Fixing Session::IP_COUNT, the same session-id should not be counted multiple times.</name>
|
67
|
+
</patch>
|
68
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071108071652' local_date='Thu Nov 8 16:16:52 JST 2007' inverted='False' hash='20071108071652-cbc08-678109ba6a31d3ecf681bb44430406e8e0fc6649.gz'>
|
69
|
+
<name>Update (c) and shipped libs</name>
|
70
|
+
</patch>
|
71
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071109223453' local_date='Sat Nov 10 07:34:53 JST 2007' inverted='False' hash='20071109223453-569a4-881d8826e93125f4db2e9dd930a6f6abb1781b62.gz'>
|
72
|
+
<name>Bugfix from merb to get_args.rb</name>
|
73
|
+
</patch>
|
74
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071109085749' local_date='Fri Nov 9 17:57:49 JST 2007' inverted='False' hash='20071109085749-569a4-29b5e50e7c95b10893408800c3e7115a816f774a.gz'>
|
75
|
+
<name>Don't log backtraces for Ramaze::Error::NoAction</name>
|
76
|
+
</patch>
|
77
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071109085636' local_date='Fri Nov 9 17:56:36 JST 2007' inverted='False' hash='20071109085636-569a4-b92577a086a353d5c7b9ba75abc4375cbf1bb7c4.gz'>
|
78
|
+
<name>Add Ramaze::Contrib::AutoParams for merb 0.4 style action parameterization</name>
|
79
|
+
</patch>
|
80
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071107192054' local_date='Thu Nov 8 04:20:54 JST 2007' inverted='False' hash='20071107192054-569a4-043ba1bc8575c489b4f77386596eded81b43fa47.gz'>
|
81
|
+
<name>Hack to fix strange rack behavior on PUT requests</name>
|
82
|
+
</patch>
|
83
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071107182100' local_date='Thu Nov 8 03:21:00 JST 2007' inverted='False' hash='20071107182100-569a4-17b2fa79131c9df2b6ab43073aedf30f1d8fec58.gz'>
|
84
|
+
<name>Print spec failure output so its readable</name>
|
85
|
+
</patch>
|
86
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071107182051' local_date='Thu Nov 8 03:20:51 JST 2007' inverted='False' hash='20071107182051-569a4-08296cd576c07492da6eafcc397a91dbb5b02ebf.gz'>
|
87
|
+
<name>Allow get('/action', { :input => 'value' }) and get('/action', 'input=value')</name>
|
88
|
+
</patch>
|
89
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071107181925' local_date='Thu Nov 8 03:19:25 JST 2007' inverted='False' hash='20071107181925-569a4-bd66ba6a442edea5f42dd0be74ffe2ad72ca7a85.gz'>
|
90
|
+
<name>Ran rake authors</name>
|
91
|
+
</patch>
|
92
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071106071244' local_date='Tue Nov 6 16:12:44 JST 2007' inverted='False' hash='20071106071244-cbc08-d7a81c26537337e2c326682d4775ea3705b18622.gz'>
|
93
|
+
<name>Move spec/helper/context to spec/helper/browser</name>
|
94
|
+
</patch>
|
95
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071106065510' local_date='Tue Nov 6 15:55:10 JST 2007' inverted='False' hash='20071106065510-569a4-36884e783e1291fe5537da8a3ed17c31a5062f43.gz'>
|
96
|
+
<name>Simplify hash.inject([]) to hash.map</name>
|
97
|
+
</patch>
|
98
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071106065305' local_date='Tue Nov 6 15:53:05 JST 2007' inverted='False' hash='20071106065305-569a4-d31157f7cc675c0786bd54228c0e9fbe37f7cdce.gz'>
|
99
|
+
<name>Show last used email in AUTHORS file</name>
|
100
|
+
</patch>
|
101
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071104205018' local_date='Mon Nov 5 05:50:18 JST 2007' inverted='False' hash='20071104205018-569a4-ce0f7c5d94114986c2ecf8549ac28686c4d58509.gz'>
|
102
|
+
<name>Remove simple_auth dependency on base64, use Array#pack('m') instead</name>
|
103
|
+
</patch>
|
104
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071104002135' local_date='Sun Nov 4 09:21:35 JST 2007' inverted='False' hash='20071104002135-569a4-ab2e42cf166a4e0dd9077ba8d00101fd267ed4ca.gz'>
|
105
|
+
<name>Add simple_auth example that implements Basic HTTP Authentication</name>
|
106
|
+
</patch>
|
107
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071103223743' local_date='Sun Nov 4 07:37:43 JST 2007' inverted='False' hash='20071103223743-569a4-7fbcdd7c4ca1b819421ce9b28440e6eb4b1c9b0c.gz'>
|
108
|
+
<name>Cleanup RedirectHelper spec and add test for respond() with custom status code</name>
|
109
|
+
</patch>
|
110
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071102021213' local_date='Fri Nov 2 11:12:13 JST 2007' inverted='False' hash='20071102021213-569a4-7cfd9943835d8ec3939f4009e2c6b5a7beb9a108.gz'>
|
111
|
+
<name>Add Controller#respond to RedirectHelper + specs</name>
|
112
|
+
</patch>
|
113
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071030202620' local_date='Wed Oct 31 05:26:20 JST 2007' inverted='False' hash='20071030202620-569a4-27c58e89d3ca052aa307fdda8d181ee72d4cabd8.gz'>
|
114
|
+
<name>Add FormattingHelper + specs</name>
|
115
|
+
</patch>
|
116
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071029175353' local_date='Tue Oct 30 02:53:53 JST 2007' inverted='False' hash='20071029175353-569a4-cbb7598dc460340e2b7354133341f3c2b0cb4a3e.gz'>
|
117
|
+
<name>Render aspects around actions before applying layout, and prevent aspects for render_template and layout rendering</name>
|
118
|
+
</patch>
|
119
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071025010841' local_date='Thu Oct 25 10:08:41 JST 2007' inverted='False' hash='20071025010841-569a4-21753003917c994c1402607a7bd9f013cd88737a.gz'>
|
120
|
+
<name>Change deprecated <%%> and invalid < use to prepare for Nagoro</name>
|
121
|
+
</patch>
|
122
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071025010738' local_date='Thu Oct 25 10:07:38 JST 2007' inverted='False' hash='20071025010738-569a4-eee975d8a09ee2f94ba4670ab667acdc1ac501ba.gz'>
|
123
|
+
<name>Fix references to Ezamar in template/nagoro.rb</name>
|
124
|
+
</patch>
|
125
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071025010622' local_date='Thu Oct 25 10:06:22 JST 2007' inverted='False' hash='20071025010622-569a4-70259b0287cb539f7b278817fde4608432f1a3d7.gz'>
|
126
|
+
<name>Refactored OrderedSet + specs again</name>
|
127
|
+
</patch>
|
128
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024224807' local_date='Thu Oct 25 07:48:07 JST 2007' inverted='False' hash='20071024224807-569a4-0f5633a2bbc5c238b9c323e713981072ad8e4586.gz'>
|
129
|
+
<name>Update String#snake_case so CSSController automaps to /css instead of /c_s_s</name>
|
130
|
+
</patch>
|
131
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024215624' local_date='Thu Oct 25 06:56:24 JST 2007' inverted='False' hash='20071024215624-569a4-33de178254f36de2d16be5b4ca9bab45289c8b93.gz'>
|
132
|
+
<name>Layout cleanup - remove unused &block and don't include layout for render_template calls</name>
|
133
|
+
</patch>
|
134
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024211728' local_date='Thu Oct 25 06:17:28 JST 2007' inverted='False' hash='20071024211728-569a4-46f49cc0d580c9d0f913fc566c2667f8b928c189.gz'>
|
135
|
+
<name>Clean up OrderedSet implementation and add more specs</name>
|
136
|
+
</patch>
|
137
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024192430' local_date='Thu Oct 25 04:24:30 JST 2007' inverted='False' hash='20071024192430-569a4-7f69a85e1f19402d0be8b8276dab247b2ec47308.gz'>
|
138
|
+
<name>render_template fix and specs for usage within loops and recursively</name>
|
139
|
+
</patch>
|
140
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024191800' local_date='Thu Oct 25 04:18:00 JST 2007' inverted='False' hash='20071024191800-569a4-13adf17603210d30718c425a4849e0138c84349b.gz'>
|
141
|
+
<name>Allow for <%=@var%> style constructs with Ezamar (no spaces required)</name>
|
142
|
+
</patch>
|
143
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071024191605' local_date='Thu Oct 25 04:16:05 JST 2007' inverted='False' hash='20071024191605-569a4-be5a2462caee82574841ad6edc5e9c22fe273ba4.gz'>
|
144
|
+
<name>Implement Dispatcher::Action::FILTER as an OrderedSet so it isn't affected by source reload</name>
|
145
|
+
</patch>
|
146
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071023232322' local_date='Wed Oct 24 08:23:22 JST 2007' inverted='False' hash='20071023232322-569a4-2e70bea603b0e125240253601fa9bf77b3d5842f.gz'>
|
147
|
+
<name>Conform to http spec regarding absolute uris in Location header</name>
|
148
|
+
</patch>
|
149
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071022034052' local_date='Mon Oct 22 12:40:52 JST 2007' inverted='False' hash='20071022034052-569a4-231df1a8089e00acc70d79c38431f8c5ff65b6c7.gz'>
|
150
|
+
<name>Update auth example to use new :load_engines config option</name>
|
151
|
+
</patch>
|
152
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071020203620' local_date='Sun Oct 21 05:36:20 JST 2007' inverted='False' hash='20071020203620-cbc08-7e41d0bf29f282ed5b5e1e3e7f752d22366b288a.gz'>
|
153
|
+
<name>Minor improvment of spec wrapper</name>
|
154
|
+
</patch>
|
155
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071020185914' local_date='Sun Oct 21 03:59:14 JST 2007' inverted='False' hash='20071020185914-cbc08-9b82486f4ec4a897c0ccd248c4628a4dadaf156d.gz'>
|
156
|
+
<name>ran fix-end-spaces</name>
|
157
|
+
</patch>
|
158
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071021045418' local_date='Sun Oct 21 13:54:18 JST 2007' inverted='False' hash='20071021045418-cbc08-049b631d02376238e102e61ce97ef2c645ec4d5c.gz'>
|
159
|
+
<name>Don't create meta-cache structure</name>
|
160
|
+
</patch>
|
161
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071021045025' local_date='Sun Oct 21 13:50:25 JST 2007' inverted='False' hash='20071021045025-cbc08-0b9699c15114ce326e4c05870103245b64d93f03.gz'>
|
162
|
+
<name>Require fileutils for Ramaze::Action::render</name>
|
163
|
+
</patch>
|
164
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071021034039' local_date='Sun Oct 21 12:40:39 JST 2007' inverted='False' hash='20071021034039-cbc08-8366986d96cda142413042f470534bad27b4f72a.gz'>
|
165
|
+
<name>Fix cache spec and add Action#extended_path again</name>
|
166
|
+
</patch>
|
167
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071021000435' local_date='Sun Oct 21 09:04:35 JST 2007' inverted='False' hash='20071021000435-569a4-0cb44f0ea59bdb88e7ceba33f93eaad78b601ff0.gz'>
|
168
|
+
<name>Fix off-by-one on spec output and cleanup template_root references in various specs</name>
|
169
|
+
</patch>
|
170
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071020221159' local_date='Sun Oct 21 07:11:59 JST 2007' inverted='False' hash='20071020221159-569a4-c3cea44b6cec087d26c8fbaede13511a21153032.gz'>
|
171
|
+
<name>Stop RDoc from complaining</name>
|
172
|
+
</patch>
|
173
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071020230923' local_date='Sun Oct 21 08:09:23 JST 2007' inverted='False' hash='20071020230923-cbc08-3272607744f2569fb56984b67f167084fa19e7be.gz'>
|
174
|
+
<name>Fix Global options for (template|public)_root in spec/helper</name>
|
175
|
+
</patch>
|
176
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071020151755' local_date='Sun Oct 21 00:17:55 JST 2007' inverted='False' hash='20071020151755-cbc08-f9f33e2fdbf70b3d39a455523cb243811bbc7403.gz'>
|
177
|
+
<name>Don't activate Dispatcher::Directory by default.</name>
|
178
|
+
</patch>
|
179
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071020143804' local_date='Sat Oct 20 23:38:04 JST 2007' inverted='False' hash='20071020143804-569a4-9aaffa2f72f22aee0555c99e54781362b09ce7ef.gz'>
|
180
|
+
<name>Updated benchmark formatting for wiki and latest benchmarks</name>
|
181
|
+
</patch>
|
182
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071020142750' local_date='Sat Oct 20 23:27:50 JST 2007' inverted='False' hash='20071020142750-569a4-cedf1089e9395016b068b3ba84a4940c6eebd6a4.gz'>
|
183
|
+
<name>Add Global.load_engines to specify templating engines to load at startup</name>
|
184
|
+
</patch>
|
185
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071019182754' local_date='Sat Oct 20 03:27:54 JST 2007' inverted='False' hash='20071019182754-569a4-f0ca1477224fdc891cb632a79a3524ca7aaa264b.gz'>
|
186
|
+
<name>Clean up Controller#extension_order and add comment to Action#uncached_render</name>
|
187
|
+
</patch>
|
188
|
+
<patch author='Aman Gupta <aman@ramaze.net>' date='20071019162349' local_date='Sat Oct 20 01:23:49 JST 2007' inverted='False' hash='20071019162349-569a4-b2e3d54e2ab48b7574a42401d3b4effa95139ddc.gz'>
|
189
|
+
<name>Add None template engine that does no processing</name>
|
190
|
+
</patch>
|
191
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071018213915' local_date='Fri Oct 19 06:39:15 JST 2007' inverted='False' hash='20071018213915-a47f2-843ba0d437b4745a23061afa5660889a30dfe771.gz'>
|
192
|
+
<name>Minor CgiHelper docfix</name>
|
193
|
+
</patch>
|
194
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071018213549' local_date='Fri Oct 19 06:35:49 JST 2007' inverted='False' hash='20071018213549-a47f2-1ae6512c7f9b981661f5ae8849203238a8939cbd.gz'>
|
195
|
+
<name>whywiki example cleanups - remove extra output, use Rs() instead of R(self) and use methods defined by CgiHelper instead of CGI.(un)?escape</name>
|
196
|
+
</patch>
|
197
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071018163846' local_date='Fri Oct 19 01:38:46 JST 2007' inverted='False' hash='20071018163846-a47f2-61a6717e10ca767b7545e6f40fb0f1e444bad658.gz'>
|
198
|
+
<name>Allow render_template to work recursively + spec</name>
|
199
|
+
</patch>
|
200
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071018122930' local_date='Thu Oct 18 21:29:30 JST 2007' inverted='False' hash='20071018122930-cbc08-5f286f2cba5020f4f80522e113a93fb57dfa617d.gz'>
|
201
|
+
<name>Add spec for whywiki (ty @ riffraff)</name>
|
202
|
+
</patch>
|
203
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071018044723' local_date='Thu Oct 18 13:47:23 JST 2007' inverted='False' hash='20071018044723-cbc08-9280b107582ee308f7359f374f13023d39fd6c7c.gz'>
|
204
|
+
<name>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</name>
|
205
|
+
</patch>
|
206
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071018044704' local_date='Thu Oct 18 13:47:04 JST 2007' inverted='False' hash='20071018044704-cbc08-35d2fee4f8e51a883e5621ffd15b77bc49117000.gz'>
|
207
|
+
<name>Change spec to point to an unexisting file in any case</name>
|
208
|
+
</patch>
|
209
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071018044220' local_date='Thu Oct 18 13:42:20 JST 2007' inverted='False' hash='20071018044220-cbc08-466cb278f53f5cae88e51142b11ace14296379c3.gz'>
|
210
|
+
<name>Some improvments for whywiki</name>
|
211
|
+
</patch>
|
212
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071017234039' local_date='Thu Oct 18 08:40:39 JST 2007' inverted='False' hash='20071017234039-cbc08-830e4cf124a866ec1c256911b2ccc4c79988ec75.gz'>
|
213
|
+
<name>Introduce Controller::engine and change specs to use the new form</name>
|
214
|
+
</patch>
|
215
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071017130736' local_date='Wed Oct 17 22:07:36 JST 2007' inverted='False' hash='20071017130736-cbc08-0ee3fbd1e09193a5e8160b5c3cb606406be2340d.gz'>
|
216
|
+
<name>LinkHelper was escaping query-parameters, update implementation and specs.</name>
|
217
|
+
</patch>
|
218
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071017130725' local_date='Wed Oct 17 22:07:25 JST 2007' inverted='False' hash='20071017130725-cbc08-50d793f9385eebec0a02dbc16294fabe4c029c43.gz'>
|
219
|
+
<name>Add template example for nagoro</name>
|
220
|
+
</patch>
|
221
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071017123101' local_date='Wed Oct 17 21:31:01 JST 2007' inverted='False' hash='20071017123101-cbc08-86a4f413eb1622a77723837d436425d3a50aec40.gz'>
|
222
|
+
<name>Remove some junk from Rakefile, we don't use svn</name>
|
223
|
+
</patch>
|
224
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071017122821' local_date='Wed Oct 17 21:28:21 JST 2007' inverted='False' hash='20071017122821-cbc08-9c8392a9d04a1ab8df34954399521edde28f9f26.gz'>
|
225
|
+
<name>Make examples/sourceview work anywhere</name>
|
226
|
+
</patch>
|
227
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071017192459' local_date='Thu Oct 18 04:24:59 JST 2007' inverted='False' hash='20071017192459-a47f2-077bec6f22ba7f67f6de7ede7a077dd50582da45.gz'>
|
228
|
+
<name>A few cleanups to the whywiki example (thanks gimb)</name>
|
229
|
+
</patch>
|
230
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071015221353' local_date='Tue Oct 16 07:13:53 JST 2007' inverted='False' hash='20071015221353-a47f2-b77ff6aa326eeeddee8571a8f9dc108e7bf9a88e.gz'>
|
231
|
+
<name>Add caching to sourceview</name>
|
232
|
+
</patch>
|
233
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016144938' local_date='Tue Oct 16 23:49:38 JST 2007' inverted='False' hash='20071016144938-cbc08-dff5c9a55d33d14295154ec4460e025ec365c09c.gz'>
|
234
|
+
<name>Keep the session[:STACK] out if we don't need it</name>
|
235
|
+
</patch>
|
236
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016140908' local_date='Tue Oct 16 23:09:08 JST 2007' inverted='False' hash='20071016140908-cbc08-66f58ba14de6c326863ca3513c248205e0d46168.gz'>
|
237
|
+
<name>Simplify redirection</name>
|
238
|
+
</patch>
|
239
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016140854' local_date='Tue Oct 16 23:08:54 JST 2007' inverted='False' hash='20071016140854-cbc08-ee2cd874b3a2e689f7291a76a2ed2add63baca1c.gz'>
|
240
|
+
<name>Correct $LOAD_PATH in spec/helper.rb</name>
|
241
|
+
</patch>
|
242
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016133116' local_date='Tue Oct 16 22:31:16 JST 2007' inverted='False' hash='20071016133116-cbc08-67f0105c14ea5a921b9563f1aab56a453b10e0ab.gz'>
|
243
|
+
<name>Sequel API change</name>
|
244
|
+
</patch>
|
245
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016145327' local_date='Tue Oct 16 23:53:27 JST 2007' inverted='False' hash='20071016145327-cbc08-e9c76246c9d71663ce8c255b07f6a2826be21c03.gz'>
|
246
|
+
<name>Small improvment for docs of RedirectHelper</name>
|
247
|
+
</patch>
|
248
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016145239' local_date='Tue Oct 16 23:52:39 JST 2007' inverted='False' hash='20071016145239-cbc08-d6f46429d6946c359058fbfbc20d8ba01f2b8b59.gz'>
|
249
|
+
<name>Small beautification to Dispatcher::File</name>
|
250
|
+
</patch>
|
251
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016120024' local_date='Tue Oct 16 21:00:24 JST 2007' inverted='False' hash='20071016120024-cbc08-082562cd248145e608f9f58d900d717801741b21.gz'>
|
252
|
+
<name>Adapt Nagoro for latest API changes</name>
|
253
|
+
</patch>
|
254
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071015045805' local_date='Mon Oct 15 13:58:05 JST 2007' inverted='False' hash='20071015045805-cbc08-08c07cd057832fffcf888d837b7016954a926c26.gz'>
|
255
|
+
<name>Add (for now optional) support for Nagoro templates.</name>
|
256
|
+
</patch>
|
257
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071012124124' local_date='Fri Oct 12 21:41:24 JST 2007' inverted='False' hash='20071012124124-cbc08-284b7f040caf4181ab8a51f9584be4a2deab0d49.gz'>
|
258
|
+
<name>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.</name>
|
259
|
+
</patch>
|
260
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071016152037' local_date='Wed Oct 17 00:20:37 JST 2007' inverted='False' hash='20071016152037-cbc08-2aca61e7e9697bed78005dd5d8e50e892d84f120.gz'>
|
261
|
+
<name>Don't mention coderay in README anymore</name>
|
262
|
+
</patch>
|
263
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071011043035' local_date='Thu Oct 11 13:30:35 JST 2007' inverted='False' hash='20071011043035-a47f2-8592b2b111356237932ed259b124e14f026ffbff.gz'>
|
264
|
+
<name>Minor sourceview cleanups</name>
|
265
|
+
</patch>
|
266
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071011152604' local_date='Fri Oct 12 00:26:04 JST 2007' inverted='False' hash='20071011152604-cbc08-ce0a68a8dad9fc0a1282421bd97769f08c3f3c83.gz'>
|
267
|
+
<name>layout example should not have an Element</name>
|
268
|
+
</patch>
|
269
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071011035130' local_date='Thu Oct 11 12:51:30 JST 2007' inverted='False' hash='20071011035130-cbc08-6976b20f8704fcd78476c77402300b83f6a591d2.gz'>
|
270
|
+
<name>Numeric#human_readable_filesize_format #=> Numeric#filesize_format</name>
|
271
|
+
</patch>
|
272
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071011013118' local_date='Thu Oct 11 10:31:18 JST 2007' inverted='False' hash='20071011013118-a47f2-123028a542802f178dba579df5ab539036dcebf1.gz'>
|
273
|
+
<name>Add sourceview example- syntax highlighting source browser for ramaze source code</name>
|
274
|
+
</patch>
|
275
|
+
<patch author='jesuswasramazing.10.pistos@geoshell.com' date='20071005054848' local_date='Fri Oct 5 14:48:48 JST 2007' inverted='False' hash='20071005054848-55b44-452cab7fe326ac89c88394f927ae49c0c96d9180.gz'>
|
276
|
+
<name>gzip filter added</name>
|
277
|
+
</patch>
|
278
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071010122507' local_date='Wed Oct 10 21:25:07 JST 2007' inverted='False' hash='20071010122507-cbc08-eb73f3b6d43053efcf5aeece96e67b44e3791fb6.gz'>
|
279
|
+
<name>Fix <title> in layout example</name>
|
280
|
+
</patch>
|
281
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071009170713' local_date='Wed Oct 10 02:07:13 JST 2007' inverted='False' hash='20071009170713-cbc08-63a5fb238fdaa46e6453acad787be86b04dbc9df.gz'>
|
282
|
+
<name>Remove mention of Nginx from feature CGI</name>
|
283
|
+
</patch>
|
284
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071005052916' local_date='Fri Oct 5 14:29:16 JST 2007' inverted='False' hash='20071005052916-cbc08-60e47228ba9b909c442145dc2ed3e05ed88d75e6.gz'>
|
285
|
+
<name>Add Global.boring to avoid logging of some static files</name>
|
286
|
+
</patch>
|
287
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071005015003' local_date='Fri Oct 5 10:50:03 JST 2007' inverted='False' hash='20071005015003-cbc08-8751221b3cd7b1b150995e31e67539e27088c330.gz'>
|
288
|
+
<name>Don't overwrite Global on sourcereload</name>
|
289
|
+
</patch>
|
290
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071003043840' local_date='Wed Oct 3 13:38:40 JST 2007' inverted='False' hash='20071003043840-a47f2-f8c3144ae36a2a757a44d637dd1db2ae2728be22.gz'>
|
291
|
+
<name>Move auth example into its own dir and separate out templates so action stubs aren't required. Make AuthHelper#login_required private</name>
|
292
|
+
</patch>
|
293
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071003010530' local_date='Wed Oct 3 10:05:30 JST 2007' inverted='False' hash='20071003010530-a47f2-fcd15aee4fdf85e1b2d8e7cd89f7672920504981.gz'>
|
294
|
+
<name>Add benchmark suite</name>
|
295
|
+
</patch>
|
296
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071002234747' local_date='Wed Oct 3 08:47:47 JST 2007' inverted='False' hash='20071002234747-a47f2-1828f2537d1d6aeb756c29930cc4a912969313a1.gz'>
|
297
|
+
<name>AuthHelper cleanups and an example using Sequel</name>
|
298
|
+
</patch>
|
299
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20071002234355' local_date='Wed Oct 3 08:43:55 JST 2007' inverted='False' hash='20071002234355-a47f2-9cf4228553f5284a79700f41d304066bb749c8dd.gz'>
|
300
|
+
<name>Ignore /favicon.ico by default</name>
|
301
|
+
</patch>
|
302
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071006222648' local_date='Sun Oct 7 07:26:48 JST 2007' inverted='False' hash='20071006222648-cbc08-c16ad470f1fae63b828e5fef5681113811ba6a99.gz'>
|
303
|
+
<name>rescue MissingArgument for missing arguments in bin/ramaze</name>
|
304
|
+
</patch>
|
305
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071005152720' local_date='Sat Oct 6 00:27:20 JST 2007' inverted='False' hash='20071005152720-cbc08-0c2e822f3856f9f57f06de47a73ce8eecda02e91.gz'>
|
306
|
+
<name>Add doc/LEGAL that is required by doc/LEGAL, holds a list of licenses and authors of files we use but do not 'own'.</name>
|
307
|
+
</patch>
|
308
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071002233631' local_date='Wed Oct 3 08:36:31 JST 2007' inverted='False' hash='20071002233631-cbc08-34129ea55cf5a8e3f51ccab147228b2a8bc4d9db.gz'>
|
309
|
+
<name>Add the needed adapter/swiftiplied_mongrel and adapter/evented_mongrel</name>
|
310
|
+
</patch>
|
311
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071002233135' local_date='Wed Oct 3 08:31:35 JST 2007' inverted='False' hash='20071002233135-cbc08-aea1eaf7b49a5744471d6381b58e5315738fcc2e.gz'>
|
312
|
+
<name>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?</name>
|
313
|
+
</patch>
|
314
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20071002152504' local_date='Wed Oct 3 00:25:04 JST 2007' inverted='False' hash='20071002152504-cbc08-c6dbda1fc089ec39914bd8af9d10c060f847accd.gz'>
|
315
|
+
<name>Fix hash-order issue for gestalt spec.</name>
|
316
|
+
</patch>
|
317
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070929133737' local_date='Sat Sep 29 22:37:37 JST 2007' inverted='False' hash='20070929133737-cbc08-135fa563781d15cb00d076ef4e1aea8343ccc6d0.gz'>
|
318
|
+
<name>Gestalt should accept symbols as attributes</name>
|
319
|
+
</patch>
|
320
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070930163354' local_date='Mon Oct 1 01:33:54 JST 2007' inverted='False' hash='20070930163354-cbc08-3acaadae564707995869ae9547155a9da11af6bc.gz'>
|
321
|
+
<name>Fix reference and logging of CGI adapter.</name>
|
322
|
+
</patch>
|
323
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070930051429' local_date='Sun Sep 30 14:14:29 JST 2007' inverted='False' hash='20070930051429-cbc08-7f68d1b074d0e8ddb9c12ea6cac83dddc757ca28.gz'>
|
324
|
+
<name>Fix docs for AuthHelper</name>
|
325
|
+
</patch>
|
326
|
+
<patch author='Jonathan Buch <john@oxyliquit.de>' date='20070926160207' local_date='Thu Sep 27 01:02:07 JST 2007' inverted='False' hash='20070926160207-2c51e-3bc407f0b70556ed776db15fa25586d6ba1281ab.gz'>
|
327
|
+
<name>[localize] normalize session locale too</name>
|
328
|
+
</patch>
|
329
|
+
<patch author='Jonathan Buch <john@oxyliquit.de>' date='20070926102009' local_date='Wed Sep 26 19:20:09 JST 2007' inverted='False' hash='20070926102009-2c51e-5ed615857604052e3e8df5d8be2767a3988dd0ed.gz'>
|
330
|
+
<name>Minor cleanup of whitespace</name>
|
331
|
+
</patch>
|
332
|
+
<patch author='Jonathan Buch <john@oxyliquit.de>' date='20070926095546' local_date='Wed Sep 26 18:55:46 JST 2007' inverted='False' hash='20070926095546-2c51e-ec3f428faf3ea109edb5a3105a71aa1a8b0817e1.gz'>
|
333
|
+
<name>[localize] normalize dictionary to regard symbols and strings the same, add usage doc</name>
|
334
|
+
</patch>
|
335
|
+
<patch author='Jonathan Buch <john@oxyliquit.de>' date='20070925171154' local_date='Wed Sep 26 02:11:54 JST 2007' inverted='False' hash='20070925171154-2c51e-58406b78c0d94afd9ddc311ceb2e1b5e051d2586.gz'>
|
336
|
+
<name>Expand new Layout lookup so it can be relative paths too (no / at beginning means current controller)</name>
|
337
|
+
</patch>
|
338
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070925160834' local_date='Wed Sep 26 01:08:34 JST 2007' inverted='False' hash='20070925160834-cbc08-762a3361eadb7600106c128abe912e1f4dcb7c09.gz'>
|
339
|
+
<name>Add Stephan Maka to authors.</name>
|
340
|
+
</patch>
|
341
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070925042337' local_date='Tue Sep 25 13:23:37 JST 2007' inverted='False' hash='20070925042337-cbc08-34b21d674bb85ad87ba804d1771b5debccddd648.gz'>
|
342
|
+
<name>spec/helper/wrap now handles rubygems version mismatch better.</name>
|
343
|
+
</patch>
|
344
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070925041727' local_date='Tue Sep 25 13:17:27 JST 2007' inverted='False' hash='20070925041727-cbc08-2199d3e7b932c0f5f99fb292bc992e664c772b30.gz'>
|
345
|
+
<name>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.</name>
|
346
|
+
</patch>
|
347
|
+
<patch author='jesuswasramazing.10.pistos@geoshell.com' date='20070925140510' local_date='Tue Sep 25 23:05:10 JST 2007' inverted='False' hash='20070925140510-55b44-dd851d5f69b3bce06ce064cf1d5d1ac582dd8e37.gz'>
|
348
|
+
<name>trivial comment changes</name>
|
349
|
+
</patch>
|
350
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070922191754' local_date='Sun Sep 23 04:17:54 JST 2007' inverted='False' hash='20070922191754-cbc08-82ccafdda906f3a99ef91dfabe0477c447bfbdaa.gz'>
|
351
|
+
<name>Remove unused methods from Action</name>
|
352
|
+
</patch>
|
353
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070923051241' local_date='Sun Sep 23 14:12:41 JST 2007' inverted='False' hash='20070923051241-cbc08-9cf319a0216946e8dddf84907ca97acc4cfe967a.gz'>
|
354
|
+
<name>Global.ignore now only ignores files if they don't exist.</name>
|
355
|
+
</patch>
|
356
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070923050957' local_date='Sun Sep 23 14:09:57 JST 2007' inverted='False' hash='20070923050957-cbc08-1fce5d31936a5229fc90835bb3fbb6132e81e5b1.gz'>
|
357
|
+
<name>Fix requires for to specs.</name>
|
358
|
+
</patch>
|
359
|
+
<patch author='stephan@spaceboyz.net' date='20070921225525' local_date='Sat Sep 22 07:55:25 JST 2007' inverted='False' hash='20070921225525-84564-6106a40d8a3092ca3fe469faf64a62c085eeb7c7.gz'>
|
360
|
+
<name>XSLT template example: add Content-Type</name>
|
361
|
+
</patch>
|
362
|
+
<patch author='stephan@spaceboyz.net' date='20070921130029' local_date='Fri Sep 21 22:00:29 JST 2007' inverted='False' hash='20070921130029-84564-45f0f811021b963cb343c13ea464bbf0b4328d5f.gz'>
|
363
|
+
<name>XSLT template spec: two more examples</name>
|
364
|
+
</patch>
|
365
|
+
<patch author='stephan@spaceboyz.net' date='20070921115648' local_date='Fri Sep 21 20:56:48 JST 2007' inverted='False' hash='20070921115648-84564-9bd703b7a1e4342a0af50c8e547aae13361e9bb4.gz'>
|
366
|
+
<name>XSLT templates: add extFunctions capability</name>
|
367
|
+
</patch>
|
368
|
+
<patch author='stephan@spaceboyz.net' date='20070920011044' local_date='Thu Sep 20 10:10:44 JST 2007' inverted='False' hash='20070920011044-84564-fed68f9a85f2d9b950ba7b22461bc7328405a7d5.gz'>
|
369
|
+
<name>Ramaze support for XSLT templates, example</name>
|
370
|
+
</patch>
|
371
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070921140842' local_date='Fri Sep 21 23:08:42 JST 2007' inverted='False' hash='20070921140842-cbc08-657f6825a4540837a0c34daac9a73f022e3fcf99.gz'>
|
372
|
+
<name>Instruct SourceReload to expand filenames before loading to make sure they really do exist where we think they do.</name>
|
373
|
+
</patch>
|
374
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070921081739' local_date='Fri Sep 21 17:17:39 JST 2007' inverted='False' hash='20070921081739-cbc08-0a5bc91560aad9866dda26f9b0d58d262fa7a4d2.gz'>
|
375
|
+
<name>Slight 'beautifcation' for specwrapper</name>
|
376
|
+
</patch>
|
377
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070921080937' local_date='Fri Sep 21 17:09:37 JST 2007' inverted='False' hash='20070921080937-cbc08-3584b325915224b7ad636ec6217000f91fbed8d2.gz'>
|
378
|
+
<name>SourceReload#reload_glob is now SourceReload.trait[:reload_glob] for ultimate control.</name>
|
379
|
+
</patch>
|
380
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070921064236' local_date='Fri Sep 21 15:42:36 JST 2007' inverted='False' hash='20070921064236-cbc08-72a82b73eb121900775a458d2a42e930b2a23d09.gz'>
|
381
|
+
<name>This improves logging a bit by introducing the :dev tag and so lowering the overall output in default mode.</name>
|
382
|
+
</patch>
|
383
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070919153655' local_date='Thu Sep 20 00:36:55 JST 2007' inverted='False' hash='20070919153655-a47f2-c2261a94f8bdeca0a500f7388add3e3318be1b12.gz'>
|
384
|
+
<name>alias Ramaze.contrib to Ramaze::Contrib.load</name>
|
385
|
+
</patch>
|
386
|
+
<patch author='stephan@spaceboyz.net' date='20070920153337' local_date='Fri Sep 21 00:33:37 JST 2007' inverted='False' hash='20070920153337-84564-e776cb9c5f4c41f2d603648275eab3ebfa40ae1d.gz'>
|
387
|
+
<name>Gestalt: allow text in arguments, properly escape this text and attributes</name>
|
388
|
+
</patch>
|
389
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070919062417' local_date='Wed Sep 19 15:24:17 JST 2007' inverted='False' hash='20070919062417-cbc08-21560d47e841520e3b88ee0990d3cf12db390b29.gz'>
|
390
|
+
<name>Add $0 to files being sourcereloaded.</name>
|
391
|
+
</patch>
|
392
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070919062143' local_date='Wed Sep 19 15:21:43 JST 2007' inverted='False' hash='20070919062143-cbc08-0a8f92b743e76c77d09a079639063ced36a64ae3.gz'>
|
393
|
+
<name>Implement Global.ignore and spec it.</name>
|
394
|
+
</patch>
|
395
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070918104659' local_date='Tue Sep 18 19:46:59 JST 2007' inverted='False' hash='20070918104659-cbc08-7d174e63fabb257ec2dbb4c8f69210414be24116.gz'>
|
396
|
+
<name>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</name>
|
397
|
+
</patch>
|
398
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070918054112' local_date='Tue Sep 18 14:41:12 JST 2007' inverted='False' hash='20070918054112-cbc08-651a9027bd381ae5493d9210e49ad844d9d81d41.gz'>
|
399
|
+
<name>Small improvment to the sequel/fill contrib</name>
|
400
|
+
</patch>
|
401
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070918053330' local_date='Tue Sep 18 14:33:30 JST 2007' inverted='False' hash='20070918053330-cbc08-a37d85167c19f77a3b3da220e0883cd84b03a654.gz'>
|
402
|
+
<name>Add contrib/sequel/fill</name>
|
403
|
+
</patch>
|
404
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070918045439' local_date='Tue Sep 18 13:54:39 JST 2007' inverted='False' hash='20070918045439-cbc08-483b703119ae98b86d23057abe0a606ed7051182.gz'>
|
405
|
+
<name>alias redirect_referer to redirect_referrer in RedirectHelper</name>
|
406
|
+
</patch>
|
407
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070918014843' local_date='Tue Sep 18 10:48:43 JST 2007' inverted='False' hash='20070918014843-cbc08-31ab1e74cbbcae26a8fd53a6e1b77308a4f410f5.gz'>
|
408
|
+
<name>Allow custom /helper directory in apps, will be searched before ramazes helpers.</name>
|
409
|
+
</patch>
|
410
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070917114503' local_date='Mon Sep 17 20:45:03 JST 2007' inverted='False' hash='20070917114503-cbc08-026d77dd0a1f13a041e3b341b5c785882ef26833.gz'>
|
411
|
+
<name>Add the wikore example and fix spec for wiktacular a little.</name>
|
412
|
+
</patch>
|
413
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070917114458' local_date='Mon Sep 17 20:44:58 JST 2007' inverted='False' hash='20070917114458-cbc08-4ced554217bf18124d4dd9967e7426c50f5b0720.gz'>
|
414
|
+
<name>Improve output of spec wrapper a bit.</name>
|
415
|
+
</patch>
|
416
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070912125255' local_date='Wed Sep 12 21:52:55 JST 2007' inverted='False' hash='20070912125255-cbc08-a494508f20bf4280ee22c68c8a77768c2090d536.gz'>
|
417
|
+
<name>Adding path for OSX to tool/tidy and improve readability of the spec for it a bit.</name>
|
418
|
+
</patch>
|
419
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070912090809' local_date='Wed Sep 12 18:08:09 JST 2007' inverted='False' hash='20070912090809-cbc08-786f70d63005b0654324dcf3dc6e250d96eff1ee.gz'>
|
420
|
+
<name>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.</name>
|
421
|
+
</patch>
|
422
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070911084731' local_date='Tue Sep 11 17:47:31 JST 2007' inverted='False' hash='20070911084731-cbc08-bca2d241cac907c29cdfc79510487dd067fef802.gz'>
|
423
|
+
<name>Small beautification/speedup for the mocked http</name>
|
424
|
+
</patch>
|
425
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070911162955' local_date='Wed Sep 12 01:29:55 JST 2007' inverted='False' hash='20070911162955-cbc08-1e89e2ada71e6b4ccadde4c353ee8c9e1958379f.gz'>
|
426
|
+
<name>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.</name>
|
427
|
+
</patch>
|
428
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070911144843' local_date='Tue Sep 11 23:48:43 JST 2007' inverted='False' hash='20070911144843-cbc08-97a0b6fa319fd1ff5816a139ce3cedda5161540c.gz'>
|
429
|
+
<name>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.</name>
|
430
|
+
</patch>
|
431
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070911054158' local_date='Tue Sep 11 14:41:58 JST 2007' inverted='False' hash='20070911054158-cbc08-3b428805cb2293989b4ca31f296083adb357e9f2.gz'>
|
432
|
+
<name>Adding snippet for Array#put_within/put_before/put_after plus specs. docs missing.</name>
|
433
|
+
</patch>
|
434
|
+
<patch author='Aman Gupta <ramaze@tmm1.net>' date='20070910063242' local_date='Mon Sep 10 15:32:42 JST 2007' inverted='False' hash='20070910063242-a47f2-145247d601529f9c07e8da4eb8162c2f8ec5e6db.gz'>
|
435
|
+
<name>Updated spec for route</name>
|
436
|
+
</patch>
|
437
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070910044521' local_date='Mon Sep 10 13:45:21 JST 2007' inverted='False' hash='20070910044521-cbc08-34be9cec98d83d68190cea7666aabac8c014a82d.gz'>
|
438
|
+
<name>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.</name>
|
439
|
+
</patch>
|
440
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070910044506' local_date='Mon Sep 10 13:45:06 JST 2007' inverted='False' hash='20070910044506-cbc08-5a222bc6afca97ac5cb260c8adb695df8f3908af.gz'>
|
441
|
+
<name>Add basic Ramaze::contrib as future helping instance for contributed things.</name>
|
442
|
+
</patch>
|
443
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070907083216' local_date='Fri Sep 7 17:32:16 JST 2007' inverted='False' hash='20070907083216-cbc08-15573d60e34d3925d362a9ccd2dbd894f4ad9bc6.gz'>
|
444
|
+
<name>make snippets/struct/values_at behaviour compatible with standard ruby (orig. by riffraff)</name>
|
445
|
+
</patch>
|
446
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070907083158' local_date='Fri Sep 7 17:31:58 JST 2007' inverted='False' hash='20070907083158-cbc08-81efc379bbdfedc7e079d217a814bb20d7c5b487.gz'>
|
447
|
+
<name>Fix for directory-listing, always sort files/dirs shown</name>
|
448
|
+
</patch>
|
449
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906135219' local_date='Thu Sep 6 22:52:19 JST 2007' inverted='False' hash='20070906135219-cbc08-5bb11ef134eb3e01929ee10e5da082b52e66b6ba.gz'>
|
450
|
+
<name>TAG 0.1.4</name>
|
451
|
+
</patch>
|
452
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906135154' local_date='Thu Sep 6 22:51:54 JST 2007' inverted='False' hash='20070906135154-cbc08-7fee003a5869128959fbc06552f52885eb01f9b6.gz'>
|
453
|
+
<name>Update doc/CHANGELOG</name>
|
454
|
+
</patch>
|
455
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906135132' local_date='Thu Sep 6 22:51:32 JST 2007' inverted='False' hash='20070906135132-cbc08-2be9f94b55fb352f20e68e4f6be699bc59945fb6.gz'>
|
456
|
+
<name>Version 0.1.4</name>
|
457
|
+
</patch>
|
458
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906135122' local_date='Thu Sep 6 22:51:22 JST 2007' inverted='False' hash='20070906135122-cbc08-4bc481eb9ad9a22e027b43e3df68a8407a3771e9.gz'>
|
459
|
+
<name>Make Struct#values_at backwards-compatible but remove Symbol#to_int (deprecated by ruby1.9)</name>
|
460
|
+
</patch>
|
461
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906134948' local_date='Thu Sep 6 22:49:48 JST 2007' inverted='False' hash='20070906134948-cbc08-3f560b69dee9e38498b801795bd537e48b6cfdff.gz'>
|
462
|
+
<name>Fix typo in human_readable_filesize_format</name>
|
463
|
+
</patch>
|
464
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906134934' local_date='Thu Sep 6 22:49:34 JST 2007' inverted='False' hash='20070906134934-cbc08-d7d70473ecfce90160ce6c43ac6e4452a5112783.gz'>
|
465
|
+
<name>Update things in /doc</name>
|
466
|
+
</patch>
|
467
|
+
<patch author='Michael Fellinger <m.fellinger@gmail.com>' date='20070906134856' local_date='Thu Sep 6 22:48:56 JST 2007' inverted='False' hash='20070906134856-cbc08-2ffaa3db7d005918195ea4fcf8bd53f541bc5f7d.gz'>
|
468
|
+
<name>Update doc/AUTHORS</name>
|
7
469
|
</patch>
|
8
470
|
<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
471
|
<name>Fixing some more spaces.</name>
|
@@ -32,9 +494,6 @@
|
|
32
494
|
<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
495
|
<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
496
|
</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
497
|
<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
498
|
<name>spec for Informer case statement in initialize</name>
|
40
499
|
</patch>
|
@@ -62,6 +521,9 @@
|
|
62
521
|
<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
522
|
<name>spec for Ramaze#caller_info</name>
|
64
523
|
</patch>
|
524
|
+
<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'>
|
525
|
+
<name>Fixing directory listing and adding spec</name>
|
526
|
+
</patch>
|
65
527
|
<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
528
|
<name>remove useless snippets/openstruct</name>
|
67
529
|
</patch>
|
@@ -113,21 +575,18 @@ Strangely, all test pass but it is shown with a red bar from ramaze's rake.
|
|
113
575
|
<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
576
|
<name>Rewrite of Kernel#aquire</name>
|
115
577
|
</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
578
|
<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
579
|
<name>Changing implementation of __DIR__ a bit.</name>
|
121
580
|
</patch>
|
122
581
|
<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
582
|
<name>more tests for wiktacular to show post() usage</name>
|
124
583
|
</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
584
|
<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
585
|
<name>Fixing typo in StackHelper docs.</name>
|
130
586
|
</patch>
|
587
|
+
<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'>
|
588
|
+
<name>Adding the filecache meta structure and renaming Global.action_file_cached to Global.file_cache, adding Global.file_cache_meta_dir</name>
|
589
|
+
</patch>
|
131
590
|
<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
591
|
<name>Make the wiktacular spec work standalone and fix its dependence on hash-order</name>
|
133
592
|
</patch>
|