ramaze 2008.06 → 2008.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (184) hide show
  1. data/README.markdown +6 -6
  2. data/Rakefile +33 -3
  3. data/bin/ramaze +18 -0
  4. data/doc/CHANGELOG +960 -0
  5. data/doc/LEGAL +5 -1
  6. data/doc/meta/announcement.txt +20 -36
  7. data/doc/tutorial/todolist.html +421 -313
  8. data/doc/tutorial/todolist.mkd +33 -16
  9. data/examples/app/blog/spec/blog.rb +3 -3
  10. data/examples/app/rapaste/controller/paste.rb +8 -1
  11. data/examples/app/rapaste/model/paste.rb +3 -0
  12. data/examples/app/rapaste/spec/rapaste.rb +3 -1
  13. data/examples/app/rapaste/start.rb +3 -2
  14. data/examples/app/sourceview/public/sourceview.js +2 -2
  15. data/examples/app/todolist/spec/todolist.rb +6 -6
  16. data/examples/app/todolist/template/index.xhtml +1 -1
  17. data/examples/app/whywiki/spec/whywiki.rb +2 -2
  18. data/examples/app/wikore/spec/wikore.rb +2 -2
  19. data/examples/app/wikore/src/model.rb +4 -3
  20. data/examples/app/wiktacular/spec/wiktacular.rb +7 -7
  21. data/examples/basic/simple.rb +2 -2
  22. data/examples/helpers/paginate.rb +71 -0
  23. data/examples/misc/simple_auth.rb +20 -8
  24. data/lib/proto/controller/init.rb +10 -0
  25. data/lib/proto/controller/main.rb +1 -3
  26. data/lib/proto/model/init.rb +4 -0
  27. data/lib/proto/public/dispatch.fcgi +1 -1
  28. data/lib/proto/spec/main.rb +2 -1
  29. data/lib/proto/start.rb +3 -3
  30. data/lib/proto/start.ru +1 -1
  31. data/lib/proto/view/error.xhtml +4 -4
  32. data/lib/ramaze.rb +8 -3
  33. data/lib/ramaze/action.rb +6 -6
  34. data/lib/ramaze/adapter.rb +1 -6
  35. data/lib/ramaze/adapter/base.rb +30 -27
  36. data/lib/ramaze/adapter/cgi.rb +1 -0
  37. data/lib/ramaze/cache.rb +1 -3
  38. data/lib/ramaze/cache/memcached.rb +3 -5
  39. data/lib/ramaze/contrib/auto_params.rb +2 -2
  40. data/lib/ramaze/contrib/auto_params/get_args.rb +2 -1
  41. data/lib/ramaze/contrib/gems.rb +17 -18
  42. data/lib/ramaze/contrib/gzip_filter.rb +22 -9
  43. data/lib/ramaze/contrib/maruku_uv.rb +59 -0
  44. data/lib/ramaze/contrib/profiling.rb +1 -1
  45. data/lib/ramaze/contrib/rest.rb +16 -13
  46. data/lib/ramaze/contrib/sequel/create_join.rb +25 -0
  47. data/lib/ramaze/contrib/sequel/form_field.rb +129 -0
  48. data/lib/ramaze/contrib/sequel/image.rb +198 -0
  49. data/lib/ramaze/contrib/sequel/relation.rb +82 -0
  50. data/lib/ramaze/controller.rb +33 -34
  51. data/lib/ramaze/controller/resolve.rb +29 -9
  52. data/lib/ramaze/current.rb +60 -20
  53. data/lib/ramaze/current/request.rb +8 -7
  54. data/lib/ramaze/current/response.rb +15 -3
  55. data/lib/ramaze/current/session/flash.rb +8 -0
  56. data/lib/ramaze/dispatcher.rb +17 -9
  57. data/lib/ramaze/dispatcher/action.rb +4 -5
  58. data/lib/ramaze/dispatcher/directory.rb +1 -1
  59. data/lib/ramaze/dispatcher/error.rb +4 -4
  60. data/lib/ramaze/dispatcher/file.rb +4 -4
  61. data/lib/ramaze/gestalt.rb +15 -20
  62. data/lib/ramaze/helper/cgi.rb +7 -15
  63. data/lib/ramaze/helper/formatting.rb +41 -1
  64. data/lib/ramaze/helper/httpdigest.rb +20 -7
  65. data/lib/ramaze/helper/link.rb +4 -6
  66. data/lib/ramaze/helper/paginate.rb +233 -0
  67. data/lib/ramaze/helper/redirect.rb +1 -1
  68. data/lib/ramaze/helper/rest.rb +1 -1
  69. data/lib/ramaze/helper/thread.rb +17 -0
  70. data/lib/ramaze/helper/ultraviolet.rb +44 -0
  71. data/lib/ramaze/helper/user.rb +4 -9
  72. data/lib/ramaze/log.rb +2 -2
  73. data/lib/ramaze/log/analogger.rb +21 -23
  74. data/lib/ramaze/log/growl.rb +21 -23
  75. data/lib/ramaze/log/hub.rb +1 -1
  76. data/lib/ramaze/log/informer.rb +97 -99
  77. data/lib/ramaze/log/knotify.rb +14 -16
  78. data/lib/ramaze/log/logger.rb +11 -13
  79. data/lib/ramaze/log/logging.rb +61 -63
  80. data/lib/ramaze/log/rotatinginformer.rb +168 -0
  81. data/lib/ramaze/log/syslog.rb +41 -31
  82. data/lib/ramaze/log/xosd.rb +70 -72
  83. data/lib/ramaze/option.rb +9 -6
  84. data/lib/ramaze/option/holder.rb +5 -27
  85. data/lib/ramaze/reloader.rb +186 -0
  86. data/lib/ramaze/setup.rb +1 -1
  87. data/lib/ramaze/snippets.rb +13 -0
  88. data/lib/ramaze/snippets/array/put_within.rb +31 -24
  89. data/lib/ramaze/snippets/binding/locals.rb +23 -11
  90. data/lib/ramaze/snippets/dictionary.rb +2 -2
  91. data/lib/ramaze/snippets/fiber.rb +63 -0
  92. data/lib/ramaze/snippets/kernel/constant.rb +36 -21
  93. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +12 -6
  94. data/lib/ramaze/snippets/numeric/filesize_format.rb +24 -17
  95. data/lib/ramaze/snippets/numeric/time.rb +63 -0
  96. data/lib/ramaze/snippets/object/__dir__.rb +29 -0
  97. data/lib/ramaze/snippets/object/acquire.rb +40 -0
  98. data/lib/ramaze/snippets/object/instance_variable_defined.rb +16 -5
  99. data/lib/ramaze/snippets/object/pretty.rb +14 -4
  100. data/lib/ramaze/snippets/object/scope.rb +14 -7
  101. data/lib/ramaze/snippets/ordered_set.rb +25 -14
  102. data/lib/ramaze/snippets/proc/locals.rb +17 -9
  103. data/lib/ramaze/snippets/ramaze/deprecated.rb +13 -0
  104. data/lib/ramaze/snippets/ramaze/fiber.rb +24 -0
  105. data/lib/ramaze/snippets/ramaze/state.rb +86 -0
  106. data/lib/ramaze/snippets/ramaze/struct.rb +45 -0
  107. data/lib/ramaze/snippets/string/camel_case.rb +13 -8
  108. data/lib/ramaze/snippets/string/color.rb +24 -20
  109. data/lib/ramaze/snippets/string/each.rb +14 -3
  110. data/lib/ramaze/snippets/string/end_with.rb +20 -0
  111. data/lib/ramaze/snippets/string/esc.rb +26 -21
  112. data/lib/ramaze/snippets/string/ord.rb +12 -6
  113. data/lib/ramaze/snippets/string/snake_case.rb +13 -7
  114. data/lib/ramaze/snippets/string/start_with.rb +16 -5
  115. data/lib/ramaze/snippets/string/unindent.rb +23 -15
  116. data/lib/ramaze/snippets/thread/into.rb +3 -3
  117. data/lib/ramaze/spec/helper/bacon.rb +5 -5
  118. data/lib/ramaze/spec/helper/mock_http.rb +1 -1
  119. data/lib/ramaze/spec/helper/pretty_output.rb +2 -2
  120. data/lib/ramaze/spec/helper/snippets.rb +8 -0
  121. data/lib/ramaze/template.rb +4 -1
  122. data/lib/ramaze/template/ezamar/textpow.syntax +34 -0
  123. data/lib/ramaze/template/maruku.rb +34 -0
  124. data/lib/ramaze/template/tagz.rb +2 -2
  125. data/lib/ramaze/template/xslt.rb +2 -2
  126. data/lib/ramaze/tool/create.rb +27 -53
  127. data/lib/ramaze/tool/localize.rb +8 -4
  128. data/lib/ramaze/tool/mime.rb +11 -1
  129. data/lib/ramaze/tool/project_creator.rb +110 -0
  130. data/lib/ramaze/trinity.rb +4 -1
  131. data/lib/ramaze/version.rb +1 -1
  132. data/lib/vendor/bacon.rb +323 -0
  133. data/rake_tasks/gem.rake +10 -1
  134. data/rake_tasks/maintenance.rake +40 -2
  135. data/rake_tasks/metric.rake +24 -0
  136. data/rake_tasks/release.rake +17 -4
  137. data/rake_tasks/spec.rake +1 -2
  138. data/ramaze.gemspec +549 -495
  139. data/spec/contrib/auto_params.rb +3 -3
  140. data/spec/contrib/profiling.rb +2 -2
  141. data/spec/examples/simple_auth.rb +2 -2
  142. data/spec/examples/templates/template_haml.rb +0 -2
  143. data/spec/ramaze/action/file_cache.rb +22 -0
  144. data/spec/ramaze/adapter.rb +2 -2
  145. data/spec/ramaze/controller/actionless_templates.rb +1 -1
  146. data/spec/ramaze/controller/subclass.rb +15 -0
  147. data/spec/ramaze/controller/template_resolving.rb +1 -1
  148. data/spec/ramaze/controller/view/bar.xhtml +1 -0
  149. data/spec/ramaze/controller/view/base/another.xhtml +1 -0
  150. data/spec/ramaze/current/session.rb +1 -1
  151. data/spec/ramaze/dispatcher/file.rb +2 -2
  152. data/spec/ramaze/helper/aspect.rb +26 -17
  153. data/spec/ramaze/helper/formatting.rb +13 -0
  154. data/spec/ramaze/log/informer.rb +10 -10
  155. data/spec/ramaze/log/syslog.rb +67 -4
  156. data/spec/ramaze/rewrite.rb +1 -1
  157. data/spec/ramaze/route.rb +1 -1
  158. data/spec/ramaze/struct.rb +47 -0
  159. data/spec/ramaze/template/markaby.rb +1 -1
  160. data/spec/ramaze/template/tagz.rb +1 -1
  161. data/spec/snippets/binding/locals.rb +9 -0
  162. data/spec/snippets/numeric/time.rb +12 -0
  163. data/spec/snippets/{kernel → object}/__dir__.rb +0 -0
  164. data/spec/snippets/{kernel → object}/acquire.rb +0 -0
  165. metadata +90 -81
  166. data/cache.yaml +0 -7
  167. data/examples/app/rammit/spec/rammit.rb +0 -31
  168. data/examples/app/rammit/src/controller/main.rb +0 -3
  169. data/examples/app/rammit/src/controller/page.rb +0 -16
  170. data/examples/app/rammit/src/model.rb +0 -33
  171. data/examples/app/rammit/start.rb +0 -8
  172. data/examples/app/rammit/template/index.xhtml +0 -14
  173. data/examples/app/rammit/template/page/view.xhtml +0 -4
  174. data/lib/ramaze/snippets/kernel/__dir__.rb +0 -23
  175. data/lib/ramaze/snippets/kernel/acquire.rb +0 -34
  176. data/lib/ramaze/snippets/object/thread_accessor.rb +0 -5
  177. data/lib/ramaze/snippets/ramaze/thread_accessor.rb +0 -58
  178. data/lib/ramaze/snippets/struct/fill.rb +0 -23
  179. data/lib/ramaze/snippets/struct/values_at.rb +0 -39
  180. data/lib/ramaze/snippets/symbol/to_proc.rb +0 -24
  181. data/lib/ramaze/sourcereload.rb +0 -176
  182. data/spec/snippets/struct/fill.rb +0 -26
  183. data/spec/snippets/struct/values_at.rb +0 -52
  184. data/spec/snippets/symbol/to_proc.rb +0 -13
