ramaze 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) hide show
  1. data/Rakefile +4 -12
  2. data/bin/ramaze +95 -171
  3. data/doc/CHANGELOG +387 -4
  4. data/doc/README +81 -13
  5. data/doc/meta/announcement.txt +51 -8
  6. data/doc/meta/configuration.txt +17 -34
  7. data/doc/meta/internals.txt +34 -4
  8. data/doc/migrate/1110_to_1111.txt +131 -0
  9. data/doc/readme_chunks/features.txt +81 -12
  10. data/doc/readme_chunks/installing.txt +0 -1
  11. data/doc/tutorial/todolist.html +293 -65
  12. data/doc/tutorial/{todolist.txt → todolist.mkd} +251 -51
  13. data/examples/blog/main.rb +1 -1
  14. data/examples/blog/src/model.rb +0 -1
  15. data/examples/hello.rb +2 -5
  16. data/examples/templates/template/external.haml +5 -5
  17. data/examples/templates/template/external.liquid +1 -1
  18. data/examples/templates/template/external.mab +8 -8
  19. data/examples/templates/template/external.rem +30 -0
  20. data/examples/templates/template/external.rhtml +6 -7
  21. data/examples/templates/template/external.zmr +13 -9
  22. data/examples/templates/template_amrita2.rb +8 -8
  23. data/examples/templates/template_erubis.rb +11 -11
  24. data/examples/templates/template_ezamar.rb +9 -11
  25. data/examples/templates/template_haml.rb +13 -13
  26. data/examples/templates/template_liquid.rb +10 -10
  27. data/examples/templates/template_markaby.rb +13 -10
  28. data/examples/templates/template_remarkably.rb +59 -0
  29. data/examples/todolist/main.rb +1 -7
  30. data/examples/todolist/src/controller/main.rb +26 -13
  31. data/examples/todolist/src/element/page.rb +5 -0
  32. data/examples/whywiki/main.rb +1 -1
  33. data/lib/proto/main.rb +0 -8
  34. data/lib/proto/public/css/ramaze_error.css +12 -4
  35. data/lib/proto/public/error.zmr +6 -25
  36. data/lib/ramaze.rb +35 -245
  37. data/lib/ramaze/action.rb +21 -0
  38. data/lib/ramaze/adapter.rb +94 -29
  39. data/lib/ramaze/adapter/base.rb +57 -0
  40. data/lib/ramaze/adapter/mongrel.rb +12 -19
  41. data/lib/ramaze/adapter/webrick.rb +21 -20
  42. data/lib/ramaze/cache.rb +47 -3
  43. data/lib/ramaze/cache/memcached.rb +22 -0
  44. data/lib/ramaze/cache/yaml_store.rb +19 -0
  45. data/lib/ramaze/controller.rb +47 -271
  46. data/lib/ramaze/controller/error.rb +43 -0
  47. data/lib/ramaze/controller/render.rb +90 -0
  48. data/lib/ramaze/controller/resolve.rb +147 -0
  49. data/lib/ramaze/dispatcher.rb +41 -9
  50. data/lib/ramaze/dispatcher/file.rb +1 -1
  51. data/lib/ramaze/global.rb +73 -158
  52. data/lib/ramaze/global/dsl.rb +29 -0
  53. data/lib/ramaze/global/globalstruct.rb +90 -0
  54. data/lib/ramaze/helper.rb +1 -1
  55. data/lib/ramaze/helper/aspect.rb +39 -179
  56. data/lib/ramaze/helper/cache.rb +8 -9
  57. data/lib/ramaze/helper/cgi.rb +23 -0
  58. data/lib/ramaze/helper/file.rb +3 -0
  59. data/lib/ramaze/helper/inform.rb +3 -0
  60. data/lib/ramaze/helper/link.rb +56 -63
  61. data/lib/ramaze/helper/nitroform.rb +4 -0
  62. data/lib/ramaze/helper/redirect.rb +1 -1
  63. data/lib/ramaze/inform.rb +6 -2
  64. data/lib/ramaze/inform/analogger.rb +5 -1
  65. data/lib/ramaze/inform/hub.rb +1 -1
  66. data/lib/ramaze/inform/informing.rb +7 -0
  67. data/lib/ramaze/snippets/kernel/aquire.rb +2 -0
  68. data/lib/ramaze/snippets/kernel/constant.rb +2 -0
  69. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +2 -0
  70. data/lib/ramaze/snippets/object/traits.rb +4 -0
  71. data/lib/ramaze/snippets/openstruct/temp.rb +3 -0
  72. data/lib/ramaze/snippets/string/DIVIDE.rb +2 -0
  73. data/lib/ramaze/snippets/string/camel_case.rb +2 -0
  74. data/lib/ramaze/snippets/string/color.rb +2 -0
  75. data/lib/ramaze/snippets/string/each.rb +2 -0
  76. data/lib/ramaze/snippets/string/snake_case.rb +3 -0
  77. data/lib/ramaze/snippets/struct/fill.rb +8 -2
  78. data/lib/ramaze/snippets/struct/values_at.rb +16 -0
  79. data/lib/ramaze/snippets/symbol/to_proc.rb +3 -0
  80. data/lib/ramaze/sourcereload.rb +89 -0
  81. data/lib/ramaze/template.rb +21 -12
  82. data/lib/ramaze/template/amrita2.rb +6 -6
  83. data/lib/ramaze/template/erubis.rb +4 -9
  84. data/lib/ramaze/template/ezamar.rb +13 -57
  85. data/lib/ramaze/template/ezamar/element.rb +10 -12
  86. data/lib/ramaze/template/ezamar/engine.rb +40 -101
  87. data/lib/ramaze/template/ezamar/morpher.rb +3 -3
  88. data/lib/ramaze/template/haml.rb +3 -6
  89. data/lib/ramaze/template/liquid.rb +4 -9
  90. data/lib/ramaze/template/markaby.rb +16 -22
  91. data/lib/ramaze/template/remarkably.rb +28 -0
  92. data/lib/ramaze/tool/mime.rb +2 -0
  93. data/lib/ramaze/tool/record.rb +6 -0
  94. data/lib/ramaze/trinity/request.rb +44 -54
  95. data/lib/ramaze/trinity/response.rb +1 -1
  96. data/lib/ramaze/trinity/session.rb +15 -37
  97. data/lib/ramaze/version.rb +1 -1
  98. data/rake_tasks/gem.rake +2 -2
  99. data/rake_tasks/maintaince.rake +42 -1
  100. data/rake_tasks/spec.rake +45 -0
  101. data/spec/examples/caching.rb +1 -1
  102. data/spec/examples/simple.rb +1 -1
  103. data/spec/examples/templates/template_amrita2.rb +1 -0
  104. data/spec/examples/templates/template_erubis.rb +2 -1
  105. data/spec/examples/templates/template_ezamar.rb +1 -1
  106. data/spec/examples/templates/template_haml.rb +2 -1
  107. data/spec/examples/templates/template_liquid.rb +2 -1
  108. data/spec/examples/templates/template_markaby.rb +2 -1
  109. data/spec/examples/templates/template_remarkably.rb +22 -0
  110. data/spec/examples/todolist.rb +125 -0
  111. data/spec/helper.rb +2 -23
  112. data/spec/helper/minimal.rb +20 -0
  113. data/spec/helper/mock_http.rb +24 -30
  114. data/spec/helper/simple_http.rb +2 -2
  115. data/spec/helper/wrap.rb +6 -9
  116. data/spec/ramaze/adapter.rb +1 -1
  117. data/spec/ramaze/adapter/record.rb +31 -0
  118. data/spec/ramaze/cache.rb +41 -54
  119. data/spec/ramaze/controller.rb +121 -137
  120. data/spec/ramaze/controller/template/list.xhtml +1 -0
  121. data/spec/ramaze/controller/template/other/greet/other.xhtml +1 -0
  122. data/spec/ramaze/controller/template_resolving.rb +27 -3
  123. data/spec/ramaze/element.rb +11 -7
  124. data/spec/ramaze/error.rb +1 -1
  125. data/spec/ramaze/gestalt.rb +2 -0
  126. data/spec/ramaze/helper/aspect.rb +30 -21
  127. data/spec/ramaze/helper/auth.rb +1 -1
  128. data/spec/ramaze/helper/cache.rb +2 -1
  129. data/spec/ramaze/helper/form.rb +14 -11
  130. data/spec/ramaze/helper/link.rb +18 -41
  131. data/spec/ramaze/localize.rb +29 -2
  132. data/spec/ramaze/morpher.rb +23 -12
  133. data/spec/ramaze/params.rb +46 -24
  134. data/spec/ramaze/request.rb +6 -2
  135. data/spec/ramaze/store/yaml.rb +5 -0
  136. data/spec/ramaze/template.rb +22 -27
  137. data/spec/ramaze/template/amrita2.rb +1 -2
  138. data/spec/ramaze/template/erubis.rb +1 -1
  139. data/spec/ramaze/template/ezamar.rb +1 -2
  140. data/spec/ramaze/template/haml.rb +2 -2
  141. data/spec/ramaze/template/haml/with_vars.haml +1 -1
  142. data/spec/ramaze/template/liquid.rb +1 -1
  143. data/spec/ramaze/template/markaby.rb +1 -1
  144. data/spec/ramaze/template/remarkably.rb +56 -0
  145. data/spec/ramaze/template/remarkably/external.rem +8 -0
  146. data/spec/ramaze/template/remarkably/sum.rem +1 -0
  147. metadata +38 -63
  148. data/doc/README.html +0 -637
  149. data/doc/allison/LICENSE +0 -184
  150. data/doc/allison/README +0 -37
  151. data/doc/allison/allison.css +0 -299
  152. data/doc/allison/allison.gif +0 -0
  153. data/doc/allison/allison.js +0 -307
  154. data/doc/allison/allison.rb +0 -287
  155. data/doc/allison/cache/BODY +0 -588
  156. data/doc/allison/cache/CLASS_INDEX +0 -4
  157. data/doc/allison/cache/CLASS_PAGE +0 -1
  158. data/doc/allison/cache/FILE_INDEX +0 -4
  159. data/doc/allison/cache/FILE_PAGE +0 -1
  160. data/doc/allison/cache/FONTS +0 -1
  161. data/doc/allison/cache/FR_INDEX_BODY +0 -1
  162. data/doc/allison/cache/IMGPATH +0 -1
  163. data/doc/allison/cache/INDEX +0 -1
  164. data/doc/allison/cache/JAVASCRIPT +0 -307
  165. data/doc/allison/cache/METHOD_INDEX +0 -4
  166. data/doc/allison/cache/METHOD_LIST +0 -1
  167. data/doc/allison/cache/SRC_PAGE +0 -1
  168. data/doc/allison/cache/STYLE +0 -321
  169. data/doc/allison/cache/URL +0 -1
  170. data/doc/changes.txt +0 -3375
  171. data/doc/changes.xml +0 -3378
  172. data/examples/todolist/conf/benchmark.yaml +0 -35
  173. data/examples/todolist/conf/debug.yaml +0 -34
  174. data/examples/todolist/conf/live.yaml +0 -33
  175. data/examples/todolist/conf/silent.yaml +0 -31
  176. data/examples/todolist/conf/stage.yaml +0 -33
  177. data/examples/todolist/public/css/coderay.css +0 -105
  178. data/examples/todolist/public/css/ramaze_error.css +0 -42
  179. data/lib/proto/conf/benchmark.yaml +0 -21
  180. data/lib/proto/conf/debug.yaml +0 -21
  181. data/lib/proto/conf/live.yaml +0 -21
  182. data/lib/proto/conf/silent.yaml +0 -21
  183. data/lib/proto/conf/stage.yaml +0 -21
  184. data/lib/proto/public/css/coderay.css +0 -105
  185. data/lib/ramaze/http_status.rb +0 -66
  186. data/lib/ramaze/snippets/hash/keys_to_sym.rb +0 -19
  187. data/lib/ramaze/snippets/kernel/method.rb +0 -26
  188. data/lib/ramaze/snippets/method/name.rb +0 -22
  189. data/lib/ramaze/snippets/ramaze/autoreload.rb +0 -135
  190. data/lib/ramaze/snippets/rdoc/usage_no_exit.rb +0 -65
  191. data/spec/all.rb +0 -32
  192. data/spec/ramaze/conf/locale_de.yaml +0 -6
  193. data/spec/ramaze/conf/locale_en.yaml +0 -6
  194. data/spec/ramaze/dependencies.rb +0 -16
  195. data/spec/ramaze/global.rb +0 -44
