Pistos-ramaze 2009.02 → 2009.04.08

Sign up to get free protection for your applications and to get access to all the features.
Files changed (530) hide show
  1. data/.mailmap +25 -0
  2. data/CHANGELOG +16546 -0
  3. data/MANIFEST +487 -0
  4. data/{README.md → README.markdown} +0 -5
  5. data/Rakefile +75 -242
  6. data/bin/ramaze +142 -55
  7. data/doc/AUTHORS +36 -28
  8. data/doc/FAQ +1 -1
  9. data/doc/tutorial/todolist.html +1415 -742
  10. data/doc/tutorial/todolist.txt +939 -0
  11. data/examples/app/auth/layout/auth.nag +25 -0
  12. data/examples/app/auth/start.rb +23 -0
  13. data/examples/app/auth/view/index.nag +4 -0
  14. data/examples/app/auth/view/login.nag +20 -0
  15. data/examples/app/auth/view/secret.nag +1 -0
  16. data/examples/app/blog/app.rb +69 -0
  17. data/{lib/proto/start.ru → examples/app/blog/config.ru} +8 -7
  18. data/examples/app/blog/controller/comment.rb +45 -0
  19. data/examples/app/blog/controller/entry.rb +76 -0
  20. data/examples/app/blog/controller/init.rb +86 -0
  21. data/examples/app/blog/controller/main.rb +16 -25
  22. data/examples/app/blog/controller/tag.rb +9 -0
  23. data/examples/app/blog/layout/default.nag +31 -0
  24. data/examples/app/blog/model/comment.rb +58 -0
  25. data/examples/app/blog/model/entry.rb +80 -28
  26. data/examples/app/blog/model/init.rb +10 -0
  27. data/examples/app/blog/model/tag.rb +36 -0
  28. data/examples/app/blog/public/css/screen.css +273 -0
  29. data/examples/app/blog/start.rb +3 -5
  30. data/examples/app/blog/view/comment/form.nag +10 -0
  31. data/examples/app/blog/view/comment/show.nag +16 -0
  32. data/examples/app/blog/view/entry/edit.nag +14 -0
  33. data/examples/app/blog/view/entry/feed.atom.nag +8 -0
  34. data/examples/app/blog/view/entry/feed.rss.nag +7 -0
  35. data/examples/app/blog/view/entry/index.nag +7 -0
  36. data/examples/app/blog/view/entry/new.nag +13 -0
  37. data/examples/app/blog/view/entry/show.nag +36 -0
  38. data/examples/app/blog/view/feed.atom.nag +18 -0
  39. data/examples/app/blog/view/feed.rss.nag +25 -0
  40. data/examples/app/blog/view/index.nag +6 -0
  41. data/examples/app/blog/view/tag/index.nag +5 -0
  42. data/examples/app/chat/{view/layout.xhtml → layout/default.nag} +1 -1
  43. data/examples/app/chat/model/history.rb +13 -11
  44. data/examples/app/chat/public/css/chat.css +9 -13
  45. data/examples/app/chat/public/js/chat.js +6 -0
  46. data/examples/app/chat/start.rb +16 -17
  47. data/examples/app/chat/view/{chat.xhtml → chat.nag} +0 -0
  48. data/examples/app/chat/view/{index.xhtml → index.nag} +0 -0
  49. data/examples/app/sourceview/{sourceview.rb → start.rb} +36 -34
  50. data/examples/app/sourceview/{template → view}/index.haml +0 -0
  51. data/examples/app/todolist/controller/init.rb +10 -0
  52. data/examples/app/todolist/controller/task.rb +39 -0
  53. data/examples/app/todolist/layout/default.xhtml +14 -0
  54. data/examples/app/todolist/model/init.rb +14 -0
  55. data/examples/app/todolist/model/task.rb +39 -0
  56. data/examples/app/todolist/public/css/screen.css +63 -0
  57. data/examples/app/todolist/start.rb +6 -6
  58. data/examples/app/todolist/view/index.xhtml +29 -0
  59. data/examples/basic/element.rb +5 -3
  60. data/examples/basic/gestalt.rb +1 -2
  61. data/examples/basic/hello.rb +3 -4
  62. data/examples/basic/layout.rb +2 -2
  63. data/examples/basic/linking.rb +7 -7
  64. data/examples/basic/partial.rb +3 -5
  65. data/examples/basic/simple.rb +1 -5
  66. data/examples/helpers/cache.rb +5 -5
  67. data/examples/helpers/httpdigest.rb +31 -32
  68. data/examples/misc/memleak_detector.rb +17 -12
  69. data/examples/misc/serve_directory.rb +6 -0
  70. data/examples/templates/template_erubis.rb +9 -10
  71. data/examples/templates/template_ezamar.rb +8 -7
  72. data/examples/templates/template_haml.rb +6 -7
  73. data/examples/templates/template_liquid.rb +20 -19
  74. data/examples/templates/template_markaby.rb +2 -3
  75. data/examples/templates/template_nagoro.rb +6 -7
  76. data/examples/templates/template_redcloth.rb +8 -9
  77. data/examples/templates/template_remarkably.rb +7 -8
  78. data/examples/templates/template_tenjin.rb +6 -7
  79. data/examples/templates/{template → view}/external.haml +4 -4
  80. data/examples/templates/{template → view}/external.liquid +0 -0
  81. data/examples/templates/{template → view}/external.mab +0 -0
  82. data/examples/templates/{template → view}/external.nag +4 -4
  83. data/examples/templates/{template → view}/external.redcloth +4 -4
  84. data/examples/templates/{template → view}/external.rem +4 -4
  85. data/examples/templates/{template → view}/external.rhtml +6 -6
  86. data/examples/templates/{template → view}/external.tenjin +4 -4
  87. data/examples/templates/{template → view}/external.zmr +6 -6
  88. data/lib/proto/config.ru +17 -0
  89. data/lib/proto/controller/init.rb +2 -2
  90. data/lib/proto/layout/default.xhtml +24 -0
  91. data/lib/proto/public/css/screen.css +30 -0
  92. data/lib/proto/public/js/jquery.js +2121 -1294
  93. data/lib/proto/spec/main.rb +8 -11
  94. data/lib/proto/start.rb +3 -3
  95. data/lib/proto/view/index.xhtml +34 -27
  96. data/lib/ramaze/app.rb +124 -0
  97. data/lib/ramaze/cache/localmemcache.rb +56 -0
  98. data/lib/ramaze/cache/memcache.rb +99 -0
  99. data/lib/ramaze/cache/sequel.rb +67 -0
  100. data/lib/ramaze/cache.rb +9 -104
  101. data/lib/ramaze/contrib/app_graph.rb +64 -0
  102. data/lib/ramaze/contrib/gettext/po.rb +23 -23
  103. data/lib/ramaze/contrib/gzip_filter.rb +1 -69
  104. data/lib/ramaze/contrib/rest.rb +20 -15
  105. data/lib/ramaze/contrib/sequel/relation.rb +4 -2
  106. data/lib/ramaze/controller/default.rb +12 -0
  107. data/lib/ramaze/controller.rb +63 -257
  108. data/lib/ramaze/current.rb +3 -47
  109. data/lib/ramaze/files.rb +24 -0
  110. data/lib/ramaze/gestalt.rb +6 -1
  111. data/lib/ramaze/helper/auth.rb +68 -104
  112. data/lib/ramaze/helper/bench.rb +0 -2
  113. data/lib/ramaze/helper/cache.rb +59 -122
  114. data/lib/ramaze/helper/disqus.rb +26 -0
  115. data/lib/ramaze/helper/flash.rb +32 -44
  116. data/lib/ramaze/helper/form.rb +83 -252
  117. data/lib/ramaze/helper/formatting.rb +30 -5
  118. data/lib/ramaze/helper/gestalt.rb +1 -1
  119. data/lib/ramaze/helper/gravatar.rb +66 -19
  120. data/lib/ramaze/helper/httpdigest.rb +75 -66
  121. data/lib/ramaze/helper/link.rb +62 -109
  122. data/lib/ramaze/helper/localize.rb +128 -0
  123. data/lib/ramaze/helper/markaby.rb +1 -1
  124. data/lib/ramaze/helper/maruku.rb +10 -3
  125. data/lib/ramaze/helper/pager.rb +2 -1
  126. data/lib/ramaze/helper/paginate.rb +16 -9
  127. data/lib/ramaze/helper/partial.rb +86 -91
  128. data/lib/ramaze/helper/remarkably.rb +14 -0
  129. data/lib/ramaze/helper/request_accessor.rb +16 -0
  130. data/lib/ramaze/helper/sequel_form.rb +284 -0
  131. data/lib/ramaze/helper/simple_captcha.rb +46 -16
  132. data/lib/ramaze/helper/stack.rb +64 -66
  133. data/lib/ramaze/helper/user.rb +141 -22
  134. data/lib/ramaze/helper/xhtml.rb +27 -16
  135. data/lib/ramaze/helper.rb +6 -81
  136. data/lib/ramaze/log/analogger.rb +1 -2
  137. data/lib/ramaze/log/informer.rb +1 -0
  138. data/lib/ramaze/log/logging.rb +2 -8
  139. data/lib/ramaze/log/syslog.rb +36 -36
  140. data/lib/ramaze/log.rb +19 -7
  141. data/lib/ramaze/middleware_compiler.rb +13 -0
  142. data/lib/ramaze/plugin.rb +69 -0
  143. data/lib/ramaze/reloader.rb +8 -6
  144. data/lib/ramaze/request.rb +117 -0
  145. data/lib/ramaze/{current/response.rb → response.rb} +9 -10
  146. data/lib/ramaze/setup.rb +93 -33
  147. data/lib/ramaze/snippets/ramaze/deprecated.rb +3 -1
  148. data/lib/ramaze/snippets/{dictionary.rb → ramaze/dictionary.rb} +0 -104
  149. data/lib/ramaze/snippets/ramaze/fiber.rb +5 -5
  150. data/lib/ramaze/spec/helper/bacon.rb +4 -3
  151. data/lib/ramaze/spec/helper/snippets.rb +3 -1
  152. data/lib/ramaze/spec/helper/template_examples.rb +29 -0
  153. data/lib/ramaze/spec.rb +37 -1
  154. data/lib/ramaze/tool/create.rb +1 -1
  155. data/lib/ramaze/version.rb +1 -4
  156. data/lib/ramaze/view/erubis.rb +23 -0
  157. data/lib/ramaze/view/ezamar.rb +23 -0
  158. data/lib/ramaze/view/haml.rb +15 -0
  159. data/lib/ramaze/view/liquid.rb +66 -0
  160. data/lib/ramaze/view/maruku.rb +14 -0
  161. data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
  162. data/lib/ramaze/view/nagoro.rb +44 -0
  163. data/lib/ramaze/view/redcloth.rb +21 -0
  164. data/lib/ramaze/view/remarkably.rb +21 -0
  165. data/lib/ramaze/view/sass.rb +21 -0
  166. data/lib/ramaze/view/tagz.rb +63 -0
  167. data/lib/ramaze/view/tenjin.rb +29 -0
  168. data/lib/ramaze/view.rb +44 -0
  169. data/lib/ramaze.rb +76 -129
  170. data/lib/vendor/etag.rb +20 -0
  171. data/lib/vendor/route_exceptions.rb +48 -0
  172. data/ramaze.gemspec +28 -612
  173. data/spec/contrib/rest.rb +28 -0
  174. data/spec/examples/caching.rb +1 -2
  175. data/spec/examples/css.rb +1 -2
  176. data/spec/examples/element.rb +1 -2
  177. data/spec/examples/hello.rb +2 -3
  178. data/spec/examples/helpers/httpdigest.rb +89 -0
  179. data/spec/examples/linking.rb +1 -2
  180. data/spec/examples/simple.rb +1 -6
  181. data/spec/examples/templates/template_erubis.rb +3 -17
  182. data/spec/examples/templates/template_ezamar.rb +3 -18
  183. data/spec/examples/templates/template_haml.rb +3 -17
  184. data/spec/examples/templates/template_liquid.rb +3 -23
  185. data/spec/examples/templates/template_markaby.rb +6 -19
  186. data/spec/examples/templates/template_nagoro.rb +9 -0
  187. data/spec/examples/templates/template_redcloth.rb +3 -22
  188. data/spec/examples/templates/template_remarkably.rb +3 -17
  189. data/spec/examples/templates/template_tenjin.rb +3 -22
  190. data/spec/helper.rb +10 -3
  191. data/spec/ramaze/action/render.rb +5 -15
  192. data/spec/ramaze/action/view/other_wrapper.erb +1 -0
  193. data/spec/ramaze/action/view/sub/sub_wrapper.erb +1 -0
  194. data/spec/ramaze/app.rb +47 -0
  195. data/spec/ramaze/cache/localmemcache.rb +49 -0
  196. data/spec/ramaze/cache/memcache.rb +54 -0
  197. data/spec/ramaze/cache/sequel.rb +51 -0
  198. data/spec/ramaze/controller/actionless_templates.rb +14 -10
  199. data/spec/ramaze/controller/mapping.rb +57 -0
  200. data/spec/ramaze/controller/provide_inheritance.rb +47 -0
  201. data/spec/ramaze/controller/resolve.rb +7 -9
  202. data/spec/ramaze/controller/subclass.rb +13 -13
  203. data/spec/ramaze/controller/template_resolving.rb +21 -57
  204. data/spec/ramaze/dispatcher/directory.rb +38 -24
  205. data/spec/ramaze/dispatcher/file.rb +53 -44
  206. data/spec/ramaze/error.rb +56 -62
  207. data/spec/ramaze/files/public_1/plain.txt +1 -0
  208. data/spec/ramaze/files/public_2/rich.txt +1 -0
  209. data/spec/ramaze/files.rb +29 -0
  210. data/spec/ramaze/gestalt.rb +2 -4
  211. data/spec/ramaze/helper/auth.rb +53 -25
  212. data/spec/ramaze/helper/bench.rb +17 -0
  213. data/spec/ramaze/helper/cache.rb +38 -114
  214. data/spec/ramaze/helper/flash.rb +22 -110
  215. data/spec/ramaze/helper/form.rb +336 -98
  216. data/spec/ramaze/helper/formatting.rb +66 -9
  217. data/spec/ramaze/helper/gestalt.rb +15 -0
  218. data/spec/ramaze/helper/gravatar.rb +40 -0
  219. data/spec/ramaze/helper/httpdigest.rb +162 -0
  220. data/spec/ramaze/helper/link.rb +25 -100
  221. data/spec/ramaze/helper/localize.rb +60 -0
  222. data/spec/ramaze/helper/maruku.rb +19 -0
  223. data/spec/ramaze/helper/pager.rb +13 -16
  224. data/spec/ramaze/helper/paginate.rb +68 -0
  225. data/spec/ramaze/helper/partial.rb +23 -71
  226. data/spec/ramaze/helper/request_accessor.rb +19 -0
  227. data/spec/ramaze/helper/sequel_form.rb +89 -0
  228. data/spec/ramaze/helper/simple_captcha.rb +40 -13
  229. data/spec/ramaze/helper/stack.rb +56 -35
  230. data/spec/ramaze/helper/user.rb +36 -9
  231. data/spec/ramaze/helper/xhtml.rb +32 -0
  232. data/spec/ramaze/log/informer.rb +20 -19
  233. data/spec/ramaze/log/logging.rb +63 -0
  234. data/spec/ramaze/log/syslog.rb +59 -62
  235. data/spec/ramaze/params.rb +8 -11
  236. data/spec/ramaze/request.rb +45 -181
  237. data/spec/ramaze/view/erubis/external.rhtml +8 -0
  238. data/spec/ramaze/view/erubis/sum.rhtml +1 -0
  239. data/spec/ramaze/view/erubis.rb +73 -0
  240. data/spec/ramaze/view/ezamar/external.zmr +8 -0
  241. data/spec/ramaze/view/ezamar/sum.zmr +1 -0
  242. data/spec/ramaze/view/ezamar.rb +73 -0
  243. data/spec/ramaze/view/haml/external.haml +5 -0
  244. data/spec/ramaze/view/haml/sum.haml +2 -0
  245. data/spec/ramaze/view/haml.rb +86 -0
  246. data/spec/ramaze/view/liquid/external.liquid +8 -0
  247. data/spec/ramaze/view/liquid/sum.liquid +1 -0
  248. data/spec/ramaze/view/liquid.rb +73 -0
  249. data/spec/ramaze/view/nagoro/external.nag +8 -0
  250. data/spec/ramaze/view/nagoro/sum.nag +1 -0
  251. data/spec/ramaze/view/nagoro.rb +73 -0
  252. data/spec/ramaze/view/redcloth/external.redcloth +8 -0
  253. data/spec/ramaze/view/redcloth.rb +66 -0
  254. data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
  255. data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
  256. data/spec/ramaze/view/remarkably.rb +49 -0
  257. data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
  258. data/spec/ramaze/view/sass.rb +73 -0
  259. data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
  260. data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
  261. data/spec/ramaze/{template → view}/tagz.rb +18 -29
  262. data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
  263. data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
  264. data/spec/ramaze/view/tenjin.rb +57 -0
  265. data/spec/ramaze/view.rb +36 -0
  266. data/spec/snippets/ramaze/dictionary.rb +110 -0
  267. data/spec/snippets/ramaze/struct.rb +12 -0
  268. data/spec/snippets/thread/into.rb +3 -14
  269. data/tasks/authors.rake +30 -0
  270. data/tasks/bacon.rake +66 -0
  271. data/tasks/changelog.rake +18 -0
  272. data/tasks/copyright.rake +21 -0
  273. data/tasks/gem.rake +22 -0
  274. data/tasks/gem_installer.rake +76 -0
  275. data/{rake_tasks → tasks}/git.rake +10 -5
  276. data/tasks/grancher.rake +12 -0
  277. data/tasks/install_dependencies.rake +6 -0
  278. data/tasks/jquery.rake +15 -0
  279. data/tasks/manifest.rake +4 -0
  280. data/{rake_tasks/metric.rake → tasks/metric_changes.rake} +7 -7
  281. data/tasks/rcov.rake +23 -0
  282. data/tasks/release.rake +69 -0
  283. data/tasks/reversion.rake +8 -0
  284. data/tasks/todo.rake +29 -0
  285. data/tasks/traits.rake +21 -0
  286. data/tasks/yard.rake +4 -0
  287. metadata +173 -290
  288. data/benchmark/suite/template_amrita2.rb +0 -17
  289. data/doc/readme_chunks/appendix.txt +0 -10
  290. data/doc/readme_chunks/examples.txt +0 -38
  291. data/doc/readme_chunks/features.txt +0 -148
  292. data/doc/readme_chunks/getting_help.txt +0 -5
  293. data/doc/readme_chunks/getting_started.txt +0 -18
  294. data/doc/readme_chunks/installing.txt +0 -92
  295. data/doc/readme_chunks/introduction.txt +0 -18
  296. data/doc/readme_chunks/principles.txt +0 -56
  297. data/doc/readme_chunks/thanks.txt +0 -59
  298. data/examples/app/auth/auth.rb +0 -54
  299. data/examples/app/auth/template/layout.haml +0 -20
  300. data/examples/app/auth/template/login.haml +0 -16
  301. data/examples/app/blog/public/styles/blog.css +0 -132
  302. data/examples/app/blog/view/edit.xhtml +0 -17
  303. data/examples/app/blog/view/index.xhtml +0 -17
  304. data/examples/app/blog/view/layout.xhtml +0 -11
  305. data/examples/app/blog/view/new.xhtml +0 -16
  306. data/examples/app/rapaste/Rakefile +0 -34
  307. data/examples/app/rapaste/controller/paste.rb +0 -101
  308. data/examples/app/rapaste/model/paste.rb +0 -58
  309. data/examples/app/rapaste/public/css/active4d.css +0 -114
  310. data/examples/app/rapaste/public/css/all_hallows_eve.css +0 -72
  311. data/examples/app/rapaste/public/css/amy.css +0 -147
  312. data/examples/app/rapaste/public/css/blackboard.css +0 -88
  313. data/examples/app/rapaste/public/css/brilliance_black.css +0 -605
  314. data/examples/app/rapaste/public/css/brilliance_dull.css +0 -599
  315. data/examples/app/rapaste/public/css/cobalt.css +0 -149
  316. data/examples/app/rapaste/public/css/dawn.css +0 -121
  317. data/examples/app/rapaste/public/css/display.css +0 -197
  318. data/examples/app/rapaste/public/css/eiffel.css +0 -121
  319. data/examples/app/rapaste/public/css/espresso_libre.css +0 -109
  320. data/examples/app/rapaste/public/css/idle.css +0 -62
  321. data/examples/app/rapaste/public/css/iplastic.css +0 -80
  322. data/examples/app/rapaste/public/css/lazy.css +0 -73
  323. data/examples/app/rapaste/public/css/mac_classic.css +0 -123
  324. data/examples/app/rapaste/public/css/magicwb_amiga.css +0 -104
  325. data/examples/app/rapaste/public/css/pastels_on_dark.css +0 -188
  326. data/examples/app/rapaste/public/css/slush_poppies.css +0 -85
  327. data/examples/app/rapaste/public/css/spacecadet.css +0 -51
  328. data/examples/app/rapaste/public/css/sunburst.css +0 -180
  329. data/examples/app/rapaste/public/css/twilight.css +0 -137
  330. data/examples/app/rapaste/public/css/zenburnesque.css +0 -91
  331. data/examples/app/rapaste/public/js/jquery.js +0 -11
  332. data/examples/app/rapaste/spec/rapaste.rb +0 -51
  333. data/examples/app/rapaste/start.rb +0 -25
  334. data/examples/app/rapaste/view/copy.xhtml +0 -10
  335. data/examples/app/rapaste/view/index.xhtml +0 -9
  336. data/examples/app/rapaste/view/layout.xhtml +0 -25
  337. data/examples/app/rapaste/view/list.xhtml +0 -29
  338. data/examples/app/rapaste/view/search.xhtml +0 -41
  339. data/examples/app/rapaste/view/view.xhtml +0 -40
  340. data/examples/app/todolist/README +0 -1
  341. data/examples/app/todolist/public/js/jquery.js +0 -1923
  342. data/examples/app/todolist/public/ramaze.png +0 -0
  343. data/examples/app/todolist/spec/todolist.rb +0 -132
  344. data/examples/app/todolist/src/controller/main.rb +0 -70
  345. data/examples/app/todolist/src/element/page.rb +0 -31
  346. data/examples/app/todolist/src/model.rb +0 -14
  347. data/examples/app/todolist/template/index.xhtml +0 -17
  348. data/examples/app/todolist/template/new.xhtml +0 -7
  349. data/examples/misc/simple_auth.rb +0 -35
  350. data/examples/templates/template/external.amrita +0 -19
  351. data/examples/templates/template/external.xsl +0 -57
  352. data/examples/templates/template_amrita2.rb +0 -74
  353. data/examples/templates/template_xslt.rb +0 -49
  354. data/lib/proto/public/css/ramaze_error.css +0 -90
  355. data/lib/proto/view/error.xhtml +0 -64
  356. data/lib/ramaze/action/render.rb +0 -192
  357. data/lib/ramaze/action.rb +0 -159
  358. data/lib/ramaze/adapter/base.rb +0 -128
  359. data/lib/ramaze/adapter/cgi.rb +0 -20
  360. data/lib/ramaze/adapter/ebb.rb +0 -18
  361. data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
  362. data/lib/ramaze/adapter/fake.rb +0 -12
  363. data/lib/ramaze/adapter/fcgi.rb +0 -18
  364. data/lib/ramaze/adapter/lsws.rb +0 -19
  365. data/lib/ramaze/adapter/mongrel.rb +0 -21
  366. data/lib/ramaze/adapter/scgi.rb +0 -18
  367. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
  368. data/lib/ramaze/adapter/thin.rb +0 -17
  369. data/lib/ramaze/adapter/webrick.rb +0 -43
  370. data/lib/ramaze/adapter.rb +0 -97
  371. data/lib/ramaze/cache/file.rb +0 -71
  372. data/lib/ramaze/cache/memcached.rb +0 -69
  373. data/lib/ramaze/cache/memory.rb +0 -6
  374. data/lib/ramaze/cache/yaml_store.rb +0 -68
  375. data/lib/ramaze/contrib/file_cache.rb +0 -3
  376. data/lib/ramaze/contrib/gems.rb +0 -78
  377. data/lib/ramaze/contrib/sequel/fill.rb +0 -12
  378. data/lib/ramaze/contrib/sequel_cache.rb +0 -92
  379. data/lib/ramaze/contrib.rb +0 -82
  380. data/lib/ramaze/controller/error.rb +0 -46
  381. data/lib/ramaze/controller/main.rb +0 -2
  382. data/lib/ramaze/controller/resolve.rb +0 -278
  383. data/lib/ramaze/current/request.rb +0 -231
  384. data/lib/ramaze/current/session/flash.rb +0 -88
  385. data/lib/ramaze/current/session/hash.rb +0 -62
  386. data/lib/ramaze/current/session.rb +0 -179
  387. data/lib/ramaze/dispatcher/action.rb +0 -50
  388. data/lib/ramaze/dispatcher/directory.rb +0 -119
  389. data/lib/ramaze/dispatcher/error.rb +0 -108
  390. data/lib/ramaze/dispatcher/file.rb +0 -100
  391. data/lib/ramaze/dispatcher.rb +0 -145
  392. data/lib/ramaze/error.rb +0 -24
  393. data/lib/ramaze/helper/aspect.rb +0 -106
  394. data/lib/ramaze/helper/cgi.rb +0 -39
  395. data/lib/ramaze/helper/redirect.rb +0 -100
  396. data/lib/ramaze/helper/rest.rb +0 -43
  397. data/lib/ramaze/helper/sendfile.rb +0 -16
  398. data/lib/ramaze/option/dsl.rb +0 -45
  399. data/lib/ramaze/option/holder.rb +0 -131
  400. data/lib/ramaze/option/merger.rb +0 -108
  401. data/lib/ramaze/option.rb +0 -156
  402. data/lib/ramaze/route.rb +0 -97
  403. data/lib/ramaze/snippets/object/traits.rb +0 -76
  404. data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
  405. data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
  406. data/lib/ramaze/snippets/ramaze/state.rb +0 -86
  407. data/lib/ramaze/spec/helper/browser.rb +0 -88
  408. data/lib/ramaze/spec/helper/mock_http.rb +0 -64
  409. data/lib/ramaze/spec/helper/requester.rb +0 -63
  410. data/lib/ramaze/spec/helper/simple_http.rb +0 -434
  411. data/lib/ramaze/spec/helper.rb +0 -135
  412. data/lib/ramaze/store/default.rb +0 -109
  413. data/lib/ramaze/template/amrita2.rb +0 -49
  414. data/lib/ramaze/template/builder.rb +0 -28
  415. data/lib/ramaze/template/erubis.rb +0 -41
  416. data/lib/ramaze/template/ezamar/element.rb +0 -169
  417. data/lib/ramaze/template/ezamar/engine.rb +0 -76
  418. data/lib/ramaze/template/ezamar/morpher.rb +0 -135
  419. data/lib/ramaze/template/ezamar/render_partial.rb +0 -39
  420. data/lib/ramaze/template/ezamar/textpow.syntax +0 -34
  421. data/lib/ramaze/template/ezamar.rb +0 -42
  422. data/lib/ramaze/template/haml.rb +0 -37
  423. data/lib/ramaze/template/liquid.rb +0 -36
  424. data/lib/ramaze/template/markaby.rb +0 -52
  425. data/lib/ramaze/template/maruku.rb +0 -34
  426. data/lib/ramaze/template/nagoro.rb +0 -52
  427. data/lib/ramaze/template/none.rb +0 -14
  428. data/lib/ramaze/template/redcloth.rb +0 -25
  429. data/lib/ramaze/template/remarkably.rb +0 -38
  430. data/lib/ramaze/template/sass.rb +0 -37
  431. data/lib/ramaze/template/tagz.rb +0 -79
  432. data/lib/ramaze/template/tenjin.rb +0 -74
  433. data/lib/ramaze/template/xslt.rb +0 -100
  434. data/lib/ramaze/template.rb +0 -87
  435. data/lib/ramaze/tool/daemonize.rb +0 -37
  436. data/lib/ramaze/tool/localize.rb +0 -202
  437. data/lib/ramaze/tool/mime.rb +0 -35
  438. data/lib/ramaze/tool/mime_types.yaml +0 -615
  439. data/lib/ramaze/tool/record.rb +0 -6
  440. data/lib/ramaze/tool.rb +0 -9
  441. data/lib/ramaze/trinity.rb +0 -16
  442. data/lib/vendor/bacon.rb +0 -323
  443. data/rake_tasks/conf.rake +0 -85
  444. data/rake_tasks/coverage.rake +0 -45
  445. data/rake_tasks/gem.rake +0 -74
  446. data/rake_tasks/maintenance.rake +0 -386
  447. data/rake_tasks/release.rake +0 -76
  448. data/rake_tasks/spec.rake +0 -61
  449. data/spec/contrib/profiling.rb +0 -29
  450. data/spec/contrib/sequel/fill.rb +0 -47
  451. data/spec/examples/simple_auth.rb +0 -32
  452. data/spec/examples/templates/template_amrita2.rb +0 -16
  453. data/spec/ramaze/action/basics.rb +0 -36
  454. data/spec/ramaze/action/cache.rb +0 -87
  455. data/spec/ramaze/action/file_cache.rb +0 -70
  456. data/spec/ramaze/action/layout.rb +0 -190
  457. data/spec/ramaze/adapter/ebb.rb +0 -12
  458. data/spec/ramaze/adapter/mongrel.rb +0 -12
  459. data/spec/ramaze/adapter/record.rb +0 -31
  460. data/spec/ramaze/adapter/webrick.rb +0 -12
  461. data/spec/ramaze/adapter.rb +0 -49
  462. data/spec/ramaze/cache.rb +0 -140
  463. data/spec/ramaze/controller.rb +0 -180
  464. data/spec/ramaze/current/request.rb +0 -30
  465. data/spec/ramaze/current/session.rb +0 -97
  466. data/spec/ramaze/dispatcher.rb +0 -31
  467. data/spec/ramaze/element.rb +0 -107
  468. data/spec/ramaze/helper/aspect.rb +0 -101
  469. data/spec/ramaze/helper/cgi.rb +0 -43
  470. data/spec/ramaze/helper/file.rb +0 -18
  471. data/spec/ramaze/helper/redirect.rb +0 -112
  472. data/spec/ramaze/localize.rb +0 -89
  473. data/spec/ramaze/morpher.rb +0 -111
  474. data/spec/ramaze/public/error404.xhtml +0 -1
  475. data/spec/ramaze/request/ebb.rb +0 -9
  476. data/spec/ramaze/request/mongrel.rb +0 -9
  477. data/spec/ramaze/request/thin.rb +0 -9
  478. data/spec/ramaze/request/webrick.rb +0 -5
  479. data/spec/ramaze/rewrite.rb +0 -36
  480. data/spec/ramaze/route.rb +0 -131
  481. data/spec/ramaze/session.rb +0 -94
  482. data/spec/ramaze/store/default.rb +0 -71
  483. data/spec/ramaze/template/amrita2/external.amrita +0 -6
  484. data/spec/ramaze/template/amrita2/sum.amrita +0 -1
  485. data/spec/ramaze/template/amrita2.rb +0 -50
  486. data/spec/ramaze/template/builder/external.rxml +0 -3
  487. data/spec/ramaze/template/builder.rb +0 -51
  488. data/spec/ramaze/template/erubis/sum.rhtml +0 -1
  489. data/spec/ramaze/template/erubis.rb +0 -41
  490. data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
  491. data/spec/ramaze/template/ezamar/combined.zmr +0 -1
  492. data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
  493. data/spec/ramaze/template/ezamar/index.zmr +0 -1
  494. data/spec/ramaze/template/ezamar/nested.zmr +0 -1
  495. data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
  496. data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
  497. data/spec/ramaze/template/ezamar/sum.zmr +0 -1
  498. data/spec/ramaze/template/ezamar.rb +0 -63
  499. data/spec/ramaze/template/haml/index.haml +0 -5
  500. data/spec/ramaze/template/haml/locals.haml +0 -2
  501. data/spec/ramaze/template/haml/with_vars.haml +0 -4
  502. data/spec/ramaze/template/haml.rb +0 -66
  503. data/spec/ramaze/template/liquid/index.liquid +0 -1
  504. data/spec/ramaze/template/liquid/products.liquid +0 -45
  505. data/spec/ramaze/template/liquid.rb +0 -99
  506. data/spec/ramaze/template/markaby/external.mab +0 -8
  507. data/spec/ramaze/template/markaby/sum.mab +0 -1
  508. data/spec/ramaze/template/markaby.rb +0 -61
  509. data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
  510. data/spec/ramaze/template/nagoro/combined.nag +0 -1
  511. data/spec/ramaze/template/nagoro/file_only.nag +0 -1
  512. data/spec/ramaze/template/nagoro/index.nag +0 -1
  513. data/spec/ramaze/template/nagoro/nested.nag +0 -1
  514. data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
  515. data/spec/ramaze/template/nagoro/sum.nag +0 -1
  516. data/spec/ramaze/template/nagoro.rb +0 -64
  517. data/spec/ramaze/template/redcloth/external.redcloth +0 -1
  518. data/spec/ramaze/template/redcloth.rb +0 -38
  519. data/spec/ramaze/template/remarkably.rb +0 -58
  520. data/spec/ramaze/template/sass.rb +0 -69
  521. data/spec/ramaze/template/tenjin/external.tenjin +0 -1
  522. data/spec/ramaze/template/tenjin.rb +0 -47
  523. data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
  524. data/spec/ramaze/template/xslt/index.xsl +0 -14
  525. data/spec/ramaze/template/xslt/products.xsl +0 -32
  526. data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
  527. data/spec/ramaze/template/xslt.rb +0 -90
  528. data/spec/ramaze/template.rb +0 -128
  529. data/spec/snippets/ramaze/caller_info.rb +0 -39
  530. data/spec/snippets/ramaze/caller_lines.rb +0 -30
