ramaze 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. data/Rakefile +1 -1
  2. data/doc/AUTHORS +2 -0
  3. data/doc/CHANGELOG +173 -0
  4. data/doc/changes.txt +4184 -0
  5. data/doc/changes.xml +4186 -0
  6. data/doc/meta/announcement.txt +22 -25
  7. data/doc/meta/internals.txt +146 -9
  8. data/examples/blog/template/index.xhtml +5 -2
  9. data/examples/fcgi.rb +13 -0
  10. data/examples/wiktacular/main.rb +8 -0
  11. data/examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd +1 -0
  12. data/examples/wiktacular/mkd/link/current.mkd +1 -0
  13. data/examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd +1 -0
  14. data/examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd +1 -0
  15. data/examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
  16. data/examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
  17. data/examples/wiktacular/mkd/main/current.mkd +2 -0
  18. data/examples/wiktacular/mkd/markdown/current.mkd +3 -0
  19. data/examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
  20. data/examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd +3 -0
  21. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd +11 -0
  22. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd +13 -0
  23. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd +17 -0
  24. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd +17 -0
  25. data/examples/wiktacular/mkd/testing/current.mkd +17 -0
  26. data/examples/wiktacular/public/favicon.ico +0 -0
  27. data/examples/wiktacular/public/screen.css +72 -0
  28. data/examples/wiktacular/src/controller.rb +44 -0
  29. data/examples/wiktacular/src/model.rb +92 -0
  30. data/examples/wiktacular/src/page.rb +66 -0
  31. data/examples/wiktacular/template/edit.xhtml +7 -0
  32. data/examples/wiktacular/template/index.xhtml +11 -0
  33. data/examples/wiktacular/template/new.xhtml +7 -0
  34. data/lib/proto/main.rb +2 -0
  35. data/lib/proto/public/error.zmr +3 -0
  36. data/lib/proto/public/js/jquery.js +1755 -1334
  37. data/lib/proto/template/index.xhtml +2 -2
  38. data/lib/ramaze.rb +8 -3
  39. data/lib/ramaze/action/render.rb +11 -0
  40. data/lib/ramaze/adapter/base.rb +11 -7
  41. data/lib/ramaze/cache.rb +25 -10
  42. data/lib/ramaze/cache/memcached.rb +16 -1
  43. data/lib/ramaze/cache/yaml_store.rb +10 -0
  44. data/lib/ramaze/controller.rb +12 -2
  45. data/lib/ramaze/controller/error.rb +9 -3
  46. data/lib/ramaze/controller/resolve.rb +20 -18
  47. data/lib/ramaze/dispatcher.rb +13 -4
  48. data/lib/ramaze/dispatcher/action.rb +7 -3
  49. data/lib/ramaze/dispatcher/error.rb +24 -2
  50. data/lib/ramaze/dispatcher/file.rb +12 -6
  51. data/lib/ramaze/global.rb +0 -3
  52. data/lib/ramaze/global/dsl.rb +9 -0
  53. data/lib/ramaze/global/globalstruct.rb +7 -1
  54. data/lib/ramaze/helper/aspect.rb +4 -2
  55. data/lib/ramaze/helper/cgi.rb +2 -2
  56. data/lib/ramaze/helper/file.rb +3 -0
  57. data/lib/ramaze/helper/link.rb +20 -0
  58. data/lib/ramaze/helper/markaby.rb +3 -0
  59. data/lib/ramaze/helper/pager.rb +10 -17
  60. data/lib/ramaze/helper/partial.rb +9 -3
  61. data/lib/ramaze/inform/analogger.rb +14 -0
  62. data/lib/ramaze/inform/growl.rb +7 -0
  63. data/lib/ramaze/inform/hub.rb +9 -0
  64. data/lib/ramaze/inform/informer.rb +9 -3
  65. data/lib/ramaze/inform/informing.rb +9 -3
  66. data/lib/ramaze/inform/knotify.rb +5 -1
  67. data/lib/ramaze/inform/syslog.rb +3 -0
  68. data/lib/ramaze/inform/xosd.rb +12 -0
  69. data/lib/ramaze/template.rb +3 -0
  70. data/lib/ramaze/template/amrita2.rb +2 -0
  71. data/lib/ramaze/template/erubis.rb +1 -0
  72. data/lib/ramaze/template/ezamar.rb +1 -0
  73. data/lib/ramaze/template/ezamar/element.rb +17 -11
  74. data/lib/ramaze/template/ezamar/engine.rb +5 -0
  75. data/lib/ramaze/template/ezamar/render_partial.rb +4 -2
  76. data/lib/ramaze/template/haml.rb +4 -0
  77. data/lib/ramaze/template/liquid.rb +4 -0
  78. data/lib/ramaze/template/markaby.rb +4 -0
  79. data/lib/ramaze/template/remarkably.rb +4 -0
  80. data/lib/ramaze/tool.rb +10 -0
  81. data/lib/ramaze/tool/localize.rb +1 -1
  82. data/lib/ramaze/trinity/session.rb +8 -1
  83. data/lib/ramaze/version.rb +1 -1
  84. data/rake_tasks/maintaince.rake +2 -2
  85. data/spec/ramaze/action/basics.rb +1 -1
  86. data/spec/ramaze/cache.rb +11 -0
  87. data/spec/ramaze/controller.rb +0 -14
  88. data/spec/ramaze/dispatcher/file.rb +5 -5
  89. data/spec/ramaze/dispatcher/public/favicon.ico +0 -0
  90. data/spec/ramaze/dispatcher/public/test_download.css +141 -0
  91. data/spec/ramaze/error.rb +21 -7
  92. data/spec/ramaze/helper/link.rb +15 -0
  93. data/spec/ramaze/helper/pager.rb +26 -3
  94. data/spec/ramaze/helper/partial.rb +2 -2
  95. metadata +43 -4
  96. data/doc/COPYING.ja +0 -51
data/Rakefile CHANGED
@@ -70,7 +70,7 @@ end
70
70
  desc "generate improved allison-rdoc"
71
71
  task :allison => :clean do
72
72
  opts = RDOC_OPTS
73
- opts << %w[--template 'doc/allison/allison.rb']
73
+ opts << %w[--template '/home/manveru/prog/projects/allison/allison.rb']
74
74
  sh "rdoc #{(RDOC_OPTS + RDOC_FILES).join(' ')}"
75
75
  end
76
76
 
data/doc/AUTHORS CHANGED
@@ -1,9 +1,11 @@
1
1
  Following persons (in alphabetical order) have contributed to Ramaze:
2
2
 
3
+ Aman Gupta - ramaze@tmm1.net
3
4
  Christian Neukirchen - chneukirchen@gmail.com
4
5
  Clive Crous - clive@crous.co.za
5
6
  Gabriele Renzi - rff.rff@gmail.com
6
7
  Jonathan Buch - jo@helloit.fi
8
+ Lars Olsson - lasso@lassoweb.se
7
9
  Martin Hilbig - blueonyx@dev-area.net
8
10
  Michael Fellinger - manveru@weez-int.com
9
11
  zenix - comp.lang.zenix+ramaze@gmail.com