data/Rakefile CHANGED
@@ -15,12 +15,10 @@ require 'ramaze/version'
15
15
  load 'rake_tasks/conf.rake'
16
16
  load 'rake_tasks/gem.rake'
17
17
  load 'rake_tasks/maintaince.rake'
18
+ load 'rake_tasks/spec.rake'
18
19
 
19
- desc "Packages up ramaze gem."
20
- task :default => [:test]
21
-
22
- desc "clean up temporary files and gems"
23
- task :package => [:clean]
20
+ task :default => ['test:all']
21
+ task :test => ['test:all']
24
22
 
25
23
  desc "sanitize the code and darcs record"
26
24
  task :record => ['fix-end-spaces', 'add-copyright'] do
@@ -64,14 +62,8 @@ Spec::Rake::SpecTask.new(:rcov_summary => :rcov_dir) do |t|
64
62
  t.fail_on_error = false
65
63
  end
66
64
 
67
- desc "run the specs and clean up afterwards"
68
- task :test do
69
- ruby "#{File.dirname(__FILE__)}/spec/all.rb"
70
- sh "rake clean"
71
- end
72
-
73
65
  desc "generate rdoc"
74
- task :rdoc => :clean do
66
+ task :rdoc => [:clean, :readme2html] do
75
67
  sh "rdoc #{(RDOC_OPTS + RDOC_FILES).join(' ')}"