@@ -4,7 +4,37 @@ require 'ramaze/helper/formatting'
4
4
  describe 'Helper::Formatting' do
5
5
  extend Ramaze::Helper::Formatting
6
6
 
7
- it 'should format numbers' do
7
+ describe '#number_counter' do
8
+ extend Ramaze::Helper::Formatting
9
+
10
+ it 'gives a correct plural counter' do
11
+ number_counter(0, 'comment').should == 'no comments'
12
+ number_counter(1, 'comment').should == 'one comment'
13
+ number_counter(2, 'comment').should == 'two comments'
14
+ number_counter(3, 'comment').should == 'three comments'
15
+ number_counter(4, 'comment').should == 'four comments'
16
+ number_counter(5, 'comment').should == 'five comments'
17
+ number_counter(6, 'comment').should == 'six comments'
18
+ number_counter(7, 'comment').should == 'seven comments'
19
+ number_counter(8, 'comment').should == 'eight comments'
20
+ number_counter(9, 'comment').should == 'nine comments'
21
+ number_counter(10, 'comment').should == 'ten comments'
22
+ number_counter(11, 'comment').should == '11 comments'
23
+ number_counter(12, 'comment').should == '12 comments'
24
+ end
25
+
26
+ it 'uses +items+ as plural version' do
27
+ number_counter(0, 'pants', 'pants').should == 'no pants'
28
+ end
29
+
30
+ it 'tries using the pluralize method on +item+ if no +items+ given' do
31
+ item = 'person'
32
+ def item.pluralize; 'people'; end
33
+ number_counter(0, item).should == 'no people'
34
+ end
35
+ end
36
+
37
+ it 'formats numbers' do
8
38
  number_format(2_123_456).should == '2,123,456'