@@ -85,7 +85,7 @@ Ramaze offers following features at the moment:
85
85
  * [Sass](http://haml.hamptoncatlin.com/docs/sass)
86
86
 
87
87
  Sass is a meta-language on top of CSS that‘s used to describe the style of
88
- a document cleanly and structurally, with more power than flat CSS allows.
88
+ a document cleanly and structurally, with more power than flat CSS allows.
89
89
 
90
90
  * Ezamar
91
91
 
@@ -98,7 +98,7 @@ Ramaze offers following features at the moment:
98
98
  * MemCache
99
99
 
100
100
  * Helper
101
- * Active by default
101
+ * Active by default
102
102
  * CGI
103
103
 
104
104
  Shortcuts for escape/unescape of the CGI module.
@@ -197,7 +197,7 @@ There are some basic principles that Ramaze tries to follow:
197
197
  available, giving you full control over your system.
198
198
 
199
199
  Even the most essential parts of Ramaze can easily be replaced and/or modified
200
- without losing the advantage of the whole framework.
200
+ without losing the advantage of the whole framework.
201
201
 
202
202
  * Minimal dependencies
203
203
 
@@ -357,7 +357,7 @@ Some places to get started are:
357
357
 
358
358
  There are some examples for your instant pleasure inside the examples-directory
359
359
  in the Ramaze-distribution.
360
- To start up an example, you can use the Ramaze binary located in bin/ramaze
360
+ To start up an example, you can use the Ramaze binary located in bin/ramaze
361
361
  for example:
362
362
 
363
363
  $ ramaze examples/hello.rb
@@ -408,12 +408,12 @@ For help you can:
408
408
 
409
409
  * Performance
410
410
  * Serving
411
-
411
+
412
412
  For best performance you should consider using Mongrel to host your
413
413
  application.
414
414
 
415
415
  * Caching
416
-
416
+
417
417
  You can easily cache your pages using the CacheHelper.
418
418
  Also, using MemCache gives you high-end performance and security.
419
419
 
data/Rakefile CHANGED
@@ -26,9 +26,10 @@ load 'rake_tasks/coverage.rake'
26
26
  load 'rake_tasks/release.rake'
27
27
  load 'rake_tasks/git.rake'
28
28
  load 'rake_tasks/gem.rake'
29
+ load 'rake_tasks/metric.rake'
29
30
 
30
- # task :default => ['spec']
31
- # task :test => ['spec']
31
+ task :default => ['spec']
32
+ task :test => ['spec']
32
33
  # task :package => ['jquery']
33
34
 
34
35
  desc 'download latest jquery and put in /lib/proto/public/js/jquery.js'
@@ -47,6 +48,35 @@ task :jquery do
47
48
  end
48
49
  end
49
50
 
51
+ desc 'Check gemspec file list against real file list'
52
+ task :check_gemspec do
53
+ base_dir = File.expand_path(File.dirname(__FILE__))
54
+ gemspec_files = eval(File.read(File.join(base_dir,'ramaze.gemspec'))).files.map{|file|File.join(base_dir,file)}
55
+
56
+ deleted_files = gemspec_files.select{|file|!File.exists?(file)}.map{|file|file[(base_dir.size+1)..-1]}
57
+
58
+ added_files = Dir.glob(File.join(File.dirname(__FILE__),'**/*')).select do |file|
59
+ !gemspec_files.index(file)
60
+ end.map do |file|
61
+ file[(base_dir.size+1)..-1]
62
+ end.select do |file|
63
+ !( file == 'pkg' or file =~ /.*\.gem/ )
64
+ end
65
+
66
+ unless deleted_files.empty?
67
+ puts "The following files appear in the gemspec but cannot be found:"
68
+ deleted_files.each do |file|
69
+ puts "\t#{file}"
70
+ end
71
+ end
72
+ unless added_files.empty?
73
+ puts "The following files exist, but cannot be found in the gemspec:"
74
+ added_files.each do |file|
75
+ puts "\t#{file}"
76
+ end
77
+ end
78
+ end
79
+
50
80
  task :rcov_dir do
51
81
  mkdir_p 'doc/output/tools/rcov/'
52
82
  end
@@ -60,7 +90,7 @@ task :rcov_summary => :rcov_dir do
60
90
  end
61
91
 
62
92
  desc "generate rdoc"
63
- task :rdoc => [:clean, :readme2html] do
93
+ task :rdoc => [:clean] do
64
94
  sh "rdoc #{(RDOC_OPTS + RDOC_FILES).join(' ')}"
65
95
  end
66
96
 
data/bin/ramaze CHANGED
@@ -46,6 +46,24 @@ if runner
46
46
  end
47
47
 
48
48
  runner = File.expand_path(runner)
49
+
50
+ console = Ramaze::Global.console
51
+
52
+ if console
53
+ ARGV.clear #Avoid passing args to IRB
54
+
55
+ Ramaze.trait[:started] = true
56
+ require runner
57
+
58
+ require 'irb'
59
+ require 'irb/completion'
60
+
61
+ ENV['IRBRC'] = ".irbrc" if File.exists? ".irbrc"
62
+ Ramaze.start! :run_loose => true
63
+ IRB.start
64
+ Ramaze.shutdown
65
+ end
66
+
49
67
  daemonize = Ramaze::Global.daemonize
50
68
 
51
69
  unless daemonize.empty?
@@ -1,3 +1,963 @@
1
+ commit 8702e0f09087f20e5d721d23a04bd473c5f513b0
2
+ Author: Michael Fellinger <m.fellinger@gmail.com>
3
+ Date: Wed Sep 10 12:09:52 2008 +0900
4
+
5
+ Version 2008.09
6
+
7
+ commit 106b8a3c81bb6736235d9b5d22f62062585c4bdb
8
+ Author: Michael Fellinger <m.fellinger@gmail.com>
9
+ Date: Wed Sep 10 12:09:07 2008 +0900
10
+
11
+ Update ramaze.gemspec
12
+
13
+ commit addf767762c1ef81e3d6bdc0d3f887f7ea3df03a
14
+ Author: Michael Fellinger <m.fellinger@gmail.com>
15
+ Date: Sun Sep 7 20:43:29 2008 +0900
16
+
17
+ Remove warning on non-existing file in Reloader
18
+
19
+ commit faea9db585bb551ad71f6e4a3dc7fc208b1ad573
20
+ Author: Ryan Grove <ryan@wonko.com>
21
+ Date: Tue Sep 9 16:27:32 2008 -0700
22
+
23
+ Remove unsuppressable debug message.
24
+
25
+ commit 1eae588f4961c945a6ea231988fa2a8ebb104737
26
+ Author: Michael Fellinger <m.fellinger@gmail.com>
27
+ Date: Sat Aug 30 16:12:18 2008 +0900
28
+
29
+ Fix Response#body, Rack has Content-Length
30
+
31
+ commit 29f622d83c092c7c46985693dd609e347256de33
32
+ Author: Michael Fellinger <m.fellinger@gmail.com>
33
+ Date: Sat Aug 30 13:51:33 2008 +0900
34
+
35
+ Remove Symbol#to_proc, it's in 1.8.7 anyway
36
+
37
+ commit 59317d08b7d339f3d1c7396f15aeb8ae5df9be63
38
+ Author: Michael Fellinger <m.fellinger@gmail.com>
39
+ Date: Sat Aug 30 09:47:09 2008 +0900
40
+
41
+ Last remaining 'module Dispatcher'
42
+
43
+ commit d6f71140fe86bdfdce1fc459281ed7dbfd6f9ad3
44
+ Author: Michael Fellinger <m.fellinger@gmail.com>
45
+ Date: Sat Aug 30 09:46:06 2008 +0900
46
+
47
+ Fix basic auth spec and use Response#write
48
+
49
+ commit 5e843f1239d70762c5b9edfe2a562f6c7575bbe7
50
+ Author: Michael Fellinger <m.fellinger@gmail.com>
51
+ Date: Thu Aug 28 23:26:03 2008 +0900
52
+
53
+ Make Rake::Deflater not a default middleware
54
+
55
+ commit 27ec88093abf759015551de275c0c9d191c9a960
56
+ Author: Michael Fellinger <m.fellinger@gmail.com>
57
+ Date: Wed Aug 27 23:45:41 2008 +0900
58
+
59
+ Remove check from Symbol#to_proc
60
+
61
+ commit 6a9196f951a1558b4f6197254c2717ae25a350fc
62
+ Author: Michael Fellinger <m.fellinger@gmail.com>
63
+ Date: Wed Aug 27 19:59:53 2008 +0900
64
+
65
+ Ramaze::Current and Ramaze::Dispatcher middleware
66
+
67
+ * Major refactor turning Ramaze into a fully middleware-based
68
+ framework, this allows us to use just about any existing Rack
69
+ middleware without patching.
70
+ * Ramaze::Current and Ramaze::Dispatcher become classes
71
+
72
+ commit f361811b768823f2d2509b09cf95b277303ff961
73
+ Author: Michael Fellinger <m.fellinger@gmail.com>
74
+ Date: Thu Aug 28 17:25:59 2008 +0900
75
+
76
+ Fix `ramaze --console`
77
+
78
+ commit dcecbc51efa9e35501c104b459582818a7c77bf1
79
+ Author: Michael Fellinger <m.fellinger@gmail.com>
80
+ Date: Thu Aug 28 17:25:34 2008 +0900
81
+
82
+ Don't daemonize by default for bin/ramaze
83
+
84
+ commit eec28065cfb513cb7a43e9560e6e5925456f7519
85
+ Author: Michael Fellinger <m.fellinger@gmail.com>
86
+ Date: Wed Aug 27 19:55:21 2008 +0900
87
+
88
+ Add __FILE__ to reloader files
89
+
90
+ commit 35300196d29d903203d2aaf30d6cc7d57a8558e2
91
+ Author: Michael Fellinger <m.fellinger@gmail.com>
92
+ Date: Wed Aug 27 19:54:52 2008 +0900
93
+
94
+ Minor refactor of gzip_filter
95
+
96
+ commit cdc32959dfffe1f3000fd84e850f6cce3c5e9d8f
97
+ Author: Michael Fellinger <m.fellinger@gmail.com>
98
+ Date: Wed Aug 27 14:12:09 2008 +0900
99
+
100
+ Move STATUS_CODES into lib/ramaze.rb
101
+
102
+ commit 11931b769add3823009110fe95c5479a3167bd65
103
+ Author: Michael Fellinger <m.fellinger@gmail.com>
104
+ Date: Wed Aug 27 14:11:31 2008 +0900
105
+
106
+ OrderedSet::[] as alias to ::new
107
+
108
+ commit 3f1cc4f23963abd64fe8dc15635315b6b6fb9c3c
109
+ Author: Michael Fellinger <m.fellinger@gmail.com>
110
+ Date: Wed Aug 27 13:02:22 2008 +0900
111
+
112
+ Minor changes to gzip_filter
113
+
114
+ * Document option setting
115
+ * Enable gzip filter for text/.* to allow css/html/js
116
+
117
+ commit cdd54eef78cee939e5c41f93b69c9a31958a73ef
118
+ Author: Michael Fellinger <m.fellinger@gmail.com>
119
+ Date: Wed Aug 27 10:04:32 2008 +0900
120
+
121
+ Force PATH expansion in ProjectCreator
122
+
123
+ commit bf166301c2d51dfdf0b4ca19e005bde23e07fd76
124
+ Author: Michael Fellinger <m.fellinger@gmail.com>
125
+ Date: Mon Aug 25 23:42:37 2008 +0900
126
+
127
+ Use UltraViolet to highlight tutorial
128
+
129
+ * There are several hacks used to achieve this, but the static html is
130
+ now generated by Uv and you won't have to generate it yourself.
131
+ Just see doc/tutorial/todolist.html for a visual treat.
132
+ * Adds textpow syntax for ezamar, should also be usable for the people
133
+ using textmate, someone should try it, i don't have TM.
134
+ * Adds contrib/maruku_uv.rb - a monkeypatch to MaRuKu to make it use
135
+ Uv instead of the syntax gem
136
+
137
+ commit a65df7188314944c0c18920ea1a468cd52068381
138
+ Author: Michael Fellinger <m.fellinger@gmail.com>
139
+ Date: Mon Aug 25 22:24:16 2008 +0900
140
+
141
+ Update lib/proto
142
+
143
+ commit f1c25013da3ee6c48dcec86085768116d2380a8e
144
+ Author: Michael Fellinger <m.fellinger@gmail.com>
145
+ Date: Mon Aug 25 22:23:24 2008 +0900
146
+
147
+ Remove rammit example
148
+
149
+ commit bbfd05b072317e85b38dafdb3eb2aee34542a66d
150
+ Author: Michael Fellinger <m.fellinger@gmail.com>
151
+ Date: Sun Aug 24 16:34:08 2008 +0900
152
+
153
+ Add ProjectCreator for `ramaze --create`
154
+
155
+ commit d97d31f4c93176b8e954c9eba39754809beec6f8
156
+ Author: Michael Fellinger <m.fellinger@gmail.com>
157
+ Date: Sat Aug 23 15:54:17 2008 +0900
158
+
159
+ Add regression spec for tagcloud
160
+
161
+ commit e9258f0d08c3f25de0c2ccb09c2b2641fe314c8c
162
+ Author: Michael Fellinger <m.fellinger@gmail.com>
163
+ Date: Sat Aug 23 15:50:43 2008 +0900
164
+
165
+ Further changes to paginate helper
166
+
167
+ * #navigation takes optional parameter to limit number of pages listed
168
+ * @page is adjusted to ensure valid range
169
+
170
+ commit 414f352fce9012787bbc9f115bb0f0f762b5db0e
171
+ Author: Michael Fellinger <m.fellinger@gmail.com>
172
+ Date: Sat Aug 23 15:50:19 2008 +0900
173
+
174
+ Add tagcloud to Helper::Formatting
175
+
176
+ commit 29d7f72fb9a90987f84d416e2d35d42290404312
177
+ Author: Michael Fellinger <m.fellinger@gmail.com>
178
+ Date: Thu Aug 21 13:21:39 2008 +0900
179
+
180
+ Paginate doesn't allow negative page number
181
+
182
+ commit 70b3bc11e8f2f1e1516793df58e43a884a3996b9
183
+ Author: Michael Fellinger <m.fellinger@gmail.com>
184
+ Date: Thu Aug 21 13:16:05 2008 +0900
185
+
186
+ Paginate fix page number larger than max
187
+
188
+ commit acc76de754a70ae3c12c0c77330d9dfec3711234
189
+ Author: Michael Fellinger <m.fellinger@gmail.com>
190
+ Date: Sun Aug 17 00:05:14 2008 +0900
191
+
192
+ Move extensions to ruby core into own module
193
+
194
+ * Moved into Ramaze::CoreExtensions
195
+ * Included into appropriate class on startup
196
+ * Remove unused or broken snippets
197
+ * Warn and don't extend on collision of method names
198
+ * Move Kernel snippets that belong into Object into the correct place
199
+
200
+ commit 758142cc19356063e58a36175d97803387404657
201
+ Author: Michael Fellinger <m.fellinger@gmail.com>
202
+ Date: Fri Aug 22 23:27:20 2008 +0900
203
+
204
+ Remove sourcereload.rb for good
205
+
206
+ commit 7fdcee9916c652c2b5365fcdc597c93c0284722f
207
+ Author: Cheah Chu Yeow <chuyeow@gmail.com>
208
+ Date: Mon Aug 18 19:13:40 2008 +0800
209
+
210
+ Allow auto_link formatting helper to actually take a block argument as documented.
211
+
212
+ commit 0b431e97a0a7fa2a672e7d75a4e64e21b3dd0985
213
+ Author: Michael Fellinger <m.fellinger@gmail.com>
214
+ Date: Tue Aug 12 21:54:15 2008 +0900
215
+
216
+ Pager obtains correct Action and calls @var.to_s
217
+
218
+ commit 7a5625042f954c83b2c99f97f398c790b34248b7
219
+ Author: Michael Fellinger <m.fellinger@gmail.com>
220
+ Date: Tue Aug 12 21:20:33 2008 +0900
221
+
222
+ Minor bugfix and lots of docs for paginate helper
223
+
224
+ commit 8ed7215865f5e12ec5dc148f497fc3f286bbeaab
225
+ Author: Michael Fellinger <m.fellinger@gmail.com>
226
+ Date: Tue Aug 12 17:50:59 2008 +0900
227
+
228
+ Remove note of cropped_thumbnail
229
+
230
+ commit 0f33197b3757ab5ea70ea80f04ca4abbe429395a
231
+ Author: Michael Fellinger <m.fellinger@gmail.com>
232
+ Date: Tue Aug 12 17:20:09 2008 +0900
233
+
234
+ Update ramaze.gemspec
235
+
236
+ commit 1f479c62acc1393a2aef4e6fb0465c5cea9c924c
237
+ Author: Michael Fellinger <m.fellinger@gmail.com>
238
+ Date: Tue Aug 12 17:19:19 2008 +0900
239
+
240
+ Gemspec manifest sorted and exclude /tags file
241
+
242
+ commit 0dc2fedd4278c2a82cffc0edec98e5326c2b2ef8
243
+ Author: Michael Fellinger <m.fellinger@gmail.com>
244
+ Date: Tue Aug 12 17:12:04 2008 +0900
245
+
246
+ Add release:gemspec-prepare task
247
+
248
+ * Creates a new gemspec based on current repository
249
+
250
+ commit 2a74c0de154771b35ce2a13bc97386e55b54e46c
251
+ Author: Michael Fellinger <m.fellinger@gmail.com>
252
+ Date: Tue Aug 12 16:58:03 2008 +0900
253
+
254
+ Update ramaze.gemspec
255
+
256
+ commit 1e68e1351ca192e1d887ab8fd55b47b2a35c1c0b
257
+ Author: Michael Fellinger <m.fellinger@gmail.com>
258
+ Date: Tue Aug 12 16:48:31 2008 +0900
259
+
260
+ Add contrib/sequel/form_field.rb
261
+
262
+ * Simply generate one form field for a given model instance attribute.
263
+
264
+ commit 546ae80912f275ae04e3b235863cbfadfc79ef16
265
+ Author: Michael Fellinger <m.fellinger@gmail.com>
266
+ Date: Tue Aug 12 16:47:54 2008 +0900
267
+
268
+ Add contrib/sequel/relation.rb
269
+
270
+ * Helps with your Relationship management
271
+
272
+ commit 28336967765d300ff085842346e2d35f963e1c04
273
+ Author: Michael Fellinger <m.fellinger@gmail.com>
274
+ Date: Tue Aug 12 16:47:28 2008 +0900
275
+
276
+ Add contrib/sequel/create_join.rb
277
+
278
+ commit f6eceaa0c53602b0f70a7db699eb1c08450f467c
279
+ Author: Michael Fellinger <m.fellinger@gmail.com>
280
+ Date: Tue Aug 12 16:47:05 2008 +0900
281
+
282
+ Add contrib/sequel/image.rb
283
+
284
+ commit 5663881fe34db56aa21463f66e3262641f6b99b1
285
+ Author: Michael Fellinger <m.fellinger@gmail.com>
286
+ Date: Tue Aug 12 16:44:19 2008 +0900
287
+
288
+ Add Helper::Paginate and example
289
+
290
+ * Paginates both Array and Sequel datasets
291
+
292
+ commit f7e8c332f743c24854c63c42c00d54ea933f2dcf
293
+ Author: Michael Fellinger <m.fellinger@gmail.com>
294
+ Date: Mon Aug 11 18:14:42 2008 +0900
295
+
296
+ Allow spec as value for Global.mode
297
+
298
+ commit 6fb2d0dec6103cd8fd2de66a258813f3d0f88584
299
+ Author: Clive Crous <clive@star120.co.za>
300
+ Date: Mon Aug 11 16:58:23 2008 +0200
301
+
302
+ Set error_page due to expected 404 for missing actions
303
+
304
+ commit 08e29ffb04c44a7c2848f7f1068c2c2fe22dd820
305
+ Author: Clive Crous <clive@crous.co.za>
306
+ Date: Sun Aug 10 20:46:19 2008 +0200
307
+
308
+ Minor grammatical correction within a comment.
309
+
310
+ commit 2ec0054aa31c9bf942c83798d37759f698d4034e
311
+ Author: Clive Crous <clive@crous.co.za>
312
+ Date: Sun Aug 10 15:59:32 2008 +0200
313
+
314
+ Update gemspec to add missing files as detected by check_gemspec task
315
+
316
+ commit e60f47b87f509c21a22d43c4db69b3c5db3a19c2
317
+ Author: Clive Crous <clive@crous.co.za>
318
+ Date: Sun Aug 10 15:56:26 2008 +0200
319
+
320
+ Add a rake task `check_gemspec` for finding missing or extra files within the gemspec definition
321
+
322
+ commit c546935032468507cb37d8b9b36faeebd7532e53
323
+ Author: Clive Crous <clive@crous.co.za>
324
+ Date: Sun Aug 10 15:16:19 2008 +0200
325
+
326
+ Add reloader.rb and state.rb to gemspec
327
+
328
+ commit 5ce8505e7ed0d368ab4782248f0f43d0b0f48c6d
329
+ Author: Michael Fellinger <m.fellinger@gmail.com>
330
+ Date: Sun Aug 10 20:45:17 2008 +0900
331
+
332
+ Add Session::Flash#(merge|merge!)
333
+
334
+ commit 2d2f3b532833499c19edb7e8e5bffd7cc0effcf5
335
+ Author: Michael Fellinger <m.fellinger@gmail.com>
336
+ Date: Sun Aug 10 20:24:42 2008 +0900
337
+
338
+ Fix wrong variable in ramaze/setup.rb
339
+
340
+ commit 1fa2e63f4fe17db5152b7c2746422eac160da866
341
+ Author: Clive Crous <clive@crous.co.za>
342
+ Date: Sun Aug 10 13:50:08 2008 +0200
343
+
344
+ Cleanup gemspec after Use Ramaze::STATE instead of Thread.current
345
+
346
+ commit faa9fae6464f1110e47fc76bdae7789ec8462101
347
+ Author: Michael Fellinger <m.fellinger@gmail.com>
348
+ Date: Sun Aug 10 19:03:34 2008 +0900
349
+
350
+ RaPaste serves text/html with id.html | html/id
351
+
352
+ commit b8da247ca4bd237d0f528a2473648e6a52977e2b
353
+ Author: Michael Fellinger <m.fellinger@gmail.com>
354
+ Date: Sun Aug 10 18:02:42 2008 +0900
355
+
356
+ Remove trailing useless slash
357
+
358
+ commit 1fb806a2093765f9ed302d0546fa6c62e62665aa
359
+ Author: Michael Fellinger <m.fellinger@gmail.com>
360
+ Date: Sun Aug 10 17:58:01 2008 +0900
361
+
362
+ Point to github from sourceview
363
+
364
+ commit dabc5b8fe5ee990d7162d2e34a215af117b6888a
365
+ Author: Michael Fellinger <m.fellinger@gmail.com>
366
+ Date: Sun Aug 10 12:08:45 2008 +0900
367
+
368
+ Use Ramaze::STATE instead of Thread.current
369
+
370
+ * Assign value by STATE[key] = value
371
+ * Retrieve value by STATE[key]
372
+ * Check for key by STATE.key?(key)
373
+
374
+ commit 5c1192fc4a96a8d3968fb365cc885695718798ac
375
+ Author: Michael Fellinger <m.fellinger@gmail.com>
376
+ Date: Sun Aug 10 11:32:24 2008 +0900
377
+
378
+ Introduce Ramaze::State | Ramaze::Fiber | Fiber
379
+
380
+ * This should provide a mostly compatible way to do fibers on 1.9 and
381
+ 1.8, but still relies on Thread on 1.8.
382
+
383
+ commit 4a1235526c923bae2fe3c9133d057b69f5826b43
384
+ Author: Michael Fellinger <m.fellinger@gmail.com>
385
+ Date: Sun Aug 10 03:05:52 2008 +0900
386
+
387
+ Reloader::Log instead of Ramaze::Log
388
+
389
+ commit 5102a73cd8d7591f5f62c8bd332e59edd09de944
390
+ Author: Michael Fellinger <m.fellinger@gmail.com>
391
+ Date: Sun Aug 10 02:59:42 2008 +0900
392
+
393
+ Fix specs regarding error status.
394
+
395
+ commit 88441a48544fab2c8e12054f11d0f4942a001983
396
+ Author: Michael Fellinger <m.fellinger@gmail.com>
397
+ Date: Sun Aug 10 02:36:36 2008 +0900
398
+
399
+ Fix custom error pages.
400
+
401
+ * To get racks error pages now set Global.error_page = false
402
+
403
+ commit 8241a31aa05b96ff416524fae806749fb93a922e
404
+ Author: Michael Fellinger <m.fellinger@gmail.com>
405
+ Date: Sun Aug 10 02:22:55 2008 +0900
406
+
407
+ Minor change for rtags support, no 'alias :b :a'
408
+
409
+ commit 603196575a13fb28269022d107e0ff7361f413ff
410
+ Author: Michael Fellinger <m.fellinger@gmail.com>
411
+ Date: Sat Aug 9 19:38:37 2008 +0900
412
+
413
+ Add Ramaze::Reloader and Global.middleware = true
414
+
415
+ * Global.middleware is now true by default:
416
+ * Don't pull yet if you need custom error pages!
417
+ * Error pages are handled by Rack::ShowExceptions
418
+
419
+ * Add Ramaze::Reloader:
420
+ * Implemented as Rack middleware
421
+ * Reloads only on requests, keeps your CPU at 0
422
+ * Reloader::OPTIONS[:thread] = true will use an exclusive thread for
423
+ reloading, by default no threads are used.
424
+ * Reloader::OPTIONS[:control] allows you to hook into #call and use
425
+ your own way to run #cycle, useful for EventMachine
426
+ * Reloader::OPTIONS[:cooldown] is set by Global.sourcereload, same
427
+ behaviour as before
428
+ * Only one stat(2) per path, lower disk usage
429
+ * Can still be used independent of Ramaze as no traits or ramazisms
430
+ are used
431
+
432
+ commit d345e5059660cc5b8451ffd939e150bf78bc1c11
433
+ Author: Michael Fellinger <m.fellinger@gmail.com>
434
+ Date: Sat Aug 9 17:34:51 2008 +0900
435
+
436
+ Fix some docs in Adapter::Base
437
+
438
+ commit e31fdb254407d3b01445d54d4b333f38cc34ace6
439
+ Author: Michael Fellinger <m.fellinger@gmail.com>
440
+ Date: Fri Aug 1 15:34:42 2008 +0900
441
+
442
+ Add Helper::Ultraviolet
443
+
444
+ commit 9dd7de92418c9e827b67eee31d76663a0f6ec099
445
+ Author: Michael Fellinger <m.fellinger@gmail.com>
446
+ Date: Fri Aug 1 14:59:03 2008 +0900
447
+
448
+ Add gem task and set default task to spec
449
+
450
+ commit 97fb8c7fce3311c9ca6a5219846cc098c5cbecfb
451
+ Author: Michael Fellinger <m.fellinger@gmail.com>
452
+ Date: Fri Aug 1 14:23:21 2008 +0900
453
+
454
+ Gestalt builds an Array and joins at the end
455
+
456
+ commit 1e803301933bde7b2a78f23289efbbcf2ec5230e
457
+ Author: Michael Fellinger <m.fellinger@gmail.com>
458
+ Date: Fri Aug 1 14:22:30 2008 +0900
459
+
460
+ Fix file list in gemspec
461
+
462
+ commit c82a54038d9e42c971e30a66f27825ce39db548e
463
+ Author: Michael Fellinger <m.fellinger@gmail.com>
464
+ Date: Fri Aug 1 14:22:15 2008 +0900
465
+
466
+ Bump Version to 2008.08
467
+
468
+ commit fe3235f5e90ac4770f48b6506f3153e1abc9b22f
469
+ Author: Michael Fellinger <m.fellinger@gmail.com>
470
+ Date: Fri Aug 1 14:21:09 2008 +0900
471
+
472
+ Add Tool::MIME::ext_for(mime)
473
+
474
+ commit 480a70f34e170a39afca21cbb2b9273a6226bbf0
475
+ Author: Andrew Farmer <xichekolas@gmail.com>
476
+ Date: Wed Aug 6 01:18:28 2008 -0500
477
+
478
+ Fixed bug where index actions with arguments were improperly file-cached, and added specs to test.
479
+
480
+ commit 5ee03fff4149ab6c28c9c04c19992bd99e7955fa
481
+ Author: Michael Fellinger <m.fellinger@gmail.com>
482
+ Date: Wed Jul 30 19:32:29 2008 +0900
483
+
484
+ Controller::view_root at old state, unbreak specs
485
+
486
+ commit 6b13b5466091dd27c97707601d6af171b74bb03e
487
+ Author: Sam Carr <samcarr@gmail.com>
488
+ Date: Wed Jul 30 10:02:41 2008 +0100
489
+
490
+ Improve action method resolving with respect to Helper::LOOKUP.
491
+
492
+ Now the action method resolving only considers helper methods where the helper is in Helper::LOOKUP and is included by the controller in question. Previously all methods of all helpers in Helper::LOOKUP were deemed to be available on all controllers whether they included the helpers or not, which was wrong.
493
+
494
+ commit 6e5ead99e44a213b2e8fd45cee7c393970204966
495
+ Author: Michael Fellinger <m.fellinger@gmail.com>
496
+ Date: Tue Jul 29 13:09:17 2008 +0900
497
+
498
+ Subclass Helper::User::Wrapper from BlankSlate
499
+
500
+ commit 5da248dc40737c5fcc8ed3082794584bb6a9ec30
501
+ Author: Michael Fellinger <m.fellinger@gmail.com>
502
+ Date: Tue Jul 29 13:04:28 2008 +0900
503
+
504
+ Fix missing Controller::view_root when unrouted
505
+
506
+ * This occured when you haven't been on the target controller yet.
507
+ For example right after startup trying to MainController obtain
508
+ FooController.view_root will return nil although when visiting
509
+ FooController before the routing would set a default.
510
+ * The default is now set directly in Controller::view_root
511
+
512
+ commit 72b0669391149f4ca8c0e5b71292548921d6d9d6
513
+ Author: Clive Crous <clive@star120.co.za>
514
+ Date: Tue Jul 29 10:19:44 2008 +0200
515
+
516
+ Include thread helper in gemspec
517
+
518
+ commit 49660cea97a2c897d7413c74ff65e4bf404be48f
519
+ Author: Clive Crous <clive@crous.co.za>
520
+ Date: Mon Jul 28 16:26:16 2008 +0200
521
+
522
+ Clarify exception rescue code within thread helper
523
+
524
+ commit 24cf2d96efcd60b6373038f3fc67eefcd2107d74
525
+ Author: Clive Crous <clive@crous.co.za>
526
+ Date: Mon Jul 28 16:17:01 2008 +0200
527
+
528
+ Add a thread helper for cleaner thread exceptions
529
+
530
+ commit 28f90e25f01136be619dbd6755dd8d3a142f8b51
531
+ Author: Sam Carr <samcarr@gmail.com>
532
+ Date: Thu Jun 19 14:42:44 2008 +0100
533
+
534
+ Updates Memcached comments to recognise why get_multi may not be available.
535
+
536
+ commit 8ebf919d6042009df8617479d0388b6142dcf092
537
+ Author: Sam Carr <samcarr@gmail.com>
538
+ Date: Mon Jul 21 10:23:30 2008 +0100
539
+
540
+ Allow controller subclasses to pick up template mappings defined in superclasses.
541
+
542
+ I noticed that if I define a template mapping with the template method, subclasses of the defining controller do not respect that mapping. This only really applies to the template :foo, :bar usage, where no explicit controller is specified. With these modifications, template mappings such as that will assume you mean the 'current' controller. Specs have been added to test this new functionality.
543
+
544
+ commit 155b9a4fc0c1b3a7b0972ee59f9dc47d8ed0915d
545
+ Author: Michael Fellinger <m.fellinger@gmail.com>
546
+ Date: Mon Jul 21 18:28:45 2008 +0900
547
+
548
+ Update announcement for 2008.07 (partial)
549
+
550
+ commit 53c794720adfb146c5a161485e95417833b82ec9
551
+ Author: Michael Fellinger <m.fellinger@gmail.com>
552
+ Date: Mon Jul 21 18:27:46 2008 +0900
553
+
554
+ Only escape # with h() where needed
555
+
556
+ commit f89652a95d2417d88fabcb77a143522235af0d79
557
+ Author: Michael Fellinger <m.fellinger@gmail.com>
558
+ Date: Mon Jul 21 18:27:03 2008 +0900
559
+
560
+ More info on problems in Helper::User
561
+
562
+ commit 5497329e0221a57b226e62487599261b7594eba9
563
+ Author: Michael Fellinger <m.fellinger@gmail.com>
564
+ Date: Mon Jul 21 18:26:15 2008 +0900
565
+
566
+ Controller::map(nil) shouldn't map to ''
567
+
568
+ commit 922f993bb42fec6379ea39c855e226daf3bb86a9
569
+ Author: Michael Fellinger <m.fellinger@gmail.com>
570
+ Date: Fri Jul 4 21:51:11 2008 +0900
571
+
572
+ Add Ramaze::Template::Maruku
573
+
574
+ commit ae6a3afe5a12c2f8fa0b9e33d0ebc175316fc5bd
575
+ Author: Michael Fellinger <m.fellinger@gmail.com>
576
+ Date: Fri Jul 4 21:50:38 2008 +0900
577
+
578
+ Add Helper::Formatting::obfuscate_email
579
+
580
+ commit ff5343a81897548374fbb9e038ad268135d04016
581
+ Author: Michael Fellinger <m.fellinger@gmail.com>
582
+ Date: Sun Jul 20 16:32:36 2008 +0900
583
+
584
+ Slight reformat of Request#ip method
585
+
586
+ commit 959ff55e453d374e9a3a5e639f5a91f632c3db95
587
+ Author: Matt Rubens <mrubens@goldencookie.localdomain>
588
+ Date: Thu Jul 17 11:13:18 2008 -0700
589
+
590
+ Request#ip always returns last ip in X_FORWARDED_FOR
591
+
592
+ commit 8499c05d643b8f9a059ecc5758bf84ea7eceaa3f
593
+ Author: Aman Gupta <aman@tmm1.net>
594
+ Date: Thu Jul 10 16:27:54 2008 -0700
595
+
596
+ Oops, non-existant file in gemspec
597
+
598
+ commit a3cc3396c03e11905624b3fc72b262bdc2f0ddd9
599
+ Author: Aman Gupta <aman@tmm1.net>
600
+ Date: Thu Jul 10 16:24:33 2008 -0700
601
+
602
+ Fix rake release:nightly
603
+
604
+ commit 1a9031d4a13eff8573b18eecfd38808a96924d22
605
+ Author: Aman Gupta <aman@tmm1.net>
606
+ Date: Thu Jul 10 16:17:35 2008 -0700
607
+
608
+ Fix release:gemspec task
609
+
610
+ commit 4514a5f89300f8068e64a754bd04c2d6c4948192
611
+ Author: Aman Gupta <aman@tmm1.net>
612
+ Date: Thu Jul 10 16:17:09 2008 -0700
613
+
614
+ Update ramaze.gemspec
615
+
616
+ commit e3c4beec604760ae61477c8032c9f984936bb0d7
617
+ Author: Aman Gupta <aman@tmm1.net>
618
+ Date: Thu Jul 10 16:13:38 2008 -0700
619
+
620
+ Use Ramaze::Rewrite in contrib/rest
621
+
622
+ commit 73cade77caba416d3d215971699b60be05a99ac7
623
+ Author: Aman Gupta <aman@tmm1.net>
624
+ Date: Wed Jul 9 02:15:32 2008 -0700
625
+
626
+ Fix spec failure in SourceReload::shutdown
627
+
628
+ commit 07c3b9553d9b037315cdaa90b79eaec9079ebb34
629
+ Author: Aman Gupta <aman@tmm1.net>
630
+ Date: Tue Jul 8 16:04:53 2008 -0700
631
+
632
+ start SourceReload via essentials (instead on 'require ramaze')
633
+
634
+ commit 7b275604177b6dcb79faddbf1b09b446a2707b9e
635
+ Merge: c671b8c... 8ebe6e3...
636
+ Author: Jonathan Buch <jonathan.buch@gmail.com>
637
+ Date: Thu Jul 3 23:31:30 2008 +0200
638
+
639
+ Merge branch 'master' of git@github.com:manveru/ramaze
640
+
641
+ commit c671b8cc5ea1ef2d0f83993e136a56673cdfa1f3
642
+ Author: Jonathan Buch <jonathan.buch@gmail.com>
643
+ Date: Thu Jul 3 23:31:05 2008 +0200
644
+
645
+ Don't reuse the Adapter alias for requireing adapter files
646
+ Failed for Mongrel, as it has different files for a single alias.
647
+
648
+ commit 8ebe6e36325bb1238acee1218b3bcef5dc379dac
649
+ Author: Michael Fellinger <m.fellinger@gmail.com>
650
+ Date: Mon Jun 30 15:48:08 2008 +0900
651
+
652
+ Some minor whitespace fix
653
+
654
+ commit 8fde4e2a7e3689ed6e241a55bfa048a2a231350e
655
+ Author: Michael Fellinger <m.fellinger@gmail.com>
656
+ Date: Mon Jun 30 15:47:50 2008 +0900
657
+
658
+ Fix faulty rewrite by Global.prefix
659
+
660
+ commit f0d2a7cf2f8f8436a6e48d3333f71e6c1b6419ff
661
+ Author: Michael Fellinger <m.fellinger@gmail.com>
662
+ Date: Mon Jun 30 15:47:15 2008 +0900
663
+
664
+ to_s before Rack::Utils::unescape
665
+
666
+ commit abfd86f65bfd94a686f13d14a0e1b25978213203
667
+ Author: Michael Fellinger <m.fellinger@gmail.com>
668
+ Date: Mon Jun 30 15:46:48 2008 +0900
669
+
670
+ Don't expect 303 but 302 for redirect in specs
671
+
672
+ commit 557c01621bb512dd5200360c461745841ef8c49f
673
+ Author: Rob Lievaart <rob@rebeltechnologies.nl>
674
+ Date: Fri Jun 27 11:08:38 2008 +0200
675
+
676
+ Update ramaze syslog support, the old version did not work(anymore?). I modified the interface to use the Logging module and I updated the syslog spec file to test the syslog support.
677
+
678
+ commit 029b39ae46ba10b72f96242993518719ac783537
679
+ Author: Michael Fellinger <m.fellinger@gmail.com>
680
+ Date: Wed Jun 25 21:17:54 2008 +0900
681
+
682
+ Adding Global.prefix for nested app deployment
683
+
684
+ * Global.prefix is by default '/'
685
+ * Global.prefix = '/app' would strip '/app' from incoming
686
+ requests and prefix it when using R/A/Rs from Helper::Link
687
+
688
+ commit f39700b2106db3c1da6e831ddfaaecf5ce20559e
689
+ Author: Michael Fellinger <m.fellinger@gmail.com>
690
+ Date: Wed Jun 25 16:22:00 2008 +0900
691
+
692
+ Ramaze::Gestalt gets nicer example
693
+
694
+ commit 734bd65ee773cbb145e8a9779c98892b3a1b620f
695
+ Author: Michael Fellinger <m.fellinger@gmail.com>
696
+ Date: Tue Jun 24 10:35:17 2008 +0900
697
+
698
+ Correct license in doc/LEGAL
699
+
700
+ commit 19210b28ed5be2eb946e5bbd7592049a5c0c33e0
701
+ Author: Aman Gupta <aman@tmm1.net>
702
+ Date: Mon Jun 23 00:28:54 2008 -0700
703
+
704
+ Add adapter to logger output
705
+
706
+ commit 16065e9e652ca74b50360940e26ba5137514b51b
707
+ Author: Aman Gupta <aman@tmm1.net>
708
+ Date: Mon Jun 23 00:18:54 2008 -0700
709
+
710
+ Switch contrib/gems to use Gem::DependencyInstaller
711
+
712
+ commit 3c3c3bd8cab100d53de6f26af93059f3bd71dcb2
713
+ Merge: 9578d8b... 028a50c...
714
+ Author: raggi <jftucker@gmail.com>
715
+ Date: Sat Jun 21 12:58:35 2008 +0100
716
+
717
+ Merge branch 'master' of git@github.com:manveru/ramaze
718
+
719
+ commit 9578d8bb0b1692f8cf728d1e5b814bea38f0b3e7
720
+ Author: raggi <jftucker@gmail.com>
721
+ Date: Sat Jun 21 12:57:11 2008 +0100
722
+
723
+ Corrected remaining Ramaze::Informer calls. dispatch.fgci and win32 may now work!
724
+
725
+ commit 028a50cd8b992edcbae6297829fd691e20eae200
726
+ Author: Jean-Francois Chevrette <jfchevrette@iweb.ca>
727
+ Date: Thu Jun 19 08:17:02 2008 -0400
728
+
729
+ fixing the console feature that was accidentally dropped in 2008.06
730
+
731
+ commit 827cce9fe1b738b67205f7df18e22d14511423bf
732
+ Author: Michael Fellinger <m.fellinger@gmail.com>
733
+ Date: Thu Jun 19 17:07:45 2008 +0900
734
+
735
+ Further usage of Rack::Utils
736
+
737
+ commit 6bc1d953b391ddb6650c10663dfb6bb41679008c
738
+ Author: Michael Fellinger <m.fellinger@gmail.com>
739
+ Date: Thu Jun 19 00:32:34 2008 +0900
740
+
741
+ Use Rack::Util for escape_html
742
+
743
+ commit 17473d232b9d0debff7f77b0188bd9ffedc90db2
744
+ Author: Michael Fellinger <m.fellinger@gmail.com>
745
+ Date: Thu Jun 19 00:29:57 2008 +0900
746
+
747
+ Use Rack::Utils for escape/unescape
748
+
749
+ commit e8bc3b65bd94ad6a44735f291b632ad827cb835d
750
+ Author: Sam Carr <samcarr@gmail.com>
751
+ Date: Wed Jun 18 15:15:21 2008 +0100
752
+
753
+ Fix to Cache so it doesn't add methods to Class itself.
754
+
755
+ commit d917b6f3126b8c4d204f2838e86a9ef7dfcfb986
756
+ Author: Michael Fellinger <m.fellinger@gmail.com>
757
+ Date: Wed Jun 18 16:54:19 2008 +0900
758
+
759
+ Ability to deprecate constants by const_missing
760
+
761
+ commit df3566210b4a05a5ba7cdc4b4c8303ce6c00cf42
762
+ Author: Aman Gupta <aman@tmm1.net>
763
+ Date: Tue Jun 17 15:55:19 2008 -0700
764
+
765
+ send 302 instead of 303 (for better compatibility with older browsers) in RedirectHelper
766
+
767
+ commit 287516d024fc1d0d1f0b407734cdb2cdabd1fafb
768
+ Author: Michael Fellinger <m.fellinger@gmail.com>
769
+ Date: Tue Jun 17 01:30:44 2008 +0900
770
+
771
+ Revert "Remove vendor/bacon.rb"
772
+
773
+ This reverts commit a184f71c34e2a0d3f01d9728622aba7cc3d097fe.
774
+
775
+ commit cb4a7dc4f70da569b33b92f81dbc483911d638fc
776
+ Author: Wang, Jinjing <nfjinjing@gmail.com>
777
+ Date: Sat Jun 14 00:08:12 2008 +0800
778
+
779
+ remove custom hacks..
780
+
781
+ commit 05d7211d70a756dd742c6ca598512e2607e27998
782
+ Author: Wang, Jinjing <nfjinjing@gmail.com>
783
+ Date: Fri Jun 6 16:42:02 2008 +0800
784
+
785
+ em hack
786
+
787
+ commit 235d29eb6bd1470c088a8d6fc520ef45c6ecca91
788
+ Author: Clinton R. Nixon <crnixon@gmail.com>
789
+ Date: Sun Jun 15 13:08:28 2008 -0400
790
+
791
+ temp fix for Passenger - remember to replace with manveru's eventual fix
792
+
793
+ commit e0b938be4169c4343c297e57c1485f5c56449071
794
+ Author: Clinton R. Nixon <clinton.nixon@viget.com>
795
+ Date: Fri Jun 13 15:45:05 2008 -0400
796
+
797
+ Added ability to fake out PUT and DELETE through POST and a hidden 'method' variable in contrib/rest.rb
798
+
799
+ commit c73feefa72c694193644aff4c3cd2623e17a5a87
800
+ Author: Clinton R. Nixon <clinton.nixon@viget.com>
801
+ Date: Fri Jun 13 15:44:25 2008 -0400
802
+
803
+ Fixed symbol.downcase bug in helpers/rest.rb
804
+
805
+ commit 3ebec6927d235744bc870af2c7ea66fdaf4131d8
806
+ Author: Yasushi Abe <yasushi.abe@gmail.com>
807
+ Date: Mon Jun 16 12:37:45 2008 +0900
808
+
809
+ Fix Global.server==nil on Cgi adapter.
810
+
811
+ commit 2b6d1de47d33910753f000922ae360b0f6ab1675
812
+ Author: Michael Fellinger <m.fellinger@gmail.com>
813
+ Date: Mon Jun 16 22:25:56 2008 +0900
814
+
815
+ Fix rake maintenance:undocumented dependencies
816
+
817
+ commit a1c0c3c41cf467efcfb2f005a0474f6bf4b3e318
818
+ Author: Michael Fellinger <m.fellinger@gmail.com>
819
+ Date: Sun Jun 15 11:23:17 2008 +0900
820
+
821
+ Speed up and simplify Binding::locals
822
+
823
+ commit 011b6810483f9fcdee1050729ab9c811e0d66dab
824
+ Author: Wang, Jinjing <nfjinjing@gmail.com>
825
+ Date: Sat Jun 14 00:08:12 2008 +0800
826
+
827
+ remove custom hacks..
828
+
829
+ commit f27affc02a8bb500816d7e963374c51602fafc7b
830
+ Author: Wang, Jinjing <nfjinjing@gmail.com>
831
+ Date: Fri Jun 13 23:32:25 2008 +0800
832
+
833
+ Fix: binding.locals on Ruby1.9, add a small spec for locals, and make haml tempalte spec pass
834
+
835
+ commit e73a1088779706094d8707f3fc8adcf5e6a16759
836
+ Author: Wang, Jinjing <nfjinjing@gmail.com>
837
+ Date: Fri Jun 6 16:42:02 2008 +0800
838
+
839
+ em hack
840
+
841
+ commit ff63fcb10bc63ca4ae052aff24d4808ec3ef7cdf
842
+ Author: Aman Gupta <aman@tmm1.net>
843
+ Date: Sun Jun 15 16:14:36 2008 -0700
844
+
845
+ add simple numeric time extensions
846
+
847
+ commit 3dee5a0a6f40d56d2480a9d79117fe6473509345
848
+ Author: Michael Fellinger <m.fellinger@gmail.com>
849
+ Date: Sat Jun 14 18:11:50 2008 +0900
850
+
851
+ Fix whitespace in simple example
852
+
853
+ commit 32a57700dddbbd9bd45380fa6be69f690b71abcd
854
+ Author: Michael Fellinger <m.fellinger@gmail.com>
855
+ Date: Sat Jun 14 16:17:45 2008 +0900
856
+
857
+ Denormalize Controller::resolve_method
858
+
859
+ commit 5167de5c7defb49847b6a8074914e06534542dfa
860
+ Author: Michael Fellinger <m.fellinger@gmail.com>
861
+ Date: Sat Jun 14 16:16:34 2008 +0900
862
+
863
+ Reindent Controller::template
864
+
865
+ commit 0e1bca844f88f94399d91072adc46f0f34b27b53
866
+ Author: Michael Fellinger <m.fellinger@gmail.com>
867
+ Date: Sat Jun 14 16:03:33 2008 +0900
868
+
869
+ Fix syntax ambiguity in wikore model
870
+
871
+ commit 6c37b0658ca713348d3aea3920a50ae6ef9681ad
872
+ Author: Michael Fellinger <m.fellinger@gmail.com>
873
+ Date: Sat Jun 14 16:01:42 2008 +0900
874
+
875
+ Fix syntax ambiguity in template/xslt
876
+
877
+ commit cb0054d0e8ef49550a1031faef887e8a2e6ee050
878
+ Author: Michael Fellinger <m.fellinger@gmail.com>
879
+ Date: Sat Jun 14 16:00:04 2008 +0900
880
+
881
+ Adding metric task metric:churn
882
+
883
+ commit 8a0d7e71be6a1f72b7d1ebee9ba0a32b47c66538
884
+ Author: Michael Fellinger <m.fellinger@gmail.com>
885
+ Date: Fri Jun 13 17:38:48 2008 +0900
886
+
887
+ Put loggers into the Ramaze::Logger namespace
888
+
889
+ commit 2fb13c80c10dbb4fd2d7876e2ad1e3991ecc4ef7
890
+ Author: Michael Fellinger <m.fellinger@gmail.com>
891
+ Date: Fri Jun 13 17:29:01 2008 +0900
892
+
893
+ Fix db for wikore
894
+
895
+ commit 146fda6eace6e08087e7037f97c87b1710e8987a
896
+ Author: Michael Fellinger <m.fellinger@gmail.com>
897
+ Date: Fri Jun 13 17:25:44 2008 +0900
898
+
899
+ Tutorial should use h instead of c
900
+
901
+ commit 73cc2c88c3b2afc4d3008c3e5868320ee7b278d4
902
+ Author: Michael Fellinger <m.fellinger@gmail.com>
903
+ Date: Fri Jun 13 17:25:24 2008 +0900
904
+
905
+ Fix db for rapaste
906
+
907
+ commit 714df4b83fd8fc91412f0b1b290450e271e356f6
908
+ Author: Michael Fellinger <m.fellinger@gmail.com>
909
+ Date: Fri Jun 13 17:23:03 2008 +0900
910
+
911
+ Fix auto_params for new ruby2ruby/parsetree
912
+
913
+ commit de8bea7e53e92228c3812a811a51c46a2328071d
914
+ Author: Michael Fellinger <m.fellinger@gmail.com>
915
+ Date: Fri Jun 13 16:43:15 2008 +0900
916
+
917
+ Remove deprecated methods
918
+
919
+ commit fdf7f79cb3719fe95a1e3bcc9088c90e88e0aaf3
920
+ Author: Michael Fellinger <m.fellinger@gmail.com>
921
+ Date: Thu Jun 12 17:49:43 2008 +0900
922
+
923
+ Add String#end_with? / improve String#start_with?
924
+
925
+ commit aa73627ed98485269fd6cf82ee3ab3ba0dced020
926
+ Author: Michael Fellinger <m.fellinger@gmail.com>
927
+ Date: Thu Jun 12 14:24:27 2008 +0900
928
+
929
+ Change some dbs to Sequel.connect
930
+
931
+ commit 5b55be133f46df5cc71cfa6bae4b5123e312b99c
932
+ Author: Michael Fellinger <m.fellinger@gmail.com>
933
+ Date: Thu Jun 12 14:23:28 2008 +0900
934
+
935
+ Ramaze.start! instead of :force in start.ru
936
+
937
+ commit 971ca18c37b6181f278c00025c0d9ad6c94d6f07
938
+ Author: Pistos <gitsomegrace.5.pistos@geoshell.com>
939
+ Date: Wed Jun 11 08:27:19 2008 -0400
940
+
941
+ Tiny wording change in announcement header info; whitespace adjustment.
942
+
943
+ commit 8bf9de5878a5acdfc19e76f52a2661fbbae7935f
944
+ Author: Michael Fellinger <m.fellinger@gmail.com>
945
+ Date: Wed Jun 11 17:26:49 2008 +0900
946
+
947
+ Update ramaze.gemspec
948
+
949
+ commit b6aa74e10d149b35d41173e622a1a2b247b08beb
950
+ Author: Michael Fellinger <m.fellinger@gmail.com>
951
+ Date: Wed Jun 11 17:26:26 2008 +0900
952
+
953
+ Add new gemspec task
954
+
955
+ commit 4357eeeda6fb08f1615c4e1e9bd2e9c6e670d2cd
956
+ Author: Michael Fellinger <m.fellinger@gmail.com>
957
+ Date: Wed Jun 11 17:25:37 2008 +0900
958
+
959
+ Update ramaze.gemspec
960
+
1
961
  commit 528a013236b613078b92f859a8c02e5375cc2660
2
962
  Author: Michael Fellinger <m.fellinger@gmail.com>
3
963
  Date: Wed Jun 11 16:54:36 2008 +0900