76
68
  end
77
69
 
data/bin/ramaze CHANGED
@@ -1,191 +1,115 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # = Synopsis
4
- #
5
- # The commandline tool to control ramaze
6
- #
7
- # = Usage
8
- # ramaze [switches] startfile [arguments]
9
- #
10
- # --create:: create a new application based on proto
11
- #
12
- # -m, --mongrel:: use mongrel to process requests
13
- # -w, --webrick:: the default
14
- # -g, --cgi:: CGI
15
- # -f, --fcgi:: FastCGI
16
- #
17
- # -b, --benchmark:: inform about :error, :info, :debug, :benchmark
18
- # -d, --debug:: inform about :error, info, :debug
19
- # -t, --stage:: inform about :info, :error
20
- # -l, --live:: inform about :error
21
- # -s, --silent:: inform about nothing
22
- #
23
- # -a, --autoreload:: Set the interval at which autoreload searches
24
- # for changes in your files
25
- #
26
- # -o, --host:: which host should ramaze listen for requests
27
- # default is 0.0.0.0
28
- # -p, --port:: what port should ramaze use, like 80 or 7000..7005
29
- # default is 7000
30
- #
31
- # -n, --no-errorpage:: don't use the default errorpage of ramaze
32
- # helpful if you want to make sure noone can
33
- # ever see your code by accident or for testing
34
- # --template-root:: set a custom template-root for the whole
35
- # application, please note that ~ is not
36
- # expanded to your home-directory
37
- # -a, --autoreload=N:: set how frequent ramaze should search for
38
- # updated files in your application
39
- # -r, --run-loose:: don't take control after startup.
40
- # this is useful for testcases.
41
- # -c, --console:: Start an IRB-like session.
42
- # --backtrace:: Show full backtrace at errors on start.
43
- # --cache:: use the simple caching based on the signature
44
- # of your requests (experimental)
45
- # --tidy:: run Tool::Tidy over text/html output
46
- #
47
- #
48
- # -h, --help:: print this help
49
- # -v, --version:: print the version
50
- # -c, --copyright:: print the copyright
51
- #
52
- # Please report bugs to <m.fellinger at gmail.com>
53
- #
54
- # = Copyright
55
- # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
56
- # All files in this distribution are subject to the terms of the Ruby license.
57
-
58
3
  require 'ramaze'