9
39
  number_format(1234.567).should == '1,234.567'
10
40
  number_format(123456.789, '.').should == '123.456,789'
@@ -12,13 +42,28 @@ describe 'Helper::Formatting' do
12
42
  number_format(132123456.789123, '.').should == '132.123.456,789123'
13
43
  end
14
44
 
15
- it 'should return difference in time as a string' do
16
- time_diff(Time.now-29).should == 'less than a minute'
17
- time_diff(Time.now-60).should == '1 minute'
18
- time_diff(Time.now, Time.now+29, true).should == 'half a minute'
45
+ it 'returns difference in time as a string' do
46
+ check = lambda{|diff, string| time_diff(Time.now - diff).should == string }
47
+
48
+ check[1, 'less than a minute']
49
+ check[60, '1 minute']
50
+ check[60 * 50, 'about 1 hour']
51
+ check[60 * 120, 'about 2 hours']
52
+ check[60 * 60 * 24, '1 day']
53
+ check[60 * 60 * 48, '2 days']
54
+ check[60 * 60 * 24 * 30, 'about 1 month']
55
+ check[60 * 60 * 24 * 60, '2 months']
56
+ check[60 * 60 * 24 * 30 * 20, 'about 1 year']
57
+ check[60 * 60 * 24 * 30 * 42, 'over 3 years']
58
+
59
+ time_diff(Time.now, Time.now + 4, true).should == 'less than 5 seconds'
60
+ time_diff(Time.now, Time.now + 6, true).should == 'less than 10 seconds'
61
+ time_diff(Time.now, Time.now + 29, true).should == 'half a minute'
62
+ time_diff(Time.now, Time.now + 50, true).should == 'less than a minute'
63
+ time_diff(Time.now, Time.now + 66, true).should == '1 minute'
19
64
  end