data/doc/CHANGELOG CHANGED
@@ -1,3 +1,176 @@
1
+ Sat Jul 21 22:08:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
+ tagged 0.1.3
3
+
4
+ Sat Jul 21 22:04:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
5
+ * Version 0.1.3
6
+
7
+ Sat Jul 21 22:03:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
8
+ * some minor changes
9
+
10
+ Sat Jul 21 22:02:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
11
+ * Update announcement
12
+
13
+ Sat Jul 21 19:28:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
14
+ * Document a bunch of methods/classes/modules
15
+
16
+ Sat Jul 21 19:00:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
17
+ * rawiki is now wiktacular, fixed some bugs, added some features, HTML escapes fine now.
18
+
19
+ Fri Jul 20 14:54:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
20
+ * documentation for dispatcher/error and the templating engines.
21
+
22
+ Fri Jul 20 14:46:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
23
+ * Some more class/module docs.
24
+
25
+ Fri Jul 20 14:33:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
26
+ * Documenting the inform/* informers.
27
+
28
+ Fri Jul 20 21:53:45 JST 2007 Jonathan Buch <jo@helloit.fi>
29
+ * Add a spec for recent cache patch (namespaces for caches)
30
+
31
+ Fri Jul 20 21:53:32 JST 2007 Jonathan Buch <jo@helloit.fi>
32
+ * don't translate empty strings (localize)
33
+
34
+ Fri Jul 20 21:52:52 JST 2007 Jonathan Buch <jo@helloit.fi>
35
+ * Allow <Page js='foo'> as well as <Page js="foo">
36
+
37
+ Fri Jul 20 21:51:52 JST 2007 Jonathan Buch <jo@helloit.fi>
38
+ * small visual enhancement in resolve.rb
39
+
40
+ Fri Jul 20 21:50:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
41
+ * Add rawiki example
42
+
43
+ Fri Jul 20 16:36:09 JST 2007 Jonathan Buch <jo@helloit.fi>
44
+ * Revise cache, add cache-name to key, remove method missing
45
+ .[] .[]= .delete .clear .values_at
46
+ These are now the only operations supported by Cache, if you need more, use
47
+ the Cache#cache to get the underlying object.
48
+
49
+ Fri Jul 20 03:06:18 JST 2007 Jonathan Buch <jo@helloit.fi>
50
+ * Fix blog example, link is removed in favour of A
51
+
52
+ Thu Jul 19 22:58:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
53
+ * Refining error-handling, now controllers are asked for a (also configurable) error-page if they have no action.
54
+
55
+ Thu Jul 19 01:34:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
56
+ * Remove __ urls, saves us one iteration for each uri over 3 segments long :P
57
+
58
+ Sat Jul 14 04:21:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
59
+ * jQuery 1.1.3.1
60
+
61
+ Sat Jul 14 01:46:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
62
+ * Warn if no mappings are done.
63
+
64
+ Sat Jul 14 01:24:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
65
+ * Alternative error-page if error-template missing and hint about clicking backtraces.
66
+
67
+ Fri Jul 13 08:45:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
68
+ * Two minor fixes for proto
69
+
70
+ Thu Jul 12 20:22:14 JST 2007 Jonathan Buch <jo@helloit.fi>
71
+ * bugfix, Inform not Informer
72
+
73
+ Mon Jul 9 22:57:17 JST 2007 Jonathan Buch <jo@helloit.fi>
74
+ * Add a Controller.at(mapping) method to nicely get to a mapped controller when you only have a path.
75
+
76
+ Thu Jul 12 08:51:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
77
+ * remove the japanese COPYING, it's outdated and won't be read by anyone
78
+
79
+ Mon Jul 9 22:19:31 JST 2007 Jonathan Buch <jo@helloit.fi>
80
+ * Partial suddenly needs Request.current instead of request O.o
81
+
82
+ Mon Jul 9 22:14:56 JST 2007 Jonathan Buch <jo@helloit.fi>
83
+ * Scope for Elements is now the current controller
84
+ This makes overriding of Elements easy.
85
+ For example you have a top ::Page element and one in FooController::Page,
86
+ the FooController::Page will be used when rendering actions from FooController
87
+ and all other controllers will fall back to the default ::Page element.
88
+
89
+ Mon Jul 9 22:13:10 JST 2007 Jonathan Buch <jo@helloit.fi>
90
+ * Protect Aspects when called on a controller which doesn't have the aspect helper included
91
+
92
+ Mon Jul 9 21:57:30 JST 2007 Jonathan Buch <jo@helloit.fi>
93
+ * docfix, Base/IndexController don't get mapped to / anymore
94
+
95
+ Wed Jul 4 17:57:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
96
+ * Sanitize Cache.resolved before blindly using what it gives us, better error-tolerance (for memcache as far as we know), oh, and removed some spaces at EOL
97
+
98
+ Sun Jul 1 02:49:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
99
+ * Remove Global.public_proto, make sure you copy over the error.xhtml if you need it..
100
+
101
+ Fri Jun 29 17:56:51 JST 2007 Jonathan Buch <jo@helloit.fi>
102
+ * Add tool.rb to make autoload possible
103
+
104
+ Thu Jun 28 22:01:39 JST 2007 Jonathan Buch <jo@helloit.fi>
105
+ * Follow the .current scheme with errors too, Ramaze::Dispatcher::Error.current
106
+
107
+ Wed Jun 27 03:31:08 JST 2007 Lars Olsson <lasso@lassoweb.se>
108
+ * informer_log_levels
109
+ This patch adds a "filter" to the Informer class which allows for better
110
+ separation of logs. For instance, you could log debug information at
111
+ standard output while having another Informer logging all errors to a
112
+ file.
113
+
114
+ Wed Jun 27 23:36:28 JST 2007 Jonathan Buch <jo@helloit.fi>
115
+ * migrate previous render_partial fix to post 0.1.2
116
+
117
+ Tue Jun 26 22:49:09 JST 2007 Jonathan Buch <jo@helloit.fi>
118
+ * use hash of SEEED for memcached namespace
119
+
120
+ Tue Jun 26 22:14:18 JST 2007 Jonathan Buch <jo@helloit.fi>
121
+ * [Pager] Overlooked one link
122
+
123
+ Wed Jun 27 16:58:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
124
+ * implementation and spec for LinkHelper#breadcrumbs
125
+
126
+ Sun Jun 24 06:49:31 JST 2007 Jonathan Buch <jo@helloit.fi>
127
+ * Remove eval in Pager, add new testcase
128
+
129
+ Thu Jun 21 23:05:29 JST 2007 Jonathan Buch <jo@helloit.fi>
130
+ * Fix render_parial transformer
131
+
132
+ Thu Jun 21 22:28:32 JST 2007 Jonathan Buch <jo@helloit.fi>
133
+ * fix up render_partial
134
+
135
+ Fri Jun 22 01:46:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
136
+ * Some code-beautification and complete docs for all files in this patch.
137
+
138
+ Fri Jun 22 01:34:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
139
+ * Fixing parser of `rake undocumented` to recognize '=begin rdoc' as comment as well.
140
+
141
+ Fri Jun 22 15:40:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
142
+ * don't make a new Struct for GlobalStruct, causes problems with reloading.
143
+
144
+ Thu Jun 21 23:04:53 JST 2007 Jonathan Buch <jo@helloit.fi>
145
+ * fix Pager (0.1.2 migration leftover)
146
+
147
+ Thu Jun 21 16:55:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
148
+ * add Ramaze::SEEED which contains the file Ramaze.start was called from. Now used as key for memcached namespace.
149
+
150
+ Wed Jun 20 01:20:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
151
+ * update AUTHORS - welcome tmm1! :)
152
+
153
+ Wed Jun 20 00:56:41 JST 2007 Aman Gupta <ramaze@tmm1.net>
154
+ * minor spec cleanups
155
+
156
+ Tue Jun 19 14:23:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
157
+ * Describe the way of request/response in doc/meta/internals.txt (for rikur and all the other curious folks out there)
158
+
159
+ Tue Jun 19 15:13:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
160
+ * Documented some undocumented methods. (by Riku R[_\c3_][_\a4_]s[_\c3_][_\a4_]en <riku@helloit.fi>)
161
+
162
+ Mon Jun 18 14:07:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
163
+ * Make dispatching continue after Dispatcher::Action fails, just return the last available error if all dispatchers fail.
164
+
165
+ Tue Jun 19 00:05:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
166
+ * Global.public_root has precedence over Global.public_proto
167
+
168
+ Sun Jun 17 06:51:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
169
+ tagged 0.1.2
170
+
171
+ Sun Jun 17 06:50:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
172
+ * Update CHANGELOG
173
+
1
174
  Sun Jun 17 06:50:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
175
  * Version 0.1.2
3
176
 
data/doc/changes.txt ADDED
@@ -0,0 +1,4184 @@
1
+ Sat Jul 21 22:08:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
+ tagged 0.1.3
3
+
4
+ Sat Jul 21 22:04:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
5
+ * Version 0.1.3
6
+
7
+ Sat Jul 21 22:03:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
8
+ * some minor changes
9
+
10
+ Sat Jul 21 22:02:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
11
+ * Update announcement
12
+
13
+ Sat Jul 21 19:28:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
14
+ * Document a bunch of methods/classes/modules
15
+
16
+ Sat Jul 21 19:00:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
17
+ * rawiki is now wiktacular, fixed some bugs, added some features, HTML escapes fine now.
18
+
19
+ Fri Jul 20 14:54:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
20
+ * documentation for dispatcher/error and the templating engines.
21
+
22
+ Fri Jul 20 14:46:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
23
+ * Some more class/module docs.
24
+
25
+ Fri Jul 20 14:33:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
26
+ * Documenting the inform/* informers.
27
+
28
+ Fri Jul 20 21:53:45 JST 2007 Jonathan Buch <jo@helloit.fi>
29
+ * Add a spec for recent cache patch (namespaces for caches)
30
+
31
+ Fri Jul 20 21:53:32 JST 2007 Jonathan Buch <jo@helloit.fi>
32
+ * don't translate empty strings (localize)
33
+
34
+ Fri Jul 20 21:52:52 JST 2007 Jonathan Buch <jo@helloit.fi>
35
+ * Allow <Page js='foo'> as well as <Page js="foo">
36
+
37
+ Fri Jul 20 21:51:52 JST 2007 Jonathan Buch <jo@helloit.fi>
38
+ * small visual enhancement in resolve.rb
39
+
40
+ Fri Jul 20 21:50:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
41
+ * Add rawiki example
42
+
43
+ Fri Jul 20 16:36:09 JST 2007 Jonathan Buch <jo@helloit.fi>
44
+ * Revise cache, add cache-name to key, remove method missing
45
+ .[] .[]= .delete .clear .values_at
46
+ These are now the only operations supported by Cache, if you need more, use
47
+ the Cache#cache to get the underlying object.
48
+
49
+ Fri Jul 20 03:06:18 JST 2007 Jonathan Buch <jo@helloit.fi>
50
+ * Fix blog example, link is removed in favour of A
51
+
52
+ Thu Jul 19 22:58:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
53
+ * Refining error-handling, now controllers are asked for a (also configurable) error-page if they have no action.
54
+
55
+ Thu Jul 19 01:34:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
56
+ * Remove __ urls, saves us one iteration for each uri over 3 segments long :P
57
+
58
+ Sat Jul 14 04:21:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
59
+ * jQuery 1.1.3.1
60
+
61
+ Sat Jul 14 01:46:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
62
+ * Warn if no mappings are done.
63
+
64
+ Sat Jul 14 01:24:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
65
+ * Alternative error-page if error-template missing and hint about clicking backtraces.
66
+
67
+ Fri Jul 13 08:45:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
68
+ * Two minor fixes for proto
69
+
70
+ Thu Jul 12 20:22:14 JST 2007 Jonathan Buch <jo@helloit.fi>
71
+ * bugfix, Inform not Informer
72
+
73
+ Mon Jul 9 22:57:17 JST 2007 Jonathan Buch <jo@helloit.fi>
74
+ * Add a Controller.at(mapping) method to nicely get to a mapped controller when you only have a path.
75
+
76
+ Thu Jul 12 08:51:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
77
+ * remove the japanese COPYING, it's outdated and won't be read by anyone
78
+
79
+ Mon Jul 9 22:19:31 JST 2007 Jonathan Buch <jo@helloit.fi>
80
+ * Partial suddenly needs Request.current instead of request O.o
81
+
82
+ Mon Jul 9 22:14:56 JST 2007 Jonathan Buch <jo@helloit.fi>
83
+ * Scope for Elements is now the current controller
84
+ This makes overriding of Elements easy.
85
+ For example you have a top ::Page element and one in FooController::Page,
86
+ the FooController::Page will be used when rendering actions from FooController
87
+ and all other controllers will fall back to the default ::Page element.
88
+
89
+ Mon Jul 9 22:13:10 JST 2007 Jonathan Buch <jo@helloit.fi>
90
+ * Protect Aspects when called on a controller which doesn't have the aspect helper included
91
+
92
+ Mon Jul 9 21:57:30 JST 2007 Jonathan Buch <jo@helloit.fi>
93
+ * docfix, Base/IndexController don't get mapped to / anymore
94
+
95
+ Wed Jul 4 17:57:57 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
96
+ * Sanitize Cache.resolved before blindly using what it gives us, better error-tolerance (for memcache as far as we know), oh, and removed some spaces at EOL
97
+
98
+ Sun Jul 1 02:49:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
99
+ * Remove Global.public_proto, make sure you copy over the error.xhtml if you need it..
100
+
101
+ Fri Jun 29 17:56:51 JST 2007 Jonathan Buch <jo@helloit.fi>
102
+ * Add tool.rb to make autoload possible
103
+
104
+ Thu Jun 28 22:01:39 JST 2007 Jonathan Buch <jo@helloit.fi>
105
+ * Follow the .current scheme with errors too, Ramaze::Dispatcher::Error.current
106
+
107
+ Wed Jun 27 03:31:08 JST 2007 Lars Olsson <lasso@lassoweb.se>
108
+ * informer_log_levels
109
+ This patch adds a "filter" to the Informer class which allows for better
110
+ separation of logs. For instance, you could log debug information at
111
+ standard output while having another Informer logging all errors to a
112
+ file.
113
+
114
+ Wed Jun 27 23:36:28 JST 2007 Jonathan Buch <jo@helloit.fi>
115
+ * migrate previous render_partial fix to post 0.1.2
116
+
117
+ Tue Jun 26 22:49:09 JST 2007 Jonathan Buch <jo@helloit.fi>
118
+ * use hash of SEEED for memcached namespace
119
+
120
+ Tue Jun 26 22:14:18 JST 2007 Jonathan Buch <jo@helloit.fi>
121
+ * [Pager] Overlooked one link
122
+
123
+ Wed Jun 27 16:58:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
124
+ * implementation and spec for LinkHelper#breadcrumbs
125
+
126
+ Sun Jun 24 06:49:31 JST 2007 Jonathan Buch <jo@helloit.fi>
127
+ * Remove eval in Pager, add new testcase
128
+
129
+ Thu Jun 21 23:05:29 JST 2007 Jonathan Buch <jo@helloit.fi>
130
+ * Fix render_parial transformer
131
+
132
+ Thu Jun 21 22:28:32 JST 2007 Jonathan Buch <jo@helloit.fi>
133
+ * fix up render_partial
134
+
135
+ Fri Jun 22 01:46:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
136
+ * Some code-beautification and complete docs for all files in this patch.
137
+
138
+ Fri Jun 22 01:34:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
139
+ * Fixing parser of `rake undocumented` to recognize '=begin rdoc' as comment as well.
140
+
141
+ Fri Jun 22 15:40:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
142
+ * don't make a new Struct for GlobalStruct, causes problems with reloading.
143
+
144
+ Thu Jun 21 23:04:53 JST 2007 Jonathan Buch <jo@helloit.fi>
145
+ * fix Pager (0.1.2 migration leftover)
146
+
147
+ Thu Jun 21 16:55:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
148
+ * add Ramaze::SEEED which contains the file Ramaze.start was called from. Now used as key for memcached namespace.
149
+
150
+ Wed Jun 20 01:20:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
151
+ * update AUTHORS - welcome tmm1! :)
152
+
153
+ Wed Jun 20 00:56:41 JST 2007 Aman Gupta <ramaze@tmm1.net>
154
+ * minor spec cleanups
155
+
156
+ Tue Jun 19 14:23:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
157
+ * Describe the way of request/response in doc/meta/internals.txt (for rikur and all the other curious folks out there)
158
+
159
+ Tue Jun 19 15:13:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
160
+ * Documented some undocumented methods. (by Riku R[_\c3_][_\a4_]s[_\c3_][_\a4_]en <riku@helloit.fi>)
161
+
162
+ Mon Jun 18 14:07:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
163
+ * Make dispatching continue after Dispatcher::Action fails, just return the last available error if all dispatchers fail.
164
+
165
+ Tue Jun 19 00:05:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
166
+ * Global.public_root has precedence over Global.public_proto
167
+
168
+ Sun Jun 17 06:51:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
169
+ tagged 0.1.2
170
+
171
+ Sun Jun 17 06:50:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
172
+ * Update CHANGELOG
173
+
174
+ Sun Jun 17 06:50:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
175
+ * Version 0.1.2
176
+
177
+ Sun Jun 17 06:49:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
178
+ * Update announcement
179
+
180
+ Sun Jun 17 06:49:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
181
+ * Update AUTHORS
182
+
183
+ Fri Jun 15 15:13:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
184
+ * Revision of tutorial
185
+
186
+ Thu Jun 14 13:15:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
187
+ * Replace Action::fill by Action::create to avoid clash with our custom Struct::fill (eventually we should solve that otherwise) - also fix the problem that params were not unescaped properly
188
+
189
+ Thu Jun 14 14:16:16 JST 2007 comp.lang.zenix+ramaze@gmail.com
190
+ * Added verbosity control to 'undocumented'. Run `rake undocumented-verbose' for the 'updated' version
191
+
192
+ Thu Jun 14 14:13:28 JST 2007 comp.lang.zenix+ramaze@gmail.com
193
+ * Documentation of main.rb & ezamar.rb
194
+ Rough documentation of lib/proto/src/controller/main.rb and lib/ramaze/template/ezamar.rb
195
+
196
+ Thu Jun 14 11:55:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
197
+ * add additional information about the colors for the `rake undocumented` task
198
+
199
+ Wed Jun 13 18:08:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
200
+ * add ramaze/inform/knotify over Inform::Knotify
201
+
202
+ Wed Jun 13 20:52:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
203
+ * total rewrite of the undocumented task, better matching using StringScanner and nicer output using colors.
204
+
205
+ Wed Jun 13 19:53:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
206
+ * docs for the templating-engines, Template, Session and Tidy
207
+
208
+ Wed Jun 13 19:35:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
209
+ * Add a couple of docs for Action and Dispatcher
210
+
211
+ Wed Jun 13 13:42:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
212
+ * experimental compiling of templates, don't use it yet unless you are in serious demand of large speed-increase for mostly static templates.
213
+
214
+ Wed Jun 13 13:32:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
215
+ * Xosd should be able to display multiple lines at once.
216
+
217
+ Wed Jun 13 02:41:59 JST 2007 Clive Crous <clive@crous.co.za>
218
+ * Optional dynamic font size for XOSD
219
+
220
+ Mon Jun 11 20:08:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
221
+ * simplify the template handling again, removing the (for now) unused Global.compile option
222
+
223
+ Mon Jun 11 20:00:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
224
+ * add a Cache::startup for bulk initialization, clear the Cache.compiled and Cache.resolved on SourceReloadHooks#after_safe_load_succeed
225
+
226
+ Mon Jun 11 19:37:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
227
+ * Improve performance by caching path lookups (need to add invalidation on SourceReload).
228
+
229
+ Tue Jun 12 01:27:51 JST 2007 Jonathan Buch <jo@helloit.fi>
230
+ * change @template_root of controller when not given
231
+
232
+ Mon Jun 11 08:35:12 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
233
+ * add the example i use to find memory-leaks, might be useful for someone.
234
+
235
+ Mon Jun 11 08:27:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
236
+ * Fix memory-leak, Action should _never_ _ever_ use traits.
237
+
238
+ Mon Jun 11 07:54:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
239
+ * Fixing Controller.current
240
+
241
+ Mon Jun 11 00:51:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
242
+ * round up last patch, adding some files i overlooked and removing deprecated ones.
243
+
244
+ Mon Jun 11 00:46:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
245
+ * Huge refactoring, making Action the central part for rendering. Please take a look at the changes until I can write some comprehensive summary (or wait with applying).
246
+
247
+ Fri Jun 8 18:19:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
248
+ * Fix OpenID helper IdentityHelper
249
+
250
+ Fri Jun 8 17:19:43 JST 2007 Jonathan Buch <jo@helloit.fi>
251
+ * Pager doesn't need Og anymore, small comment about exit! in adapter
252
+
253
+ Thu Jun 7 20:47:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
254
+ * rather big change to Ezamar, fitting it to be able to compile before evaluation.
255
+
256
+ Thu Jun 7 20:16:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
257
+ * add usage of Global.compile for erubis
258
+
259
+ Thu Jun 7 20:14:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
260
+ * use tested doc in Controller::render
261
+
262
+ Thu Jun 7 13:44:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
263
+ * get rid of a warning about undefined @files/@paths in sourereload
264
+
265
+ Thu Jun 7 13:41:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
266
+ * Introducing experimental cached compilation (for HAML so far, and not ready for production, just a prototype) turn on Global.compile at your own risk ;)
267
+
268
+ Wed Jun 6 06:03:26 JST 2007 rff.rff@gmail.com
269
+ * As expected, adding tests shows bugs :)
270
+
271
+
272
+ Wed Jun 6 05:35:14 JST 2007 rff.rff@gmail.com
273
+ * CGI.rb has extremely bad names.
274
+ escape() does url_encode
275
+ unescape does url_decode
276
+ so renamed them to this.
277
+ Also added html_escape and html_unescape
278
+ and one-letter aliases h and u.
279
+ This behaviour comes for free by including ERb::Util but I don't know
280
+ if we want to load all that (I'd say yes).
281
+ All tests still pass, so the test suite is incomplete.
282
+
283
+ Wed Jun 6 04:33:43 JST 2007 rff.rff@gmail.com
284
+ * ramaze with no opts should return -1
285
+
286
+ Wed Jun 6 12:25:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
287
+ * ENV SWIFT and EVENT now trigger require of swiftiplied or evented mongrel
288
+
289
+ Tue Jun 5 20:08:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
290
+ * fixing all those annoying spaces on empty lines and adapt the add-copyright task not to add one automatically but just notice.
291
+
292
+ Tue Jun 5 19:58:58 JST 2007 rff.rff@gmail.com
293
+ * mapping explanation in proto
294
+
295
+ Tue Jun 5 19:56:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
296
+ * first TestDoc task
297
+
298
+ Tue Jun 5 19:53:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
299
+ * fix typo in LinkHelper doc
300
+
301
+ Tue Jun 5 19:50:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
302
+ * remove Base and Index as default mappings to '/'
303
+
304
+ Tue Jun 5 18:49:01 JST 2007 rff.rff@gmail.com
305
+ * proto enhancement
306
+ * integrated action-method, template and Page element
307
+ * added a template-less action
308
+ * changed index so that it gives slightly nicer informations
309
+
310
+ Tue Jun 5 12:40:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
311
+ * update the authors task and doc/AUTHORS
312
+
313
+ Tue Jun 5 12:31:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
314
+ * little clarification of code in Controller::render
315
+
316
+ Tue Jun 5 12:30:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
317
+ * extend PartialHelper with render_template
318
+
319
+ Wed Jun 6 00:06:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
320
+ * caching for our custom Request#params
321
+
322
+ Mon Jun 4 23:18:45 JST 2007 Jonathan Buch <jo@helloit.fi>
323
+ * Add :collect trait to Localize, disable collecting for more speed
324
+
325
+ Mon Jun 4 02:08:42 JST 2007 rff.rff@gmail.com
326
+ * pager need og/collection to run
327
+
328
+ Mon Jun 4 01:51:19 JST 2007 rff.rff@gmail.com
329
+ * use HAsh#fetch when getting trait or default in render.rb
330
+
331
+ Sun Jun 3 19:18:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
332
+ * Controller::cached? #=> Controller::should_cache?
333
+
334
+ Sun Jun 3 16:21:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
335
+ * remove the mostly static trait :transform_pipeline in Ezamar with a constant, watch out since that may affect your code if you added custom transformers.
336
+
337
+ Tue May 29 00:10:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
338
+ * add automatic require for win32console on windows (if installed) and sanitize @colorize/trait[:colorize] a bit
339
+
340
+ Sun Jun 3 03:44:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
341
+ * add docs for Controller::render
342
+
343
+ Sun Jun 3 03:38:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
344
+ * Controller::render gets a default empty array for params and params are each called .to_s upon to make escaping possible and unify the effects of calling internal against being called external.
345
+
346
+ Sat Jun 2 17:58:28 JST 2007 Jonathan Buch <jo@helloit.fi>
347
+ * Add render partial implementation + specs
348
+
349
+ Fri Jun 1 14:42:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
350
+ * constantize a couple of traits in Dispatcher, Dispatcher.trait[:handle_error] is now Dispatcher::Error::HANDLE_ERROR, Dispatcher::Action.trait[:filter] is now Dispatcher::Action::FILTER, sanitize error spec and add some docs.
351
+
352
+ Fri Jun 1 16:31:18 JST 2007 Jonathan Buch <jo@helloit.fi>
353
+ * Common error classes, tiny change to Global, StackHelper expects url instead of using R() itself
354
+
355
+ Thu May 31 20:51:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
356
+ * some santizing and docs for Session.
357
+
358
+ Thu May 31 20:29:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
359
+ * speed up path resolution a little bit by directly instantinating Action
360
+
361
+ Thu May 31 18:12:45 JST 2007 Martin Hilbig blueonyx@dev-area.net
362
+ * fixing link building of the whywiki example
363
+
364
+ Thu May 31 12:46:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
365
+ * document Informing and add some minor speed increase (increase will be smaller than most loggers would take to actual output)
366
+
367
+ Thu May 31 12:21:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
368
+ * DRY up template.rb and add some docs
369
+
370
+ Wed May 30 21:19:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
371
+ * docs for Action
372
+
373
+ Wed May 30 21:14:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
374
+ * a couple of docs for Controller
375
+
376
+ Wed May 30 17:37:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
377
+ * make the life for people who want to run specs without RUBYOPT easier
378
+
379
+ Wed May 30 14:00:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
380
+ * small update to the FAQ
381
+
382
+ Wed May 30 13:54:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
383
+ * add a Inform.ignored_tags so you can skip tags like :debug easily
384
+
385
+ Wed May 30 13:51:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
386
+ * split up SourceReloadHooks::after_safe_load into after_safe_load_failed and after_safe_load_succeed, you get additionally the error-object on failure (also fix the s/save/safe typo)
387
+
388
+ Wed May 30 13:42:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
389
+ * put the hooks into their own module SourceReloadHooks
390
+
391
+ Tue May 29 21:51:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
392
+ * another wrapper, this time around save_load, with file and status for after
393
+
394
+ Tue May 29 21:41:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
395
+ * SourceReload#before_reload/after_reload method stubs, to be filled by YOU :)
396
+
397
+ Tue May 29 17:49:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
398
+ * Controller.trait[:template_extensions] is now Controller:TEMPLATE_ENGINES and retains order of your engines as you require them, you can also change it afterwards easily (wasn't possible with the Hash we used before)
399
+
400
+ Tue May 29 16:13:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
401
+ * flatten atoms for R()
402
+
403
+ Tue May 29 16:10:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
404
+ * fix LinkHelper to use Controller.current instead of self
405
+
406
+ Mon May 28 23:18:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
407
+ * fixing memcached for multithreading
408
+
409
+ Mon May 28 22:02:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
410
+ * Global.public_root went Global.public_proto and Controller.public_root went Global.public_root
411
+
412
+ Mon May 28 22:01:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
413
+ * typo in LinkHelper docs
414
+
415
+ Mon May 28 20:39:53 JST 2007 Jonathan Buch <jo@helloit.fi>
416
+ * Add PagerHelper (port from Nitro)
417
+
418
+ Mon May 28 11:14:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
419
+ * add a release task
420
+
421
+ Sun May 27 05:47:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
422
+ tagged 0.1.1
423
+
424
+ Sun May 27 05:47:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
425
+ * update CHANGELOG
426
+
427
+ Sun May 27 05:47:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
428
+ * Version 0.1.1
429
+
430
+ Sun May 27 05:45:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
431
+ * update todlist.html
432
+
433
+ Sun May 27 05:37:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
434
+ * rdocs for LinkHelper
435
+
436
+ Sun May 27 05:21:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
437
+ * rewrite of LinkHelper, link() is gone, use A() instead, will add some rdocs on usage.
438
+
439
+ Sun May 27 00:39:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
440
+ * synchronize tutorial html-version
441
+
442
+ Sun May 27 00:38:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
443
+ * another update of tutorial
444
+
445
+ Sat May 26 21:35:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
446
+ * fix the precendence of startup-options: bin/ramaze > Ramaze.start > Global.option
447
+
448
+ Sat May 26 23:52:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
449
+ * some fixes to the tutorial
450
+
451
+ Fri May 25 20:39:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
452
+ * rake rdoc should generate the readme
453
+
454
+ Fri May 25 20:38:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
455
+ * add some docs, update announcement and README
456
+
457
+ Sat May 26 05:59:26 JST 2007 clive@crous.co.za
458
+ * Correct a minor typo/spelling error in shutdown message
459
+
460
+ Sat May 26 02:18:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
461
+ * params assigned to Action should be unescaped automatically
462
+
463
+ Fri May 25 01:46:51 JST 2007 clive@crous.co.za
464
+ * Cleanup some Remarkably requires
465
+
466
+ Fri May 25 01:24:23 JST 2007 clive@crous.co.za
467
+ * "Update Remarkably usage for Remarkably-0.5.0"
468
+
469
+ Fri May 25 00:14:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
470
+ * make the template+arbitary-params fail (i.e. make the spec pass)
471
+
472
+ Thu May 24 23:35:28 JST 2007 Jonathan Buch <jo@helloit.fi>
473
+ * Spec for templates accepting arbitrary parameters
474
+ (failing for now)
475
+
476
+ Thu May 24 22:16:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
477
+ * this is a patch with rather large impact. I rewrote the whole aspect-business to get a much cleaner solution, aspects are now simple blocks and the hooks have been integrated in Controller (don't do anything by default, so unless you use AspectHelper the impact is near zero). Also removed the various monkeypatches of Method and Kernel#method since we don't use them anyway. updated tutorial and specs.
478
+
479
+ Thu May 24 20:56:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
480
+ * extend the specs for the todolist example to match the current status
481
+
482
+ Thu May 24 20:56:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
483
+ * tutorial should have a list instead of a simple <br /> separated linklist
484
+
485
+ Thu May 24 20:56:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
486
+ * remove some wrong docs
487
+
488
+ Thu May 24 20:55:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
489
+ * adds the CgiHelper and extens the default helpers by :flash and :cgi
490
+
491
+ Thu May 24 20:54:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
492
+ * automatically unescape params in Action.params when they are set
493
+
494
+ Thu May 24 20:54:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
495
+ * update doc/tutorial/todolist.*
496
+
497
+ Thu May 24 20:41:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
498
+ * last step improving todolist example
499
+
500
+ Thu May 24 20:14:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
501
+ * first fix for todolist example
502
+
503
+ Thu May 24 19:13:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
504
+ * some small fixes for todolist.mkd
505
+
506
+ Thu May 24 17:00:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
507
+ * move doc/tutorial/todolist.txt to .mkd so i can finally have automatic synatx in vim :)
508
+
509
+ Thu May 24 14:45:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
510
+ * fix AspectHelper, it had errors with negative arity
511
+
512
+ Thu May 24 14:43:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
513
+ * add support for cookies and referrer to MockHTTP
514
+
515
+ Thu May 24 14:25:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
516
+ * add some docs for our override of Request#params
517
+
518
+ Wed May 23 09:06:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
519
+ * clean up the todolist example a bit
520
+
521
+ Wed May 23 08:23:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
522
+ * some fixes to get rid of rdoc warnings
523
+
524
+ Tue May 22 22:52:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
525
+ * this is the last stage of the templating-refactor.
526
+
527
+ Tue May 22 21:45:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
528
+ * improve Ramaze::Cache a bit, adding method_missing so you can use the advanced features of your cache
529
+
530
+ Tue May 22 21:44:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
531
+ * speed up element spec
532
+
533
+ Tue May 22 21:17:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
534
+ * speed up template spec
535
+
536
+ Tue May 22 21:14:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
537
+ * speed up controller spec
538
+
539
+ Tue May 22 21:14:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
540
+ * speed up params spec
541
+
542
+ Tue May 22 18:04:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
543
+ * finally fix the localize spec, properly
544
+
545
+ Tue May 22 17:34:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
546
+ * speed up the examples/chaching spec
547
+
548
+ Tue May 22 17:22:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
549
+ * This removes Ezamar::Morpher from the templating-pipeline of Ezamar, if you don't know what Morpher is, ignore this :) [yay, another speedup]
550
+
551
+ Tue May 22 15:16:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
552
+ * fix serious memory-leak, yeah, it's sessions and traits again...
553
+
554
+ Tue May 22 15:14:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
555
+ * make Ezamar even faster
556
+
557
+ Tue May 22 07:10:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
558
+ * remove usage of mongrel-adapter from the controller spec
559
+
560
+ Tue May 22 07:05:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
561
+ * remove snippets/rdoc/usage_no_exit, it's not needed with the new bin/ramaze
562
+
563
+ Tue May 22 07:03:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
564
+ * add Struct#values_at
565
+
566
+ Tue May 22 00:52:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
567
+ * and finally, the little big templating-refactor, passing the real action rather than an hash to the transform-method of the engine. The most impact has the change of @action in a controller to the real action rather than a (propably wrong) action-name and that Ezamar pipeline specifies a nested array of class and method to call on the class.
568
+
569
+ Tue May 22 00:01:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
570
+ * unify all examples for templates, preparation for big templating-refactor
571
+
572
+ Mon May 21 20:31:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
573
+ * remove the dusty, old, deprecated, unneeded and nasty yaml files from proto, this time for real.
574
+
575
+ Mon May 21 20:25:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
576
+ * minor fix for bin/ramaze
577
+
578
+ Mon May 21 20:19:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
579
+ * yet another fix for bin/ramaze
580
+
581
+ Mon May 21 20:15:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
582
+ * no bulky RAMZE_BASE in the bin/ramaze anymore, just require ramaze
583
+
584
+ Mon May 21 18:02:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
585
+ * add check for defined?(Action)
586
+
587
+ Mon May 21 20:10:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
588
+ * fixing some typos in tutorial
589
+
590
+ Mon May 21 14:11:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
591
+ * use the new functionality of Cache all over Ramaze, makes a ton of trait lookups unnessecary and the total caches available in a single place.
592
+
593
+ Mon May 21 14:07:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
594
+ * make Cache Enumerable, add #each, #has_key? and ::add to add new global caches that are easily accessable
595
+
596
+ Mon May 21 17:45:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
597
+ * fix Dispatcher::File and add spec for missing response-code due to an evil mix of racks status-code hash and rubys nil.to_i => 0
598
+
599
+ Sun May 20 22:23:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
600
+ * fix localize spec
601
+
602
+ Sun May 20 16:13:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
603
+ * add the tutorial task for rake
604
+
605
+ Sun May 20 16:13:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
606
+ * add some (c) for the controller split
607
+
608
+ Sun May 20 16:13:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
609
+ * tutorial/todolist.html has a neat little menu with ToC now
610
+
611
+ Sun May 20 16:08:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
612
+ * update of tutorial/todolist
613
+
614
+ Sun May 20 16:08:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
615
+ * a little cleanup for bin/ramaze
616
+
617
+ Sun May 20 03:10:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
618
+ * don't create a new instance of the adapter for every request, we use singleton-methods only - may improve performance :)
619
+
620
+ Sun May 20 03:08:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
621
+ * improve examples/hello
622
+
623
+ Sun May 20 03:06:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
624
+ * documentation for ramaze/adapter/base.rb
625
+
626
+ Sun May 20 01:45:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
627
+ * document ramaze/action.rb and ramaze/adapter.rb
628
+
629
+ Sun May 20 01:34:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
630
+ * document lib/ramaze.rb
631
+
632
+ Sun May 20 01:29:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
633
+ * update the meta-doc for configuration
634
+
635
+ Sun May 20 01:15:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
636
+ * add a chapter about configuration to the tutorial
637
+
638
+ Sun May 20 01:13:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
639
+ * add some cleanup to the cache specs
640
+
641
+ Sun May 20 01:11:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
642
+ * split up Controller and move the parts in the ramaze/controller directory
643
+
644
+ Sat May 19 19:42:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
645
+ * additional fix to bin/ramaze, it didn't work with '-a m' to select adapters.
646
+
647
+ Sat May 19 18:26:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
648
+ * Ramaze doesn't extend itself anymore, so you have to explicitly write 'Ramaze.start' instead of 'include Ramaze; start' - is that good?
649
+
650
+ Sat May 19 18:17:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
651
+ * minor update for tutorial
652
+
653
+ Sat May 19 18:16:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
654
+ * a couple of additional requires for socket and yaml, mongrel and webrick. fixing a small bug that arose when we switched to ThreadGroup.
655
+
656
+ Sat May 19 03:47:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
657
+ * add MemCache#clear and fix SourceReload for files from ./
658
+
659
+ Fri May 18 23:29:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
660
+ * improve output of SpecWrap a little bit for the controller spec (the one with 125 specs)
661
+
662
+ Fri May 18 23:10:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
663
+ * a couple of changes for adapter, better usage of Adapter::Base, moving it into ramaze/adapter/base, got rid of racks trap in a rather clean way and change Global.adapters from Set to ThreadGroup which gives us as well easier and cleaner control.
664
+
665
+ Fri May 18 22:43:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
666
+ * fix lib/proto as well
667
+
668
+ Fri May 18 22:40:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
669
+ * fix examples/todolist and add a quite good spec for it
670
+
671
+ Fri May 18 21:41:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
672
+ * add to Global.origin
673
+
674
+ Fri May 18 21:40:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
675
+ * remove the old /conf files from proto and example/todolist
676
+
677
+ Fri May 18 21:36:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
678
+ * we ain't got no modes anymore
679
+
680
+ Fri May 18 21:29:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
681
+ * fix bin/ramaze --create
682
+
683
+ Fri May 18 21:21:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
684
+ * require rack/handler/mongrel instead of mongrel directly
685
+
686
+ Fri May 18 20:28:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
687
+ * fixing random vanishing of template_extensions
688
+
689
+ Fri May 18 20:20:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
690
+ * spec and corresponding fix for the "i've got an empty hash in my request.params['foo']" problem
691
+
692
+ Fri May 18 19:49:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
693
+ * switch trait _template to Controller::template
694
+
695
+ Fri May 18 18:25:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
696
+ * remove an added path that was only useful for me
697
+
698
+ Fri May 18 18:23:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
699
+ * SourceReload just got a lot mightier.
700
+
701
+ Fri May 18 14:48:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
702
+ * split up global.rb into global.rb global/dsl.rb and global/globalstruct.rb - introducing the clean GlobalDSL :)
703
+
704
+ Fri May 18 14:22:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
705
+ * remove some of the to_sym usage and the Hash#keys_to_sym(!) from snippets. One spot still left, but we need a wrapper for it first.
706
+
707
+ Thu May 17 22:46:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
708
+ * due to the annoying trap of rack we'll define a new trap every second now, gotta fix that later on, but continuations and trap are two nasty beasts... maybe we should patch rack for this somehow (chris2 won't - asked already).
709
+
710
+ Thu May 17 22:46:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
711
+ * remove some cruft from bin/ramaze
712
+
713
+ Thu May 17 22:40:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
714
+ * Total rewrite of bin/ramaze based on optparse, which turns out to be nearly perfect for our usecase. Try it, read it, be astonished! (the DSL in Global finally is put to use now as well)
715
+
716
+ Thu May 17 20:04:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
717
+ * update the announcement.txt to keep track of features - we'll just add them here and remove what is not important or accurate prior to the next public release on 0.1.2
718
+
719
+ Thu May 17 19:53:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
720
+ * add Ramaze::Record to easily record requests made that fit a particular pattern.
721
+
722
+ Thu May 17 17:20:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
723
+ * fixing the trait _template spec and implementation to avoid recursion
724
+
725
+ Thu May 17 16:50:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
726
+ * various fixes to Cache and adding spec for the new layout of it.
727
+
728
+ Thu May 17 01:40:22 JST 2007 clive@crous.co.za
729
+ * Change the Remarkably Template usage to cater for Remarkably version 0.4.0 and higher
730
+
731
+ Thu May 17 01:29:19 JST 2007 clive@crous.co.za
732
+ * Remove an accidentally added piece of debug code.
733
+
734
+ Thu May 17 00:22:39 JST 2007 Jonathan Buch <jo@helloit.fi>
735
+ * Add small spec for template resolving of traits
736
+
737
+ Tue May 15 17:42:06 JST 2007 Jonathan Buch <jo@helloit.fi>
738
+ * Remove yaml files for localizations
739
+
740
+ Wed May 16 23:49:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
741
+ * add migration info for patch 1111
742
+
743
+ Wed May 16 22:50:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
744
+ * first attempt at a DSL for Global + docs + CLI
745
+
746
+ Wed May 16 22:44:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
747
+ * minor fixes
748
+
749
+ Tue May 15 18:35:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
750
+ * add testcase_requires for the templating examples
751
+
752
+ Wed May 16 20:47:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
753
+ * H.U.G.E. refactoring of the core of Ramaze, beware! don't try this at work! will assemble a change-guide tonight.
754
+
755
+ Tue May 15 17:40:05 JST 2007 clive@crous.co.za
756
+ * Add Remarkably templates
757
+
758
+ Mon May 14 22:58:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
759
+ * make the error.zmr a lot simpler, remove the logo, don't use CodeRay and use ENV['EDITOR'] instead of vim (if set) - also some improvments to the stylesheet regarding the <pre> tags
760
+
761
+ Mon May 14 22:36:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
762
+ * remove the post-clean tasks for specs, they are never run since darcs relies on exit-status and so SpecWrap exits before they can be done
763
+
764
+ Mon May 14 22:33:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
765
+ * fix the :force_setup setting and rename it to :origin, it was only used in this way in spec/ramaze/helper/form and with the new spec-system this is not needed anymore, gives us nicer handling of CLI/app/spec options
766
+
767
+ Mon May 14 22:18:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
768
+ * restructure spec tasks, check `rake -T` for the new tasks
769
+
770
+ Mon May 14 22:06:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
771
+ * remove spec/ramaze/dependencies - it's not exactly helpful anymore
772
+
773
+ Mon May 14 20:27:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
774
+ * some small fixes
775
+
776
+ Mon May 14 19:57:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
777
+ * don't base SourceReload on a sleep of @interval/files.size, rather sleep fixed @interval (which is now by default 1)
778
+
779
+ Mon May 14 18:26:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
780
+ * fix SourceReload
781
+
782
+ Mon May 14 12:41:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
783
+ * Global.shield - a security-net for the Dispatcher to respond fast to repeated errors without first going down the controller (rendering the error-page still takes ages)
784
+
785
+ Sat May 12 23:14:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
786
+ * move Action out of Controller into ramaze/action.rb
787
+
788
+ Mon May 14 17:11:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
789
+ * fix for the params-fix
790
+
791
+ Mon May 14 16:12:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
792
+ * add fix for paramix if Og is used
793
+
794
+ Sat May 12 22:41:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
795
+ * introducing SourceReload instead of old autoreload
796
+
797
+ Sat May 12 05:00:32 JST 2007 Jonathan Buch <jo@helloit.fi>
798
+ * Make Analogger trait-configurable again
799
+ Makes it play better together with LogHub
800
+
801
+ Fri May 11 21:12:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
802
+ tagged 0.1.0
803
+
804
+ Fri May 11 21:12:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
805
+ * Update CHANGELOG
806
+
807
+ Fri May 11 21:11:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
808
+ * Version 0.1.0
809
+
810
+ Fri May 11 21:10:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
811
+ * fix localize spec
812
+
813
+ Fri May 11 20:55:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
814
+ * update README with latest chunks
815
+
816
+ Fri May 11 20:52:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
817
+ * some patches to the rake-stuff, BASEDIR was messed up and some other things were outdated
818
+
819
+ Fri May 11 20:42:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
820
+ * remove Tidy and Localize form the Action pipeline (fix the spec and remove some spaces)
821
+
822
+ Fri May 11 20:30:11 JST 2007 Jonathan Buch <jo@helloit.fi>
823
+ * Update localization tool
824
+
825
+ Fri May 11 19:20:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
826
+ * a couple of updates for the readme_chunks
827
+
828
+ Fri May 11 17:12:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
829
+ * move bl_Og to blog
830
+
831
+ Fri May 11 16:10:44 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
832
+ * remove the old blog example
833
+
834
+ Fri May 11 16:01:05 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
835
+ * fix a couple of bugs that the new controller stirred up, private methods are now really no actions anymore, fixing auth-helper and aspect-helper to respect that.
836
+
837
+ Fri May 11 15:25:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
838
+ * update announcement
839
+
840
+ Fri May 11 01:35:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
841
+ * remove some spelling-mistakes in announcement
842
+
843
+ Thu May 10 14:47:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
844
+ * don't use an additional .reverse for the session-key
845
+
846
+ Thu May 10 14:45:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
847
+ * Informer again, flush the output if possible, that makes it possible to tail -f if you pipe to a logfile
848
+
849
+ Thu May 10 14:41:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
850
+ * check for .tty? when deciding whether we should colorize or not.
851
+
852
+ Thu May 10 14:30:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
853
+ * intelligent logging of errors in Dispatcher::Error, omitting repeated backtraces
854
+
855
+ Wed May 9 19:53:18 JST 2007 Jonathan Buch <jo@helloit.fi>
856
+ * Change Rs() to use Controller.current instead of self
857
+
858
+ Wed May 9 19:42:54 JST 2007 m.fellinger@gmail.com
859
+ * add Controller::current and an experimental spec of how to do render_partial
860
+
861
+ Wed May 9 19:31:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
862
+ * fixing Controller::template_paths and Controller::resolve_template
863
+
864
+ Wed May 9 18:50:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
865
+ * tons of small fixes and improvments, Inform.debug won't inspect anymore if it's already a string, proper error-handling with sweet 500's for the templating and specific 404s for not found controller or action, improved caching in Controller, fixed some bugs in the AspectHelper, fixed the cache-example spec, activated the error-specs again, added some (c), gave the Action Struct a nicer look.....
866
+
867
+ Wed May 9 14:26:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
868
+ * add and use snippets/struct/fill
869
+
870
+ Wed May 9 14:01:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
871
+ * improve pattern_cache for Controller
872
+
873
+ Wed May 9 13:16:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
874
+ * make the caching spec a bit more robust
875
+
876
+ Wed May 9 12:59:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
877
+ * fixing some weirdness and verbosity
878
+
879
+ Wed May 9 12:53:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
880
+ * disable two specs so we pass all specs - these are about error-handling but right now it's not clear what the distinction between 404 and 500 is anymore.
881
+
882
+ Wed May 9 12:52:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
883
+ * some minor changes
884
+
885
+ Wed May 9 12:51:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
886
+ * big extension of spec/ramaze/controller
887
+
888
+ Wed May 9 12:50:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
889
+ * add ramaze/controller to the spec layout again
890
+
891
+ Wed May 9 12:50:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
892
+ * fixing some spaces
893
+
894
+ Wed May 9 12:49:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
895
+ * include the spec dir to the fix-end-spaces task
896
+
897
+ Wed May 9 12:48:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
898
+ * fix/extend the template_resolving spec
899
+
900
+ Wed May 9 12:47:32 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
901
+ * add some modules to ignore as actions in the spec/helper setup
902
+
903
+ Wed May 9 12:46:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
904
+ * fix template/ezamar file-lookup is done for it, no need to do it again
905
+
906
+ Wed May 9 12:46:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
907
+ * fix helper/aspect for the new Controller
908
+
909
+ Wed May 9 12:45:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
910
+ * better handling of Dispatcher::File - we should cache the lookup-paths
911
+
912
+ Wed May 9 12:45:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
913
+ * let the Dispatcher::Error respect Global.error_page
914
+
915
+ Wed May 9 12:44:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
916
+ * 90% rewrite of controller/action/template lookup in Controller
917
+
918
+ Wed May 9 12:43:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
919
+ * move Global.controllers setup into the DEFAULT of Global
920
+
921
+ Wed May 9 12:41:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
922
+ * add the Action Struct, nothing fancy but it should act from now on as container for actions ramaze-wide, most likely we'll extend it with binding and optional controller, it only propagates inside controller.rb and helper/aspect.rb atm
923
+
924
+ Wed May 9 12:41:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
925
+ * remove the proto/public/404.jpg we cannot distribute something that doesn't belong to us.
926
+
927
+ Tue May 8 19:31:16 JST 2007 Jonathan Buch <jo@helloit.fi>
928
+ * Add 'template resolving' controller spec
929
+
930
+ Tue May 8 16:14:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
931
+ * add workaround if we run specs and don't want their modules in our controller
932
+
933
+ Tue May 8 16:00:58 JST 2007 m.fellinger@gmail.com
934
+ * some small updates on the previous patch
935
+
936
+ Tue May 8 02:46:00 JST 2007 clive@crous.co.za
937
+ * Add a few specs for the base ramaze template class
938
+
939
+ Sun May 6 19:08:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
940
+ * doc and typo in bl_Og/main.rb
941
+
942
+ Sun May 6 08:32:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
943
+ * huge patch consisting of 171 hunks that provide huge improvments both to ramazes core and the whole spec-system, which is now mock-based
944
+
945
+ Sun May 6 08:22:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
946
+ * fixing the template_root for the example templates
947
+
948
+ Sun May 6 05:24:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
949
+ * make some helper-methods private
950
+
951
+ Sun May 6 04:56:06 JST 2007 m.fellinger@gmail.com
952
+ * make bin/ramaze compatible to ruby1.9
953
+
954
+ Sat May 5 18:26:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
955
+ * clean files of the SpecLayout in a seperate step
956
+
957
+ Sat May 5 01:14:01 JST 2007 m.fellinger@gmail.com
958
+ * add example/bl_Og from entropy
959
+
960
+ Fri May 4 21:02:41 JST 2007 clive@crous.co.za
961
+ * Add a spec for testing Markaby links
962
+
963
+ Fri May 4 20:40:31 JST 2007 clive@crous.co.za
964
+ * Add my surname
965
+
966
+ Fri May 4 17:04:16 JST 2007 m.fellinger@gmail.com
967
+ * improving performance in controller lookup
968
+
969
+ Fri May 4 15:40:02 JST 2007 m.fellinger@gmail.com
970
+ * remove special handling of action 'error', it's not needed anymore
971
+
972
+ Fri May 4 04:37:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
973
+ * split up the Rakefile and put parts into rake_tasks
974
+
975
+ Fri May 4 04:25:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
976
+ * add the rake authors task that generates the doc/AUTHORS
977
+
978
+ Fri May 4 03:53:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
979
+ * add the template specs to the default specs
980
+
981
+ Fri May 4 03:51:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
982
+ * get rid of the failures we sometimes get for webrick by explicit require
983
+
984
+ Fri May 4 03:48:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
985
+ * fixing extensions lookup order, it doesn't allow much modification yet, but should work for most common cases
986
+
987
+ Fri May 4 03:45:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
988
+ * fix the markaby example, 'this' should be a symbol
989
+
990
+ Fri May 4 03:42:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
991
+ * remove the old template from the haml-example
992
+
993
+ Fri May 4 02:47:19 JST 2007 m.fellinger@gmail.com
994
+ * update dependencies, rspec now 0.9.1
995
+
996
+ Fri May 4 02:38:25 JST 2007 m.fellinger@gmail.com
997
+ * fixing the template examples and add specs
998
+
999
+ Fri May 4 01:18:50 JST 2007 m.fellinger@gmail.com
1000
+ * remove old stuff from Template::Markaby
1001
+
1002
+ Fri May 4 01:14:52 JST 2007 m.fellinger@gmail.com
1003
+ * fixing instances-variable passing for markaby
1004
+
1005
+ Fri May 4 01:01:29 JST 2007 m.fellinger@gmail.com
1006
+ * remove some of the debugging-code from markaby
1007
+
1008
+ Fri May 4 00:57:01 JST 2007 m.fellinger@gmail.com
1009
+ * fix automapping
1010
+
1011
+ Wed May 2 15:09:42 JST 2007 m.fellinger@gmail.com
1012
+ * update proto configs
1013
+
1014
+ Thu May 3 01:56:24 JST 2007 m.fellinger@gmail.com
1015
+ * fixing the markaby example
1016
+
1017
+ Tue May 1 20:16:37 JST 2007 m.fellinger@gmail.com
1018
+ * update spec/dependencies to include syntax
1019
+
1020
+ Tue May 1 20:14:47 JST 2007 m.fellinger@gmail.com
1021
+ * exit specs if rspec is < 0.9.0
1022
+
1023
+ Tue May 1 20:01:50 JST 2007 m.fellinger@gmail.com
1024
+ * add spec/helper/layout and use it in spec/all - this is hopefully the last in a series of refactorings for the spec-framework
1025
+
1026
+ Tue May 1 20:00:17 JST 2007 m.fellinger@gmail.com
1027
+ * add spec for inform/informer and inform/syslog
1028
+
1029
+ Tue May 1 18:36:10 JST 2007 m.fellinger@gmail.com
1030
+ * update dependency-versions for gemspec
1031
+
1032
+ Tue May 1 17:55:55 JST 2007 m.fellinger@gmail.com
1033
+ * convert specs from 0.8.x to 0.9
1034
+
1035
+ Tue May 1 17:25:33 JST 2007 m.fellinger@gmail.com
1036
+ * update global.rb for ruby1.9
1037
+
1038
+ Tue May 1 16:09:00 JST 2007 m.fellinger@gmail.com
1039
+ * update spec/all into a less hackish and easier configurable design, running all specs including examples
1040
+
1041
+ Tue May 1 14:56:39 JST 2007 m.fellinger@gmail.com
1042
+ * add helpers to spec/all
1043
+
1044
+ Tue May 1 14:05:24 JST 2007 m.fellinger@gmail.com
1045
+ * add spec for FileHelper
1046
+
1047
+ Tue May 1 14:04:37 JST 2007 m.fellinger@gmail.com
1048
+ * add (c) to FileHelper
1049
+
1050
+ Tue May 1 14:03:39 JST 2007 m.fellinger@gmail.com
1051
+ * updating Rakefile to add a newline after (c)
1052
+
1053
+ Tue May 1 13:57:14 JST 2007 m.fellinger@gmail.com
1054
+ * adding specs for a couple of the simple examples
1055
+
1056
+ Tue May 1 01:06:56 JST 2007 m.fellinger@gmail.com
1057
+ * adding FileHelper, no specs for it yet but added it to default-helpers
1058
+
1059
+ Tue May 1 01:05:05 JST 2007 m.fellinger@gmail.com
1060
+ * add Controller::map to make the 'trait :map => "/foo"' nicer, use it like: 'map "/foo", "/bar"'
1061
+
1062
+ Tue May 1 01:02:50 JST 2007 m.fellinger@gmail.com
1063
+ * adding some startup-information about controllers
1064
+
1065
+ Sun Apr 29 22:31:16 JST 2007 Jonathan Buch <jo@helloit.fi>
1066
+ * small fixes to loggers
1067
+
1068
+ Sun Apr 29 19:38:15 JST 2007 m.fellinger@gmail.com
1069
+ * add the missing helper/markaby
1070
+
1071
+ Sun Apr 29 19:36:58 JST 2007 m.fellinger@gmail.com
1072
+ * minor rewrite of Template::Markaby and its spec
1073
+
1074
+ Sun Apr 29 19:35:37 JST 2007 m.fellinger@gmail.com
1075
+ * some modifications to make LinkHelper work with markaby, it's a bit ugly right now...
1076
+
1077
+ Sun Apr 29 19:33:21 JST 2007 m.fellinger@gmail.com
1078
+ * this improves the template-lookup and general performance of Controller, file-templates can now be handled by different engines based on the extension, if unknown or method-only the trait takes over. also replacing some ancestral_traits with more specific versiosn of class_trait/trait
1079
+
1080
+ Sun Apr 29 19:32:08 JST 2007 m.fellinger@gmail.com
1081
+ * improving example for markaby a bit, it's not working yet though, have to talk with the markaby-folks
1082
+
1083
+ Sun Apr 29 18:49:11 JST 2007 m.fellinger@gmail.com
1084
+ * fixing some (c)s
1085
+
1086
+ Fri Apr 27 17:10:42 JST 2007 clive@crous.co.za
1087
+ * use '--partial' for darcs get
1088
+
1089
+ Sat Apr 28 02:33:31 JST 2007 m.fellinger@gmail.com
1090
+ * putting Ramaze::Inform assignment into Global.setup again
1091
+
1092
+ Fri Apr 27 22:14:18 JST 2007 m.fellinger@gmail.com
1093
+ * move checking for automap into Controller
1094
+
1095
+ Fri Apr 27 22:12:24 JST 2007 m.fellinger@gmail.com
1096
+ * huge refactoring of logging, this needs extensive review
1097
+
1098
+ Fri Apr 27 21:51:38 JST 2007 m.fellinger@gmail.com
1099
+ * add map for examples/hello as well
1100
+
1101
+ Fri Apr 27 21:49:49 JST 2007 m.fellinger@gmail.com
1102
+ * fixing examples/element - we need mappings now
1103
+
1104
+ Fri Apr 27 21:48:22 JST 2007 m.fellinger@gmail.com
1105
+ * fixing a non-critical behaviour where Ezamar would throw an error if it cannot find a template but an action is there.
1106
+
1107
+ Fri Apr 27 20:35:37 JST 2007 m.fellinger@gmail.com
1108
+ * adding Object#class_trait for better lookup of traits defined in the class of the current instance
1109
+
1110
+ Thu Apr 26 22:55:24 JST 2007 m.fellinger@gmail.com
1111
+ * rewrite of notification_hub and xosd
1112
+
1113
+ Thu Apr 26 21:35:36 JST 2007 m.fellinger@gmail.com
1114
+ * removing the spaces that kashia introduced so nice in the last patch
1115
+
1116
+ Thu Apr 26 21:28:34 JST 2007 Jonathan Buch <jo@helloit.fi>
1117
+ * Add NotificationHub, Growl, Xosd Loggers
1118
+ This is a preliminary patch, especially the Xosd is not tested.
1119
+
1120
+ Wed Apr 25 08:30:56 JST 2007 m.fellinger@gmail.com
1121
+ * better report about errors in the ezamar pipeline, please note that the browser will still show 'no such action', but the console will inform you about all real errors (this has to improve further)
1122
+
1123
+ Wed Apr 25 08:29:35 JST 2007 m.fellinger@gmail.com
1124
+ * little change in blog example
1125
+
1126
+ Tue Apr 24 23:54:29 JST 2007 clive@crous.co.za
1127
+ * Add a response message for deleting "no such entry" in the blog example
1128
+
1129
+ Tue Apr 24 23:38:54 JST 2007 clive@crous.co.za
1130
+ * session result message is by id instead of class in the blog example, and disappears after 1.5 seconds
1131
+
1132
+ Tue Apr 24 22:41:05 JST 2007 clive@crous.co.za
1133
+ * emphasise titles displayed within results for the blog example
1134
+
1135
+ Tue Apr 24 22:29:56 JST 2007 clive@crous.co.za
1136
+ * Show session result if applicable
1137
+
1138
+ Tue Apr 24 21:57:33 JST 2007 clive@crous.co.za
1139
+ * Replace all references to oid with eid in the blog example.
1140
+
1141
+ Wed Apr 25 01:23:00 JST 2007 m.fellinger@gmail.com
1142
+ * limit sessions to 1000 per IP, also makes inspecting ObjectSpace easier
1143
+
1144
+ Tue Apr 24 07:55:08 JST 2007 m.fellinger@gmail.com
1145
+ * add Global.test_connections to switch testing connections via TCPSocket on startup.
1146
+
1147
+ Mon Apr 23 01:24:47 JST 2007 m.fellinger@gmail.com
1148
+ * replace some stuff in spec for CacheHelper to be more readable
1149
+
1150
+ Mon Apr 23 01:07:05 JST 2007 m.fellinger@gmail.com
1151
+ * s/Context/Browser/ for specs, Context could be confused with the meaning of context of RSpec.
1152
+
1153
+ Mon Apr 23 00:51:46 JST 2007 m.fellinger@gmail.com
1154
+ * add doc/meta/announcement.txt as a template for announcements - would be thankful for reviews and corrections.
1155
+
1156
+ Sun Apr 22 21:28:52 JST 2007 m.fellinger@gmail.com
1157
+ * move configuration/internals from doc/readme_chunks to doc/meta
1158
+
1159
+ Thu Apr 19 13:26:26 JST 2007 m.fellinger@gmail.com
1160
+ * move out SpecWrap to spec/helper/wrap and add a little fix to commonize
1161
+
1162
+ Thu Apr 19 17:45:08 JST 2007 m.fellinger@gmail.com
1163
+ * fixing tutorial and examples/element
1164
+
1165
+ Thu Apr 19 17:40:19 JST 2007 m.fellinger@gmail.com
1166
+ * Element doesn't use @hash anymore, instead the keys are set to instance-variables directly, please take car, this causes breakage
1167
+
1168
+ Wed Apr 18 18:06:57 JST 2007 m.fellinger@gmail.com
1169
+ * total restructure of spec
1170
+
1171
+ Tue Apr 17 22:05:01 JST 2007 m.fellinger@gmail.com
1172
+ * remove the rescue Object from tool/localize
1173
+
1174
+ Tue Apr 17 22:03:40 JST 2007 m.fellinger@gmail.com
1175
+ * rename Global.inform to Global.informer to respect what class it is pointing to
1176
+
1177
+ Tue Apr 17 22:00:30 JST 2007 m.fellinger@gmail.com
1178
+ * add backtrace to Informer#error again
1179
+
1180
+ Tue Apr 17 21:56:04 JST 2007 m.fellinger@gmail.com
1181
+ * adding readme_chunks/internals.txt
1182
+
1183
+ Tue Apr 17 14:54:01 JST 2007 m.fellinger@gmail.com
1184
+ * update configuration.txt and remove useless :cache_actions from Global
1185
+
1186
+ Mon Apr 16 23:05:03 JST 2007 m.fellinger@gmail.com
1187
+ * add doc/readme_chunks/configuration.txt - just a first draft and to be completed
1188
+
1189
+ Mon Apr 16 23:03:12 JST 2007 m.fellinger@gmail.com
1190
+ * adding implementation and specs for tool/localize (we _need_ docs for that)
1191
+
1192
+ Mon Apr 16 23:01:15 JST 2007 m.fellinger@gmail.com
1193
+ * a couple of fixes and adding missing stuff to Global
1194
+
1195
+ Sun Apr 15 20:01:50 JST 2007 Jonathan Buch <jo@helloit.fi>
1196
+ * Logger fixes
1197
+
1198
+ Sun Apr 15 07:07:27 JST 2007 m.fellinger@gmail.com
1199
+ * define $context_runner
1200
+
1201
+ Sun Apr 15 07:05:55 JST 2007 m.fellinger@gmail.com
1202
+ * getting rid of warnings in SimpleHTTP
1203
+
1204
+ Sun Apr 15 07:02:23 JST 2007 m.fellinger@gmail.com
1205
+ * don't define #get twice in the spec requester
1206
+
1207
+ Sun Apr 15 07:00:52 JST 2007 m.fellinger@gmail.com
1208
+ * get rid of the warning about redefinition of aquire
1209
+
1210
+ Sun Apr 15 06:59:47 JST 2007 m.fellinger@gmail.com
1211
+ * get rid of the redefinition of #each... do an actual check first (for 1.9)
1212
+
1213
+ Sun Apr 15 06:56:52 JST 2007 m.fellinger@gmail.com
1214
+ * huge refactoring of the Inform system for better configurability, this changes lots of small things in lots of places, but nothing too invasive
1215
+
1216
+ Sun Apr 15 06:55:28 JST 2007 m.fellinger@gmail.com
1217
+ * adapt error.zmr to new inform system
1218
+
1219
+ Fri Apr 13 10:57:34 JST 2007 m.fellinger@gmail.com
1220
+ * add support for nested params
1221
+
1222
+ Fri Apr 13 10:43:26 JST 2007 m.fellinger@gmail.com
1223
+ * pass $: as -I over in spec_all
1224
+
1225
+ Fri Apr 13 10:40:59 JST 2007 m.fellinger@gmail.com
1226
+ * GlobalInformer Inform in the og-gulper
1227
+
1228
+ Mon Apr 9 18:33:38 JST 2007 m.fellinger@gmail.com
1229
+ * add systemu to optional dependencies
1230
+
1231
+ Mon Apr 9 18:27:24 JST 2007 m.fellinger@gmail.com
1232
+ * better implementation of String#each (for 1.9 only)
1233
+
1234
+ Thu Apr 12 20:22:04 JST 2007 m.fellinger@gmail.com
1235
+ * Informer => Inform
1236
+
1237
+ Wed Apr 11 19:26:23 JST 2007 m.fellinger@gmail.com
1238
+ * brand new controller lookup on startup - use YourController.mapping to get its mapping :)
1239
+
1240
+ Wed Apr 11 18:40:59 JST 2007 m.fellinger@gmail.com
1241
+ * fixing (c)
1242
+
1243
+ Wed Apr 11 18:38:03 JST 2007 m.fellinger@gmail.com
1244
+ * fixing logger.rb by adding Informer
1245
+
1246
+ Wed Apr 11 17:42:09 JST 2007 Jonathan Buch <jo@helloit.fi>
1247
+ * add missing logger.rb for informer change
1248
+
1249
+ Wed Apr 11 17:25:26 JST 2007 Jonathan Buch <jo@helloit.fi>
1250
+ * Make logger configurable
1251
+ Included loggers:
1252
+ * GlobalInformer (standard)
1253
+ * Analogger [Kirk Haines]
1254
+ * Syslog
1255
+
1256
+ Wed Apr 11 14:26:08 JST 2007 m.fellinger@gmail.com
1257
+ * filter for Dispatcher::Action
1258
+
1259
+ Wed Apr 11 14:23:44 JST 2007 m.fellinger@gmail.com
1260
+ * new implementation of autoreload, not in usage yet, but it should boost performance and reliability (and avoid the awkward double-thread
1261
+
1262
+ Wed Apr 11 13:22:31 JST 2007 m.fellinger@gmail.com
1263
+ * replace the aquire with a verbose way... snippets were not added to the $:/$"
1264
+
1265
+ Wed Apr 11 13:03:49 JST 2007 m.fellinger@gmail.com
1266
+ * extending Global for setting and add a trait-link to tidy
1267
+
1268
+ Wed Apr 11 13:01:29 JST 2007 m.fellinger@gmail.com
1269
+ * better implementation of tidy... only use it for debugging, it's leaking memory
1270
+
1271
+ Wed Apr 11 12:58:52 JST 2007 m.fellinger@gmail.com
1272
+ * remove the post_dispatch from Dispatcher
1273
+
1274
+ Tue Apr 10 13:58:08 JST 2007 m.fellinger@gmail.com
1275
+ * a couple of changes in Global, we can now collect the traits inside Global transparently (finally modular configuration)
1276
+
1277
+ Tue Apr 10 00:57:20 JST 2007 m.fellinger@gmail.com
1278
+ * use class-methods instead of instantination in the Dispatcher for speed
1279
+
1280
+ Mon Apr 9 21:25:49 JST 2007 m.fellinger@gmail.com
1281
+ * extremly brutal refactoring of Dispatcher, it lacks a bit of elegance right now, but it is the right way
1282
+
1283
+ Mon Apr 9 17:59:52 JST 2007 m.fellinger@gmail.com
1284
+ * a couple of small changes for compatibility with 1.9
1285
+
1286
+ Mon Apr 9 16:11:33 JST 2007 m.fellinger@gmail.com
1287
+ * small refactoring for Inform#error
1288
+
1289
+ Mon Apr 9 17:00:40 JST 2007 m.fellinger@gmail.com
1290
+ * small fixes for YARV
1291
+
1292
+ Mon Apr 9 06:36:11 JST 2007 m.fellinger@gmail.com
1293
+ * exitstatus 0/1 for spec_all so the darcs hook can see if it's passing - finally automated recording-joy :)
1294
+
1295
+ Mon Apr 9 06:34:29 JST 2007 m.fellinger@gmail.com
1296
+ * darcs hook
1297
+
1298
+ Sun Apr 8 19:11:03 JST 2007 m.fellinger@gmail.com
1299
+ * fixing flash for memcached
1300
+
1301
+ Sun Apr 8 19:10:48 JST 2007 m.fellinger@gmail.com
1302
+ * add rake patchstat
1303
+
1304
+ Sun Apr 8 02:33:23 JST 2007 m.fellinger@gmail.com
1305
+ * allow request[:foo] to access request.params['foo']
1306
+
1307
+ Sat Apr 7 01:24:10 JST 2007 m.fellinger@gmail.com
1308
+ * add Inform::warn
1309
+
1310
+ Sat Apr 7 01:23:38 JST 2007 m.fellinger@gmail.com
1311
+ * check the template-dir mapping on startup for each controller
1312
+
1313
+ Sat Apr 7 00:30:29 JST 2007 m.fellinger@gmail.com
1314
+ * a bit more elaborate but much safer handling of exceptions in Ezamar
1315
+
1316
+ Fri Apr 6 00:24:03 JST 2007 m.fellinger@gmail.com
1317
+ * experiments in adapter.rb - please review
1318
+
1319
+ Fri Apr 6 00:22:58 JST 2007 m.fellinger@gmail.com
1320
+ * refactor of request/response/dispatcher/adapter (be careful, tidy broke)
1321
+
1322
+ Thu Apr 5 14:19:20 JST 2007 m.fellinger@gmail.com
1323
+ * little cleanup
1324
+
1325
+ Fri Apr 6 04:06:52 JST 2007 m.fellinger@gmail.com
1326
+ * better error-reporting for usual NoMethodError in controller/template
1327
+
1328
+ Wed Apr 4 23:51:14 JST 2007 m.fellinger@gmail.com
1329
+ * use normal blocks instead of Symbol#to_proc, there was some weird error in Informer#debug
1330
+
1331
+ Wed Apr 4 23:50:54 JST 2007 m.fellinger@gmail.com
1332
+ * fixing the usage of meth_debug, replacing it with normal debug
1333
+
1334
+ Wed Apr 4 23:46:24 JST 2007 m.fellinger@gmail.com
1335
+ * add helper/inform
1336
+
1337
+ Wed Apr 4 13:21:22 JST 2007 m.fellinger@gmail.com
1338
+ * yet another possible refactor of Inform, thinking about just using Informer instead, the modules functionality is not used anywhere.
1339
+
1340
+ Wed Apr 4 01:39:37 JST 2007 m.fellinger@gmail.com
1341
+ * adding --console and --backtrace as startup-options for the bin/ramaze, improving error-reports for gone-wrong requires on startup
1342
+
1343
+ Tue Apr 3 21:13:19 JST 2007 m.fellinger@gmail.com
1344
+ * update doc/TODO
1345
+
1346
+ Tue Apr 3 21:12:51 JST 2007 m.fellinger@gmail.com
1347
+ * fix rake task todolist
1348
+
1349
+ Tue Apr 3 21:01:11 JST 2007 m.fellinger@gmail.com
1350
+ * huge refactoring of Inform for better handling of colors and nicer code
1351
+
1352
+ Tue Apr 3 20:57:22 JST 2007 m.fellinger@gmail.com
1353
+ * remove some debugging from examples/blog
1354
+
1355
+ Tue Apr 3 16:58:55 JST 2007 m.fellinger@gmail.com
1356
+ * s/Global/Ramaze::Global in adapter.rb
1357
+
1358
+ Tue Apr 3 15:23:02 JST 2007 m.fellinger@gmail.com
1359
+ * add further colors/styles to snippets/string/color
1360
+
1361
+ Tue Apr 3 15:22:35 JST 2007 m.fellinger@gmail.com
1362
+ * avoid warning on reload of Inform / don't define Informer twice
1363
+
1364
+ Tue Apr 3 15:17:42 JST 2007 m.fellinger@gmail.com
1365
+ * added simple colorizer for Inform - can be activated by Global.inform_color = true / added String#red/yellow/green to snippets/String/color
1366
+
1367
+ Tue Apr 3 15:14:54 JST 2007 m.fellinger@gmail.com
1368
+ * restoring and improving functionality of Tool::Tidy, you can now output tidy HTML by setting Global.tidy = true | added ability to change the options and paths, no `locate` anymore
1369
+
1370
+ Mon Apr 2 00:32:32 JST 2007 m.fellinger@gmail.com
1371
+ tagged 0.0.9
1372
+
1373
+ Mon Apr 2 00:31:45 JST 2007 m.fellinger@gmail.com
1374
+ * 0.0.9
1375
+
1376
+ Mon Apr 2 00:31:28 JST 2007 m.fellinger@gmail.com
1377
+ * fixing (c)
1378
+
1379
+ Sun Apr 1 19:14:36 JST 2007 Jonathan Buch <jo@helloit.fi>
1380
+ * beautify code block css in tutorial
1381
+
1382
+ Sun Apr 1 18:39:20 JST 2007 m.fellinger@gmail.com
1383
+ * typos, proper encoding and doctype for the tutorial
1384
+
1385
+ Sun Apr 1 18:15:55 JST 2007 m.fellinger@gmail.com
1386
+ * add tutorial/todolist.html
1387
+
1388
+ Sun Apr 1 18:15:31 JST 2007 m.fellinger@gmail.com
1389
+ * update tutorial/todolist - bluecloth instead of rdoc
1390
+
1391
+ Sun Apr 1 18:15:09 JST 2007 m.fellinger@gmail.com
1392
+ * update the principles chunk
1393
+
1394
+ Sun Apr 1 18:13:34 JST 2007 m.fellinger@gmail.com
1395
+ * add a tutorial2html to the rakefile
1396
+
1397
+ Sat Mar 31 01:55:36 JST 2007 m.fellinger@gmail.com
1398
+ * close all inform_to on exit
1399
+
1400
+ Fri Mar 30 22:23:29 JST 2007 m.fellinger@gmail.com
1401
+ * fixing the ramaze call in the two failing specs
1402
+
1403
+ Fri Mar 30 22:22:55 JST 2007 m.fellinger@gmail.com
1404
+ * define a new Request#fullpath (in latest rack, not yet released)
1405
+
1406
+ Fri Mar 30 21:54:57 JST 2007 m.fellinger@gmail.com
1407
+ * improving spec_all further, correct align of errors and information when a spec yields no usable output
1408
+
1409
+ Fri Mar 30 21:40:28 JST 2007 m.fellinger@gmail.com
1410
+ * change default in spec_helper to webrick instead of mongrel
1411
+
1412
+ Fri Mar 30 21:24:03 JST 2007 m.fellinger@gmail.com
1413
+ * add attempt to require rubygems to spec_all
1414
+
1415
+ Fri Mar 30 21:08:13 JST 2007 m.fellinger@gmail.com
1416
+ * add the spec/public/error404.xhtml and adapt the tc_error, static error-pages are now definetly working
1417
+
1418
+ Fri Mar 30 21:06:59 JST 2007 m.fellinger@gmail.com
1419
+ * replace Term::ANSIColor and the stubs with a small actual implementation
1420
+
1421
+ Fri Mar 30 20:36:11 JST 2007 m.fellinger@gmail.com
1422
+ * allow multiple 'pipes' for Global.inform_to, just give it an array (backwards-compatible)
1423
+
1424
+ Fri Mar 30 20:35:59 JST 2007 m.fellinger@gmail.com
1425
+ * updating tc_error
1426
+
1427
+ Fri Mar 30 20:35:28 JST 2007 m.fellinger@gmail.com
1428
+ * getting rid of a warning about redefining Traits
1429
+
1430
+ Fri Mar 30 20:34:44 JST 2007 m.fellinger@gmail.com
1431
+ * Sanitizing error-handling for non-existant static error-page
1432
+
1433
+ Thu Mar 29 23:39:24 JST 2007 m.fellinger@gmail.com
1434
+ * fixing Inform, it did wrong matching for $stderr/$stdout
1435
+
1436
+ Mon Mar 26 23:25:25 JST 2007 m.fellinger@gmail.com
1437
+ * add example for nitroform
1438
+
1439
+ Mon Mar 26 23:24:58 JST 2007 m.fellinger@gmail.com
1440
+ * add a first stub for helper/nitroform - there seem to be some odd problems
1441
+
1442
+ Mon Mar 26 23:23:52 JST 2007 m.fellinger@gmail.com
1443
+ * don't raise when we can't find the file wanted by caller_lines
1444
+
1445
+ Sun Mar 25 01:03:01 JST 2007 m.fellinger@gmail.com
1446
+ * fix Kernel#aquire (by lasso)
1447
+
1448
+ Sat Mar 24 05:06:45 JST 2007 m.fellinger@gmail.com
1449
+ * improve handling of missing actions, now raising NoActionError
1450
+
1451
+ Fri Mar 23 06:16:18 JST 2007 m.fellinger@gmail.com
1452
+ * fix serving static files on windows (hopefully)
1453
+
1454
+ Thu Mar 22 13:09:26 JST 2007 m.fellinger@gmail.com
1455
+ * remove the useless _openid_consumer_service from the session afterwards
1456
+
1457
+ Thu Mar 22 13:09:12 JST 2007 m.fellinger@gmail.com
1458
+ * add examples/identity
1459
+
1460
+ Thu Mar 22 13:00:12 JST 2007 m.fellinger@gmail.com
1461
+ * fixing IdentityHelper so that it works
1462
+
1463
+ Thu Mar 22 12:59:45 JST 2007 m.fellinger@gmail.com
1464
+ * move helper/openid to helper/identity
1465
+
1466
+ Wed Mar 21 12:11:22 JST 2007 m.fellinger@gmail.com
1467
+ * add ::create_with(hash) to store/yaml
1468
+
1469
+ Wed Mar 21 12:11:02 JST 2007 m.fellinger@gmail.com
1470
+ * show the real error from Template::Ezamar
1471
+
1472
+ Wed Mar 21 12:10:21 JST 2007 m.fellinger@gmail.com
1473
+ * make the error parsing a lot more robust and fault-tolerant
1474
+
1475
+ Tue Mar 20 22:51:06 JST 2007 m.fellinger@gmail.com
1476
+ * adapt Controller#error for the new caller_lines/caller_info
1477
+
1478
+ Tue Mar 20 22:50:26 JST 2007 m.fellinger@gmail.com
1479
+ * extracting caller_lines and put it into snippets/kernel/caller_lines - also small fixes in caller_info
1480
+
1481
+ Tue Mar 20 22:50:10 JST 2007 m.fellinger@gmail.com
1482
+ * small changes in Method#name
1483
+
1484
+ Tue Mar 20 22:48:48 JST 2007 m.fellinger@gmail.com
1485
+ * move snippets/kernel/caller_lines to snippets/ramaze/caller_lines
1486
+
1487
+ Tue Mar 20 22:47:57 JST 2007 m.fellinger@gmail.com
1488
+ * fixing problematic error response in dispatcher
1489
+
1490
+ Tue Mar 20 22:12:08 JST 2007 m.fellinger@gmail.com
1491
+ * remove Kernel#silently
1492
+
1493
+ Tue Mar 20 22:10:34 JST 2007 m.fellinger@gmail.com
1494
+ * require pp before patching pretty_inspect
1495
+
1496
+ Tue Mar 20 22:10:01 JST 2007 m.fellinger@gmail.com
1497
+ * move Method#name from snippets/kernel/method to snippets/method/name
1498
+
1499
+ Tue Mar 20 22:09:30 JST 2007 m.fellinger@gmail.com
1500
+ * remove Thread#dead?
1501
+
1502
+ Tue Mar 20 22:09:16 JST 2007 m.fellinger@gmail.com
1503
+ * remove snippets/kernel/rescue_require
1504
+
1505
+ Tue Mar 20 22:08:39 JST 2007 m.fellinger@gmail.com
1506
+ * move snippets/kernel/self_method => snippets/kernel/method
1507
+
1508
+ Tue Mar 20 22:08:13 JST 2007 m.fellinger@gmail.com
1509
+ * fix Rakefile so that it produces good gems again
1510
+
1511
+ Tue Mar 20 22:07:16 JST 2007 m.fellinger@gmail.com
1512
+ * move snippets/kernel/autoreload => snippets/ramaze/autoreload
1513
+
1514
+ Tue Mar 20 18:46:40 JST 2007 m.fellinger@gmail.com
1515
+ * don't R() the passed params to redirect and update docs
1516
+
1517
+ Tue Mar 20 17:29:47 JST 2007 m.fellinger@gmail.com
1518
+ * update tc_helper_redirect
1519
+
1520
+ Tue Mar 20 17:08:58 JST 2007 m.fellinger@gmail.com
1521
+ * better information about errors in templates
1522
+
1523
+ Tue Mar 20 17:07:57 JST 2007 m.fellinger@gmail.com
1524
+ * better handling of redirections, you can now catch(:redirect){ another_action } to prevent redirection from that path of execution
1525
+
1526
+ Tue Mar 20 17:07:24 JST 2007 m.fellinger@gmail.com
1527
+ * typo
1528
+
1529
+ Tue Mar 20 15:53:12 JST 2007 m.fellinger@gmail.com
1530
+ * support custom status-code in redirect and do R() automatically on the params
1531
+
1532
+ Tue Mar 20 15:43:19 JST 2007 m.fellinger@gmail.com
1533
+ * update Rakefile
1534
+
1535
+ Tue Mar 20 15:23:35 JST 2007 m.fellinger@gmail.com
1536
+ * add (c) to OpenidHelper
1537
+
1538
+ Tue Mar 20 15:23:05 JST 2007 m.fellinger@gmail.com
1539
+ * update README
1540
+
1541
+ Mon Mar 19 16:21:01 JST 2007 m.fellinger@gmail.com
1542
+ * update examples/todolist
1543
+
1544
+ Mon Mar 19 16:20:42 JST 2007 m.fellinger@gmail.com
1545
+ * update tutorial
1546
+
1547
+ Mon Mar 19 15:58:41 JST 2007 m.fellinger@gmail.com
1548
+ * small improvment to template/ezamar makes methodless actions work again.
1549
+
1550
+ Mon Mar 19 15:45:14 JST 2007 m.fellinger@gmail.com
1551
+ * remove helper/template_map
1552
+
1553
+ Mon Mar 19 15:44:59 JST 2007 m.fellinger@gmail.com
1554
+ * update feature-list
1555
+
1556
+ Mon Mar 19 12:03:24 JST 2007 m.fellinger@gmail.com
1557
+ * add a Rs method to LinkHelper to make the usual R(self, :foo) stuff into Rs(:foo) and update the tc_helper_stack
1558
+
1559
+ Mon Mar 19 08:14:57 JST 2007 m.fellinger@gmail.com
1560
+ * add first implementation of OpenidHelper (yet untested)
1561
+
1562
+ Mon Mar 19 07:58:38 JST 2007 m.fellinger@gmail.com
1563
+ * fix tc_helper_redirect
1564
+
1565
+ Sat Mar 17 22:09:25 JST 2007 m.fellinger@gmail.com
1566
+ * 0.0.8 as version
1567
+
1568
+ Sat Mar 17 22:09:16 JST 2007 m.fellinger@gmail.com
1569
+ * alias referrer referer
1570
+
1571
+ Fri Mar 16 19:47:40 JST 2007 m.fellinger@gmail.com
1572
+ * document CacheHelper
1573
+
1574
+ Fri Mar 16 19:39:20 JST 2007 m.fellinger@gmail.com
1575
+ * document FlashHelper
1576
+
1577
+ Fri Mar 16 19:24:34 JST 2007 m.fellinger@gmail.com
1578
+ * cleanup and docs for Ramaze::Request (add values_at for quick params-retrieval)
1579
+
1580
+ Fri Mar 16 19:16:18 JST 2007 m.fellinger@gmail.com
1581
+ * some cleanup and documentation for Trinity::Session, it also got a trait[:finalize] as a pipeline of what to do on finalize (finalize_flash only atm)
1582
+
1583
+ Thu Mar 15 19:21:34 JST 2007 m.fellinger@gmail.com
1584
+ * don't escape the @title of an error twice
1585
+
1586
+ Fri Mar 16 16:17:45 JST 2007 m.fellinger@gmail.com
1587
+ * less agressive redirect in R/link
1588
+
1589
+ Thu Mar 15 14:57:33 JST 2007 m.fellinger@gmail.com
1590
+ * proper inspect in the error-page and adding inspect/pretty_inspect to Global
1591
+
1592
+ Wed Mar 14 23:09:46 JST 2007 m.fellinger@gmail.com
1593
+ tagged 0.0.8
1594
+
1595
+ Wed Mar 14 23:09:07 JST 2007 m.fellinger@gmail.com
1596
+ * newline :)
1597
+
1598
+ Wed Mar 14 21:44:25 JST 2007 m.fellinger@gmail.com
1599
+ * checking all the caches in tc_session
1600
+
1601
+ Wed Mar 14 21:43:59 JST 2007 m.fellinger@gmail.com
1602
+ * nicer output of specs of helper_auth and tc_session
1603
+
1604
+ Wed Mar 14 21:43:39 JST 2007 m.fellinger@gmail.com
1605
+ * reimplement Trinity::Session
1606
+
1607
+ Wed Mar 14 21:42:58 JST 2007 m.fellinger@gmail.com
1608
+ * fixing the caller_lines bug
1609
+
1610
+ Wed Mar 14 21:42:44 JST 2007 m.fellinger@gmail.com
1611
+ * no rescue in StackHelper anymore
1612
+
1613
+ Wed Mar 14 21:42:32 JST 2007 m.fellinger@gmail.com
1614
+ * small fix in yaml_store
1615
+
1616
+ Wed Mar 14 21:42:20 JST 2007 m.fellinger@gmail.com
1617
+ * small nicety in examples/simple
1618
+
1619
+ Wed Mar 14 15:45:30 JST 2007 m.fellinger@gmail.com
1620
+ * add 'stubs' for CGI and FastCGI - they are not tested at all yet, suggestions for specs welcome
1621
+
1622
+ Wed Mar 14 15:44:42 JST 2007 m.fellinger@gmail.com
1623
+ * remove the actionview_stub from HAML, it's not needed with HAML 1.5 (make sure you upgrade though)
1624
+
1625
+ Tue Mar 13 19:50:43 JST 2007 m.fellinger@gmail.com
1626
+ * remove the ezamar-'feature' ;)
1627
+
1628
+ Tue Mar 13 19:42:14 JST 2007 m.fellinger@gmail.com
1629
+ * speed up the ezamar-spec a bit and proper errors for markaby
1630
+
1631
+ Sun Mar 11 03:19:05 JST 2007 m.fellinger@gmail.com
1632
+ * deleting entities in Store::YAML
1633
+
1634
+ Sun Mar 11 03:07:10 JST 2007 m.fellinger@gmail.com
1635
+ * possibility to #{render} in your controller/templates
1636
+
1637
+ Sun Mar 11 01:25:15 JST 2007 m.fellinger@gmail.com
1638
+ * escape the title of the error-page to show classes properly
1639
+
1640
+ Sun Mar 11 00:08:38 JST 2007 m.fellinger@gmail.com
1641
+ * small improvments to bin/ramaze - output of version and better info when there is nothing to start
1642
+
1643
+ Tue Mar 13 13:46:23 JST 2007 m.fellinger@gmail.com
1644
+ * small improvment in custom_template selection
1645
+
1646
+ Mon Mar 12 22:41:55 JST 2007 m.fellinger@gmail.com
1647
+ * remove debugging-statements
1648
+
1649
+ Mon Mar 12 20:53:47 JST 2007 m.fellinger@gmail.com
1650
+ * better error-reports from Ezamars transformation
1651
+
1652
+ Mon Mar 12 20:53:31 JST 2007 m.fellinger@gmail.com
1653
+ * no more errors about #debug? missing from WEBrick
1654
+
1655
+ Mon Mar 12 20:53:07 JST 2007 m.fellinger@gmail.com
1656
+ * improved error-page (minor fixes)
1657
+
1658
+ Mon Mar 12 20:52:18 JST 2007 m.fellinger@gmail.com
1659
+ * fixing the ezamar example
1660
+
1661
+ Fri Mar 9 21:15:00 JST 2007 m.fellinger@gmail.com
1662
+ * fixing spec_all to report the real number of failed specs
1663
+
1664
+ Fri Mar 9 21:14:34 JST 2007 m.fellinger@gmail.com
1665
+ * shorter line
1666
+
1667
+ Fri Mar 9 19:25:03 JST 2007 m.fellinger@gmail.com
1668
+ * don't assign a FLASH_PREVIOUS when we don't need to (also add a (c) to pretty_inspect)
1669
+
1670
+ Fri Mar 9 19:08:55 JST 2007 m.fellinger@gmail.com
1671
+ * fixing FlashHelper (with a new SessionFlash in trinity/session) put the new specs into the old tc_helper_flash
1672
+
1673
+ Thu Mar 8 22:36:04 JST 2007 Jonathan Buch <jo@helloit.fi>
1674
+ * spec for flash, template finding fix
1675
+ * trait :foo_template => :bar__foo did break
1676
+ * added spec for flash, no fix
1677
+
1678
+ Thu Mar 8 11:07:22 JST 2007 m.fellinger@gmail.com
1679
+ * relax arity-sensitivity, it's impossbile to get right and shouldn't block correct parameter-sets
1680
+
1681
+ Wed Mar 7 23:16:01 JST 2007 Jonathan Buch <jo@helloit.fi>
1682
+ * More specs for params
1683
+
1684
+ Wed Mar 7 23:11:17 JST 2007 m.fellinger@gmail.com
1685
+ * add fallback for pretty_inspect
1686
+
1687
+ Wed Mar 7 07:01:32 JST 2007 m.fellinger@gmail.com
1688
+ * fixing session-problem plus the specs
1689
+
1690
+ Tue Mar 6 20:57:16 JST 2007 m.fellinger@gmail.com
1691
+ * fixing the flash_id
1692
+
1693
+ Tue Mar 6 20:09:13 JST 2007 m.fellinger@gmail.com
1694
+ * informing you about missing elements
1695
+
1696
+ Tue Mar 6 07:10:05 JST 2007 m.fellinger@gmail.com
1697
+ * add rack in the tc_dependencies
1698
+
1699
+ Mon Mar 5 22:48:06 JST 2007 m.fellinger@gmail.com
1700
+ * new custom error-handling, tell me your exception and i tell you where you land
1701
+
1702
+ Mon Mar 5 22:44:05 JST 2007 m.fellinger@gmail.com
1703
+ * temporarily add Helper to Element
1704
+
1705
+ Mon Mar 5 22:12:45 JST 2007 m.fellinger@gmail.com
1706
+ * avoid malformed response from the controller
1707
+
1708
+ Mon Mar 5 21:47:16 JST 2007 m.fellinger@gmail.com
1709
+ * specs for FlashHelper
1710
+
1711
+ Mon Mar 5 21:47:05 JST 2007 m.fellinger@gmail.com
1712
+ * add ability to delete specific key from session
1713
+
1714
+ Mon Mar 5 21:46:55 JST 2007 m.fellinger@gmail.com
1715
+ * improve error-handling in Template::Ezamar
1716
+
1717
+ Mon Mar 5 21:46:46 JST 2007 m.fellinger@gmail.com
1718
+ * add FlashHelper
1719
+
1720
+ Mon Mar 5 18:53:41 JST 2007 m.fellinger@gmail.com
1721
+ * updating some readme chunks
1722
+
1723
+ Sun Mar 4 22:53:11 JST 2007 m.fellinger@gmail.com
1724
+ * handle the case when there are no controllers...
1725
+
1726
+ Sun Mar 4 21:18:36 JST 2007 m.fellinger@gmail.com
1727
+ * remove setup.rb since i don't provide any support for it.
1728
+
1729
+ Sun Mar 4 21:05:37 JST 2007 m.fellinger@gmail.com
1730
+ * update Rakefile (dependencies and some tasks)
1731
+
1732
+ Sun Mar 4 21:01:19 JST 2007 m.fellinger@gmail.com
1733
+ * change the require for rack, make sure you got the gem installed or it's in your path (or required already)
1734
+
1735
+ Sun Mar 4 21:01:03 JST 2007 m.fellinger@gmail.com
1736
+ * remove vendor/rack since rack has its release out now
1737
+
1738
+ Sat Mar 3 04:35:51 JST 2007 m.fellinger@gmail.com
1739
+ * controller has to respond to :render
1740
+
1741
+ Sat Mar 3 04:35:07 JST 2007 m.fellinger@gmail.com
1742
+ * fix lookup for the cache
1743
+
1744
+ Sat Mar 3 02:38:25 JST 2007 m.fellinger@gmail.com
1745
+ * improved error-handling, templating-engines take responsibility now
1746
+
1747
+ Sat Mar 3 01:48:38 JST 2007 m.fellinger@gmail.com
1748
+ * fix docs for examples/hello
1749
+
1750
+ Fri Mar 2 17:49:11 JST 2007 m.fellinger@gmail.com
1751
+ * proper namespacing, address everything under Ramaze, don't rely on the user to include Ramaze in the main-namespace
1752
+
1753
+ Fri Mar 2 17:18:32 JST 2007 m.fellinger@gmail.com
1754
+ * fixing namespace for Informer in adapter/webrick
1755
+
1756
+ Wed Feb 28 23:06:19 JST 2007 m.fellinger@gmail.com
1757
+ * rack snapshot
1758
+
1759
+ Mon Feb 26 23:54:56 JST 2007 m.fellinger@gmail.com
1760
+ * testrunner should work on windows
1761
+
1762
+ Mon Feb 26 23:13:11 JST 2007 m.fellinger@gmail.com
1763
+ * refactoring the filtering in dispatcher to return early results and do nicer error-handling
1764
+
1765
+ Sat Feb 24 00:16:10 JST 2007 m.fellinger@gmail.com
1766
+ * oh phrack, we just require template/ezamar on startup now... no more autorequire-magic :P
1767
+
1768
+ Fri Feb 23 18:45:00 JST 2007 m.fellinger@gmail.com
1769
+ * updates to the README
1770
+
1771
+ Fri Feb 23 13:47:16 JST 2007 m.fellinger@gmail.com
1772
+ * making it possible to go without Element in AuthHelper
1773
+
1774
+ Fri Feb 23 13:46:53 JST 2007 m.fellinger@gmail.com
1775
+ * fixing references to Element in proto and specs
1776
+
1777
+ Fri Feb 23 13:46:39 JST 2007 m.fellinger@gmail.com
1778
+ * fixing references to Element
1779
+
1780
+ Fri Feb 23 13:45:32 JST 2007 m.fellinger@gmail.com
1781
+ * Morpher and Element moved into module ::Ezamar - please do now class YourElement < Ezamar::Element - this is part of an ongoing effort to extract Ezamar for broader usage
1782
+
1783
+ Thu Feb 22 20:56:22 JST 2007 m.fellinger@gmail.com
1784
+ * new doc/README from the chunks
1785
+
1786
+ Thu Feb 22 20:56:09 JST 2007 m.fellinger@gmail.com
1787
+ * proper heading for README
1788
+
1789
+ Thu Feb 22 20:55:25 JST 2007 m.fellinger@gmail.com
1790
+ * splitting README into seperate files in doc/readme_chunks
1791
+
1792
+ Thu Feb 22 20:54:53 JST 2007 m.fellinger@gmail.com
1793
+ * add rake build-readme to build the README from the chunks in doc/readme_chunks
1794
+
1795
+ Thu Feb 22 20:45:53 JST 2007 m.fellinger@gmail.com
1796
+ * remove the fluff from trinity/response - soon to be removed altogether
1797
+
1798
+ Thu Feb 22 20:40:10 JST 2007 m.fellinger@gmail.com
1799
+ * Ramaze::Request => Rack::Request
1800
+
1801
+ Thu Feb 22 20:39:57 JST 2007 m.fellinger@gmail.com
1802
+ * set 404 in Controller#error
1803
+
1804
+ Thu Feb 22 20:38:50 JST 2007 m.fellinger@gmail.com
1805
+ * proper check for 404 in tc_error
1806
+
1807
+ Thu Feb 22 14:58:45 JST 2007 m.fellinger@gmail.com
1808
+ * adapt the specs to take advantage of Context#story
1809
+
1810
+ Thu Feb 22 14:57:47 JST 2007 m.fellinger@gmail.com
1811
+ * adding Context.new with block or Context#story to provide a way for consecutive requests inside a common context.
1812
+
1813
+ Thu Feb 22 14:57:20 JST 2007 m.fellinger@gmail.com
1814
+ * using request_uri instead of path_info for StackHelper to preserve params
1815
+
1816
+ Thu Feb 22 08:37:01 JST 2007 m.fellinger@gmail.com
1817
+ * rack snapshot
1818
+
1819
+ Wed Feb 21 17:54:11 JST 2007 m.fellinger@gmail.com
1820
+ * fixing spec/tc_controller
1821
+
1822
+ Wed Feb 21 17:53:09 JST 2007 m.fellinger@gmail.com
1823
+ * fixing the first-load-problem which was caused by complicated require-procedures.
1824
+
1825
+ Wed Feb 21 17:52:39 JST 2007 m.fellinger@gmail.com
1826
+ * fixing examples/todolist
1827
+
1828
+ Wed Feb 21 13:18:33 JST 2007 m.fellinger@gmail.com
1829
+ * fixing Global.cookies = false
1830
+
1831
+ Wed Feb 21 10:16:49 JST 2007 m.fellinger@gmail.com
1832
+ * snapshot rack
1833
+
1834
+ Tue Feb 20 19:20:44 JST 2007 m.fellinger@gmail.com
1835
+ * add doc/GPL
1836
+
1837
+ Wed Feb 21 06:53:03 JST 2007 m.fellinger@gmail.com
1838
+ * support link('/' :class => 'foo', :id => 'bar', :title => 'index')
1839
+
1840
+ Wed Feb 21 06:52:34 JST 2007 m.fellinger@gmail.com
1841
+ * small improvments in examples/whywiki
1842
+
1843
+ Wed Feb 21 06:32:35 JST 2007 m.fellinger@gmail.com
1844
+ * extending examples/element a bit
1845
+
1846
+ Wed Feb 21 06:30:12 JST 2007 m.fellinger@gmail.com
1847
+ * fixing examples/caching
1848
+
1849
+ Wed Feb 21 06:24:57 JST 2007 m.fellinger@gmail.com
1850
+ * hopefully fixing the issue of first-load problems
1851
+
1852
+ Wed Feb 21 06:21:00 JST 2007 m.fellinger@gmail.com
1853
+ * add lib/proto to the lookup-paths for static files
1854
+
1855
+ Tue Feb 20 22:50:14 JST 2007 m.fellinger@gmail.com
1856
+ * snapshot of rack
1857
+
1858
+ Tue Feb 20 22:49:34 JST 2007 m.fellinger@gmail.com
1859
+ * fixing filters, the third
1860
+
1861
+ Tue Feb 20 19:07:30 JST 2007 m.fellinger@gmail.com
1862
+ * change order of filter... again
1863
+
1864
+ Tue Feb 20 19:06:12 JST 2007 m.fellinger@gmail.com
1865
+ * change doc/COPYING
1866
+
1867
+ Mon Feb 19 17:27:14 JST 2007 m.fellinger@gmail.com
1868
+ * change filter-order for static files to take priority
1869
+
1870
+ Mon Feb 19 17:19:22 JST 2007 m.fellinger@gmail.com
1871
+ * turn off $VERBOSE again
1872
+
1873
+ Tue Feb 20 14:57:41 JST 2007 m.fellinger@gmail.com
1874
+ * adding a requirement for rubygems in tc_dependencies (if you don't have rubygems you don't have to worry about that anyway)
1875
+
1876
+ Tue Feb 20 14:57:28 JST 2007 m.fellinger@gmail.com
1877
+ * fixing Global.cache_all
1878
+
1879
+ Tue Feb 20 14:46:11 JST 2007 m.fellinger@gmail.com
1880
+ * multiple fixes in the examples/blog
1881
+
1882
+ Tue Feb 20 14:45:14 JST 2007 m.fellinger@gmail.com
1883
+ * adapting the various specs for the new context/request helper
1884
+
1885
+ Tue Feb 20 14:44:06 JST 2007 m.fellinger@gmail.com
1886
+ * switching the testing-system to a modified version of simple_http, much cleaner :)
1887
+
1888
+ Tue Feb 20 14:43:11 JST 2007 m.fellinger@gmail.com
1889
+ * refactoring request_tc_helper a little bit
1890
+
1891
+ Tue Feb 20 14:42:40 JST 2007 m.fellinger@gmail.com
1892
+ * adding session.clear
1893
+
1894
+ Tue Feb 20 14:42:07 JST 2007 m.fellinger@gmail.com
1895
+ * using our own YAML::Store for store/yaml + some other minor changes
1896
+
1897
+ Tue Feb 20 14:41:47 JST 2007 m.fellinger@gmail.com
1898
+ * fixing StackHelper
1899
+
1900
+ Tue Feb 20 14:41:16 JST 2007 m.fellinger@gmail.com
1901
+ * fixing RedirectHelper
1902
+
1903
+ Sat Feb 17 04:27:30 JST 2007 m.fellinger@gmail.com
1904
+ * fixing example/caching
1905
+
1906
+ Tue Feb 20 00:29:47 JST 2007 m.fellinger@gmail.com
1907
+ * fixing serving static files
1908
+
1909
+ Mon Feb 19 23:59:19 JST 2007 m.fellinger@gmail.com
1910
+ * fixing the fix for the fix for the error-bug
1911
+
1912
+ Mon Feb 19 23:42:31 JST 2007 m.fellinger@gmail.com
1913
+ * prevent endless error-erroring
1914
+
1915
+ Mon Feb 19 14:39:55 JST 2007 m.fellinger@gmail.com
1916
+ * removing cruft from trinity/session, some smaller changes in tc_helper_auth... still not working though (last spec failing, most likely due to our messed up Context)
1917
+
1918
+ Mon Feb 19 13:33:58 JST 2007 manveru@weez-int.com
1919
+ * fixing redirection and error-handling, removing cruft from trinity/request (who'd have thought that it would fit into one screenful one day)
1920
+
1921
+ Mon Feb 19 13:33:29 JST 2007 manveru@weez-int.com
1922
+ * ignore the new vendor/rack for fixes of copyright and spaces
1923
+
1924
+ Mon Feb 19 12:45:35 JST 2007 manveru@weez-int.com
1925
+ * adding rack under lib/ramaze/vendor/rack - until rack got its first release
1926
+
1927
+ Mon Feb 19 08:00:59 JST 2007 m.fellinger@gmail.com
1928
+ * fixing sessions and spec_helper, removing tc_request_rack
1929
+
1930
+ Sun Feb 18 22:08:54 JST 2007 m.fellinger@gmail.com
1931
+ * remove provisory rack-adapter, it's replaced by adapter/mongrel|webrick
1932
+
1933
+ Sun Feb 18 19:32:29 JST 2007 m.fellinger@gmail.com
1934
+ * Switch adapters to work with rack
1935
+
1936
+ Sat Feb 17 06:12:10 JST 2007 Christian Neukirchen <chneukirchen@gmail.com>
1937
+ * Add primitive Rack adapter
1938
+
1939
+ Sat Feb 17 00:49:43 JST 2007 m.fellinger@gmail.com
1940
+ * some small fixes and adding MIME-types :D
1941
+
1942
+ Fri Feb 16 23:01:19 JST 2007 m.fellinger@gmail.com
1943
+ * adding cleanup for tc_cache to Rakefile
1944
+
1945
+ Fri Feb 16 23:00:47 JST 2007 m.fellinger@gmail.com
1946
+ * implementing PUT/DELETE for WEBrick plus neccesary abstraction in trinity/request
1947
+
1948
+ Fri Feb 16 22:59:12 JST 2007 m.fellinger@gmail.com
1949
+ * adding the files neccesary for the up/download specs, splitting the tc_request into tc_request_mongrel and tc_request_webrick
1950
+
1951
+ Fri Feb 16 21:31:46 JST 2007 m.fellinger@gmail.com
1952
+ * add doc/ProjectInfo for coming switch to ratchets
1953
+
1954
+ Fri Feb 16 21:27:02 JST 2007 m.fellinger@gmail.com
1955
+ * major rewrite of dispatcher, affecting the controller-lookup and the adapters, this is much, much cleaner now, though not perfect yet - but the first step of many.
1956
+
1957
+ Fri Feb 16 13:01:41 JST 2007 manveru@weez-int.com
1958
+ * avoid repetition in the subclasses of Template
1959
+
1960
+ Fri Feb 16 13:01:17 JST 2007 manveru@weez-int.com
1961
+ * add spec/tc_dependencies to make sure we don't leak any gems into the vanilla ramaze
1962
+
1963
+ Fri Feb 16 13:00:41 JST 2007 manveru@weez-int.com
1964
+ * adding store/yaml for an abstracted version of YAML::Store + corresponding specs.
1965
+
1966
+ Fri Feb 16 13:49:06 JST 2007 m.fellinger@gmail.com
1967
+ * fixing the issues with send_file temporarily
1968
+
1969
+ Tue Feb 13 18:39:23 JST 2007 m.fellinger@gmail.com
1970
+ * add specs for methods on a controller like this__is__a__method which translates to this/is/a/method
1971
+
1972
+ Thu Feb 15 23:58:48 JST 2007 m.fellinger@gmail.com
1973
+ * temorarily deactivate the new template-mapping
1974
+
1975
+ Thu Feb 15 23:49:33 JST 2007 m.fellinger@gmail.com
1976
+ * fixing missing end
1977
+
1978
+ Thu Feb 15 23:48:08 JST 2007 m.fellinger@gmail.com
1979
+ * autoload Element/Morpher when referenced
1980
+
1981
+ Thu Feb 15 19:13:31 JST 2007 manveru@weez-int.com
1982
+ * removing the alias of Ramaze::start to Ramaze::new to avoid nasty bugs when Ramaze is included into Object
1983
+
1984
+ Thu Feb 15 19:13:04 JST 2007 manveru@weez-int.com
1985
+ * adding some more docs for templating
1986
+
1987
+ Thu Feb 15 13:26:22 JST 2007 manveru@weez-int.com
1988
+ * first partial implementation of template_maps
1989
+
1990
+ Thu Feb 15 13:19:27 JST 2007 manveru@weez-int.com
1991
+ * add support for actions of the double__underscore__way
1992
+
1993
+ Wed Feb 14 19:31:45 JST 2007 manveru@weez-int.com
1994
+ * updating FAQ
1995
+
1996
+ Wed Feb 14 18:46:06 JST 2007 manveru@weez-int.com
1997
+ * documenting another couple of classes
1998
+
1999
+ Wed Feb 14 18:45:58 JST 2007 manveru@weez-int.com
2000
+ * documenting dispatcher fully
2001
+
2002
+ Wed Feb 14 18:45:48 JST 2007 manveru@weez-int.com
2003
+ * documenting cache/memcached
2004
+
2005
+ Wed Feb 14 18:45:36 JST 2007 manveru@weez-int.com
2006
+ * adding further docs to adapter/mongrel
2007
+
2008
+ Wed Feb 14 18:44:51 JST 2007 manveru@weez-int.com
2009
+ * fixing AuthHelper
2010
+
2011
+ Tue Feb 13 19:57:52 JST 2007 manveru@weez-int.com
2012
+ * fixing the examples and adapting lib/proto for the new Controller
2013
+
2014
+ Tue Feb 13 19:57:25 JST 2007 manveru@weez-int.com
2015
+ * add xhtml as default extension for Ezamar
2016
+
2017
+ Tue Feb 13 15:25:56 JST 2007 manveru@weez-int.com
2018
+ * fixing flawed references to Template::Rezamar in the docs.
2019
+
2020
+ Tue Feb 13 15:23:20 JST 2007 manveru@weez-int.com
2021
+ * fixing the tutorial for new implementation
2022
+
2023
+ Tue Feb 13 15:20:59 JST 2007 manveru@weez-int.com
2024
+ * rescue the Timeout::Error we get when a request takes too long in a test.
2025
+
2026
+ Tue Feb 13 15:20:25 JST 2007 manveru@weez-int.com
2027
+ * documenting all undocumented methods, some classes/modules still lacking docs.
2028
+
2029
+ Tue Feb 13 15:19:37 JST 2007 manveru@weez-int.com
2030
+ * fixing AspectHelper and with that subsequently AuthHelper.
2031
+
2032
+ Tue Feb 13 13:45:59 JST 2007 m.fellinger@gmail.com
2033
+ * rewrite of spec/spec_all and fixing a typo in spec/spec_helper
2034
+
2035
+ Tue Feb 13 08:56:06 JST 2007 m.fellinger@gmail.com
2036
+ * make example/caching|hello|simple run again
2037
+
2038
+ Tue Feb 13 08:55:49 JST 2007 m.fellinger@gmail.com
2039
+ * execute(*tasks) instead of execute *tasks
2040
+
2041
+ Tue Feb 13 08:55:10 JST 2007 m.fellinger@gmail.com
2042
+ * get rid of warnings in ezamar/engine - it still should be written more elegant though.
2043
+
2044
+ Tue Feb 13 08:54:48 JST 2007 m.fellinger@gmail.com
2045
+ * don't require aquire twice.
2046
+
2047
+ Tue Feb 13 08:53:56 JST 2007 m.fellinger@gmail.com
2048
+ * had a double definition of the request_path method for webrick-requests.
2049
+
2050
+ Tue Feb 13 08:53:13 JST 2007 m.fellinger@gmail.com
2051
+ * set the default of bin/ramaze and spec_all to output warnings.
2052
+
2053
+ Tue Feb 13 08:50:35 JST 2007 m.fellinger@gmail.com
2054
+ * use our own methods for showing the usage, less hacky and avoids warnings
2055
+
2056
+ Tue Feb 13 00:19:06 JST 2007 manveru@weez-int.com
2057
+ * make AspectHelper not bail out at start.
2058
+
2059
+ Tue Feb 13 00:18:44 JST 2007 manveru@weez-int.com
2060
+ * define #current on the actual Response-object
2061
+
2062
+ Tue Feb 13 00:12:46 JST 2007 manveru@weez-int.com
2063
+ * This patch is HUGE, introducing real controllers and making the templating-engines even more uniform and modular, selection of the engine now based on file-extension or and/or a trait, fixing all tests (except AspectHelper and AuthHelper which relies on that), moving the Ezamar-engine out of the usual templating (so you can use it for your own evil plans) and quite some other stuff... this rewrite didn't work out to be very atomic, but the effects are.
2064
+
2065
+ Tue Feb 13 00:11:52 JST 2007 manveru@weez-int.com
2066
+ * make the rdoc-tasks a bit nicer and add doc/FAQ
2067
+
2068
+ Mon Feb 12 13:01:14 JST 2007 manveru@weez-int.com
2069
+ * add doc/FAQ
2070
+
2071
+ Mon Feb 12 11:26:04 JST 2007 manveru@weez-int.com
2072
+ * Ramaze::Template::Ramaze => Ramaze::Template::Ezamar - renaming the templating to get rid of confusion and provide a name to talk about when one means the templating.
2073
+
2074
+ Mon Feb 12 10:21:56 JST 2007 manveru@weez-int.com
2075
+ * add hint about installation to tutorial/todolist
2076
+
2077
+ Sun Feb 11 07:23:07 JST 2007 m.fellinger@gmail.com
2078
+ * remove allison from the repository again.
2079
+
2080
+ Sat Feb 10 05:43:50 JST 2007 m.fellinger@gmail.com
2081
+ * fixing specs for tc_helper_feed for broken hpricot
2082
+
2083
+ Sat Feb 10 05:43:25 JST 2007 m.fellinger@gmail.com
2084
+ * using ramaze/store/default for proto
2085
+
2086
+ Sat Feb 10 00:02:14 JST 2007 manveru@weez-int.com
2087
+ * fix issue when having a symbol as Global.cache for sessions.
2088
+
2089
+ Sat Feb 10 00:01:56 JST 2007 manveru@weez-int.com
2090
+ * better error-handling for Template::Ramaze
2091
+
2092
+ Sat Feb 10 00:01:44 JST 2007 manveru@weez-int.com
2093
+ * set @action for Template::Ramaze
2094
+
2095
+ Sat Feb 10 00:00:54 JST 2007 manveru@weez-int.com
2096
+ * extending Store::Default and adding corresponding specs and docs.
2097
+
2098
+ Sat Feb 10 00:00:31 JST 2007 manveru@weez-int.com
2099
+ * add the doc/tutorial/todolist.txt
2100
+
2101
+ Fri Feb 9 23:59:58 JST 2007 manveru@weez-int.com
2102
+ * add the example/todolist
2103
+
2104
+ Fri Feb 9 20:44:06 JST 2007 manveru@weez-int.com
2105
+ * add Store::Default#empty?
2106
+
2107
+ Thu Feb 8 13:17:09 JST 2007 manveru@weez-int.com
2108
+ * adding doc/INSTALL
2109
+
2110
+ Thu Feb 8 13:14:09 JST 2007 manveru@weez-int.com
2111
+ * fixing and extending amrita2 templating, adding the example for it.
2112
+
2113
+ Tue Feb 6 22:52:03 JST 2007 manveru@weez-int.com
2114
+ * fixing a bug in feed-helper and hiding a bug in current hpricot... (0.5) - need to file a bug-report :(
2115
+
2116
+ Fri Feb 9 08:43:09 JST 2007 m.fellinger@gmail.com
2117
+ * a bit nicer output if the test is skipped due to dependencies
2118
+
2119
+ Fri Feb 9 08:42:48 JST 2007 m.fellinger@gmail.com
2120
+ * add the testfile for send_file
2121
+
2122
+ Fri Feb 9 08:41:57 JST 2007 m.fellinger@gmail.com
2123
+ * fixing send_file for mongrel-adapter.
2124
+
2125
+ Thu Feb 8 18:01:36 JST 2007 m.fellinger@gmail.com
2126
+ tagged 0.0.7
2127
+
2128
+ Thu Feb 8 18:01:22 JST 2007 m.fellinger@gmail.com
2129
+ * update changelog
2130
+
2131
+ Thu Feb 8 11:18:46 JST 2007 m.fellinger@gmail.com
2132
+ * this fixes some issues with rubygems/rdoc
2133
+
2134
+ Thu Feb 8 10:28:49 JST 2007 m.fellinger@gmail.com
2135
+ * little hack for RDoc::usage so it will work with a gem too.
2136
+
2137
+ Thu Feb 8 01:31:46 JST 2007 m.fellinger@gmail.com
2138
+ * add rspec as dependency
2139
+
2140
+ Thu Feb 8 01:21:13 JST 2007 m.fellinger@gmail.com
2141
+ * nicer exit
2142
+
2143
+ Wed Feb 7 19:37:10 JST 2007 m.fellinger@gmail.com
2144
+ * remove foul language ;)
2145
+
2146
+ Wed Feb 7 19:36:04 JST 2007 m.fellinger@gmail.com
2147
+ * added :distribute task and fixed a small typo
2148
+
2149
+ Wed Feb 7 19:07:25 JST 2007 m.fellinger@gmail.com
2150
+ tagged 0.0.6
2151
+
2152
+ Wed Feb 7 19:06:54 JST 2007 m.fellinger@gmail.com
2153
+ * 0.0.6
2154
+
2155
+ Wed Feb 7 19:06:38 JST 2007 m.fellinger@gmail.com
2156
+ * working around a bug in Hpricot 0.5
2157
+
2158
+ Wed Feb 7 19:06:24 JST 2007 m.fellinger@gmail.com
2159
+ * update changelog
2160
+
2161
+ Wed Feb 7 19:02:15 JST 2007 m.fellinger@gmail.com
2162
+ * this introduces a new startup/shutdown hook system
2163
+
2164
+ Wed Feb 7 19:00:52 JST 2007 m.fellinger@gmail.com
2165
+ * update changelog, fixing Rakefile and making bin/ramaze a bit nicer.
2166
+
2167
+ Tue Feb 6 23:44:03 JST 2007 m.fellinger@gmail.com
2168
+ * fixing typo in Rakefile
2169
+
2170
+ Tue Feb 6 17:29:23 JST 2007 m.fellinger@gmail.com
2171
+ * adding documentation for all traits.
2172
+
2173
+ Tue Feb 6 17:29:09 JST 2007 m.fellinger@gmail.com
2174
+ * improving Hash#keys_to_sym
2175
+
2176
+ Tue Feb 6 17:28:42 JST 2007 m.fellinger@gmail.com
2177
+ * adding the files for the allison-template
2178
+
2179
+ Tue Feb 6 17:28:25 JST 2007 m.fellinger@gmail.com
2180
+ * add rake allison for the improved allison rdoc-template
2181
+
2182
+ Tue Feb 6 12:42:37 JST 2007 m.fellinger@gmail.com
2183
+ * fixing minor typos in the README, removing ramaze.xcf and fixing require hpricot in tc_helper_feed
2184
+
2185
+ Tue Feb 6 16:08:35 JST 2007 manveru@weez-int.com
2186
+ * add a post install message for the gem and add documentation for Tool::Create
2187
+
2188
+ Tue Feb 6 13:51:17 JST 2007 manveru@weez-int.com
2189
+ * handle referer for mongrel too
2190
+
2191
+ Tue Feb 6 13:50:29 JST 2007 manveru@weez-int.com
2192
+ * remove the require coderay in error.rb main-body, this is done dynamically and with a proper rescue in the error-method instead, therefor removing the shown dependecy in rake dependencies
2193
+
2194
+ Tue Feb 6 13:49:03 JST 2007 manveru@weez-int.com
2195
+ * fixing rake rdoc, adding rake readme2html and adding rake as dependency
2196
+
2197
+ Sun Feb 4 23:34:54 JST 2007 manveru@weez-int.com
2198
+ * adding some more methods to Store::Default
2199
+
2200
+ Sun Feb 4 22:50:29 JST 2007 manveru@weez-int.com
2201
+ * finally make ramaze --create project work
2202
+
2203
+ Mon Feb 5 11:30:34 JST 2007 m.fellinger@gmail.com
2204
+ * minor changes to README
2205
+
2206
+ Mon Feb 5 11:23:41 JST 2007 m.fellinger@gmail.com
2207
+ * adding todo
2208
+
2209
+ Mon Feb 5 11:23:21 JST 2007 m.fellinger@gmail.com
2210
+ * update documentation for Global
2211
+
2212
+ Mon Feb 5 11:23:13 JST 2007 m.fellinger@gmail.com
2213
+ * update doc/TODO
2214
+
2215
+ Mon Feb 5 11:21:25 JST 2007 m.fellinger@gmail.com
2216
+ * little patch to rake todolist
2217
+
2218
+ Sat Feb 3 08:45:15 JST 2007 manveru@weez-int.com
2219
+ * adding testcase_requires in spec_helper to have a standard way of saying whether a testcase is supposed to pass at all, also fixing a little issue with require-path for ramaze and problematic lookup of Ramaze::Helper in haml (it's extended anyway)
2220
+
2221
+ Sat Feb 3 08:09:37 JST 2007 manveru@weez-int.com
2222
+ * use proto/public for static lookup, not lib/public
2223
+
2224
+ Sat Feb 3 08:09:25 JST 2007 manveru@weez-int.com
2225
+ * fixing logger for files
2226
+
2227
+ Sat Feb 3 08:07:46 JST 2007 manveru@weez-int.com
2228
+ * adds the other stuff for lib/proto, just a very simple little hello-world app with most of the structure of a fully grown application and some example configurations.
2229
+
2230
+ Sat Feb 3 08:07:26 JST 2007 manveru@weez-int.com
2231
+ * move lib/public to lib/proto/public
2232
+
2233
+ Sat Feb 3 08:06:33 JST 2007 manveru@weez-int.com
2234
+ * add tool/create and change the bin/ramaze for ramaze --create myapp, which basically copies the proto-directory from lib/proto
2235
+
2236
+ Sat Feb 3 08:06:18 JST 2007 manveru@weez-int.com
2237
+ * uh, forgot the source of these two files
2238
+
2239
+ Sat Feb 3 08:05:32 JST 2007 manveru@weez-int.com
2240
+ * add the snippets for Hash and Symbol
2241
+
2242
+ Sat Feb 3 08:05:01 JST 2007 manveru@weez-int.com
2243
+ * update Rakefile for testing and superior options for rdoc
2244
+
2245
+ Sat Feb 3 08:03:42 JST 2007 manveru@weez-int.com
2246
+ * remove lib/test
2247
+
2248
+ Sat Feb 3 08:02:45 JST 2007 manveru@weez-int.com
2249
+ * move lib/test/request_maker into the rake-task request
2250
+
2251
+ Sat Feb 3 08:02:03 JST 2007 manveru@weez-int.com
2252
+ * patch the specs to work in the new directory
2253
+
2254
+ Sat Feb 3 08:01:21 JST 2007 manveru@weez-int.com
2255
+ * move test_helper to spec/spec_helper and all_tests to spec_all
2256
+
2257
+ Sat Feb 3 08:00:50 JST 2007 manveru@weez-int.com
2258
+ * move test to spec
2259
+
2260
+ Sat Feb 3 04:45:39 JST 2007 manveru@weez-int.com
2261
+ * tons of little changes to make dispatcher work again, also adding support for defining your Global.inform_to in a YAML file ('stdout', 'stderr', :stdout, :stderr or a filename)
2262
+
2263
+ Fri Feb 2 21:14:46 JST 2007 m.fellinger@gmail.com
2264
+ * yet another typo
2265
+
2266
+ Fri Feb 2 21:13:38 JST 2007 m.fellinger@gmail.com
2267
+ * typo
2268
+
2269
+ Fri Feb 2 21:12:10 JST 2007 m.fellinger@gmail.com
2270
+ * document String#snake_case
2271
+
2272
+ Fri Feb 2 21:11:03 JST 2007 m.fellinger@gmail.com
2273
+ * docu for String#camel_case
2274
+
2275
+ Fri Feb 2 21:07:29 JST 2007 m.fellinger@gmail.com
2276
+ * MAJOR update to README ;) - now it should be a lot more RDoc-able
2277
+
2278
+ Fri Feb 2 20:39:37 JST 2007 m.fellinger@gmail.com
2279
+ * update docs for Template::Amrita2
2280
+
2281
+ Fri Feb 2 20:37:47 JST 2007 m.fellinger@gmail.com
2282
+ * remove the Template::Stupid
2283
+
2284
+ Fri Feb 2 20:33:16 JST 2007 m.fellinger@gmail.com
2285
+ * document some more snippets
2286
+
2287
+ Fri Feb 2 20:24:54 JST 2007 m.fellinger@gmail.com
2288
+ * adding docs for OpenStruct#temp
2289
+
2290
+ Fri Feb 2 20:20:46 JST 2007 m.fellinger@gmail.com
2291
+ * add the last bits of code and documentation for request/response/session (mostly the ::current method)
2292
+
2293
+ Fri Feb 2 20:20:07 JST 2007 m.fellinger@gmail.com
2294
+ * a little bit nicer API in Dispatcher, but most importantly, fully documented!
2295
+
2296
+ Thu Feb 1 17:26:41 JST 2007 m.fellinger@gmail.com
2297
+ * something broke... now reading the template extra-early... this should give us better ways to do action-compiles later on...
2298
+
2299
+ Thu Feb 1 16:48:13 JST 2007 m.fellinger@gmail.com
2300
+ * Ramaze::Template::Element => Ramaze::Element
2301
+
2302
+ Fri Feb 2 14:32:26 JST 2007 manveru@weez-int.com
2303
+ * first draft of documentation for dispatcher
2304
+
2305
+ Fri Feb 2 14:24:48 JST 2007 manveru@weez-int.com
2306
+ * completing documentation of ramaze.rb and lib/test/test_helper
2307
+
2308
+ Fri Feb 2 14:24:19 JST 2007 manveru@weez-int.com
2309
+ * completing documentation for Ramaze::Template
2310
+
2311
+ Fri Feb 2 14:24:07 JST 2007 manveru@weez-int.com
2312
+ * minor changes and full documenation for Gestalt
2313
+
2314
+ Fri Feb 2 14:23:42 JST 2007 manveru@weez-int.com
2315
+ * completing documentation of adapter/mongrel adapter/webrick
2316
+
2317
+ Fri Feb 2 14:01:44 JST 2007 manveru@weez-int.com
2318
+ * taking advantage of a custom external config-file... i won't build an automatic loading of that file since it's just a oneliner to load it. this is for the blog-example
2319
+
2320
+ Fri Feb 2 14:01:01 JST 2007 manveru@weez-int.com
2321
+ * support for mapping controllers as symbols/strings, looking up the constants on startup.
2322
+
2323
+ Thu Feb 1 22:47:06 JST 2007 manveru@weez-int.com
2324
+ * testing redirect_referer in tc_helper_redirect
2325
+
2326
+ Thu Feb 1 22:46:16 JST 2007 manveru@weez-int.com
2327
+ * updating tc_helper_auth for the different ways to set the auth_table
2328
+
2329
+ Thu Feb 1 22:45:30 JST 2007 manveru@weez-int.com
2330
+ * this adds the possibility to add a base url for the context (like path to a controller)... nasty, nasty stuff
2331
+
2332
+ Thu Feb 1 22:45:01 JST 2007 manveru@weez-int.com
2333
+ * make rake all_tests compatible for tinderbox and a little bit prettier
2334
+
2335
+ Thu Feb 1 22:44:15 JST 2007 manveru@weez-int.com
2336
+ * use request.referer and add request.local_net? from nitro
2337
+
2338
+ Thu Feb 1 22:43:32 JST 2007 manveru@weez-int.com
2339
+ * restructuring and documenting AuthHelper
2340
+
2341
+ Thu Feb 1 22:43:11 JST 2007 manveru@weez-int.com
2342
+ * use ancestral_trait for aspects
2343
+
2344
+ Thu Feb 1 22:42:53 JST 2007 manveru@weez-int.com
2345
+ * add documentation for the Rakefile tasks
2346
+
2347
+ Thu Feb 1 20:40:42 JST 2007 manveru@weez-int.com
2348
+ * remove a bit of debugging-info from AspectHelper
2349
+
2350
+ Thu Feb 1 20:39:36 JST 2007 manveru@weez-int.com
2351
+ * adding stack functionality in the AuthHelper by default. So once you are logged in, you will be redirected back to the last known position.
2352
+
2353
+ Thu Feb 1 20:39:05 JST 2007 manveru@weez-int.com
2354
+ * simplify the code in helper.rb a little bit
2355
+
2356
+ Wed Jan 31 22:33:16 JST 2007 manveru@weez-int.com
2357
+ * small updates to the README again, adding some links.
2358
+
2359
+ Wed Jan 31 22:22:35 JST 2007 manveru@weez-int.com
2360
+ * adding the Liquid templating-engine (Template::Liquid) complete with tests and example.
2361
+
2362
+ Wed Jan 31 22:19:59 JST 2007 manveru@weez-int.com
2363
+ * little fixes for Haml (examples/templates) and adding the option to pass your own haml_options or set a trait... also some docs for transform.
2364
+
2365
+ Wed Jan 31 13:35:06 JST 2007 manveru@weez-int.com
2366
+ * another Inform => Informer for erubis and amrita2
2367
+
2368
+ Wed Jan 31 13:34:18 JST 2007 manveru@weez-int.com
2369
+ * adding Haml example in examples/templates
2370
+
2371
+ Wed Jan 31 13:06:47 JST 2007 manveru@weez-int.com
2372
+ * updating README
2373
+
2374
+ Wed Jan 31 13:05:26 JST 2007 manveru@weez-int.com
2375
+ * adding Haml Templating-engine. (Template::Haml)
2376
+
2377
+ Wed Jan 31 01:09:22 JST 2007 manveru@weez-int.com
2378
+ * add a tc_error
2379
+
2380
+ Wed Jan 31 01:06:50 JST 2007 manveru@weez-int.com
2381
+ * fixing Element => Template::Element
2382
+
2383
+ Tue Jan 30 22:58:16 JST 2007 manveru@weez-int.com
2384
+ * limiting the backtrace for the errorpage to 0..20 to make it speedier, requiring coderay
2385
+
2386
+ Tue Jan 30 22:57:28 JST 2007 manveru@weez-int.com
2387
+ * putting Element and Morpher in the Ramaze::Template namespace, prefixing the Ramaze::BASEDIR
2388
+
2389
+ Tue Jan 30 22:57:00 JST 2007 manveru@weez-int.com
2390
+ * fixing dispatcher errorhandling for webrick... was broken, as usual.
2391
+
2392
+ Tue Jan 30 22:56:26 JST 2007 manveru@weez-int.com
2393
+ * adapt the errorpage and give it really neat new CodeRay highlighting, the old one was b0rken ages ago.
2394
+
2395
+ Tue Jan 30 21:42:15 JST 2007 manveru@weez-int.com
2396
+ * use Informer in the templating to avoid confusion with the error method on the controller and of Inform (which will need to search for a new naming-scheme, i fear)
2397
+
2398
+ Tue Jan 30 21:41:06 JST 2007 manveru@weez-int.com
2399
+ * template.rb gets a new trait, the :public which points per default to ramazes public directory, we extend the paths searched to this directory, some more general cleanup as well.
2400
+
2401
+ Tue Jan 30 21:39:13 JST 2007 manveru@weez-int.com
2402
+ * just a little nicety ;)
2403
+
2404
+ Tue Jan 30 21:38:24 JST 2007 manveru@weez-int.com
2405
+ * remove the old errorpage-cruft from the error.rb, it will in future serve for some general errors that Ramaze will use.
2406
+
2407
+ Tue Jan 30 21:37:52 JST 2007 manveru@weez-int.com
2408
+ * make dispatcher aware of error-handling (not just that hardcoded errorpage-stuff
2409
+
2410
+ Tue Jan 30 21:37:00 JST 2007 manveru@weez-int.com
2411
+ * create the new error.xhtml and error.css in order to finally get some sane structure in error-handling.
2412
+
2413
+ Tue Jan 30 20:00:37 JST 2007 manveru@weez-int.com
2414
+ * show the error-message as well when Template.transform fails.
2415
+
2416
+ Tue Jan 30 20:00:10 JST 2007 manveru@weez-int.com
2417
+ * remove Template from the pipeline again, just causing problems with multiple evaluation.
2418
+
2419
+ Tue Jan 30 19:59:15 JST 2007 manveru@weez-int.com
2420
+ * splitting out Element.transform into multiple methods, this is the preparation to make it a bit more... itelligent :)
2421
+
2422
+ Mon Jan 29 23:59:38 JST 2007 manveru@weez-int.com
2423
+ * _yet_ another way how webrick handles cookies... this is getting tiresome :P
2424
+
2425
+ Mon Jan 29 23:59:14 JST 2007 manveru@weez-int.com
2426
+ * if the action is a symbol convert to string before escaping
2427
+
2428
+ Mon Jan 29 23:58:26 JST 2007 manveru@weez-int.com
2429
+ * changes to morpher and rearranging the pipeline... evaluating twice should be avoided somehow...
2430
+
2431
+ Mon Jan 29 23:57:59 JST 2007 manveru@weez-int.com
2432
+ * vast upgrade of AuthHelper
2433
+
2434
+ Mon Jan 29 23:57:30 JST 2007 manveru@weez-int.com
2435
+ * support different arity for pre-aspects
2436
+
2437
+ Mon Jan 29 23:57:11 JST 2007 manveru@weez-int.com
2438
+ * final version of the blog (for the time being, as always ;)
2439
+
2440
+ Mon Jan 29 22:32:00 JST 2007 manveru@weez-int.com
2441
+ * remove the pointers to EntryController and remove the list.xhtml
2442
+
2443
+ Mon Jan 29 22:28:49 JST 2007 manveru@weez-int.com
2444
+ * remove the EntryController and use MainController instead
2445
+
2446
+ Mon Jan 29 22:27:05 JST 2007 manveru@weez-int.com
2447
+ * move the templates for the wiki to the root template-folder
2448
+
2449
+ Mon Jan 29 22:25:38 JST 2007 manveru@weez-int.com
2450
+ * use the cleaner Global.setup instead of direct assignment
2451
+
2452
+ Mon Jan 29 22:25:20 JST 2007 manveru@weez-int.com
2453
+ * fixing session for non-POST
2454
+
2455
+ Mon Jan 29 22:24:44 JST 2007 manveru@weez-int.com
2456
+ * remove the old index of blog, we'll implement that more minimalistic
2457
+
2458
+ Mon Jan 29 22:17:27 JST 2007 manveru@weez-int.com
2459
+ * remove miniwiki and move microwiki to whywiki
2460
+
2461
+ Mon Jan 29 21:22:46 JST 2007 m.fellinger@gmail.com
2462
+ * huuge patch (kinda) to support cookies via POST with Net::HTTP to webrick, improves some tests and remove tc_helper_crud
2463
+
2464
+ Mon Jan 29 21:22:24 JST 2007 m.fellinger@gmail.com
2465
+ * prevent stack from answering if the stack is empty
2466
+
2467
+ Mon Jan 29 21:22:06 JST 2007 m.fellinger@gmail.com
2468
+ * little typo, forgot comma ;)
2469
+
2470
+ Mon Jan 29 20:14:42 JST 2007 m.fellinger@gmail.com
2471
+ * uhm... remove model... again? :)
2472
+
2473
+ Mon Jan 29 20:13:57 JST 2007 m.fellinger@gmail.com
2474
+ * removing the CrudHelper stuff again, it's just confusing and quite worthless in practice.
2475
+
2476
+ Mon Jan 29 20:10:02 JST 2007 m.fellinger@gmail.com
2477
+ * little fix in tc_helper_form in case Og isn't there.
2478
+
2479
+ Mon Jan 29 20:09:27 JST 2007 m.fellinger@gmail.com
2480
+ * as promised, using throw(:respond) now to do redirection properly
2481
+
2482
+ Mon Jan 29 20:07:39 JST 2007 m.fellinger@gmail.com
2483
+ * adding a new option Global.cookies to turn sending cookies on and off... also we are now catching :respond to break out of a request/response cycle early (this will be used for redirection)
2484
+
2485
+ Mon Jan 29 20:06:36 JST 2007 m.fellinger@gmail.com
2486
+ * alias Ramaze.start with Ramaze.new
2487
+
2488
+ Mon Jan 29 20:06:13 JST 2007 m.fellinger@gmail.com
2489
+ * a little more explanation in the examples/hello
2490
+
2491
+ Mon Jan 29 20:05:39 JST 2007 m.fellinger@gmail.com
2492
+ * adding ramaze --console for starting up an irb-session while the server runs in the background
2493
+
2494
+ Mon Jan 29 16:41:05 JST 2007 m.fellinger@gmail.com
2495
+ * Ramaze.autoreload instead of Kernel.autoreload
2496
+
2497
+ Mon Jan 29 07:49:46 JST 2007 manveru@weez-int.com
2498
+ * small change to make ancestral_trait work for the current instance as well.
2499
+
2500
+ Mon Jan 29 15:03:28 JST 2007 manveru@weez-int.com
2501
+ * the adapter should return only one thread to watch...
2502
+
2503
+ Mon Jan 29 14:56:06 JST 2007 manveru@weez-int.com
2504
+ * implement multiple ports for webrick + tests
2505
+
2506
+ Mon Jan 29 14:55:46 JST 2007 manveru@weez-int.com
2507
+ * implement for mongrel + tests
2508
+
2509
+ Mon Jan 29 14:54:24 JST 2007 manveru@weez-int.com
2510
+ * first step in supporting startup for multiple servers at once (ramaze -p 7000..7010) via a new Global.ports that is taken from Global.port (which loses in significance... but it's only of value before startup anyway
2511
+
2512
+ Sun Jan 28 15:46:11 JST 2007 manveru@weez-int.com
2513
+ * add documentation and fix minor bugs in ramaze, ramaze/global and ramaze/inform
2514
+
2515
+ Sun Jan 28 15:34:08 JST 2007 manveru@weez-int.com
2516
+ * document ramaze/template and remove the require of ramaze/model
2517
+
2518
+ Sun Jan 28 15:33:41 JST 2007 manveru@weez-int.com
2519
+ * it should be :transform_pipeline, not :template_pipeline
2520
+
2521
+ Sun Jan 28 15:29:35 JST 2007 manveru@weez-int.com
2522
+ * remove lib/ramaze/model.rb - nowhere used anyway :P
2523
+
2524
+ Sun Jan 28 15:27:30 JST 2007 manveru@weez-int.com
2525
+ * documentation for adapter/mongrel, adapter/webrick, AuthHelper and CacheHelper
2526
+
2527
+ Sun Jan 28 15:22:24 JST 2007 manveru@weez-int.com
2528
+ * set the default method for mongrels log-method to Informer#<<
2529
+
2530
+ Sun Jan 28 15:01:37 JST 2007 manveru@weez-int.com
2531
+ * documentation for: FeedHelper, StackHelper and FormHelper
2532
+
2533
+ Sun Jan 28 14:28:00 JST 2007 manveru@weez-int.com
2534
+ * remove #instance? was a nice hack but we don't use it anywhere
2535
+
2536
+ Sun Jan 28 14:27:03 JST 2007 manveru@weez-int.com
2537
+ * fixing rake undocmented... missed out some methods and added some too much
2538
+
2539
+ Sun Jan 28 14:25:14 JST 2007 manveru@weez-int.com
2540
+ * remove test/tc_helper, it was just a copy of test/tc_helper_redirect ... makes my autocomplete a little bit faster ;)
2541
+
2542
+ Sun Jan 28 14:24:53 JST 2007 manveru@weez-int.com
2543
+ * use head instead of @head in the response
2544
+
2545
+ Sun Jan 28 14:24:00 JST 2007 manveru@weez-int.com
2546
+ * template/ramaze uses render_action instead of render_method... another ancestral_trait
2547
+
2548
+ Sun Jan 28 14:23:43 JST 2007 manveru@weez-int.com
2549
+ * docs for template/markaby
2550
+
2551
+ Sun Jan 28 14:23:14 JST 2007 manveru@weez-int.com
2552
+ * replace the clumsy ancestors_trait by ancestral_trait
2553
+
2554
+ Sun Jan 28 14:22:28 JST 2007 manveru@weez-int.com
2555
+ * a little bit of docs for store/default - still pondering about removing it since it's not used anywhere... also remove the [] and []= method, they should be handled by method_missing anyway.
2556
+
2557
+ Sun Jan 28 14:21:07 JST 2007 manveru@weez-int.com
2558
+ * changes for Object#trait, adding docs and replacing the ancestors_trait with the ancestral_trait method, it yields an hash that consists of all the traits of the ancestors
2559
+
2560
+ Sun Jan 28 14:20:24 JST 2007 manveru@weez-int.com
2561
+ * Ramaze::Informer instead of Ramaze::Inform for autoreload output
2562
+
2563
+ Sun Jan 28 14:20:10 JST 2007 manveru@weez-int.com
2564
+ * make Informer respond to << for WEBrick
2565
+
2566
+ Sun Jan 28 14:19:10 JST 2007 manveru@weez-int.com
2567
+ * it's Global.inform_ ... no Hash anymore for easier defaults
2568
+
2569
+ Sun Jan 28 14:18:24 JST 2007 manveru@weez-int.com
2570
+ * new defaults for Global plus a little bit of documentation-stubs... we really should make a seperate documentation in doc/ for the options.
2571
+
2572
+ Sun Jan 28 14:17:04 JST 2007 manveru@weez-int.com
2573
+ * check for the :benchmark tag in the adapter
2574
+
2575
+ Sun Jan 28 14:16:42 JST 2007 manveru@weez-int.com
2576
+ * make mongrel log as #debug instead of info
2577
+
2578
+ Sun Jan 28 14:16:13 JST 2007 manveru@weez-int.com
2579
+ * Global.autoreload is now a simple integer, no mapping of modes to integers, since we don't have modes anymore
2580
+
2581
+ Sun Jan 28 14:15:30 JST 2007 manveru@weez-int.com
2582
+ * close the thing Inform logs to at shutdown
2583
+
2584
+ Sun Jan 28 14:14:40 JST 2007 manveru@weez-int.com
2585
+ * small change, in case the adapter doesn't respond to #stop
2586
+
2587
+ Sun Jan 28 14:13:30 JST 2007 manveru@weez-int.com
2588
+ * little change in examples/element
2589
+
2590
+ Sun Jan 28 14:12:18 JST 2007 manveru@weez-int.com
2591
+ * adjust the bin/ramaze for the new Inform and use RDocs parser for the output of help, version and copyright.
2592
+
2593
+ Fri Jan 26 23:22:53 JST 2007 manveru@weez-int.com
2594
+ * typo
2595
+
2596
+ Fri Jan 26 23:22:20 JST 2007 manveru@weez-int.com
2597
+ * move init_global a bit forward so it's available right from the start.
2598
+
2599
+ Fri Jan 26 23:21:29 JST 2007 manveru@weez-int.com
2600
+ * update the Global for the new Inform
2601
+
2602
+ Fri Jan 26 23:20:41 JST 2007 manveru@weez-int.com
2603
+ * patch the rest of the system for the new Inform
2604
+
2605
+ Fri Jan 26 23:19:48 JST 2007 manveru@weez-int.com
2606
+ * rewrite Inform to be tag-based and a lot simpler :)
2607
+
2608
+ Fri Jan 26 13:52:42 JST 2007 manveru@weez-int.com
2609
+ * finally set a default mapping to {} at require Global
2610
+
2611
+ Fri Jan 26 13:52:17 JST 2007 manveru@weez-int.com
2612
+ * prevent errors in case we pass Coderay some empty piece of code
2613
+
2614
+ Fri Jan 26 13:51:13 JST 2007 manveru@weez-int.com
2615
+ * supporting mongrels send_file, should give some decent speedups.
2616
+
2617
+ Thu Jan 25 13:52:55 JST 2007 manveru@weez-int.com
2618
+ * append a newline to the output of CrudHelper... makes CLI-use easier
2619
+
2620
+ Thu Jan 25 13:52:20 JST 2007 manveru@weez-int.com
2621
+ * add the examples/crud.rb to show how to use the CrudHelper
2622
+
2623
+ Wed Jan 24 20:28:55 JST 2007 manveru@weez-int.com
2624
+ * for subsequent starts of ramaze in tests we finally have the :fake_start option that updates the Global but doesn't do much else, so that the original instance can just continue to work, i like the implementation... but our Global slowly gets stuffed :)
2625
+
2626
+ Wed Jan 24 20:26:16 JST 2007 manveru@weez-int.com
2627
+ * big change also to the way Global is set up, new method init_global on Ramaze that sets up the Global as usual but now also preserves the mappings set before the start of ramaze and just adds new mappings that you pass on start, gives the CrudHelper the ability to set up a mapping for your Store... you can change the name of the mapping with 'crud => YourStore, :name => "blah"' which maps to /blah...
2628
+
2629
+ Wed Jan 24 20:22:41 JST 2007 manveru@weez-int.com
2630
+ * rewrite of CrudHelper, now it only converts your Store into a kind of Controller, extends it with Trinity and defines the ::handle_request method (yay for ducktyping), it just sets up a proxy and you can define your own 'route', which request should send what method.
2631
+
2632
+ Wed Jan 24 14:50:15 JST 2007 manveru@weez-int.com
2633
+ * introduce custom morphs and add even more docs... ratio must be 2:1 by now :)
2634
+
2635
+ Tue Jan 23 21:09:16 JST 2007 manveru@weez-int.com
2636
+ * adding documentation for Morpher#transform and making the rescue a lot better.
2637
+
2638
+ Tue Jan 23 20:34:33 JST 2007 manveru@weez-int.com
2639
+ * rearrange tc_heper_form to resemble tc_morpher in regard to the require-failsafe
2640
+
2641
+ Tue Jan 23 20:32:32 JST 2007 manveru@weez-int.com
2642
+ * add template/ramaze/morpher and tests for it, it requires hpricot at the moment but got a graceful fallback that just won't process morphers... maybe i can whip up a pure ruby variant later, but the code using hpricot is just sweet :)
2643
+
2644
+ Tue Jan 23 20:30:41 JST 2007 manveru@weez-int.com
2645
+ * add test for headers in tc_request and add a method for raw_get that gives you the original object from open() back
2646
+
2647
+ Sun Jan 21 03:16:56 JST 2007 manveru@weez-int.com
2648
+ * remove cruft from helper/feed
2649
+
2650
+ Mon Jan 22 21:25:19 JST 2007 manveru@weez-int.com
2651
+ * CrudHelper and testcase
2652
+
2653
+ Mon Jan 22 19:56:21 JST 2007 manveru@weez-int.com
2654
+ * fixing tons of typos in the README
2655
+
2656
+ Mon Jan 22 19:46:42 JST 2007 manveru@weez-int.com
2657
+ * fail gently on require rubygems... we probably should remove that requires completly...
2658
+
2659
+ Mon Jan 22 17:39:32 JST 2007 manveru@weez-int.com
2660
+ * add some more tests for the previous bug (request.params instead of request.query)
2661
+
2662
+ Mon Jan 22 17:32:28 JST 2007 manveru@weez-int.com
2663
+ * fix request[key] and request[key] = value
2664
+
2665
+ Mon Jan 22 17:28:43 JST 2007 manveru@weez-int.com
2666
+ * add an example for the usage of Element in examples/element.rb
2667
+
2668
+ Mon Jan 22 14:45:16 JST 2007 manveru@weez-int.com
2669
+ * make tc_request pass again, request.body.read instead
2670
+
2671
+ Mon Jan 22 14:42:59 JST 2007 manveru@weez-int.com
2672
+ * fixing helper/feed
2673
+
2674
+ Mon Jan 22 14:40:10 JST 2007 manveru@weez-int.com
2675
+ * add exitstatus checking for all_tests
2676
+
2677
+ Mon Jan 22 14:37:25 JST 2007 manveru@weez-int.com
2678
+ * reimplementation of Element, making code a bit cleaner (but longer... and possibly harder to understand?) also adding some tests for <Element />
2679
+
2680
+ Fri Jan 19 21:39:52 JST 2007 manveru@weez-int.com
2681
+ * document lib/test/test_helper
2682
+
2683
+ Fri Jan 19 21:39:31 JST 2007 manveru@weez-int.com
2684
+ * document lib/test/all_tests
2685
+
2686
+ Fri Jan 19 21:39:15 JST 2007 manveru@weez-int.com
2687
+ * document tool/tidy
2688
+
2689
+ Fri Jan 19 21:38:55 JST 2007 manveru@weez-int.com
2690
+ * complete documentation of template/ramaze/element
2691
+
2692
+ Fri Jan 19 21:38:23 JST 2007 manveru@weez-int.com
2693
+ * add/remove documentation from snippets/kernel/self_method
2694
+
2695
+ Fri Jan 19 21:13:30 JST 2007 manveru@weez-int.com
2696
+ * change rake uncommented to rake undocumented
2697
+
2698
+ Fri Jan 19 21:12:26 JST 2007 manveru@weez-int.com
2699
+ * document all of Inform
2700
+
2701
+ Fri Jan 19 21:07:27 JST 2007 manveru@weez-int.com
2702
+ * document all of Trinity
2703
+
2704
+ Fri Jan 19 21:07:14 JST 2007 manveru@weez-int.com
2705
+ * document all of trinity/session
2706
+
2707
+ Fri Jan 19 21:06:56 JST 2007 manveru@weez-int.com
2708
+ * document all of trinity/response
2709
+
2710
+ Fri Jan 19 21:06:34 JST 2007 manveru@weez-int.com
2711
+ * document all of trinity/request
2712
+
2713
+ Fri Jan 19 21:05:42 JST 2007 manveru@weez-int.com
2714
+ * don't include the dot-graph here (yet), also show all methods (private, protected)
2715
+
2716
+ Fri Jan 19 20:10:25 JST 2007 manveru@weez-int.com
2717
+ * new rake todolist and the file it generates
2718
+
2719
+ Fri Jan 19 14:31:44 JST 2007 manveru@weez-int.com
2720
+ * add support for CDATA in FeedHelper, add some more tests and add from_xml to parse the class in again (just basic yet, no nested niceties)
2721
+
2722
+ Fri Jan 19 13:54:11 JST 2007 manveru@weez-int.com
2723
+ * extending FeedHelper and testcase, now attributes to tags are possible... (just for the enclosing class for now)
2724
+
2725
+ Fri Jan 19 13:32:57 JST 2007 manveru@weez-int.com
2726
+ * don't duplicate body by reading it, the user can always see it with request.body.read in the controller.
2727
+
2728
+ Fri Jan 19 00:13:58 JST 2007 manveru@weez-int.com
2729
+ * set the trinity-methods to private, we don't want them to be accessable
2730
+
2731
+ Fri Jan 19 00:11:04 JST 2007 manveru@weez-int.com
2732
+ * ignore memcached in the tests if it's not installed
2733
+
2734
+ Thu Jan 18 22:57:49 JST 2007 manveru@weez-int.com
2735
+ * fixing the controller-method-lookup
2736
+
2737
+ Thu Jan 18 12:24:54 JST 2007 m.fellinger@gmail.com
2738
+ * patching method-lookup for controllers... now it should be possible to expose public methods via helper-methods... have to test this first though.
2739
+
2740
+ Wed Jan 17 11:56:21 JST 2007 m.fellinger@gmail.com
2741
+ * rephrase message on startup...
2742
+
2743
+ Thu Jan 18 22:44:18 JST 2007 manveru@weez-int.com
2744
+ * remove the useless invalidate_cache method from CacheHelper
2745
+
2746
+ Thu Jan 18 22:43:14 JST 2007 manveru@weez-int.com
2747
+ * make rake record a bit less annoying ;)
2748
+
2749
+ Thu Jan 18 22:41:47 JST 2007 manveru@weez-int.com
2750
+ * add example/caching.rb
2751
+
2752
+ Thu Jan 18 22:28:07 JST 2007 manveru@weez-int.com
2753
+ * total reimplementation of caching, the CacheHelper now finally works (added testcase) for both actions (based on action(*params)) and values, this is a giant step for ramaze, since proper caching is a key to serving fast. The implementation might not be perfect yet, but some real-life testing will show if the current API and use-cases are worth anything, for now i'm very satisfied :)
2754
+
2755
+ Thu Jan 18 21:25:01 JST 2007 manveru@weez-int.com
2756
+ * test/tc_aspect.rb => test/tc_helper_aspect.rb
2757
+
2758
+ Thu Jan 18 20:43:16 JST 2007 manveru@weez-int.com
2759
+ * provide a little anonymous gulp-class to catch the stuff Og sends out in the testcase, finally the rake test looks pretty enough :)
2760
+
2761
+ Thu Jan 18 20:33:35 JST 2007 manveru@weez-int.com
2762
+ * add Kernel#silently, to temporarly turn off warnings on reassinging constants and use it in session.rb
2763
+
2764
+ Thu Jan 18 13:50:48 JST 2007 manveru@weez-int.com
2765
+ * add/remove some todos
2766
+
2767
+ Thu Jan 18 13:49:42 JST 2007 manveru@weez-int.com
2768
+ * introduce caching now for sessions as well, setting the adapter for tc_request back to mongrel since webrick doesn't implement PUT (fix that too)
2769
+
2770
+ Thu Jan 18 13:35:36 JST 2007 manveru@weez-int.com
2771
+ * add test for PUT, we need to find a way to do a DELETE-request, possibly with Net::HTTP? (also investigate other ways not to rely on curl for PUT)
2772
+
2773
+ Thu Jan 18 13:35:19 JST 2007 manveru@weez-int.com
2774
+ * rewrite tc_helper_feed
2775
+
2776
+ Thu Jan 18 13:34:58 JST 2007 manveru@weez-int.com
2777
+ * better implementation of the tc_global, it would fail on slow or busy systems
2778
+
2779
+ Thu Jan 18 13:34:29 JST 2007 manveru@weez-int.com
2780
+ * support PUT and DELETE
2781
+
2782
+ Thu Jan 18 13:33:57 JST 2007 manveru@weez-int.com
2783
+ * rewrite FeedHelper, still not functional, but a lot nicer to build XML from objects
2784
+
2785
+ Wed Jan 17 00:18:30 JST 2007 manveru@weez-int.com
2786
+ * provide some info about where the adapter attempts to connect... also fix debugging-output in tests
2787
+
2788
+ Wed Jan 17 00:18:06 JST 2007 manveru@weez-int.com
2789
+ * remove require of fastthread, they finally fixed it
2790
+
2791
+ Wed Jan 17 00:17:48 JST 2007 manveru@weez-int.com
2792
+ * add handling of multipart (file-uploads)
2793
+
2794
+ Mon Jan 15 21:17:42 JST 2007 manveru@weez-int.com
2795
+ * all_tests gives _much_ prettier and more informative output... still gotta use systemu for catching that nasty output from Og though...
2796
+
2797
+ Mon Jan 15 21:16:55 JST 2007 manveru@weez-int.com
2798
+ * redirect takes now a :status argument, for your very own redirect-status-code
2799
+
2800
+ Mon Jan 15 20:53:16 JST 2007 manveru@weez-int.com
2801
+ * fix the spaces ;)
2802
+
2803
+ Mon Jan 15 20:52:43 JST 2007 manveru@weez-int.com
2804
+ * run fix-end-spaces and add-copyright before rake record
2805
+
2806
+ Mon Jan 15 20:50:45 JST 2007 manveru@weez-int.com
2807
+ * rake fix-end-spaces, new task to remove spaces at end of line where not needed ;)
2808
+
2809
+ Mon Jan 15 20:50:29 JST 2007 manveru@weez-int.com
2810
+ * add a .each method to GlobalStruct
2811
+
2812
+ Mon Jan 15 20:48:21 JST 2007 manveru@weez-int.com
2813
+ * a much POLSer way of working with the bin/ramaze, options from the CLI are not overwritten by options in your app anymore... also ignores start from your app if you use this command.
2814
+
2815
+ Mon Jan 15 14:42:43 JST 2007 manveru@weez-int.com
2816
+ * add rake patchsize to show how many patches we got
2817
+
2818
+ Mon Jan 15 14:15:49 JST 2007 manveru@weez-int.com
2819
+ * nicer handling of SIGINT
2820
+
2821
+ Sun Jan 14 09:10:50 JST 2007 manveru@weez-int.com
2822
+ * add example/microwiki, like miniwiki but total reimplementation using Template::Ramaze, should do one for every templating-engine to show usage
2823
+
2824
+ Sun Jan 14 09:10:08 JST 2007 manveru@weez-int.com
2825
+ * run tests per default on port 7007 and only on 127.0.0.1, avoids interfering with running apps
2826
+
2827
+ Sun Jan 14 09:09:48 JST 2007 manveru@weez-int.com
2828
+ * improve shutdown
2829
+
2830
+ Sun Jan 14 09:09:24 JST 2007 manveru@weez-int.com
2831
+ * rearrange and add the Global parameters a little bit
2832
+
2833
+ Sun Jan 14 09:08:56 JST 2007 manveru@weez-int.com
2834
+ * provide a content_type for the error-page... old bug, need to add some tests for the errorpage...
2835
+
2836
+ Sun Jan 14 09:08:33 JST 2007 manveru@weez-int.com
2837
+ * clean the setting of response/request/sessions a little bit
2838
+
2839
+ Sun Jan 14 09:07:44 JST 2007 manveru@weez-int.com
2840
+ * CGI.unescape all parameters of GET/POST
2841
+
2842
+ Sun Jan 14 09:06:39 JST 2007 manveru@weez-int.com
2843
+ * use method_missing to catch all the transactions for YAML::Store, cleans the API quite a bit and provides more functionality
2844
+
2845
+ Sun Jan 14 07:28:57 JST 2007 manveru@weez-int.com
2846
+ tagged 0.0.5
2847
+
2848
+ Sun Jan 14 07:28:33 JST 2007 manveru@weez-int.com
2849
+ * Ramaze 0.0.5
2850
+
2851
+ Sun Jan 14 07:28:04 JST 2007 manveru@weez-int.com
2852
+ * update CHANGELOG
2853
+
2854
+ Sun Jan 14 07:27:20 JST 2007 manveru@weez-int.com
2855
+ * added changelog task that updates doc/CHANGELOG based on doc/changes.txt (from rake changes)
2856
+
2857
+ Sun Jan 14 07:26:15 JST 2007 manveru@weez-int.com
2858
+ * ran add-copyright once again
2859
+
2860
+ Sun Jan 14 07:20:50 JST 2007 manveru@weez-int.com
2861
+ * update README a bit
2862
+
2863
+ Sun Jan 14 06:53:17 JST 2007 manveru@weez-int.com
2864
+ * update and extend testcases for tc_cache
2865
+
2866
+ Sun Jan 14 06:52:54 JST 2007 manveru@weez-int.com
2867
+ * change Rakefile to sweep out cache.yaml and run rake clean after rake test
2868
+
2869
+ Sun Jan 14 06:49:14 JST 2007 manveru@weez-int.com
2870
+ * finally added and integrated caching, possible caches for now are YAML::Store, usual Hash (for one instance only) and MemCache, the respective objects are YAMLStoreCache, MemoryCache and MemcachedCache, you can set them with Global.cache = respective_class before startup, there is no functionality yet to change this during runtime, but you could Ramaze.const_set('Cache', YourClass.new) since Ramze::Cache is the usual instance. See the testcases and documentation for more information on the usage
2871
+
2872
+ Sat Jan 13 07:12:07 JST 2007 manveru@weez-int.com
2873
+ * add tc_feed_helper
2874
+
2875
+ Sat Jan 13 07:11:56 JST 2007 manveru@weez-int.com
2876
+ * add tc_cache
2877
+
2878
+ Sat Jan 13 07:11:28 JST 2007 manveru@weez-int.com
2879
+ * autoreload now has its own method on Ramaze and can be turned off by Global.autoreload = false
2880
+
2881
+ Sat Jan 13 07:10:51 JST 2007 manveru@weez-int.com
2882
+ * require 'ramaze/cache' (not yet used)
2883
+
2884
+ Sat Jan 13 07:10:20 JST 2007 manveru@weez-int.com
2885
+ * use Set instead of Array for the Controllers
2886
+
2887
+ Sat Jan 13 07:09:33 JST 2007 manveru@weez-int.com
2888
+ * finally fix the problem of having another application running (we can detect it now!)
2889
+
2890
+ Sat Jan 13 07:09:01 JST 2007 manveru@weez-int.com
2891
+ * use Set instead of Array in autoreload... makes it a bit nicer
2892
+
2893
+ Sat Jan 13 07:08:21 JST 2007 manveru@weez-int.com
2894
+ * fix FeedHelper, had one <feed> too much
2895
+
2896
+ Sat Jan 13 07:07:50 JST 2007 manveru@weez-int.com
2897
+ * first version of (real) cache
2898
+
2899
+ Thu Jan 11 23:00:53 JST 2007 manveru@weez-int.com
2900
+ * simple CacheHelper
2901
+
2902
+ Fri Jan 12 00:43:08 JST 2007 manveru@weez-int.com
2903
+ * fix Rakefile
2904
+
2905
+ Fri Jan 12 00:35:03 JST 2007 manveru@weez-int.com
2906
+ * add some more tasks, :record and :changes (record calls changes)
2907
+
2908
+ Fri Jan 12 00:28:19 JST 2007 manveru@weez-int.com
2909
+ * added tasks changes-xml and changes-text to the Rakefile, stores the current changes into textual format for further use :)
2910
+
2911
+ Tue Jan 9 14:19:11 JST 2007 manveru@weez-int.com
2912
+ * add the template for the tc_template_ramaze
2913
+
2914
+ Tue Jan 9 14:17:22 JST 2007 manveru@weez-int.com
2915
+ * support template-only actions for Template::Ramaze, now you can just put a file with the appropiate name in your template-directory and it doesn't need a seperate method in your controller... this does not work yet with multiple arguments
2916
+
2917
+ Mon Jan 8 22:38:33 JST 2007 manveru@weez-int.com
2918
+ * stop some squeaking of the wheel and added a little comment of the why
2919
+
2920
+ Mon Jan 8 17:38:21 JST 2007 manveru@weez-int.com
2921
+ * fix feed.rb _again_
2922
+
2923
+ Mon Jan 8 18:37:14 JST 2007 manveru@weez-int.com
2924
+ * check before undef method id in Feed::Bag, that makes it better suited for autoreload
2925
+
2926
+ Mon Jan 8 18:15:30 JST 2007 manveru@weez-int.com
2927
+ * escape the stuff we get (possibly dangerous)
2928
+
2929
+ Mon Jan 8 16:28:02 JST 2007 manveru@weez-int.com
2930
+ * serious extension of TCFormHelper
2931
+
2932
+ Mon Jan 8 16:27:46 JST 2007 manveru@weez-int.com
2933
+ * remove useless code in ramaze.rb
2934
+
2935
+ Mon Jan 8 16:26:47 JST 2007 manveru@weez-int.com
2936
+ * critical, log error when one happens on render! not just recall (which is a bad thing... we should keep a record to avoid loops in case of errors... horrible DoS :|
2937
+
2938
+ Mon Jan 8 16:26:33 JST 2007 manveru@weez-int.com
2939
+ * make error-output prettier
2940
+
2941
+ Mon Jan 8 16:25:49 JST 2007 manveru@weez-int.com
2942
+ * FormHelper now handles Date and works! (total rewrite of the option-handling)
2943
+
2944
+ Mon Jan 8 16:25:22 JST 2007 manveru@weez-int.com
2945
+ * add 'docs' in the FeedHelper :)
2946
+
2947
+ Mon Jan 8 16:24:57 JST 2007 manveru@weez-int.com
2948
+ * little prettification in dispatcher
2949
+
2950
+ Mon Jan 8 12:55:09 JST 2007 manveru@weez-int.com
2951
+ * fixed test (for rcov)
2952
+
2953
+ Mon Jan 8 12:54:19 JST 2007 manveru@weez-int.com
2954
+ * not yet completed rewrite of form-helper
2955
+
2956
+ Mon Jan 8 12:53:45 JST 2007 manveru@weez-int.com
2957
+ * extend FormHelper test
2958
+
2959
+ Mon Jan 8 11:44:52 JST 2007 manveru@weez-int.com
2960
+ * Session.current added
2961
+
2962
+ Mon Jan 8 11:44:27 JST 2007 manveru@weez-int.com
2963
+ * fix Inform, make output a bit nicer again
2964
+
2965
+ Mon Jan 8 11:43:24 JST 2007 manveru@weez-int.com
2966
+ * two fixes, use AuthHelper::PASSWORD rather than a preset one (still defaults to 'passwort')
2967
+
2968
+ Mon Jan 8 11:43:02 JST 2007 manveru@weez-int.com
2969
+ * inform on using cached version
2970
+
2971
+ Fri Jan 5 23:14:28 JST 2007 manveru@weez-int.com
2972
+ * fix OpenStruct#temp
2973
+
2974
+ Fri Jan 5 09:37:32 JST 2007 manveru@weez-int.com
2975
+ * changes in Template::Ramaze again, mostly passing filenames to eval
2976
+
2977
+ Fri Jan 5 06:35:43 JST 2007 manveru@weez-int.com
2978
+ * add a very simple AuthHelper
2979
+
2980
+ Sat Jan 6 00:10:47 JST 2007 manveru@weez-int.com
2981
+ * some comfy changes in Inform
2982
+
2983
+ Sat Jan 6 00:07:40 JST 2007 manveru@weez-int.com
2984
+ * first implementation of FeedHelper
2985
+
2986
+ Fri Jan 5 08:56:27 JST 2007 manveru@weez-int.com
2987
+ * add copyright to files that still lack it
2988
+
2989
+ Fri Jan 5 08:56:09 JST 2007 manveru@weez-int.com
2990
+ * rake add_copyright adds copyright to files that don't have it :)
2991
+
2992
+ Fri Jan 5 06:27:48 JST 2007 manveru@weez-int.com
2993
+ * stub for a TC to send a file.
2994
+
2995
+ Fri Jan 5 06:26:48 JST 2007 manveru@weez-int.com
2996
+ * patch the parsing of GET/POST parameters again... accidentially used escape instead of unescape :P
2997
+
2998
+ Fri Jan 5 06:26:07 JST 2007 manveru@weez-int.com
2999
+ * this little patch uses the ability of erubis to eval with a filename to give better error-reports
3000
+
3001
+ Thu Jan 4 03:47:10 JST 2007 manveru@weez-int.com
3002
+ * fixing POST-requests
3003
+
3004
+ Thu Jan 4 03:46:50 JST 2007 manveru@weez-int.com
3005
+ * add String.camel_case String.snake_case
3006
+
3007
+ Tue Jan 2 14:32:24 JST 2007 manveru@weez-int.com
3008
+ * smaller changes not really worth mentioning :P
3009
+
3010
+ Tue Jan 2 14:32:02 JST 2007 manveru@weez-int.com
3011
+ * pass on parameter-parsing to CGI.parse
3012
+
3013
+ Tue Jan 2 14:31:23 JST 2007 manveru@weez-int.com
3014
+ * set an instance variable instead of checking for arity of render-method (@hash) for Elements
3015
+
3016
+ Tue Jan 2 14:30:59 JST 2007 manveru@weez-int.com
3017
+ * fix form-helper in case there is no control
3018
+
3019
+ Tue Jan 2 14:30:36 JST 2007 manveru@weez-int.com
3020
+ * fix url for stylesheet of error-page
3021
+
3022
+ Tue Jan 2 10:03:21 JST 2007 manveru@weez-int.com
3023
+ * don't break this test if we got no Og... suboptimal :|
3024
+
3025
+ Tue Jan 2 10:01:17 JST 2007 manveru@weez-int.com
3026
+ * rewrite the usage of the render-method a bit to be clear :)
3027
+
3028
+ Mon Jan 1 19:55:47 JST 2007 manveru@weez-int.com
3029
+ * extending tc_session
3030
+
3031
+ Mon Jan 1 07:10:12 JST 2007 manveru@weez-int.com
3032
+ * fix ramaze for fastthread-require... and split shutdown into shutoff/shutdown for more granularity
3033
+
3034
+ Mon Jan 1 07:09:08 JST 2007 manveru@weez-int.com
3035
+ * add the rake uncommented task, this is a very simple method that shows you which methods are not documented yet (alpha phase, it's got loads of bugs... but is quite helpful already just as a rough overview)
3036
+
3037
+ Mon Jan 1 07:08:20 JST 2007 manveru@weez-int.com
3038
+ * modify all the testcases to fit the new ramaze-method inside context... also split tc_adapter into tc_adapter_mongrel/tc_adapter_webrick
3039
+
3040
+ Mon Jan 1 07:05:37 JST 2007 manveru@weez-int.com
3041
+ * huge change to the test_helper... no more ramaze{} but ramaze() - this will shield us from future pain and is also a lot nicer for integration into RSpec
3042
+
3043
+ Sun Dec 31 23:33:43 JST 2006 manveru@weez-int.com
3044
+ * fixing a rather serious bug in the Element, only consider an Element if you really find the class for it and this class responds to :render
3045
+
3046
+ Sun Dec 31 23:32:51 JST 2006 manveru@weez-int.com
3047
+ * big changes again in the form-helper... added loads of options, most are used in the testcases (that still have to be expanded, but they give a good idea of what is possible now)
3048
+
3049
+ Sun Dec 31 23:32:22 JST 2006 manveru@weez-int.com
3050
+ * added OpenStruct#temp to create temporary copies just with an updated table
3051
+
3052
+ Sat Dec 30 06:57:13 JST 2006 manveru@weez-int.com
3053
+ * support for element-parameters and some tests for it
3054
+
3055
+ Fri Dec 29 21:01:42 JST 2006 manveru@weez-int.com
3056
+ * forgot one Logger => Inform in autoreload
3057
+
3058
+ Fri Dec 29 14:00:20 JST 2006 manveru@weez-int.com
3059
+ * Ramaze::Logger => Ramaze::Inform - avoid clashes with the tons of other Logger thingies out there
3060
+
3061
+ Fri Dec 29 13:42:23 JST 2006 manveru@weez-int.com
3062
+ * fix tc_tidy
3063
+
3064
+ Fri Dec 29 13:25:19 JST 2006 manveru@weez-int.com
3065
+ * change from digest/sha1 to digest/sha2 - would someone explain me what this does?
3066
+
3067
+ Fri Dec 29 13:24:48 JST 2006 manveru@weez-int.com
3068
+ * fixing diverse issues with latest rubygems update
3069
+
3070
+ Tue Dec 26 07:01:15 JST 2006 manveru@weez-int.com
3071
+ * give the markaby-templates in the miniwiki-example the proper ext.
3072
+
3073
+ Mon Dec 25 03:52:03 JST 2006 manveru@weez-int.com
3074
+ * stop autoreload from failing from some mysterious bug...
3075
+
3076
+ Mon Dec 25 03:51:18 JST 2006 manveru@weez-int.com
3077
+ * fix the error-page to work with the new template-implementation... also remove the old Gestalt-code, it's in darcs anyway
3078
+
3079
+ Sat Dec 23 05:28:35 JST 2006 manveru@weez-int.com
3080
+ * blog/template/entry/list.rmze
3081
+
3082
+ Sat Dec 23 05:27:47 JST 2006 manveru@weez-int.com
3083
+ * snippet/kernel/rescue_require.rb
3084
+
3085
+ Sat Dec 23 05:26:17 JST 2006 manveru@weez-int.com
3086
+ * additional specification for tc_element
3087
+
3088
+ Sat Dec 23 05:26:04 JST 2006 manveru@weez-int.com
3089
+ * add test/tc_aspect
3090
+
3091
+ Sat Dec 23 05:24:58 JST 2006 manveru@weez-int.com
3092
+ * restructure test_helper for fastthread...
3093
+
3094
+ Sat Dec 23 05:24:38 JST 2006 manveru@weez-int.com
3095
+ * reimplementation of session... mainly better hash
3096
+
3097
+ Sat Dec 23 05:22:06 JST 2006 manveru@weez-int.com
3098
+ * typo
3099
+
3100
+ Sat Dec 23 05:21:15 JST 2006 manveru@weez-int.com
3101
+ * fix a serious bug with the HEREDOC in the template/ramaze... if we don't prefix a character it will break if the hash starts with a number (oddly enough, this happens very seldom)
3102
+
3103
+ Sat Dec 23 05:20:24 JST 2006 manveru@weez-int.com
3104
+ * add the helper/aspect
3105
+
3106
+ Sat Dec 23 05:20:10 JST 2006 manveru@weez-int.com
3107
+ * prepare the helper for addition of aspect
3108
+
3109
+ Sat Dec 23 05:18:53 JST 2006 manveru@weez-int.com
3110
+ * do not load fastthread in adapter/mongrel, if it has not been required so far by ramaze.rb it's too late already and we get only an annoying warning.
3111
+
3112
+ Sat Dec 23 05:18:12 JST 2006 manveru@weez-int.com
3113
+ * minor restructuring for ramaze.rb requires (mainly cause of fastthread)
3114
+
3115
+ Sat Dec 23 03:02:39 JST 2006 manveru@weez-int.com
3116
+ * fix problem for fastthread-require, it has to be loaded before everything else (especially mongrel and/or thread)
3117
+
3118
+ Wed Dec 20 16:33:40 JST 2006 manveru@weez-int.com
3119
+ * fix tc_template_ramaze for the restructuring (you don't have to call transform() in the controller anymore)
3120
+
3121
+ Wed Dec 20 16:33:11 JST 2006 manveru@weez-int.com
3122
+ * move the trap... now that i know that it uses continuations we should propably use a different technique...
3123
+
3124
+ Wed Dec 20 16:30:17 JST 2006 manveru@weez-int.com
3125
+ * make find_template private, fix the :transform_pipeline and add a little comment
3126
+
3127
+ Wed Dec 20 16:30:03 JST 2006 manveru@weez-int.com
3128
+ * fixing Element for passing parameters
3129
+
3130
+ Wed Dec 20 16:28:34 JST 2006 manveru@weez-int.com
3131
+ * restructuring of the ramaze-templating... looks a lot nicer and is a whole lot more modular... preparing to change for the use of render() in templates
3132
+
3133
+ Wed Dec 20 16:26:11 JST 2006 manveru@weez-int.com
3134
+ * simplify the dispatcher a little bit, splitting the fill_out into respond_file and resopnd_action, so we can use it from the Templating for relookup of actions on different controllers
3135
+
3136
+ Wed Dec 20 16:25:55 JST 2006 manveru@weez-int.com
3137
+ * little change in the README
3138
+
3139
+ Mon Dec 18 15:09:50 JST 2006 manveru@weez-int.com
3140
+ * adding trait[:transform_pipeline] to Ramaze... this still is very buggy :|
3141
+
3142
+ Mon Dec 18 15:08:51 JST 2006 manveru@weez-int.com
3143
+ * first implementation of ancestor_trait, which searches the ancestors for a trait... this should be made default in a bit
3144
+
3145
+ Mon Dec 18 15:07:49 JST 2006 manveru@weez-int.com
3146
+ * fixes some problems with autoreload when the path/file is b0rken
3147
+
3148
+ Mon Dec 18 14:24:03 JST 2006 manveru@weez-int.com
3149
+ * remove method_missing from Logger... it overwrites alle method_missings everywhere!!!
3150
+
3151
+ Mon Dec 18 14:21:32 JST 2006 manveru@weez-int.com
3152
+ * do not run setup_global in the bin/ramaze anymore, just pass them along... also fixes a problem for method-missing... error doesn't take multiple arguments (string/error-object only)
3153
+
3154
+ Fri Dec 15 22:18:43 JST 2006 manveru@weez-int.com
3155
+ * removed the Timout for the total ramaze{} block for testing, added Ramaze.shutdown for the teardown (still commented, it has nasty side-effects)
3156
+
3157
+ Fri Dec 15 22:16:47 JST 2006 manveru@weez-int.com
3158
+ * tiny updates to ramaze.rb, rewrite of the shutdown method... it still is very fragile though... Mongrel seems to do magic to threads beyond my knowledge
3159
+
3160
+ Fri Dec 15 22:15:44 JST 2006 manveru@weez-int.com
3161
+ * use the new Logger-capabilities to finally catch the stuff WEBrick has thrown long enough to STDOUT
3162
+
3163
+ Fri Dec 15 22:14:45 JST 2006 manveru@weez-int.com
3164
+ * Logger.puts is no longer private, added also << as an alias... additionally it can be sneaked into usual Logger-systems and take them over :P
3165
+
3166
+ Fri Dec 15 22:13:58 JST 2006 manveru@weez-int.com
3167
+ * a little bit nicer adapters by use of class << self ... also added a stop-method for future use
3168
+
3169
+ Fri Dec 15 22:12:10 JST 2006 manveru@weez-int.com
3170
+ * rewrite of the tc_global for the new structure
3171
+
3172
+ Fri Dec 15 22:11:00 JST 2006 manveru@weez-int.com
3173
+ * reimplementation of Global - should be a lot saner and simpler now ;)
3174
+
3175
+ Fri Dec 15 14:59:38 JST 2006 manveru@weez-int.com
3176
+ * do not require digest/sha1 in session.rb - it is not used for calculating sessions
3177
+
3178
+ Fri Dec 15 14:52:32 JST 2006 manveru@weez-int.com
3179
+ * this moves handle_elements into the ramaze/element.rb and names it transform, it handles arity of an render-method in the elements and passes optional parameters when given... this will give us a hard time when handling arbitary objects... :P
3180
+
3181
+ Fri Dec 15 14:51:27 JST 2006 manveru@weez-int.com
3182
+ * some minor changes regarding logging... there has still to be done a lot (esp webrick and logging to files)
3183
+
3184
+ Fri Dec 15 14:48:37 JST 2006 manveru@weez-int.com
3185
+ * this moves all global-stuff into the global.rb - makes ramaze.rb a lot nicer ;) - also added some more tests
3186
+
3187
+ Fri Dec 15 14:20:21 JST 2006 manveru@weez-int.com
3188
+ * patching Global further, we move the defaults in here since they only clutter the ramaze.rb and make handling difficult
3189
+
3190
+ Fri Dec 15 14:19:34 JST 2006 manveru@weez-int.com
3191
+ * do not raise on initialize of Global... it just looks odd ;)
3192
+
3193
+ Fri Dec 15 14:18:56 JST 2006 manveru@weez-int.com
3194
+ * do not timeout requests anymore...
3195
+
3196
+ Fri Dec 15 14:18:08 JST 2006 manveru@weez-int.com
3197
+ * give mongrel a proper way to handle logging
3198
+
3199
+ Thu Dec 14 22:37:16 JST 2006 manveru@weez-int.com
3200
+ * convert the action to a string since we might get symbols as well, and remove some other useless debugging-info
3201
+
3202
+ Thu Dec 14 22:36:40 JST 2006 manveru@weez-int.com
3203
+ * trying to use #{render} and it seems to work, mostly
3204
+
3205
+ Thu Dec 14 14:31:46 JST 2006 manveru@weez-int.com
3206
+ * removing some unneeded debugging-info from the template-file lookup
3207
+
3208
+ Thu Dec 14 14:31:01 JST 2006 manveru@weez-int.com
3209
+ * making the blog-example a good deal neater... next up: sidebar ;)
3210
+
3211
+ Wed Dec 13 22:22:54 JST 2006 manveru@weez-int.com
3212
+ * remove the test for the amrita-controller, it's not neccesary anymore since we have an own testsuite for it...
3213
+
3214
+ Wed Dec 13 22:18:59 JST 2006 manveru@weez-int.com
3215
+ * fixing the testcases for templates... for some templates we used to use $0 as root, which would be lethal would it be a real application and it was started with the bin/ramaze - i removed that oddity and require it to have the real path, not relative to the first file
3216
+
3217
+ Wed Dec 13 22:18:26 JST 2006 manveru@weez-int.com
3218
+ * simplify template/ramaze by inheriting from Template
3219
+
3220
+ Wed Dec 13 22:17:10 JST 2006 manveru@weez-int.com
3221
+ * move the Element in its own file... template/ramaze/element - which also introduces a default way of extending templating-engines with new classes
3222
+
3223
+ Wed Dec 13 22:16:30 JST 2006 manveru@weez-int.com
3224
+ * simplify template/markaby by inheriting from Template
3225
+
3226
+ Wed Dec 13 22:16:06 JST 2006 manveru@weez-int.com
3227
+ * simplify template/erubis by inheriting from Template
3228
+
3229
+ Wed Dec 13 22:15:31 JST 2006 manveru@weez-int.com
3230
+ * simplify the template/amrita2 by inheriting from Template
3231
+
3232
+ Wed Dec 13 22:14:28 JST 2006 manveru@weez-int.com
3233
+ * this introduces Ramaze::Template::Template - it's a really stupid name, but i couldn't come up with anything better... this is the first step in slacking down the templates (they are really not DRY anymore)
3234
+
3235
+ Wed Dec 13 22:12:30 JST 2006 manveru@weez-int.com
3236
+ * a neat little hack to see if an object is an 'instance' or not... though every object is an instance not every object responds to :new (which makes the distinction class/instance for me)
3237
+
3238
+ Wed Dec 13 22:11:46 JST 2006 manveru@weez-int.com
3239
+ * set the priority for the handling thread really high... should give it some advantages over the autoreload-thread in case of high load
3240
+
3241
+ Wed Dec 13 22:10:40 JST 2006 manveru@weez-int.com
3242
+ * equalize the testcases for templates with the prefix tc_template_ (just for ramaze, which was tc_template.rb till now)
3243
+
3244
+ Wed Dec 13 22:06:35 JST 2006 manveru@weez-int.com
3245
+ * small update to the Rakefile... testing task-dependencies :P
3246
+
3247
+ Wed Dec 13 19:09:51 JST 2006 manveru@weez-int.com
3248
+ * wielding all the power of ramaze, the blog-example is coming along very very well, it uses elements and form-helper now, you can add/delete/edit entries... more to come ;)
3249
+
3250
+ Wed Dec 13 19:09:12 JST 2006 manveru@weez-int.com
3251
+ * adding an Element for the blog-example... makes overall design a _lot_ nicer :)
3252
+
3253
+ Wed Dec 13 19:08:49 JST 2006 manveru@weez-int.com
3254
+ * giving the blog-example a 'nice' stylesheet
3255
+
3256
+ Wed Dec 13 19:07:59 JST 2006 manveru@weez-int.com
3257
+ * various fixes for the lookup of template/ramaze templates
3258
+
3259
+ Wed Dec 13 19:07:19 JST 2006 manveru@weez-int.com
3260
+ * added implementation of element-handling into the template/ramaze, will add lots of docs later as well.
3261
+
3262
+ Wed Dec 13 19:06:58 JST 2006 manveru@weez-int.com
3263
+ * added the basic structure of Element... maybe put this in its own file later
3264
+
3265
+ Wed Dec 13 19:05:44 JST 2006 manveru@weez-int.com
3266
+ * rewrite of form-helper... should rename it since it works only with Og currently
3267
+
3268
+ Wed Dec 13 19:05:07 JST 2006 manveru@weez-int.com
3269
+ * added a very basic testcases for how Element should work
3270
+
3271
+ Wed Dec 13 13:49:28 JST 2006 manveru@weez-int.com
3272
+ * do not use .rmze templates for markaby, only .mab - this should be done for the other templating-systems as well.
3273
+
3274
+ Wed Dec 13 13:48:48 JST 2006 manveru@weez-int.com
3275
+ * some experiments with the helper-facility in markaby... not really working yet, but we're getting there
3276
+
3277
+ Wed Dec 13 13:48:20 JST 2006 manveru@weez-int.com
3278
+ * do not rescue in markaby anymore, this is done already by markaby itself and it just obfuscates the error-report
3279
+
3280
+ Wed Dec 13 13:47:44 JST 2006 manveru@weez-int.com
3281
+ * better handling of the instance-variable-collection, due to the .flatten it used to break if it encounters and empty array as value
3282
+
3283
+ Wed Dec 13 13:46:38 JST 2006 manveru@weez-int.com
3284
+ * the error-page used to break when it meets a (eval) in the backtrace, make it just ignore them (may add some more information later)
3285
+
3286
+ Wed Dec 13 13:46:13 JST 2006 manveru@weez-int.com
3287
+ * make ramaze run again, the helper/form really messed things up due to some syntax-errors
3288
+
3289
+ Wed Dec 13 13:45:41 JST 2006 manveru@weez-int.com
3290
+ * unification of the examples/template
3291
+
3292
+ Wed Dec 13 13:44:59 JST 2006 manveru@weez-int.com
3293
+ * introducing examples/templates/template_markaby (not yet working due to some odd bugs using helpers)
3294
+
3295
+ Tue Dec 12 21:52:15 JST 2006 manveru@weez-int.com
3296
+ * now, that's finally a nice README :)
3297
+
3298
+ Tue Dec 12 20:44:44 JST 2006 manveru@weez-int.com
3299
+ * fixing the tests for the templates to use the template_root
3300
+
3301
+ Tue Dec 12 20:43:48 JST 2006 manveru@weez-int.com
3302
+ * this fixes the template-lookup for ramaze, it's now also possible to use trait :template_root in the controller, please read the rdoc for more infos and a small example
3303
+
3304
+ Tue Dec 12 20:43:02 JST 2006 manveru@weez-int.com
3305
+ * small cosmetic update
3306
+
3307
+ Tue Dec 12 00:26:55 JST 2006 manveru@weez-int.com
3308
+ * LOTS of testcases added for markaby
3309
+
3310
+ Tue Dec 12 00:24:57 JST 2006 manveru@weez-int.com
3311
+ * this patch makes Template::Ramaze some magnitudes faster and adds some better security for the case someone is funny and tries to hack the HEREDOC
3312
+
3313
+ Tue Dec 12 00:24:29 JST 2006 manveru@weez-int.com
3314
+ * major upgrade for Markaby, should be finally running now :)
3315
+
3316
+ Tue Dec 12 00:23:33 JST 2006 manveru@weez-int.com
3317
+ * class-lookup in the error-template was a bit wrong
3318
+
3319
+ Tue Dec 12 00:23:19 JST 2006 manveru@weez-int.com
3320
+ * added Error::Template
3321
+
3322
+ Mon Dec 11 23:27:02 JST 2006 manveru@weez-int.com
3323
+ * a little beautification :P
3324
+
3325
+ Mon Dec 11 23:26:04 JST 2006 manveru@weez-int.com
3326
+ * lots of additions/changes in the tc_helper_link to reflect the changes made
3327
+
3328
+ Mon Dec 11 23:25:29 JST 2006 manveru@weez-int.com
3329
+ * set the @action instance-variable for use in templates (the examples use it quite a bit, so i thought it would be useful)
3330
+
3331
+ Mon Dec 11 23:25:03 JST 2006 manveru@weez-int.com
3332
+ * require helper.rb in template.rb
3333
+
3334
+ Mon Dec 11 23:24:32 JST 2006 manveru@weez-int.com
3335
+ * Trinity -> Helper update for template/stupid (no idea if we need that one at all anymore...)
3336
+
3337
+ Mon Dec 11 23:23:22 JST 2006 manveru@weez-int.com
3338
+ * a little bit of moving around in Template::Ramaze, same changes for Helper instead of Trinity and removal of the helper-method for use in other templating-systems
3339
+
3340
+ Mon Dec 11 23:22:06 JST 2006 manveru@weez-int.com
3341
+ * Ramaze::Helper instead of Trinity for template/markaby
3342
+
3343
+ Mon Dec 11 23:20:40 JST 2006 manveru@weez-int.com
3344
+ * this adds the transform-method for conformity to Template::Erubis, also improved the template-lookup quite a bit and using Ramaze::Helper instead of Trinity
3345
+
3346
+ Mon Dec 11 23:19:49 JST 2006 manveru@weez-int.com
3347
+ * use Ramaze::Helper instead of Trinity in template/amrita2
3348
+
3349
+ Mon Dec 11 23:18:42 JST 2006 manveru@weez-int.com
3350
+ * further improvments in the LinkHelper, not only can you now just pass self instead of self.class, but it also supports get-parameters in the ?foo=bar style - link(self, :foo => :bar)
3351
+
3352
+ Mon Dec 11 23:18:24 JST 2006 manveru@weez-int.com
3353
+ * use Helper instead of Trinity in Ramaze::Controller
3354
+
3355
+ Mon Dec 11 23:17:39 JST 2006 manveru@weez-int.com
3356
+ * this puts the helper-method into its own module that also includes Trinity for convinience
3357
+
3358
+ Mon Dec 11 23:15:29 JST 2006 manveru@weez-int.com
3359
+ * added examples for templating in ramaze and erubis, more to come
3360
+
3361
+ Mon Dec 11 14:59:11 JST 2006 manveru@weez-int.com
3362
+ * added template/markaby with some tests (not all pass yet... lunchtime is just too short :)
3363
+
3364
+ Sun Dec 10 18:28:41 JST 2006 manveru@weez-int.com
3365
+ * added testcase for link :title
3366
+
3367
+ Sun Dec 10 18:27:59 JST 2006 manveru@weez-int.com
3368
+ * change from load()ing the helpers to require()ing them, so we can update them via autoreload as well (load doesn't add to the $LOADED_FEATURES...)
3369
+
3370
+ Sun Dec 10 18:27:18 JST 2006 manveru@weez-int.com
3371
+ * added redirect_referer to the RedirectHelper - it redirects you directly to where you come from.
3372
+
3373
+ Sat Dec 9 01:57:38 JST 2006 manveru@weez-int.com
3374
+ * small fix for the LinkHelper - would't use :title proper if given more than '/'
3375
+
3376
+ Sat Dec 9 01:56:24 JST 2006 manveru@weez-int.com
3377
+ * this is the first stub for the new FormHelper, no real documentation or functionality here yet, mostly a summary of ideas that i need to reevaluate [ok... in reality my notebook ran out of power ;]
3378
+
3379
+ Sat Dec 9 01:54:51 JST 2006 manveru@weez-int.com
3380
+ * vast extension of the example/blog - added some templates and stuff to the controller, this will use the FormHelper (that i will stub soon)
3381
+
3382
+ Sat Dec 9 01:49:48 JST 2006 manveru@weez-int.com
3383
+ * added a simple testsuite for the blog-example, nothing too heavy yet.
3384
+
3385
+ Thu Dec 7 23:09:10 JST 2006 manveru@weez-int.com
3386
+ * oops, almost forgot to check in this file :)
3387
+
3388
+ Thu Dec 7 22:33:53 JST 2006 manveru@weez-int.com
3389
+ * a new error-page, totally implemented in Template::Ramaze instead of Gestalt, left the Gestalt one in there commented, not sure what i should do with it... use it as an example? (might horrify people though ;)
3390
+
3391
+ Thu Dec 7 22:32:38 JST 2006 manveru@weez-int.com
3392
+ * Template::Ramaze.transform now takes an optional binding, gotta make this API nicer, since it also takes optional ivs... maybe :binding => binding, :ivs => {} - oh, and commented the nasty #[] for the time being
3393
+
3394
+ Thu Dec 7 21:09:57 JST 2006 manveru@weez-int.com
3395
+ * use STATUS_CODE lookup instead of the direct error-codes
3396
+
3397
+ Thu Dec 7 21:02:35 JST 2006 manveru@weez-int.com
3398
+ * tc_session should use the new get/eget of Context
3399
+
3400
+ Thu Dec 7 21:02:25 JST 2006 manveru@weez-int.com
3401
+ * tc_helper_stack - added a logged_in? to the controller and doing more extensive testing for get and post using the new abilities of Context
3402
+
3403
+ Thu Dec 7 20:58:36 JST 2006 manveru@weez-int.com
3404
+ * Context now uses eget/get instead of reqest/erequest to be look more like get(); also added post/epost, this is lots of fun ahead :)
3405
+
3406
+ Thu Dec 7 20:35:20 JST 2006 manveru@weez-int.com
3407
+ * added test/tc_helper_stack - this is tests the new call/answer behaviour that works just like the one in nitro. please check the test for further understanding.
3408
+
3409
+ Thu Dec 7 20:34:31 JST 2006 manveru@weez-int.com
3410
+ * moving Context into test_helper - it is used to mock sessions
3411
+
3412
+ Thu Dec 7 20:33:15 JST 2006 manveru@weez-int.com
3413
+ * changing link_raw to R - you can also set titles now with link(:foo, :title => 'foo')
3414
+
3415
+ Thu Dec 7 19:58:49 JST 2006 manveru@weez-int.com
3416
+ * split tc_helper into tc_helper_redirect and tc_helper_link
3417
+
3418
+ Thu Dec 7 19:36:27 JST 2006 manveru@weez-int.com
3419
+ * huuge update for the testcases... to make it more testing-friendly we gotta use different controller-classes for each testcase, also the update of Global didn't allow a change of the used adapter, this is fixed now.
3420
+
3421
+ Thu Dec 7 19:36:10 JST 2006 manveru@weez-int.com
3422
+ * update todo for template/ramaze
3423
+
3424
+ Thu Dec 7 19:35:34 JST 2006 manveru@weez-int.com
3425
+ * remove todo 'add host' for webrick, we do that since ages already ;)
3426
+
3427
+ Thu Dec 7 19:34:59 JST 2006 manveru@weez-int.com
3428
+ * some addtional changes... i really gotta fix the rcov-task...
3429
+
3430
+ Thu Dec 7 19:32:26 JST 2006 manveru@weez-int.com
3431
+ * make output of rake todo a little bit nicer
3432
+
3433
+ Wed Dec 6 22:41:57 JST 2006 manveru@weez-int.com
3434
+ tagged 0.0.4
3435
+
3436
+ Wed Dec 6 22:41:08 JST 2006 manveru@weez-int.com
3437
+ * dump version to 0.0.4 the first really nice and stable release
3438
+
3439
+ Wed Dec 6 22:40:05 JST 2006 manveru@weez-int.com
3440
+ * don't pretty-inspect Global at startup anymore
3441
+
3442
+ Wed Dec 6 22:38:45 JST 2006 manveru@weez-int.com
3443
+ * we now have a proper interaction with Global via the bin/ramaze
3444
+
3445
+ Usage: ramaze [switches] startfile [arguments]
3446
+ -a, --adapter=ADAPTER select an adapter [mongrel|webrick]
3447
+ -m, --mongrel use mongrel to process requests
3448
+ -w, --webrick the default
3449
+
3450
+ --mode=LEVEL set the running-mode
3451
+ -b, --benchmark full logging with benchmarks, autoreload 5
3452
+ -d, --debug the default, full logging, autoreload 5
3453
+ -t, --stage log infos/errors, autoreload 10
3454
+ -l, --live log errors, autoreload 20
3455
+ -s, --silent no logging, autoreload 40
3456
+
3457
+ -o, --host which host should ramaze listen for requests
3458
+ default is 0.0.0.0
3459
+ -p, --port what port should ramaze use
3460
+ default is 7000
3461
+
3462
+ -n, --no-errorpage don't use the default errorpage of ramaze
3463
+ helpful if you want to make sure noone can
3464
+ ever see your code by accident or for testing
3465
+ --template-root set a custom template-root for the whole
3466
+ application, please note that ~ is not
3467
+ expanded to your home-directory
3468
+ --autoreload=N set how frequent ramaze should search for
3469
+ updated files in your application
3470
+ default depends on the (-mode)
3471
+ -r, --run-loose don't take control after startup.
3472
+ this is useful for testcases.
3473
+ --cache use the simple caching based on the signature
3474
+ of your requests (experimental)
3475
+ --tidy run Tool::Tidy over text/html output
3476
+
3477
+ -h, --help print this help
3478
+ -v, --version print the version
3479
+ -c, --copyright print the copyrith
3480
+
3481
+ Please report bugs to <m.fellinger at gmail.com>
3482
+
3483
+
3484
+ Wed Dec 6 22:38:13 JST 2006 manveru@weez-int.com
3485
+ * added doc/COPYING and doc/COPYING.ja from the ruby-distribution
3486
+
3487
+ Wed Dec 6 22:37:08 JST 2006 manveru@weez-int.com
3488
+ * added copyright to all .rb files
3489
+
3490
+ Wed Dec 6 20:30:34 JST 2006 manveru@weez-int.com
3491
+ * improved tc_controller a little bit
3492
+
3493
+ Wed Dec 6 20:30:12 JST 2006 manveru@weez-int.com
3494
+ * tc_adapter should use get() instead of its own calling of open
3495
+
3496
+ Wed Dec 6 20:29:55 JST 2006 manveru@weez-int.com
3497
+ * default test-adapter is mongrel again, enables out-of-the-box testing
3498
+
3499
+ Wed Dec 6 20:27:10 JST 2006 manveru@weez-int.com
3500
+ * wrapping webricks server.start in a Thread.new{} again, this provides proper handling of it again. also the default-response status is now 500
3501
+
3502
+ Wed Dec 6 20:26:43 JST 2006 manveru@weez-int.com
3503
+ * removed the params/parse_params from adapter/webrick they will be handled in trinity/request now
3504
+
3505
+ Wed Dec 6 20:22:01 JST 2006 manveru@weez-int.com
3506
+ * moved the get?/post? methods into trinity/request also added put? and delete? for REST
3507
+
3508
+ Tue Dec 5 15:36:36 JST 2006 manveru@weez-int.com
3509
+ * add tests for private methods to the controller
3510
+
3511
+ Tue Dec 5 15:36:15 JST 2006 manveru@weez-int.com
3512
+ * raise error if no template is found in amrita2
3513
+
3514
+ Tue Dec 5 15:36:04 JST 2006 manveru@weez-int.com
3515
+ * small typo in the blog-template
3516
+
3517
+ Mon Dec 4 23:11:48 JST 2006 manveru@weez-int.com
3518
+ * a rather huge structural change, we extract Trinity from Dispatcher and give it its own file, controller subsequently only exists as an optional Controller-namespace and to identify Controllers. moved request/response/session into their own trinity-directory. also changed the require to something plain, simple and maybe stupid, but every parser and reader will thank me ;)
3519
+
3520
+ Mon Dec 4 22:47:49 JST 2006 manveru@weez-int.com
3521
+ * added extensions .ephp .ec .ejava .escheme .eprl .ejs - i have no idea yet how to implement them, but as a simple reminder ;)
3522
+
3523
+ Mon Dec 4 22:42:08 JST 2006 manveru@weez-int.com
3524
+ * change default-mode for tests to :debug
3525
+
3526
+ Mon Dec 4 22:41:52 JST 2006 manveru@weez-int.com
3527
+ * do not catch errors in the test_helper anymore, everything seems fine now
3528
+
3529
+ Mon Dec 4 22:41:16 JST 2006 manveru@weez-int.com
3530
+ * changed the require-path to match the new require-style inside the testcases
3531
+
3532
+ Mon Dec 4 22:40:30 JST 2006 manveru@weez-int.com
3533
+ * removed the non-working requireing of each testcase (which was previously commented out anyway)
3534
+
3535
+ Mon Dec 4 22:40:10 JST 2006 manveru@weez-int.com
3536
+ * added Template::Erubis
3537
+
3538
+ Mon Dec 4 22:39:04 JST 2006 manveru@weez-int.com
3539
+ * rewrote Template::Amrita2 in the way the implementation of Erubis worked out, a lot cleaner and straight-forward. will have to minimize the overhead of find_file though.
3540
+
3541
+ Mon Dec 4 22:34:00 JST 2006 manveru@weez-int.com
3542
+ * moved the controller out of the blog/main.rb to blog/src/controller.rb and added an EntryController to take advantage of Og
3543
+
3544
+ Mon Dec 4 22:32:34 JST 2006 manveru@weez-int.com
3545
+ * added an index.rmze with the first extensive ramaze-template to the blog-example - it's supposed to list all the entries
3546
+
3547
+ Mon Dec 4 22:28:12 JST 2006 manveru@weez-int.com
3548
+ * prepare for erubis
3549
+
3550
+ Mon Dec 4 22:27:39 JST 2006 manveru@weez-int.com
3551
+ * avoid aliasing Kernel#method twice
3552
+
3553
+ Mon Dec 4 22:27:15 JST 2006 manveru@weez-int.com
3554
+ * added tc_template_erubis and it passes :)
3555
+
3556
+ Mon Dec 4 22:26:55 JST 2006 manveru@weez-int.com
3557
+ * moved tc_amrita2 to test/
3558
+
3559
+ Mon Dec 4 22:26:37 JST 2006 manveru@weez-int.com
3560
+ * sane trait for the controller
3561
+
3562
+ Mon Dec 4 22:25:34 JST 2006 manveru@weez-int.com
3563
+ * change all the requires to require a bit different... (insiede test only - it is now required that you run the tests from ../test which gives the whole thing a bit more substance)
3564
+
3565
+ Mon Dec 4 22:24:55 JST 2006 manveru@weez-int.com
3566
+ * add a simple template for erubis (standard-extension .rhtml)
3567
+
3568
+ Mon Dec 4 22:23:49 JST 2006 manveru@weez-int.com
3569
+ * rearrange the stuff inside test/template - move the tests in the basedir and use it soley for templates, less confusion, more efficient (just a bit uglier filenames :)
3570
+
3571
+ Mon Dec 4 22:22:51 JST 2006 manveru@weez-int.com
3572
+ * give the standard-return-code of 500 if none is set.
3573
+
3574
+ Mon Dec 4 08:57:15 JST 2006 manveru@weez-int.com
3575
+ * added a rcov-task to Rakefil and changed from catching only timeout to everything in the test_helper
3576
+
3577
+ Fri Dec 1 22:59:19 JST 2006 manveru@weez-int.com
3578
+ * changed all testcases from usage of #[] to #{}
3579
+
3580
+ Fri Dec 1 22:59:00 JST 2006 manveru@weez-int.com
3581
+ * extended the tc_template
3582
+
3583
+ Fri Dec 1 22:58:07 JST 2006 manveru@weez-int.com
3584
+ * LOADS of documentation for the template/ramaze and better implementation of the transform (avoiding easily used variables)
3585
+
3586
+ Fri Dec 1 22:57:24 JST 2006 manveru@weez-int.com
3587
+ * minor patch for the case that autoreload doesn't get a valid interval
3588
+
3589
+ Fri Dec 1 22:57:07 JST 2006 manveru@weez-int.com
3590
+ * documentation for helpers
3591
+
3592
+ Fri Dec 1 21:43:02 JST 2006 manveru@weez-int.com
3593
+ * added a pretty good coverage of the helpers in test/tc_helper.rb
3594
+
3595
+ Fri Dec 1 21:42:12 JST 2006 manveru@weez-int.com
3596
+ * output of <?r ?> is no longer considered worthwhile, would have strange effects on arr.each or some other iterators who return self
3597
+
3598
+ Fri Dec 1 21:41:10 JST 2006 manveru@weez-int.com
3599
+ * adding a helper method to Template::Ramaze, use it like: helper :link, :redirect
3600
+
3601
+ Fri Dec 1 21:35:29 JST 2006 manveru@weez-int.com
3602
+ * redirect is now a helper too
3603
+
3604
+ like LinkHelper, but even simpler
3605
+
3606
+ RedirectHelper actually takes advantage of LinkHelper.link_raw to build the links
3607
+ it redirects to.
3608
+ It doesn't do much else than this:
3609
+ setting a status-code of 303 and a head['Location'] = link
3610
+ returning some nice text for visitors who insist on ignoring those hints :P
3611
+
3612
+ example of usage:
3613
+ redirect MainController
3614
+ redirect MainController, :foo
3615
+ redirect 'foo/bar'
3616
+
3617
+ still todo:
3618
+ - setting custom status-code, it ignores any preset ones at the moment
3619
+ - maybe some more options, like a delay
3620
+
3621
+ Fri Dec 1 21:24:35 JST 2006 manveru@weez-int.com
3622
+ * added the LinkHelper, the first of the helpers
3623
+
3624
+ it is included into the Template::Ramaze by default
3625
+
3626
+ this helper tries to get along without any major magic, the only 'magic'
3627
+ thing is that it looks up controller-paths if you pass it a controller
3628
+ the text shown is always the last segmet of the finished link from split('/')
3629
+
3630
+ usage is pretty much shown in test/tc_helper
3631
+ however, to give you some idea of how it actually works, some examples:
3632
+
3633
+ link MainController, :foo #=> '<a href="/foo">foo</a>'
3634
+ link MinorController, :foo #=> '<a href="/minor/foo">foo</a>'
3635
+ link MinorController, :foo, :bar #=> '<a href="/minor/foo/bar">bar</a>'
3636
+ link MainController, :foo, :raw => true #=> '/foo'
3637
+
3638
+ link_raw MainController, :foo #=> '/foo'
3639
+ link_raw MinorController, :foo #=> '/minor/foo'
3640
+ link_raw MinorController, :foo, :bar #=> '/minor/foo/bar'
3641
+
3642
+ still todo:
3643
+ - handling of no passed parameters
3644
+ - setting of a custom link-title, possibly images as well
3645
+ - setting of id or class
3646
+ - taking advantae of Gestalt to build links
3647
+ - lots of other minor niceties, for the moment i'm only concerned to keep
3648
+ it as simple as possible
3649
+
3650
+
3651
+ Fri Dec 1 21:23:19 JST 2006 manveru@weez-int.com
3652
+ * total rewrite of the mongrel-adapter, passing around less stuff and making it a lot more readable
3653
+
3654
+ Fri Dec 1 21:20:54 JST 2006 manveru@weez-int.com
3655
+ * major update to the blog-example, it now works with Og and has a cleaner structure, also some simple templating and multiple controllers
3656
+
3657
+ Fri Dec 1 21:20:23 JST 2006 manveru@weez-int.com
3658
+ * update rake clean to delete leftover vim-tempfiles and data.db
3659
+
3660
+ Thu Nov 30 21:53:41 JST 2006 manveru@weez-int.com
3661
+ * commenting out the testcase for #[]! - this should not be used anymore, for now.
3662
+
3663
+ Thu Nov 30 21:52:52 JST 2006 manveru@weez-int.com
3664
+ * remark about the odd behaviour of the return of a POST, suddenly it just didn't fail anymore, and i have no idea how to reproduce it.
3665
+
3666
+ Thu Nov 30 21:52:08 JST 2006 manveru@weez-int.com
3667
+ * the raise just changes too often, this time i just check for raise - maybe we get more consistent behaviour later on, but for now i'll let it be
3668
+
3669
+ Thu Nov 30 21:51:52 JST 2006 manveru@weez-int.com
3670
+ * extended tc_global
3671
+
3672
+ Thu Nov 30 21:51:20 JST 2006 manveru@weez-int.com
3673
+ * the test_helper methods have now sane timeouts to make things fail faster
3674
+
3675
+ Thu Nov 30 21:50:47 JST 2006 manveru@weez-int.com
3676
+ * just another way to run the tests, commented due to non-functionality
3677
+
3678
+ Thu Nov 30 21:50:10 JST 2006 manveru@weez-int.com
3679
+ * marking the adapter-thread with [:task] = :adapter to make killing easier
3680
+
3681
+ Thu Nov 30 21:49:37 JST 2006 manveru@weez-int.com
3682
+ * give Global responsibility for update itself, makes ramaze.rb cleaner
3683
+
3684
+ Thu Nov 30 21:49:15 JST 2006 manveru@weez-int.com
3685
+ * comment about the bad behaviour of #[] in templates
3686
+
3687
+ Thu Nov 30 21:48:21 JST 2006 manveru@weez-int.com
3688
+ * marking the autoreload-thread with the new Thread.current[:task] = :autoreload - to make them easier to identify... all threads in Ramaze should have a [:task] from now on
3689
+
3690
+ Thu Nov 30 21:47:34 JST 2006 manveru@weez-int.com
3691
+ * give poor request a request.params for get/post parameters (post has precendence)
3692
+
3693
+ Thu Nov 30 21:47:09 JST 2006 manveru@weez-int.com
3694
+ * replacing Global with something totally new, we should create dynamic methods though to get some minor speedup
3695
+
3696
+ Thu Nov 30 21:45:03 JST 2006 manveru@weez-int.com
3697
+ * do not use start in examples/simple
3698
+
3699
+ Thu Nov 30 15:53:56 JST 2006 manveru@weez-int.com
3700
+ * embedding tc_amrita2 correctly into a ramaze{} block
3701
+
3702
+ Thu Nov 30 15:53:47 JST 2006 manveru@weez-int.com
3703
+ * typo
3704
+
3705
+ Thu Nov 30 15:53:08 JST 2006 manveru@weez-int.com
3706
+ * adding net/http to test_helper and make some text nicer ;)
3707
+
3708
+ Thu Nov 30 15:52:33 JST 2006 manveru@weez-int.com
3709
+ * this is a fix in case some testcase just hangs, at least you will know which one does
3710
+
3711
+ Thu Nov 30 15:51:34 JST 2006 manveru@weez-int.com
3712
+ * finally fixed the adapter-startup, at least for mongrel... still very weird issues with webrick
3713
+
3714
+ Thu Nov 30 15:50:49 JST 2006 manveru@weez-int.com
3715
+ * start a new process on rake test, avoids possible side-effects
3716
+
3717
+ Thu Nov 30 14:41:52 JST 2006 manveru@weez-int.com
3718
+ * patching the testcases to fit in the new way of testing
3719
+
3720
+ Thu Nov 30 14:40:58 JST 2006 manveru@weez-int.com
3721
+ * we add a nice testing-block called ramaze, you pass it a hash for startup-options and a block and it does setup/teardown... specify-driven would take too long and is too verbose
3722
+
3723
+ Thu Nov 30 14:40:42 JST 2006 manveru@weez-int.com
3724
+ * nicer output of all_tests
3725
+
3726
+ Thu Nov 30 14:39:57 JST 2006 manveru@weez-int.com
3727
+ * this should improve the startup-behaviour for the adapters... there must be bugs lurking in there though.
3728
+
3729
+ Thu Nov 30 14:38:54 JST 2006 manveru@weez-int.com
3730
+ * update the global nicer on startup, we have no idea what the user passes or has set already, so be very careful as well (not you, ramaze)
3731
+
3732
+ Thu Nov 30 14:38:14 JST 2006 manveru@weez-int.com
3733
+ * kill all threads except for main on exit... i need some way to get out nicely without exit...
3734
+
3735
+ Thu Nov 30 14:37:25 JST 2006 manveru@weez-int.com
3736
+ * this is a major improvment for the Template::Ramaze - passing (almost) all tests, just slight problems with #[] still
3737
+
3738
+ Thu Nov 30 14:36:55 JST 2006 manveru@weez-int.com
3739
+ * slightly more expressive code in response-creation
3740
+
3741
+ Thu Nov 30 14:36:33 JST 2006 manveru@weez-int.com
3742
+ * no thread in thread anymore for webrick
3743
+
3744
+ Thu Nov 30 14:35:07 JST 2006 manveru@weez-int.com
3745
+ * just start up ramaze, we ignore the problem that it might be started already since we never can be sure and people would partially build trust on it despite that fact - so as a rule, don't start your files manually if you want bin/ramaze to start it
3746
+
3747
+ Wed Nov 29 17:44:01 JST 2006 manveru@weez-int.com
3748
+ * added the templates for the tc_template in test/template/
3749
+
3750
+ Wed Nov 29 15:22:05 JST 2006 manveru@weez-int.com
3751
+ * major change in the templating... now using <%= %> <% %> <?r ?> #[] - this needs some extensive testing and is not fully done yet, but getting there...
3752
+
3753
+ Wed Nov 29 15:21:43 JST 2006 manveru@weez-int.com
3754
+ * added tc_template
3755
+
3756
+ Tue Nov 28 21:44:22 JST 2006 manveru@weez-int.com
3757
+ * this improves the templating a tiny bit... however #[]! still fails, we need some serious regex-magic here.
3758
+
3759
+ Tue Nov 28 21:33:21 JST 2006 manveru@weez-int.com
3760
+ * saner tc_store
3761
+
3762
+ Tue Nov 28 21:32:32 JST 2006 manveru@weez-int.com
3763
+ * improved templating further, now, if a template-file is given and returns something useful we discard the stuff from the controller-method and use that instead
3764
+
3765
+ Tue Nov 28 21:32:09 JST 2006 manveru@weez-int.com
3766
+ * touch the db before initializing the default-store
3767
+
3768
+ Tue Nov 28 21:31:49 JST 2006 manveru@weez-int.com
3769
+ * minor patch for mongrel-cookies
3770
+
3771
+ Tue Nov 28 20:57:59 JST 2006 manveru@weez-int.com
3772
+ * added a mostly-stub for the new blog-example
3773
+
3774
+ Tue Nov 28 20:57:13 JST 2006 manveru@weez-int.com
3775
+ * added the default-store, this is just a very simple wrapper over YAML::Store and doesn't offer anything really... just to satisfy the tests
3776
+
3777
+ Tue Nov 28 20:56:20 JST 2006 manveru@weez-int.com
3778
+ * move the test-request-methods over from test_get/test_post/request to get/post
3779
+
3780
+ Tue Nov 28 20:54:56 JST 2006 manveru@weez-int.com
3781
+ * update to test_helper, now using get/post instead of test_get/test_post or request
3782
+
3783
+ Tue Nov 28 20:53:26 JST 2006 manveru@weez-int.com
3784
+ * Template::Ramaze now supports extremly simple templating with #[expr] - more to come
3785
+
3786
+ Tue Nov 28 20:53:13 JST 2006 manveru@weez-int.com
3787
+ * fixing sessions for webrick
3788
+
3789
+ Tue Nov 28 20:52:54 JST 2006 manveru@weez-int.com
3790
+ * updated README with coderay-info
3791
+
3792
+ Tue Nov 28 20:51:22 JST 2006 manveru@weez-int.com
3793
+ * don't be so verbose about missing coderay, if someone wants it we should mention it in the README
3794
+
3795
+ Tue Nov 28 20:49:31 JST 2006 manveru@weez-int.com
3796
+ * moving from ann to trait
3797
+
3798
+ Tue Nov 28 20:47:37 JST 2006 manveru@weez-int.com
3799
+ * just a FIXME
3800
+
3801
+ Tue Nov 28 20:45:48 JST 2006 manveru@weez-int.com
3802
+ * lots of improved compatibility between the mongrel and webrick adapter, added respone.content_type
3803
+
3804
+ Tue Nov 28 20:44:54 JST 2006 manveru@weez-int.com
3805
+ * Socket.do_not_reverse_lookup = true # for OSX
3806
+
3807
+ Tue Nov 28 20:43:06 JST 2006 manveru@weez-int.com
3808
+ * removed some debugging-info about timeouted
3809
+
3810
+ Tue Nov 28 20:42:34 JST 2006 manveru@weez-int.com
3811
+ * added small doc-snippets to the simple example about error-page
3812
+
3813
+ Tue Nov 28 20:42:10 JST 2006 manveru@weez-int.com
3814
+ * added indication which file is ran by bin/ramaze
3815
+
3816
+ Tue Nov 28 20:40:47 JST 2006 manveru@weez-int.com
3817
+ * simplified ann, which is now trait (should be double speed ;)
3818
+
3819
+ Tue Nov 28 20:40:02 JST 2006 manveru@weez-int.com
3820
+ * moved add.rb to traits.rb to avoid conflicts with facets (used by Og)
3821
+
3822
+ Fri Nov 24 14:37:07 JST 2006 manveru@weez-int.com
3823
+ * added a testcase for sum (from example/simple)
3824
+
3825
+ Fri Nov 24 14:36:32 JST 2006 manveru@weez-int.com
3826
+ * added a timeout if the port is already used, otherwise it would retry indefinitly
3827
+
3828
+ Fri Nov 24 14:32:15 JST 2006 manveru@weez-int.com
3829
+ * change the default-adapter to webrick for all the poor lads who don't have mongrel yet
3830
+
3831
+ Fri Nov 24 14:31:13 JST 2006 manveru@weez-int.com
3832
+ * added lots of docs and further examples in examples/simple.rb
3833
+
3834
+ Fri Nov 24 14:11:06 JST 2006 manveru@weez-int.com
3835
+ * added some more docs to hello.rb
3836
+
3837
+ Wed Nov 22 19:50:27 JST 2006 manveru@weez-int.com
3838
+ * upgrade of rspec to 0.7
3839
+
3840
+ Sun Nov 5 20:09:04 JST 2006 manveru@weez-int.com
3841
+ * updated CHANGELOG and a bit of docu in tidy
3842
+
3843
+ Sun Nov 5 17:44:20 JST 2006 manveru@weez-int.com
3844
+ * more efficient lookup of the libtidy.so, still relying on `locate`, but you can set it yourself now with Ramaze::Tool::Tidy.ann[:path]
3845
+
3846
+ Sun Nov 5 17:42:38 JST 2006 manveru@weez-int.com
3847
+ * fixing the amrita2 controller to find the correct path for templates (ann[:template_root] to override it)
3848
+
3849
+ Sun Nov 5 17:42:02 JST 2006 manveru@weez-int.com
3850
+ * patches to dispatcher, proper handling of caching and actionless controllers in case of / => index
3851
+
3852
+ Sun Nov 5 17:40:15 JST 2006 manveru@weez-int.com
3853
+ * fixing the tc_controller and added the amrita template for the controller testcase, also added the annotation for template_root
3854
+
3855
+ Sun Nov 5 13:57:58 JST 2006 manveru@weez-int.com
3856
+ * updated the Rakefile and changed to version 0.0.3 - one todo marked as done
3857
+
3858
+ Fri Nov 3 00:13:31 JST 2006 manveru@weez-int.com
3859
+ * changed the amrita testcase to work
3860
+
3861
+ Fri Nov 3 00:13:16 JST 2006 manveru@weez-int.com
3862
+ * default testmode is now :live instead of :silent
3863
+
3864
+ Fri Nov 3 00:12:44 JST 2006 manveru@weez-int.com
3865
+ * added a simple YAMLstore... to be replaced by the real thing
3866
+
3867
+ Fri Nov 3 00:12:29 JST 2006 manveru@weez-int.com
3868
+ * the dispatcher respects actionless controllers now (Amrita2)
3869
+
3870
+ Fri Nov 3 00:10:47 JST 2006 manveru@weez-int.com
3871
+ * added trinity in most places and using the annotations now, also a bit of cleanup
3872
+
3873
+ Fri Nov 3 00:10:13 JST 2006 manveru@weez-int.com
3874
+ * added trinity, to be extracted
3875
+
3876
+ Fri Nov 3 00:10:05 JST 2006 manveru@weez-int.com
3877
+ * added self_method
3878
+
3879
+ Fri Nov 3 00:09:53 JST 2006 manveru@weez-int.com
3880
+ * added new Annotation
3881
+
3882
+ Fri Nov 3 00:09:26 JST 2006 manveru@weez-int.com
3883
+ * added favicon and logo
3884
+
3885
+ Wed Nov 1 08:00:49 JST 2006 manveru@weez-int.com
3886
+ * added testcases for controller and templating of amrita2/ramaze - they still have to be made passing
3887
+
3888
+ Thu Oct 26 19:39:45 JST 2006 manveru@weez-int.com
3889
+ * added a setup for tc_adapter, makes it a bit slower but a lot better
3890
+
3891
+ Thu Oct 26 19:29:22 JST 2006 manveru@weez-int.com
3892
+ * after fix in mongrel, this should work nice again and the tcs should pass
3893
+
3894
+ Thu Oct 26 19:29:00 JST 2006 manveru@weez-int.com
3895
+ * more elegant tc_gestalt
3896
+
3897
+ Thu Oct 26 19:28:35 JST 2006 manveru@weez-int.com
3898
+ * finish up in the ramaze.rb and bring together the loose ends
3899
+
3900
+ Thu Oct 26 19:28:12 JST 2006 manveru@weez-int.com
3901
+ * rewrote the ramaze-template
3902
+
3903
+ Thu Oct 26 19:27:16 JST 2006 manveru@weez-int.com
3904
+ * autoreload is now a method in Ramaze and i added a Global.autoreload hash that holds the autoreload-times for the hashes, additionally there is the new :benchmark mode
3905
+
3906
+ Thu Oct 26 19:26:08 JST 2006 manveru@weez-int.com
3907
+ * added pretty_inspect to the response to fit better into the new error-page
3908
+
3909
+ Thu Oct 26 19:25:58 JST 2006 manveru@weez-int.com
3910
+ * implemented the logger-todos
3911
+
3912
+ Thu Oct 26 19:24:55 JST 2006 manveru@weez-int.com
3913
+ * Gestalt is now no subclass of BlankSlate anymore... it was unneccesary and just complicating the whole code. using the simple p-hack again
3914
+
3915
+ Thu Oct 26 19:24:20 JST 2006 manveru@weez-int.com
3916
+ * a really huge update to the errorpage again... remember to remove the logo ;)
3917
+
3918
+ Thu Oct 26 19:23:54 JST 2006 manveru@weez-int.com
3919
+ * added a timeout to the dispatcher and removed some annoying return-statements
3920
+
3921
+ Thu Oct 26 19:23:34 JST 2006 manveru@weez-int.com
3922
+ * added response method to controller-prototype
3923
+
3924
+ Thu Oct 26 19:23:17 JST 2006 manveru@weez-int.com
3925
+ * adapter have now the possibilities to bench requests when mode is :benchmark
3926
+
3927
+ Thu Oct 26 19:20:58 JST 2006 manveru@weez-int.com
3928
+ * updated the miniwiki to use YAML::Store and work correctly in general
3929
+
3930
+ Mon Oct 23 19:36:40 JST 2006 manveru@weez-int.com
3931
+ * added a testcase for params and proper handling of the errors now. (thanks mfp)
3932
+
3933
+ Mon Oct 23 19:36:29 JST 2006 manveru@weez-int.com
3934
+ * output the error if tidy fails
3935
+
3936
+ Mon Oct 23 19:36:05 JST 2006 manveru@weez-int.com
3937
+ * adding __instance_variable_set__ to Gestalt to better handle iv without evaling
3938
+
3939
+ Mon Oct 23 19:35:22 JST 2006 manveru@weez-int.com
3940
+ * better handling of CodeRay inside error-template
3941
+
3942
+ Mon Oct 23 19:34:49 JST 2006 manveru@weez-int.com
3943
+ * little cleanup and adding documentation in the error-page
3944
+
3945
+ Mon Oct 23 19:34:26 JST 2006 manveru@weez-int.com
3946
+ * proper handling of -1 params
3947
+
3948
+ Mon Oct 23 19:33:54 JST 2006 manveru@weez-int.com
3949
+ * adding proper params-handling for webrick, (very very bad proper handling)
3950
+
3951
+ Mon Oct 23 19:33:23 JST 2006 manveru@weez-int.com
3952
+ * remove the require 'rubygems' and error-handling from the adapter itself, that is handled one level lower
3953
+
3954
+ Mon Oct 23 19:33:03 JST 2006 manveru@weez-int.com
3955
+ * added a default in public/css/coderay.css since i will use it quite often.
3956
+
3957
+ Mon Oct 23 19:32:03 JST 2006 manveru@weez-int.com
3958
+ * first templates for Ramaze (called .rmze) and a proper working miniwiki-example - very very simplistic, but does its job so far
3959
+
3960
+ Mon Oct 23 19:31:35 JST 2006 manveru@weez-int.com
3961
+ * yay for my new miniwiki example :)
3962
+
3963
+ Mon Oct 23 17:01:05 JST 2006 manveru@weez-int.com
3964
+ * use webrick in the miniwiki
3965
+
3966
+ Mon Oct 23 16:57:57 JST 2006 manveru@weez-int.com
3967
+ * added codray-highlighting (if installed) and inspecting of request/session/response/global
3968
+
3969
+ Mon Oct 23 16:23:09 JST 2006 manveru@weez-int.com
3970
+ * better handling if the adapter is not found and don't kill the autoreload-threads anymore
3971
+
3972
+ Mon Oct 23 16:21:17 JST 2006 manveru@weez-int.com
3973
+ * update of the Global defaults (most important, added Global.logger[:timestamp|:prefix_(info|error|debug)]
3974
+
3975
+ Mon Oct 23 16:20:33 JST 2006 manveru@weez-int.com
3976
+ * replaced autoreload with the new one (and some settings for the reload-speed based on the Global.mode
3977
+
3978
+ Mon Oct 23 16:19:53 JST 2006 manveru@weez-int.com
3979
+ * replaced the Module.autoload with a require beforehand... the other way just added complexitiy though it's a nice thing :)
3980
+
3981
+ Mon Oct 23 16:18:44 JST 2006 manveru@weez-int.com
3982
+ * usage of Tidy.tidy now possible
3983
+
3984
+ Mon Oct 23 16:18:22 JST 2006 manveru@weez-int.com
3985
+ * reimplementation of autoreload
3986
+
3987
+ Mon Oct 23 16:17:42 JST 2006 manveru@weez-int.com
3988
+ * little update in the request, in case there is no @request.params (webrick)
3989
+
3990
+ Mon Oct 23 16:16:43 JST 2006 manveru@weez-int.com
3991
+ * rather large update to the error-page... not fully finished i fear - but i added CSS so it's going to be nicer to change :)
3992
+
3993
+ Mon Oct 23 16:16:15 JST 2006 manveru@weez-int.com
3994
+ * better use of the Logger in the dispatcher
3995
+
3996
+ Mon Oct 23 16:13:12 JST 2006 manveru@weez-int.com
3997
+ * a rather huge update to the logger, introducing the Global.logger hash to easily define your own favorite settings, also we got a Timestamp now! :)
3998
+
3999
+ Mon Oct 23 16:11:49 JST 2006 manveru@weez-int.com
4000
+ * updates to the mongrel-adapter, better rescue for rubygems/mongrel and nicer usage of Tidy
4001
+
4002
+ Mon Oct 23 16:11:10 JST 2006 manveru@weez-int.com
4003
+ * small updates to the simple example
4004
+
4005
+ Mon Oct 23 16:08:43 JST 2006 manveru@weez-int.com
4006
+ * added the webrick-adapter, it's not perfect, but works smooth so far
4007
+
4008
+ Mon Oct 23 16:07:46 JST 2006 manveru@weez-int.com
4009
+ * added testcase for the adapters (tc_adapter) [mongrel|webrick] so far
4010
+
4011
+ Mon Oct 23 09:13:27 JST 2006 manveru@weez-int.com
4012
+ * moved the HTTP-status codes to http_status.rb from dispatcher.rb
4013
+
4014
+ Mon Oct 23 08:33:05 JST 2006 manveru@weez-int.com
4015
+ * small typo in Logger.debug output ('d-' instead of 'd')
4016
+
4017
+ Mon Oct 23 08:29:14 JST 2006 manveru@weez-int.com
4018
+ * added stub for miniwiki
4019
+
4020
+ Fri Oct 20 18:55:28 JST 2006 manveru@weez-int.com
4021
+ * one todo gone, one added
4022
+
4023
+ Fri Oct 20 18:51:40 JST 2006 manveru@weez-int.com
4024
+ * an ultimate patch... this addes lots of documentation, rewrite of the Response to be Struct instead of OpenStruct (17 times faster) and also some minor tweaks all over the place, notable also the change of the logger-format
4025
+
4026
+ Fri Oct 20 18:50:38 JST 2006 manveru@weez-int.com
4027
+ * minor updates to the testcases, somehow i should fix the tc_params on the errors... but that takes a bit more time, otherwise just removed the sleeps that are now handled by ramaze
4028
+
4029
+ Fri Oct 20 18:48:35 JST 2006 manveru@weez-int.com
4030
+ * small fixes to the simple example
4031
+
4032
+ Fri Oct 20 14:53:55 JST 2006 manveru@weez-int.com
4033
+ * added new rake task, todo - it scrapes the source for TODO markers and prints them out.
4034
+
4035
+ Fri Oct 20 10:50:34 JST 2006 manveru@weez-int.com
4036
+ * added documentation and Gestalt.build, which takes a block instead of Gestalt.new
4037
+
4038
+ Fri Oct 20 16:49:36 JST 2006 manveru@weez-int.com
4039
+ * cleaned up the tests a bit and updated the test-runner to show some summary
4040
+
4041
+ Thu Oct 19 19:18:12 JST 2006 manveru@weez-int.com
4042
+ * loooooots of documentation (which is not displayed on rdoc due to some very weird behaviour
4043
+
4044
+ Thu Oct 19 19:16:49 JST 2006 manveru@weez-int.com
4045
+ * a new and simple way to react on signals, default is SIGINT, it executes Ramaze.shutdown which in turn kills the adapter, to change the signal listened on change Global.shutdown_trap
4046
+
4047
+ Thu Oct 19 19:14:54 JST 2006 manveru@weez-int.com
4048
+ * very minor cleanup of some methods...
4049
+
4050
+ Thu Oct 19 19:14:40 JST 2006 manveru@weez-int.com
4051
+ * added an rdoc-task to the Rakefile
4052
+
4053
+ Thu Oct 19 19:14:18 JST 2006 manveru@weez-int.com
4054
+ * moved README and CHANGELOG to the new /doc dir
4055
+
4056
+ Thu Oct 19 19:13:26 JST 2006 manveru@weez-int.com
4057
+ * tidy takes now an hash of options and i added extensive documentation ... could use some more though (removed require for rubygems)
4058
+
4059
+ Wed Oct 18 19:27:23 JST 2006 manveru@weez-int.com
4060
+ * lots of smaller changes, extracted tidy from the mongrel-adapter to a new dir named tool - where most helper-stuff should go to.
4061
+
4062
+ Wed Oct 18 19:27:04 JST 2006 manveru@weez-int.com
4063
+ * updates to global.rb - stuff that doesn't make sense for a singleton
4064
+
4065
+ Wed Oct 18 19:25:31 JST 2006 manveru@weez-int.com
4066
+ * revised most testcases and added tc_global and tc_tidy
4067
+
4068
+ Wed Oct 18 19:25:16 JST 2006 manveru@weez-int.com
4069
+ * added rcov-task
4070
+
4071
+ Wed Oct 18 16:36:37 JST 2006 manveru@weez-int.com
4072
+ * use String#/ instead of File.join
4073
+
4074
+ Wed Oct 18 16:35:04 JST 2006 manveru@weez-int.com
4075
+ * much better handling of restarts and stuff by joining still running mongrel-threads
4076
+
4077
+ Wed Oct 18 16:34:41 JST 2006 manveru@weez-int.com
4078
+ * remove the gostruct.rb
4079
+
4080
+ Wed Oct 18 16:34:08 JST 2006 manveru@weez-int.com
4081
+ * update to README
4082
+
4083
+ Wed Oct 18 16:33:23 JST 2006 manveru@weez-int.com
4084
+ * removing the global openstruct and just use Global...
4085
+
4086
+ Wed Oct 18 15:34:48 JST 2006 manveru@weez-int.com
4087
+ * removing the default-adapter because it's useless and not used
4088
+
4089
+ Wed Oct 18 13:57:50 JST 2006 manveru@weez-int.com
4090
+ * removed a bit of debugging-info from tc_session
4091
+
4092
+ Wed Oct 18 13:55:14 JST 2006 manveru@weez-int.com
4093
+ * this drives in the last nail to support sessions, also speeds up requests a tiny weeny bit ;)
4094
+
4095
+ Wed Oct 18 13:54:04 JST 2006 manveru@weez-int.com
4096
+ * controller now accesses the Thread#[] to get request/session
4097
+
4098
+ Wed Oct 18 13:53:23 JST 2006 manveru@weez-int.com
4099
+ * split up the response in mongrel into set_out and set_head
4100
+
4101
+ Wed Oct 18 13:53:11 JST 2006 manveru@weez-int.com
4102
+ * added ramaze/session
4103
+
4104
+ Wed Oct 18 13:52:41 JST 2006 manveru@weez-int.com
4105
+ * added a session-testcase
4106
+
4107
+ Tue Oct 17 09:52:07 JST 2006 manveru@weez-int.com
4108
+ * updated CHANGELOG
4109
+
4110
+ Tue Oct 17 09:51:30 JST 2006 manveru@weez-int.com
4111
+ tagged Ramaze 0.0.2
4112
+
4113
+ Tue Oct 17 09:50:51 JST 2006 manveru@weez-int.com
4114
+ * tagged 0.0.2 - next version will support sessions (hopefully :)
4115
+
4116
+ Tue Oct 17 09:50:36 JST 2006 manveru@weez-int.com
4117
+ * updated the readmy and rakefile-description a bit
4118
+
4119
+ Tue Oct 17 09:50:13 JST 2006 manveru@weez-int.com
4120
+ * added Ramaze::VERSION
4121
+
4122
+ Tue Oct 17 09:47:00 JST 2006 manveru@weez-int.com
4123
+ * added a SIGINT-trap to cleanly shutdown
4124
+
4125
+ Tue Oct 17 09:29:31 JST 2006 manveru@weez-int.com
4126
+ * added test/tc_request [passes]
4127
+
4128
+ Tue Oct 17 09:29:00 JST 2006 manveru@weez-int.com
4129
+ * further improvment to the testcase-runner and setting default Global.error_page to true
4130
+
4131
+ Mon Oct 16 20:18:33 JST 2006 manveru@weez-int.com
4132
+ * and everything passes now...
4133
+
4134
+ Mon Oct 16 17:52:59 JST 2006 manveru@weez-int.com
4135
+ * patching the test-runner to shut down ramaze before it is run again from the next testcase...
4136
+
4137
+ Mon Oct 16 17:48:09 JST 2006 manveru@weez-int.com
4138
+ * huuuuge patch, perfect error-handling, better automagic controller-mapping, superb tidy-functionlity, even the params-testcase passes again :P - to turn on tidy, set Global.tidy to true
4139
+
4140
+ Mon Oct 16 11:39:42 JST 2006 manveru@weez-int.com
4141
+ * added snippets for String#/
4142
+
4143
+ Mon Oct 16 11:38:47 JST 2006 manveru@weez-int.com
4144
+ * added caller_lines in the snippets
4145
+
4146
+ Mon Oct 16 10:08:51 JST 2006 manveru@weez-int.com
4147
+ * a new snapshot with some more tests and lots of bugs fixed... also working now on the pluggable templating again.
4148
+
4149
+ Sun Oct 15 13:53:32 JST 2006 manveru@weez-int.com
4150
+ * this fixes a bug that lead to problems if you don't define a mapping
4151
+
4152
+ Sun Oct 15 13:52:19 JST 2006 manveru@weez-int.com
4153
+ * this introduces a new Global.running_adapter, for later easy access outside of Ramaze - should add some methods to check if the adapter is running and the like
4154
+
4155
+ Sun Oct 15 13:51:46 JST 2006 manveru@weez-int.com
4156
+ * by default, require 'pp', i think it's far too useful not to be available all the time
4157
+
4158
+ Sun Oct 15 13:50:47 JST 2006 manveru@weez-int.com
4159
+ * some more info in the CHANGELOG, this will only be updated in releases from now on, the information comes from darcs anyway
4160
+
4161
+ Sun Oct 15 13:49:10 JST 2006 manveru@weez-int.com
4162
+ * changed hello.rb to fit in with the use of the ramaze-binary
4163
+
4164
+ Sun Oct 15 13:48:30 JST 2006 manveru@weez-int.com
4165
+ * updated the Rakefile to prodcue some more useful stuff :) - also knows about the executable 'ramaze' now
4166
+
4167
+ Sun Oct 15 13:47:20 JST 2006 manveru@weez-int.com
4168
+ * updated the README a bit, more to come
4169
+
4170
+ Sun Oct 15 13:44:54 JST 2006 manveru@weez-int.com
4171
+ * added an ramaze executable
4172
+ it can be found in bin/ramaze and you use it like that:
4173
+
4174
+ $ cd example
4175
+ $ ls
4176
+ main.rb
4177
+ $ ramaze
4178
+
4179
+ which will in turn run the main.rb
4180
+ you can give ramaze a parameter for the run-file, more sophisticated parameters are not included (yet)
4181
+
4182
+
4183
+ Sat Oct 14 04:22:49 JST 2006 manveru@weez-int.com
4184
+ * initialize