59
4
 
60
- runner = File.expand_path(ARGV.find{|file| File.file?(file)} || 'main.rb')
5
+ RAMAZE_VERSION = "Ramaze Version #{Ramaze::VERSION}"
61
6
 
62
- begin
63
- require 'getoptlong'
64
- require 'rdoc/ri/ri_paths'
65
- require 'rdoc/usage'
66
-
67
- # memo:
68
- # REQUIRED_ARGUMENT, NO_ARGUMENT, OPTIONAL_ARGUMENT
69
-
70
- opts = GetoptLong.new *[
71
- [ '--create', GetoptLong::REQUIRED_ARGUMENT ],
72
- [ '--mongrel', '-m', GetoptLong::NO_ARGUMENT ],
73
- [ '--webrick', '-w', GetoptLong::NO_ARGUMENT ],
74
- [ '--cgi', '-g', GetoptLong::NO_ARGUMENT ],
75
- [ '--fcgi', '-f', GetoptLong::NO_ARGUMENT ],
76
-
77
- [ '--debug', '-d', GetoptLong::NO_ARGUMENT ],
78
- [ '--stage', '-t', GetoptLong::NO_ARGUMENT ],
79
- [ '--live', '-l', GetoptLong::NO_ARGUMENT ],
80
- [ '--silent', '-s', GetoptLong::NO_ARGUMENT ],
81
-
82
- [ '--host', '-o', GetoptLong::REQUIRED_ARGUMENT ],
83
- [ '--port', '-p', GetoptLong::REQUIRED_ARGUMENT ],
84
-
85
- [ '--benchmark', '-b', GetoptLong::NO_ARGUMENT ],
86
- [ '--no-errorpage', '-n', GetoptLong::NO_ARGUMENT ],
87
- [ '--template-root', GetoptLong::REQUIRED_ARGUMENT ],
88
- [ '--autoreload', '-a', GetoptLong::REQUIRED_ARGUMENT ],
89
- [ '--run-loose', '-r', GetoptLong::NO_ARGUMENT ],
90
-
91
- [ '--console', '-c', GetoptLong::NO_ARGUMENT ],
92
- [ '--backtrace', GetoptLong::NO_ARGUMENT ],
93
- [ '--help', '-h', GetoptLong::NO_ARGUMENT ],
94
- [ '--version', '-v', GetoptLong::NO_ARGUMENT ],
95
- [ '--copyright', GetoptLong::NO_ARGUMENT ],
96
- ]
97
-
98
- options = {:force_setup => true, :force => true}
99
-
100
- create = lambda do |app|
101
- require 'ramaze/tool/create'
102
- Ramaze::Tool::Create.create(app)
103
- exit
7
+ require 'optparse'
8
+ require 'ostruct'
9
+ require 'abbrev'
10
+
11
+ options = {:origin => :console, :create => false, :force => true}
12
+ cli_options = Ramaze::CLI_OPTIONS
13
+ cli_abbrevs = cli_options.map{|o| o.name.to_s}.abbrev
14
+ cli_abbrevs = Hash[*cli_abbrevs.select{|k,v| k.size == 1}.flatten].invert
15
+
16
+ opts = OptionParser.new do |opt|
17
+ ruby_version = "ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
18
+ ramaze_version = "#{RAMAZE_VERSION}, on #{ruby_version}"
19
+
20
+ opt.banner = "Usage: ramaze main.rb [OPTIONS]"
21
+ opt.define_head ramaze_version
22
+
23
+ opt.on('--create PROJECT', "A new application based on proto.") do |input|
24
+ options[:create] = input
104
25
  end
105
26
 