20
65
 
21
- it 'should linkify urls' do
66
+ it 'linkifies urls' do
22
67
  auto_link("http://ramaze.net is the coolest framework, but <a href='http://merbivore.com'>merb</a> is good too").should ==
23
68
  "<a href=\"http://ramaze.net\">http://ramaze.net</a> is the coolest framework, but <a href='http://merbivore.com'>merb</a> is good too"
24
69
 
@@ -26,12 +71,12 @@ describe 'Helper::Formatting' do
26
71
  "<a href=\"http://ramaze.net\" target='_blank'>http://ramaze.net</a>"
27
72
  end
28
73
 
29
- it 'should auto_link urls, setting the result of the given block as the link text' do
74
+ it 'auto_links urls, setting the result of the given block as the link text' do
30
75
  auto_link('http://ramaze.net rocks, so does http://rubyonrails.org.') { |url| url.sub!(%r{http://}, '') }.should ==
31
76
  '<a href="http://ramaze.net">ramaze.net</a> rocks, so does <a href="http://rubyonrails.org">rubyonrails.org</a>.'
32
77
  end
33
78
 
34
- should 'ordinalize numbers' do
79
+ it 'ordinalizes numbers' do
35
80
  ordinal(1).should == '1st'
36
81
  ordinal(2).should == '2nd'
37
82
  ordinal(3).should == '3rd'
@@ -44,11 +89,23 @@ describe 'Helper::Formatting' do
44
89
  ordinal(133).should == '133rd'
45
90
  end
46
91
 
47
- should 'generate tagclouds' do
92
+ it 'generates tagclouds' do
48
93
  tags = %w[ruby ruby code ramaze]
49
94
  tagcloud(tags).should ==
50
95
  {"code"=>0.75, "ramaze"=>0.75, "ruby"=>1.0}
51
96
  tagcloud(tags, 0.5, 2.0).should ==
52
97
  {"code"=>0.875, "ramaze"=>0.875, "ruby"=>1.25}
53
98
  end
99
+
100
+ it 'converts newlines to br tags' do
101
+ nl2br("foo\nbar\nfoobar").should == 'foo<br />bar<br />foobar'
102
+ nl2br("foo\nbar\nfoobar", false).should == 'foo<br>bar<br>foobar'
103
+ end
104
+
105
+ it 'obfuscates email addresses' do
106
+ obfuscate_email('foo@example.com').
107
+ should == "<a href=\"mailto:&#102&#111&#111&#064&#101&#120&#097&#109&#112&#108&#101&#046&#099&#111&#109\">&#102&#111&#111&#064&#101&#120&#097&#109&#112&#108&#101&#046&#099&#111&#109</a>"
108
+ obfuscate_email('foo@example.com', 'mail foo').
109
+ should == "<a href=\"mailto:&#102&#111&#111&#064&#101&#120&#097&#109&#112&#108&#101&#046&#099&#111&#109\">mail foo</a>"
110
+ end
54
111
  end
@@ -0,0 +1,15 @@
1
+ require 'spec/helper'
2
+ require 'ramaze/helper/gestalt'
3
+
4
+ describe Ramaze::Helper::Gestalt do
5
+ extend Ramaze::Helper::Gestalt
6
+
7
+ it 'has a shortcut for Ramaze::Gestalt::new' do
8
+ gestalt{ h1('title') }.to_s.should ==
9
+ Ramaze::Gestalt.new{ h1('title') }.to_s
10
+ end
11
+
12
+ it 'has a shortcut for Ramaze::Gestalt::build' do
13
+ build{ h1('title') }.should == '<h1>title</h1>'
14
+ end
15
+ end
@@ -0,0 +1,40 @@
1
+ require 'spec/helper'
2
+ require 'ramaze/helper/gravatar'
3
+
4
+ describe Ramaze::Helper::Gravatar do
5
+ extend Ramaze::Helper::Gravatar
6
+
7
+ @email = 'ramaze-spec-gravatar@manveru.oib.com'
8
+ @digest = Digest::MD5.hexdigest(@email)
9
+
10
+ def uri(*tail)
11
+ URI("http://www.gravatar.com/avatar/#{@digest}#{tail.join}")
12
+ end
13
+
14
+ it 'takes an email and turns it into a hashed part of the uri' do
15
+ gravatar(@email).should == uri
16
+ end
17
+
18
+ it 'takes :size option' do
19
+ gravatar(@email, :size => 100).should == uri('?size=100')
20
+ end
21
+
22
+ it 'takes :rating option' do
23
+ gravatar(@email, :rating => 'g').should == uri('?rating=g')
24
+ gravatar(@email, :rating => 'pg').should == uri('?rating=pg')
25
+ gravatar(@email, :rating => 'r').should == uri('?rating=r')
26
+ gravatar(@email, :rating => 'x').should == uri('?rating=x')
27
+ end
28
+
29
+ it 'takes :default option' do
30
+ gravatar(@email, :default => :identicon).should == uri('?default=identicon')
31
+ gravatar(@email, :default => :monsterid).should == uri('?default=monsterid')
32
+ gravatar(@email, :default => :wavatar).should == uri('?default=wavatar')
33
+ gravatar(@email, :default => 'http://example.com/me.jpg').should == uri('?default=http%3A%2F%2Fexample.com%2Fme.jpg')
34
+ end
35
+
36
+ it 'takes :force option' do
37
+ gravatar(@email, :force => true).should == uri('?force=1')
38
+ gravatar(@email, :force => false).should == uri('')
39
+ end
40
+ end
@@ -0,0 +1,162 @@
1
+ require 'spec/helper'
2
+
3
+ REALM = 'HttpDigestTestRealm'
4
+
5
+ class MainController < Ramaze::Controller
6
+ map '/'
7
+ helper :httpdigest
8
+
9
+ def authenticate
10
+ user = httpdigest('protected', REALM) do |username|
11
+ Digest::MD5.hexdigest([username, REALM, username.reverse].join(':'))
12
+ end
13
+ "Hello #{user}"
14
+ end
15
+
16
+ end
17
+
18
+ class PlainTextController < Ramaze::Controller
19
+ map '/plaintext'
20
+ helper :httpdigest
21
+
22
+ def authenticate
23
+ user = httpdigest('protected', REALM)
24
+ "Hello #{user}"
25
+ end
26
+
27
+ protected
28
+
29
+ def httpdigest_lookup_plaintext_password username
30
+ username.reverse
31
+ end
32
+ end
33
+
34
+ class PasswordLookupController < Ramaze::Controller
35
+ map '/lookup'
36
+ helper :httpdigest
37
+
38
+ def authenticate
39
+ user = httpdigest('protected', REALM)
40
+ "Hello #{user}"
41
+ end
42
+
43
+ protected
44
+
45
+ def httpdigest_lookup_password username
46
+ Digest::MD5.hexdigest([username, REALM, username.reverse].join(':'))
47
+ end
48
+ end
49
+
50
+ describe Ramaze::Helper::HttpDigest do
51
+ behaves_like :mock, :session
52
+
53
+ def auth_for(got, uri, username, password, qop_type = "auth")
54
+ authorization = Rack::Auth::Digest::Params.parse(got.headers['WWW-Authenticate'])
55
+
56
+ cnonce = Digest::MD5.hexdigest(rand.to_s)
57
+ nc = 1
58
+ nonce = authorization['nonce']
59
+
60
+ authorization['cnonce'] = cnonce
61
+ authorization['nc'] = nc
62
+ authorization['uri'] = uri
63
+ authorization['username'] = username
64
+ authorization['qop'] = qop_type
65
+
66
+ ha1 = Digest::MD5.hexdigest([username, REALM, password].join(':'))
67
+ a2 = ['GET',uri]
68
+ a2 << Digest::MD5.hexdigest('') if qop_type == "auth-int"
69
+ ha2 = Digest::MD5.hexdigest( a2.join(':') )
70
+
71
+ authorization['response'] = Digest::MD5.hexdigest([ha1, nonce, nc, cnonce, qop_type, ha2].join(':'))
72
+
73
+ "Digest #{authorization}"
74
+ end
75
+
76
+ def get_auth( uri, username, password, qop_type = "auth" )
77
+ got = nil
78
+ session do |mock|
79
+ got = mock.get( uri )
80
+ got.status.should == 401
81
+ got.body.should == 'Unauthorized'
82
+ got = mock.get( uri , 'HTTP_AUTHORIZATION' => auth_for(got, uri, username, password, qop_type ) )
83
+ end
84
+ got
85
+ end
86
+
87
+ it 'sends out all the required header information' do
88
+ session do |mock|
89
+ got = mock.get('/authenticate')
90
+ authorization = Rack::Auth::Digest::Params.parse(got.headers['WWW-Authenticate'])
91
+ authorization["opaque"].should.not.be.empty
92
+ authorization["nonce"].should.not.be.empty
93
+ authorization["realm"].should == REALM
94
+ authorization["qop"].should == "auth,auth-int"
95
+ got = mock.get( '/authenticate' , 'HTTP_AUTHORIZATION' => auth_for(got, '/authenticate', 'foo', 'oof' ) )
96
+ got.headers.should.satisfy do |headers|
97
+ !headers.has_key?( "WWW-Authenticate" )
98
+ end
99
+ end
100
+ end
101
+
102
+ it 'authenticates a user with a block' do
103
+ got = get_auth( '/authenticate', 'foo', 'oof' )
104
+ got.status.should == 200
105
+ got.body.should == "Hello foo"
106
+ end
107
+
108
+ it 'fails to authenticate an incorrect password with a block' do
109
+ got = get_auth( '/authenticate', 'foo', 'bar' )
110
+ got.status.should == 401
111
+ got.body.should == "Unauthorized"
112
+ end
113
+
114
+ it 'authenticates a user with a block using auth for a random given' do
115
+ got = get_auth( '/authenticate', 'foo', 'oof', 'some-random-non-existant-auth-type' )
116
+ got.status.should == 200
117
+ got.body.should == "Hello foo"
118
+ end
119
+
120
+ it 'authenticates a user with the plaintext method' do
121
+ got = get_auth( '/plaintext/authenticate', 'foo', 'oof' )
122
+ got.status.should == 200
123
+ got.body.should == "Hello foo"
124
+ end
125
+
126
+ it 'fails to authenticate an incorrect password with the plaintext method' do
127
+ got = get_auth( '/plaintext/authenticate', 'foo', 'bar' )
128
+ got.status.should == 401
129
+ got.body.should == "Unauthorized"
130
+ end
131
+
132
+ it 'authenticates a user with the password lookup method' do
133
+ got = get_auth( '/lookup/authenticate', 'foo', 'oof' )
134
+ got.status.should == 200
135
+ got.body.should == "Hello foo"
136
+ end
137
+
138
+ it 'fails to authenticate an incorrect password with the password lookup method' do
139
+ got = get_auth( '/lookup/authenticate', 'foo', 'bar' )
140
+ got.status.should == 401
141
+ got.body.should == "Unauthorized"
142
+ end
143
+
144
+ it 'authenticates a user with a block using auth-int' do
145
+ got = get_auth( '/authenticate', 'foo', 'oof', 'auth-int' )
146
+ got.status.should == 200
147
+ got.body.should == "Hello foo"
148
+ end
149
+
150
+ it 'authenticates a user with the plaintext method using auth-int' do
151
+ got = get_auth( '/plaintext/authenticate', 'foo', 'oof', 'auth-int' )
152
+ got.status.should == 200
153
+ got.body.should == "Hello foo"
154
+ end
155
+
156
+ it 'authenticates a user with the password lookup method using auth-int' do
157
+ got = get_auth( '/lookup/authenticate', 'foo', 'oof', 'auth-int' )
158
+ got.status.should == 200
159
+ got.body.should == "Hello foo"
160
+ end
161
+
162
+ end
@@ -1,124 +1,49 @@
1
- # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
2
  # All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
4
  require 'spec/helper'
5
5
  require 'ramaze/helper/link'
6
6
 
7
- class TCLink < Ramaze::Controller
7
+ class SpecHelperLink < Ramaze::Controller
8
8
  map '/'
9
- def index; end
10
9
  end
11
10
 
12
- class TCLink2 < Ramaze::Controller
13
- map '/2'
14
- def index; end
11
+ class SpecHelperLinkTwo < Ramaze::Controller
12
+ map '/two'
15
13
  end
16
14
 
17
- describe "A" do
15
+ describe Ramaze::Helper::Link do
18
16
  extend Ramaze::Helper::Link
19
- behaves_like 'resolve'
20
17
 
21
- ramaze
22
-
23
- it 'should build links' do
24
- A('title', :href => '/').should == %(<a href="/">title</a>)
25
- A('title', :href => '/foo').should == %(<a href="/foo">title</a>)
26
- A('title', :href => '/foo?x=y').should == %{<a href="/foo?x=y">title</a>}
27
- stack('/'){ A('/foo?x=y') }.should == %{<a href="/foo?x=y">/foo?x=y</a>}
28
-
29
- a = A('title', :href => '/foo', :class => :none)
30
- a.should =~ /class="none"/
31
- a.should =~ /href="\/foo"/
32
- end
33
-
34
- it 'should build position independend links' do
35
- stack('/'){ A(TCLink, :foo) }.should == %(<a href="/foo">foo</a>)
36
- end
37
-
38
- it 'should escape path' do
39
- stack('/'){ A('ti tle') }.should == '<a href="/ti+tle">ti tle</a>'
40
- a = A('', :href => "/foo?chunky=b\000acon")
41
- a.should == '<a href="/foo?chunky=b%00acon"></a>'
42
- end
43
-
44
- it 'should handle text key' do
45
- A(:href => '/', :text => 'text').should == '<a href="/">text</a>'
46
- end
47
-
48
- it 'should use last argument as first text fallback' do
49
- a = A('text', :href => '/', :title => 'title')
50
- a.should =~ /href="\/"/
51
- a.should =~ /title="title"/
52
- a.should =~ />text</
53
- end
54
-
55
- it 'should use :title as second text fallback' do
56
- a = A(:href => '/', :title => 'text')
57
- a.should =~ /title="text"/
58
- a.should =~ /href="\/"/
59
- a.should =~ />text</
60
- end
61
-
62
- it 'should use :href as third text fallback' do
63
- A(:href => '/').should == '<a href="/">/</a>'
64
- end
65
- end
66
-
67
- describe 'R' do
68
- extend Ramaze::Helper::Link
69
-
70
- it 'should build urls' do
71
- R(TCLink).should == '/'
72
- R(TCLink, :foo).should == '/foo'
73
- R(TCLink, :foo, :bar).should == '/foo/bar'
74
- R(TCLink, :foo, :bar => :baz).should == '/foo?bar=baz'
75
- end
76
- end
77
-
78
- describe 'Rs' do
79
- extend Ramaze::Helper::Link
80
-
81
- def resolve(url)
82
- Ramaze::Controller::resolve(url)
18
+ it 'builds routes' do
19
+ R(SpecHelperLink, :foo).should == '/foo'
20
+ SpecHelperLink.Rs(:foo).should == '/foo'
83
21
  end
84
22
 
85
- it 'should build links for current controller' do
86
- resolve('/2').stack{ Rs(:index).should == '/2/index' }
87
- resolve('/').stack{ Rs(:index).should == '/index' }
23
+ it 'builds links' do
24
+ SpecHelperLink.A(:foo).should == '<a href="/foo">foo</a>'
25
+ SpecHelperLink.A(:foo, :bar).should == '<a href="/bar">foo</a>'
88
26
  end
89
27
 
90
- it 'should treat Rs() like R() when Controller given' do
91
- resolve('/2').stack{ Rs(TCLink, :index).should == '/2/index' }
92
- end
93
-
94
- it 'should treat non-controllers as strings' do
95
- resolve('/2').stack{ Rs(Ramaze, :index).should == '/2/Ramaze/index' }
96
- end
97
-
98
- end
99
-
100
- describe 'breadcrumbs' do
101
- extend Ramaze::Helper::Link
102
-
103
- it 'should lay out breadcrumbs' do
104
- breadcrumbs('/file/dir/listing/is/cool').
28
+ it 'lays out breadcrumbs' do
29
+ SpecHelperLink.breadcrumbs('/file/dir/listing/is/cool').
105
30
  should == [
106
- "<a href=\"/file\">file</a>",
107
- "<a href=\"/file/dir\">dir</a>",
108
- "<a href=\"/file/dir/listing\">listing</a>",
109
- "<a href=\"/file/dir/listing/is\">is</a>",
110
- "<a href=\"/file/dir/listing/is/cool\">cool</a>"
31
+ '<a href="/file">file</a>',
32
+ '<a href="/file/dir">dir</a>',
33
+ '<a href="/file/dir/listing">listing</a>',
34
+ '<a href="/file/dir/listing/is">is</a>',
35
+ '<a href="/file/dir/listing/is/cool">cool</a>'
111
36
  ].join('/')
112
37
  end
113
38
 
114
- it 'should lay out breadcrumbs with href prefix' do
115
- breadcrumbs('/file/dir/listing/is/cool', '/', '/', '/prefix/path').
39
+ it 'lays out breadcrumbs with href prefix' do
40
+ SpecHelperLink.breadcrumbs('/file/dir/listing/is/cool', '/', '/', '/prefix/path').
116
41
  should == [
117
- "<a href=\"/prefix/path/file\">file</a>",
118
- "<a href=\"/prefix/path/file/dir\">dir</a>",
119
- "<a href=\"/prefix/path/file/dir/listing\">listing</a>",
120
- "<a href=\"/prefix/path/file/dir/listing/is\">is</a>",
121
- "<a href=\"/prefix/path/file/dir/listing/is/cool\">cool</a>"
42
+ '<a href="/prefix/path/file">file</a>',
43
+ '<a href="/prefix/path/file/dir">dir</a>',
44
+ '<a href="/prefix/path/file/dir/listing">listing</a>',
45
+ '<a href="/prefix/path/file/dir/listing/is">is</a>',
46
+ '<a href="/prefix/path/file/dir/listing/is/cool">cool</a>'
122
47
  ].join('/')
123
48
  end
124
49
  end
@@ -0,0 +1,60 @@
1
+ # * Encoding: UTF-8
2
+ $KCODE = 'u' if //.respond_to?(:kcode)
3
+ require 'spec/helper'
4
+ spec_requires 'locale/tag', 'locale'
5
+
6
+ class SpecHelperLocalize < Ramaze::Controller
7
+ map '/'
8
+ helper :localize
9
+
10
+ def index
11
+ locale.language
12
+ end
13
+
14
+ def translate(string)
15
+ l(string)
16
+ end
17
+
18
+ private
19
+
20
+ def localize_dictionary
21
+ DICTIONARY
22
+ end
23
+ end
24
+
25
+ DICTIONARY = Ramaze::Helper::Localize::Dictionary.new
26
+ DICTIONARY.load(:en, :hash => {'one' => 'one', 'two' => 'two'})
27
+ DICTIONARY.load(:de, :hash => {'one' => 'eins', 'two' => 'zwei'})
28
+ DICTIONARY.load(:ja, :hash => {'one' => '一', 'three' => '三'})
29
+
30
+ describe Ramaze::Helper::Localize do
31
+ behaves_like :mock
32
+
33
+ should 'default to a language' do
34
+ get('/').body.should == 'en'
35
+ end
36
+
37
+ should 'override language by ?lang' do
38
+ get('/?lang=de').body.should == 'de'
39
+ end
40
+
41
+ should 'override language by cookie' do
42
+ get('/', 'HTTP_COOKIE' => 'lang=ja').body.should == 'ja'
43
+ end
44
+
45
+ should 'not fail if language is invalid' do
46
+ get('/?lang=foobar').body.should == 'foobar'
47
+ end
48
+
49
+ should 'use dictionary to translate' do
50
+ get('/translate/one').body.should == 'one'
51
+ get('/translate/one?lang=en').body.should == 'one'
52
+ get('/translate/one?lang=ja').body.should == '一'
53
+ get('/translate/one?lang=de').body.should == 'eins'
54
+ end
55
+
56
+ it "falls back to default language if string wasn't found in dictionary" do
57
+ get('/translate/two?lang=ja').body.should == 'two'
58
+ get('/translate/three?lang=ja').body.should == '三'
59
+ end
60
+ end
@@ -0,0 +1,19 @@
1
+ require 'spec/helper'
2
+ spec_require 'maruku'
3
+
4
+ class SpecHelperMaruku < Ramaze::Controller
5
+ map '/'
6
+ helper :maruku
7
+
8
+ def index
9
+ maruku('# Hello')
10
+ end
11
+ end
12
+
13
+ describe Ramaze::Helper::Maruku do
14
+ behaves_like :mock
15
+
16
+ it 'converts a markdown string to html' do
17
+ get('/').body.should =~ /<h1 id=["']hello["']>Hello<\/h1>/
18
+ end
19
+ end
@@ -1,8 +1,7 @@
1
- # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
1
+ # Copyright (c) 2009 Michael Fellinger m.fellinger@gmail.com
2
2
  # All files in this distribution are subject to the terms of the Ruby license.
3
3
 
4
4
  require 'spec/helper'
5
-
6
5
  spec_require 'hpricot'
7
6
 
8
7
  module Og
@@ -27,16 +26,12 @@ class TCPagerController < Ramaze::Controller
27
26
 
28
27
  items.inspect
29
28
  end
30
-
31
29
  end
32
30
 
33
31
  shared 'pager' do
34
- behaves_like 'http'
35
- behaves_like 'resolve'
32
+ behaves_like :mock
36
33
  extend Ramaze::Helper::Pager
37
34
 
38
- ramaze
39
-
40
35
  def pager_key
41
36
  Ramaze::Pager.trait[:key]
42
37
  end
@@ -56,27 +51,29 @@ shared 'pager' do
56
51
 
57
52
  it 'should be paginated' do
58
53
  get('/page').body.should == [1, 2].inspect
59
- get('/page', pager_key => '2').body.should == [3, 4].inspect
54
+ get('/page?_page=2').body.should == [3, 4].inspect
60
55
  end
61
56
 
62
57
  it "should report the number of articles as Pager#total_count" do
63
- @pager.should.not.be.nil
64
58
  @pager.total_count.should.equal 5
65
59
  end
66
60
 
67
61
  it "should return the same number of items as passed to :per_page" do
68
- @items.should.not.be.nil
69
62
  @items.size.should.equal 2
70
63
  end
71
64
 
72
65
  it "should link to other pages" do
73
- stack('/page') do
74
- @pager.should.not.be.nil
75
- @pager.navigation.should.not.be.nil
66
+ # mock the action
67
+ action = '/page'
68
+ def action.node; TCPagerController; end
69
+ def action.name; self; end
70
+ Ramaze::Current.actions = [action]
76
71
 
77
- page = Hpricot(@pager.navigation)
78
- (page / 'a').size.should == 4
79
- end
72
+ @pager.should.not.be.nil
73
+ @pager.navigation.should.not.be.nil
74
+
75
+ page = Hpricot(@pager.navigation)
76
+ (page / 'a').size.should == 4
80
77
  end
81
78
  end
82
79