106
- adapter = Dir[Ramaze::BASEDIR/'ramaze'/'adapter'/'*.rb']
107
- adapter.map!{|f| File.basename(f, File.extname(f)).to_sym}
108
-
109
- opts.each do |opt, arg|
110
- sopt = opt[2..-1].gsub('-', '_').intern
111
-
112
- options[:inform_tags] = Set.new([:debug, :info, :error])
113
-
114
- case sopt
115
- when :create
116
- create[arg]
117
- when :help
118
- RDoc::ramazes_usage('Usage')
119
- when :version
120
- puts("ramaze #{Ramaze::VERSION}") or exit
121
- when :copyright
122
- RDoc::ramazes_usage('Copyright')
123
- when *adapter
124
- options[:adapter] = sopt
125
-
126
- when :benchmark
127
- options[:inform_tags] << :benchmark
128
- when :debug
129
- options
130
- when :stage
131
- options[:inform_tags].subtract [:debug]
132
- when :live
133
- options[:inform_tags].subtract [:info, :debug]
134
- when :silent
135
- options[:inform_tags].subtract options[:inform_tags]
136
-
137
- when :host
138
- options[:host] = arg
139
- when :port
140
- options[:port] = arg
141
-
142
- when :no_errorpage
143
- options[:error_page] = false
144
- when :template_root
145
- options[:template_root] = arg
146
- when :autoreload
147
- options[:autoreload] = arg.to_i
148
- when :run_loose
149
- options[:run_loose] = true
150
- when :console
151
- options[:console] = true
152
- when :backtrace
153
- options[:backtrace] = true
27
+ cli_options.each do |option|
28
+ cli_name = option.name.to_s.gsub('_', '-')
29
+ short_option = cli_abbrevs[option.name.to_s]
30
+ short_option = '-' + short_option if short_option
31
+ long_option = '--' + cli_name
32
+
33
+ case option.cli
34
+ when TrueClass
35
+ params = [short_option, "--[no-]#{cli_name}", option.doc]
36
+ when FalseClass
37
+ params = [short_option, long_option, option.doc]
38
+ when Numeric
39
+ params = [short_option, "#{long_option} NUM", Integer, option.doc]
40
+ when String
41
+ params = [short_option, "#{long_option} STRING", String, option.doc]
42
+ when Array
43
+ index = option.cli.map(&:to_s)
44
+ aliases = index.abbrev
45
+ list = " (#{index.join(', ')})"
46
+
47
+ params = [short_option, "#{long_option} CHOICE", index, aliases, option.doc, list]
48
+ else
49
+ pp option
50
+ next
51
+ end
52
+
53
+ opt.on(*params.compact) do |input|
54
+ options[option.name] = input
154
55
  end
155
56
  end
156
57
 
157
- begin
158
- puts "running #{runner}"
159
- require runner
160
- rescue LoadError => ex
161
- puts ex
162
- puts ex.backtrace if options[:backtrace]
163
- puts "Maybe i cannot find `#{runner}'"
164
- puts "You could provide a file to execute like:"
165
- puts "$ ramaze myapp.rb"
58
+ opt.separator ''
59
+ opt.separator 'Common options:'
60
+
61
+ # -? keeps -p for --port free
62
+ opt.on_tail('-?', '--help', 'Show this message') do
63
+ puts opts
166
64
  exit
167
65
  end
168
66
 
169
- if options.delete(:console)
170
- options.merge!(:run_loose => true)
171
-
172
- ARGV.clear # Avoid passing args to IRB
67
+ opt.on_tail('-v', '--version', "Show version") do
68
+ puts ramaze_version
69
+ exit
70
+ end
71
+ end
173
72
 
174
- Ramaze.start(options)
73
+ opts.parse!(ARGV)
74
+ runner = (ARGV + ['main.rb']).find{|f| File.exists?(f)}
175
75
 
176
- require 'irb'
177
- require 'irb/completion'
76
+ if project = options.delete(:create)
77
+ require 'ramaze/tool/create'
78
+ Ramaze::Tool::Create.create(project)
79
+ exit
80
+ end
178
81
 
179
- def exit
180
- exit!
181
- end
82
+ if ARGV.empty? and not runner
83
+ puts opts
84
+ exit
85
+ end
182
86
 
183
- ENV['IRBRC'] = ".irbrc" if File.exists? ".irbrc"
184
- IRB.start
185
- exit!
186
- else
187
- Ramaze.start(options)
188
- end
87
+ begin
88
+ puts "running `#{runner}'"
89
+ require runner.to_s
189
90
  rescue LoadError => ex
190
91
  puts ex
92
+ puts ex.backtrace
93
+ puts "Maybe i cannot find `#{runner}'"
94
+ puts "You could provide a file to execute like:"
95
+ puts "$ ramaze myapp.rb"
96
+ exit
97
+ end
98
+
99
+ if options.delete(:console)
100
+ options[:run_loose] = true
101
+ ARGV.clear # Avoid passing args to IRB
102
+
103
+ Ramaze.start(options)
104
+
105
+ require 'irb'
106
+ require 'irb/completion'
107
+
108
+ def exit; Ramaze.shutdown; end
109
+
110
+ ENV['IRBRC'] = ".irbrc" if File.exists? ".irbrc"
111
+ IRB.start
112
+ Ramaze.shutdown
113
+ else
114
+ Ramaze.start(options)
191
115
  end
@@ -1,6 +1,389 @@
1
- Fri May 11 21:08:56 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
1
+ Sun May 27 05:47:01 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
+ * Version 0.1.1
3
+
4
+ Sun May 27 05:45:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
5
+ * update todlist.html
6
+
7
+ Sun May 27 05:37:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
8
+ * rdocs for LinkHelper
9
+
10
+ Sun May 27 05:21:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
11
+ * rewrite of LinkHelper, link() is gone, use A() instead, will add some rdocs on usage.
12
+
13
+ Sun May 27 00:39:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
14
+ * synchronize tutorial html-version
15
+
16
+ Sun May 27 00:38:45 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
17
+ * another update of tutorial
18
+
19
+ Sat May 26 23:52:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
20
+ * some fixes to the tutorial
21
+
22
+ Fri May 25 20:39:54 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
23
+ * rake rdoc should generate the readme
24
+
25
+ Fri May 25 20:38:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
26
+ * add some docs, update announcement and README
27
+
28
+ Sat May 26 05:59:26 JST 2007 clive@crous.co.za
29
+ * Correct a minor typo/spelling error in shutdown message
30
+
31
+ Sat May 26 21:35:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
32
+ * fix the precendence of startup-options: bin/ramaze > Ramaze.start > Global.option
33
+
34
+ Sat May 26 02:18:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
35
+ * params assigned to Action should be unescaped automatically
36
+
37
+ Fri May 25 01:46:51 JST 2007 clive@crous.co.za
38
+ * Cleanup some Remarkably requires
39
+
40
+ Fri May 25 01:24:23 JST 2007 clive@crous.co.za
41
+ * "Update Remarkably usage for Remarkably-0.5.0"
42
+
43
+ Fri May 25 00:14:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
44
+ * make the template+arbitary-params fail (i.e. make the spec pass)
45
+
46
+ Thu May 24 23:35:28 JST 2007 Jonathan Buch <jo@helloit.fi>
47
+ * Spec for templates accepting arbitrary parameters
48
+ (failing for now)
49
+
50
+ Thu May 24 22:16:25 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
51
+ * 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.
52
+
53
+ Thu May 24 20:56:53 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
54
+ * extend the specs for the todolist example to match the current status
55
+
56
+ Thu May 24 20:56:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
57
+ * tutorial should have a list instead of a simple <br /> separated linklist
58
+
59
+ Thu May 24 20:56:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
60
+ * remove some wrong docs
61
+
62
+ Thu May 24 20:55:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
63
+ * adds the CgiHelper and extens the default helpers by :flash and :cgi
64
+
65
+ Thu May 24 20:54:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
66
+ * automatically unescape params in Action.params when they are set
67
+
68
+ Thu May 24 20:54:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
69
+ * update doc/tutorial/todolist.*
70
+
71
+ Thu May 24 20:41:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
72
+ * last step improving todolist example
73
+
74
+ Thu May 24 20:14:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
75
+ * first fix for todolist example
76
+
77
+ Thu May 24 19:13:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
78
+ * some small fixes for todolist.mkd
79
+
80
+ Thu May 24 17:00:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
81
+ * move doc/tutorial/todolist.txt to .mkd so i can finally have automatic synatx in vim :)
82
+
83
+ Thu May 24 14:45:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
84
+ * fix AspectHelper, it had errors with negative arity
85
+
86
+ Thu May 24 14:43:39 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
87
+ * add support for cookies and referrer to MockHTTP
88
+
89
+ Thu May 24 14:25:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
90
+ * add some docs for our override of Request#params
91
+
92
+ Wed May 23 09:06:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
93
+ * clean up the todolist example a bit
94
+
95
+ Wed May 23 08:23:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
96
+ * some fixes to get rid of rdoc warnings
97
+
98
+ Tue May 22 22:52:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
99
+ * this is the last stage of the templating-refactor.
100
+
101
+ Tue May 22 21:45:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
102
+ * improve Ramaze::Cache a bit, adding method_missing so you can use the advanced features of your cache
103
+
104
+ Tue May 22 21:44:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
105
+ * speed up element spec
106
+
107
+ Tue May 22 21:17:23 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
108
+ * speed up template spec
109
+
110
+ Tue May 22 21:14:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
111
+ * speed up controller spec
112
+
113
+ Tue May 22 21:14:02 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
114
+ * speed up params spec
115
+
116
+ Tue May 22 18:04:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
117
+ * finally fix the localize spec, properly
118
+
119
+ Tue May 15 17:42:06 JST 2007 Jonathan Buch <jo@helloit.fi>
120
+ * Remove yaml files for localizations
121
+
122
+ Tue May 22 17:34:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
123
+ * speed up the examples/chaching spec
124
+
125
+ Tue May 22 17:22:27 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
126
+ * This removes Ezamar::Morpher from the templating-pipeline of Ezamar, if you don't know what Morpher is, ignore this :) [yay, another speedup]
127
+
128
+ Tue May 22 15:16:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
129
+ * fix serious memory-leak, yeah, it's sessions and traits again...
130
+
131
+ Tue May 22 15:14:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
132
+ * make Ezamar even faster
133
+
134
+ Tue May 22 07:10:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
135
+ * remove usage of mongrel-adapter from the controller spec
136
+
137
+ Tue May 22 07:05:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
138
+ * remove snippets/rdoc/usage_no_exit, it's not needed with the new bin/ramaze
139
+
140
+ Tue May 22 07:03:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
141
+ * add Struct#values_at
142
+
143
+ Tue May 22 00:52:28 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
144
+ * 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.
145
+
146
+ Tue May 22 00:01:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
147
+ * unify all examples for templates, preparation for big templating-refactor
148
+
149
+ Mon May 21 20:31:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
150
+ * remove the dusty, old, deprecated, unneeded and nasty yaml files from proto, this time for real.
151
+
152
+ Mon May 21 20:25:35 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
153
+ * minor fix for bin/ramaze
154
+
155
+ Mon May 21 20:19:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
156
+ * yet another fix for bin/ramaze
157
+
158
+ Mon May 21 20:15:04 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
159
+ * no bulky RAMZE_BASE in the bin/ramaze anymore, just require ramaze
160
+
161
+ Mon May 21 18:02:14 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
162
+ * add check for defined?(Action)
163
+
164
+ Mon May 21 14:11:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
165
+ * 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.
166
+
167
+ Mon May 21 14:07:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
168
+ * make Cache Enumerable, add #each, #has_key? and ::add to add new global caches that are easily accessable
169
+
170
+ Mon May 21 20:10:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
171
+ * fixing some typos in tutorial
172
+
173
+ Mon May 21 17:45:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
174
+ * 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
175
+
176
+ Sun May 20 22:23:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
177
+ * fix localize spec
178
+
179
+ Sun May 20 16:13:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
180
+ * add the tutorial task for rake
181
+
182
+ Sun May 20 16:13:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
183
+ * add some (c) for the controller split
184
+
185
+ Sun May 20 16:13:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
186
+ * tutorial/todolist.html has a neat little menu with ToC now
187
+
188
+ Sun May 20 16:08:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
189
+ * update of tutorial/todolist
190
+
191
+ Sun May 20 16:08:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
192
+ * a little cleanup for bin/ramaze
193
+
194
+ Sun May 20 03:10:19 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
195
+ * don't create a new instance of the adapter for every request, we use singleton-methods only - may improve performance :)
196
+
197
+ Sun May 20 03:08:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
198
+ * improve examples/hello
199
+
200
+ Sun May 20 03:06:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
201
+ * documentation for ramaze/adapter/base.rb
202
+
203
+ Sun May 20 01:45:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
204
+ * document ramaze/action.rb and ramaze/adapter.rb
205
+
206
+ Sun May 20 01:34:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
207
+ * document lib/ramaze.rb
208
+
209
+ Sun May 20 01:29:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
210
+ * update the meta-doc for configuration
211
+
212
+ Sun May 20 01:15:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
213
+ * add a chapter about configuration to the tutorial
214
+
215
+ Sun May 20 01:13:38 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
216
+ * add some cleanup to the cache specs
217
+
218
+ Sun May 20 01:11:58 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
219
+ * split up Controller and move the parts in the ramaze/controller directory
220
+
221
+ Sat May 19 19:42:24 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
222
+ * additional fix to bin/ramaze, it didn't work with '-a m' to select adapters.
223
+
224
+ Sat May 19 18:26:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
225
+ * Ramaze doesn't extend itself anymore, so you have to explicitly write 'Ramaze.start' instead of 'include Ramaze; start' - is that good?
226
+
227
+ Sat May 19 18:17:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
228
+ * minor update for tutorial
229
+
230
+ Sat May 19 18:16:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
231
+ * a couple of additional requires for socket and yaml, mongrel and webrick. fixing a small bug that arose when we switched to ThreadGroup.
232
+
233
+ Sat May 19 03:47:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
234
+ * add MemCache#clear and fix SourceReload for files from ./
235
+
236
+ Fri May 18 23:29:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
237
+ * improve output of SpecWrap a little bit for the controller spec (the one with 125 specs)
238
+
239
+ Fri May 18 23:10:10 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
240
+ * 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.
241
+
242
+ Fri May 18 22:43:37 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
243
+ * fix lib/proto as well
244
+
245
+ Fri May 18 22:40:42 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
246
+ * fix examples/todolist and add a quite good spec for it
247
+
248
+ Fri May 18 21:41:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
249
+ * add to Global.origin
250
+
251
+ Fri May 18 21:40:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
252
+ * remove the old /conf files from proto and example/todolist
253
+
254
+ Fri May 18 21:36:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
255
+ * we ain't got no modes anymore
256
+
257
+ Fri May 18 21:29:16 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
258
+ * fix bin/ramaze --create
259
+
260
+ Fri May 18 21:21:29 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
261
+ * require rack/handler/mongrel instead of mongrel directly
262
+
263
+ Fri May 18 20:28:55 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
264
+ * fixing random vanishing of template_extensions
265
+
266
+ Fri May 18 20:20:22 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
267
+ * spec and corresponding fix for the "i've got an empty hash in my request.params['foo']" problem
268
+
269
+ Fri May 18 19:49:59 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
270
+ * switch trait _template to Controller::template
271
+
272
+ Fri May 18 18:25:36 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
273
+ * remove an added path that was only useful for me
274
+
275
+ Fri May 18 18:23:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
276
+ * SourceReload just got a lot mightier.
277
+
278
+ Fri May 18 14:48:26 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
279
+ * split up global.rb into global.rb global/dsl.rb and global/globalstruct.rb - introducing the clean GlobalDSL :)
280
+
281
+ Fri May 18 14:22:50 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
282
+ * 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.
283
+
284
+ Thu May 17 22:46:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
285
+ * 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).
286
+
287
+ Thu May 17 22:46:09 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
288
+ * remove some cruft from bin/ramaze
289
+
290
+ Thu May 17 22:40:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
291
+ * 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)
292
+
293
+ Thu May 17 20:04:03 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
294
+ * 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
295
+
296
+ Thu May 17 19:53:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
297
+ * add Ramaze::Record to easily record requests made that fit a particular pattern.
298
+
299
+ Thu May 17 17:20:33 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
300
+ * fixing the trait _template spec and implementation to avoid recursion
301
+
302
+ Thu May 17 16:50:49 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
303
+ * various fixes to Cache and adding spec for the new layout of it.
304
+
305
+ Thu May 17 01:40:22 JST 2007 clive@crous.co.za
306
+ * Change the Remarkably Template usage to cater for Remarkably version 0.4.0 and higher
307
+
308
+ Thu May 17 01:29:19 JST 2007 clive@crous.co.za
309
+ * Remove an accidentally added piece of debug code.
310
+
311
+ Thu May 17 00:22:39 JST 2007 Jonathan Buch <jo@helloit.fi>
312
+ * Add small spec for template resolving of traits
313
+
314
+ Wed May 16 23:49:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
315
+ * add migration info for patch 1111
316
+
317
+ Wed May 16 22:50:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
318
+ * first attempt at a DSL for Global + docs + CLI
319
+
320
+ Wed May 16 22:44:43 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
321
+ * minor fixes
322
+
323
+ Tue May 15 18:35:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
324
+ * add testcase_requires for the templating examples
325
+
326
+ Wed May 16 20:47:11 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
327
+ * H.U.G.E. refactoring of the core of Ramaze, beware! don't try this at work! will assemble a change-guide tonight.
328
+
329
+ Tue May 15 17:40:05 JST 2007 clive@crous.co.za
330
+ * Add Remarkably templates
331
+
332
+ Mon May 14 22:58:40 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
333
+ * 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
334
+
335
+ Mon May 14 22:36:06 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
336
+ * 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
337
+
338
+ Mon May 14 22:33:08 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
339
+ * 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
340
+
341
+ Mon May 14 22:18:47 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
342
+ * restructure spec tasks, check `rake -T` for the new tasks
343
+
344
+ Mon May 14 22:06:07 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
345
+ * remove spec/ramaze/dependencies - it's not exactly helpful anymore
346
+
347
+ Mon May 14 20:27:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
348
+ * some small fixes
349
+
350
+ Mon May 14 19:57:46 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
351
+ * don't base SourceReload on a sleep of @interval/files.size, rather sleep fixed @interval (which is now by default 1)
352
+
353
+ Mon May 14 18:26:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
354
+ * fix SourceReload
355
+
356
+ Mon May 14 12:41:41 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
357
+ * 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)
358
+
359
+ Sat May 12 23:14:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
360
+ * move Action out of Controller into ramaze/action.rb
361
+
362
+ Mon May 14 17:11:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
363
+ * fix for the params-fix
364
+
365
+ Mon May 14 16:12:51 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
366
+ * add fix for paramix if Og is used
367
+
368
+ Sat May 12 22:41:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
369
+ * introducing SourceReload instead of old autoreload
370
+
371
+ Sat May 12 05:00:32 JST 2007 Jonathan Buch <jo@helloit.fi>
372
+ * Make Analogger trait-configurable again
373
+ Makes it play better together with LogHub
374
+
375
+ Fri May 11 21:12:31 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
2
376
  tagged 0.1.0
3
377
 
378
+ Fri May 11 21:12:13 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
379
+ * Update CHANGELOG
380
+
381
+ Fri May 11 21:11:52 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
382
+ * Version 0.1.0
383
+
384
+ Fri May 11 21:10:34 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
385
+ * fix localize spec
386
+
4
387
  Fri May 11 20:55:21 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
5
388
  * update README with latest chunks
6
389
 
@@ -67,9 +450,6 @@ Wed May 9 13:16:20 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
67
450
  Wed May 9 12:59:48 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
68
451
  * fixing some weirdness and verbosity
69
452
 
70
- Tue May 8 16:14:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
71
- * add workaround if we run specs and don't want their modules in our controller
72
-
73
453
  Wed May 9 12:53:15 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
74
454
  * 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.
75
455
 
@@ -121,6 +501,9 @@ Wed May 9 12:41:17 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
121
501
  Tue May 8 19:31:16 JST 2007 Jonathan Buch <jo@helloit.fi>
122
502
  * Add 'template resolving' controller spec
123
503
 
504
+ Tue May 8 16:14:00 JST 2007 Michael Fellinger <m.fellinger@gmail.com>
505
+ * add workaround if we run specs and don't want their modules in our controller
506
+
124
507
  Tue May 8 16:00:58 JST 2007 m.fellinger@gmail.com
125
508
  * some small updates on the previous patch
126
509