clivecrous-ramaze 0.3.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (548) hide show
  1. data/README.markdown +444 -0
  2. data/Rakefile +197 -0
  3. data/bin/ramaze +60 -0
  4. data/doc/AUTHORS +30 -0
  5. data/doc/CHANGELOG +5757 -0
  6. data/doc/COPYING +56 -0
  7. data/doc/FAQ +92 -0
  8. data/doc/GPL +339 -0
  9. data/doc/INSTALL +34 -0
  10. data/doc/LEGAL +26 -0
  11. data/doc/ProjectInfo +53 -0
  12. data/doc/TODO +29 -0
  13. data/doc/meta/announcement.txt +126 -0
  14. data/doc/meta/configuration.txt +162 -0
  15. data/doc/meta/internals.txt +278 -0
  16. data/doc/meta/users.kml +64 -0
  17. data/doc/migrate/1110_to_1111.txt +131 -0
  18. data/doc/readme_chunks/appendix.txt +10 -0
  19. data/doc/readme_chunks/examples.txt +38 -0
  20. data/doc/readme_chunks/features.txt +148 -0
  21. data/doc/readme_chunks/getting_help.txt +5 -0
  22. data/doc/readme_chunks/getting_started.txt +18 -0
  23. data/doc/readme_chunks/installing.txt +55 -0
  24. data/doc/readme_chunks/introduction.txt +18 -0
  25. data/doc/readme_chunks/principles.txt +56 -0
  26. data/doc/readme_chunks/thanks.txt +59 -0
  27. data/doc/tutorial/todolist.html +816 -0
  28. data/doc/tutorial/todolist.mkd +736 -0
  29. data/examples/auth/auth.rb +54 -0
  30. data/examples/auth/template/layout.haml +20 -0
  31. data/examples/auth/template/login.haml +16 -0
  32. data/examples/blog/README +3 -0
  33. data/examples/blog/controller/main.rb +29 -0
  34. data/examples/blog/model/entry.rb +30 -0
  35. data/examples/blog/public/styles/blog.css +132 -0
  36. data/examples/blog/spec/blog.rb +87 -0
  37. data/examples/blog/start.rb +7 -0
  38. data/examples/blog/view/edit.xhtml +17 -0
  39. data/examples/blog/view/index.xhtml +17 -0
  40. data/examples/blog/view/layout.xhtml +11 -0
  41. data/examples/blog/view/new.xhtml +16 -0
  42. data/examples/caching.rb +31 -0
  43. data/examples/chat/model/history.rb +36 -0
  44. data/examples/chat/model/message.rb +7 -0
  45. data/examples/chat/public/js/jquery.js +3436 -0
  46. data/examples/chat/start.rb +40 -0
  47. data/examples/chat/view/chat.xhtml +29 -0
  48. data/examples/chat/view/index.xhtml +6 -0
  49. data/examples/chat/view/layout.xhtml +12 -0
  50. data/examples/css.rb +37 -0
  51. data/examples/element.rb +45 -0
  52. data/examples/facebook.rb +159 -0
  53. data/examples/hello.rb +15 -0
  54. data/examples/httpdigest.rb +50 -0
  55. data/examples/identity.rb +18 -0
  56. data/examples/layout.rb +28 -0
  57. data/examples/linking.rb +29 -0
  58. data/examples/localization/start.rb +35 -0
  59. data/examples/memleak_detector.rb +32 -0
  60. data/examples/nitro_form.rb +23 -0
  61. data/examples/provide.rb +23 -0
  62. data/examples/ramaise.rb +132 -0
  63. data/examples/rammit/spec/rammit.rb +31 -0
  64. data/examples/rammit/src/controller/main.rb +3 -0
  65. data/examples/rammit/src/controller/page.rb +16 -0
  66. data/examples/rammit/src/model.rb +33 -0
  67. data/examples/rammit/start.rb +8 -0
  68. data/examples/rammit/template/index.xhtml +14 -0
  69. data/examples/rammit/template/page/view.xhtml +4 -0
  70. data/examples/rapaste/Rakefile +35 -0
  71. data/examples/rapaste/controller/paste.rb +94 -0
  72. data/examples/rapaste/model/paste.rb +55 -0
  73. data/examples/rapaste/public/css/active4d.css +114 -0
  74. data/examples/rapaste/public/css/all_hallows_eve.css +72 -0
  75. data/examples/rapaste/public/css/amy.css +147 -0
  76. data/examples/rapaste/public/css/blackboard.css +88 -0
  77. data/examples/rapaste/public/css/brilliance_black.css +605 -0
  78. data/examples/rapaste/public/css/brilliance_dull.css +599 -0
  79. data/examples/rapaste/public/css/cobalt.css +149 -0
  80. data/examples/rapaste/public/css/dawn.css +121 -0
  81. data/examples/rapaste/public/css/display.css +197 -0
  82. data/examples/rapaste/public/css/eiffel.css +121 -0
  83. data/examples/rapaste/public/css/espresso_libre.css +109 -0
  84. data/examples/rapaste/public/css/idle.css +62 -0
  85. data/examples/rapaste/public/css/iplastic.css +80 -0
  86. data/examples/rapaste/public/css/lazy.css +73 -0
  87. data/examples/rapaste/public/css/mac_classic.css +123 -0
  88. data/examples/rapaste/public/css/magicwb_amiga.css +104 -0
  89. data/examples/rapaste/public/css/pastels_on_dark.css +188 -0
  90. data/examples/rapaste/public/css/slush_poppies.css +85 -0
  91. data/examples/rapaste/public/css/spacecadet.css +51 -0
  92. data/examples/rapaste/public/css/sunburst.css +180 -0
  93. data/examples/rapaste/public/css/twilight.css +137 -0
  94. data/examples/rapaste/public/css/zenburnesque.css +91 -0
  95. data/examples/rapaste/public/js/jquery.js +11 -0
  96. data/examples/rapaste/spec/rapaste.rb +49 -0
  97. data/examples/rapaste/start.rb +24 -0
  98. data/examples/rapaste/view/copy.xhtml +10 -0
  99. data/examples/rapaste/view/index.xhtml +9 -0
  100. data/examples/rapaste/view/layout.xhtml +25 -0
  101. data/examples/rapaste/view/list.xhtml +29 -0
  102. data/examples/rapaste/view/search.xhtml +41 -0
  103. data/examples/rapaste/view/view.xhtml +37 -0
  104. data/examples/rapp.rb +45 -0
  105. data/examples/rest.rb +28 -0
  106. data/examples/sequel_form.rb +24 -0
  107. data/examples/sequel_scaffolding.rb +24 -0
  108. data/examples/simple.rb +56 -0
  109. data/examples/simple_auth.rb +23 -0
  110. data/examples/sourceview/public/coderay.css +104 -0
  111. data/examples/sourceview/public/images/file.gif +0 -0
  112. data/examples/sourceview/public/images/folder.gif +0 -0
  113. data/examples/sourceview/public/images/tv-collapsable-last.gif +0 -0
  114. data/examples/sourceview/public/images/tv-collapsable.gif +0 -0
  115. data/examples/sourceview/public/images/tv-expandable-last.gif +0 -0
  116. data/examples/sourceview/public/images/tv-expandable.gif +0 -0
  117. data/examples/sourceview/public/images/tv-item-last.gif +0 -0
  118. data/examples/sourceview/public/images/tv-item.gif +0 -0
  119. data/examples/sourceview/public/jquery.js +11 -0
  120. data/examples/sourceview/public/jquery.treeview.css +48 -0
  121. data/examples/sourceview/public/jquery.treeview.js +223 -0
  122. data/examples/sourceview/public/sourceview.js +52 -0
  123. data/examples/sourceview/sourceview.rb +77 -0
  124. data/examples/sourceview/template/index.haml +59 -0
  125. data/examples/templates/template/external.amrita +19 -0
  126. data/examples/templates/template/external.haml +22 -0
  127. data/examples/templates/template/external.liquid +28 -0
  128. data/examples/templates/template/external.mab +30 -0
  129. data/examples/templates/template/external.nag +28 -0
  130. data/examples/templates/template/external.redcloth +19 -0
  131. data/examples/templates/template/external.rem +30 -0
  132. data/examples/templates/template/external.rhtml +28 -0
  133. data/examples/templates/template/external.tenjin +28 -0
  134. data/examples/templates/template/external.xsl +57 -0
  135. data/examples/templates/template/external.zmr +28 -0
  136. data/examples/templates/template_amrita2.rb +74 -0
  137. data/examples/templates/template_erubis.rb +53 -0
  138. data/examples/templates/template_ezamar.rb +50 -0
  139. data/examples/templates/template_haml.rb +50 -0
  140. data/examples/templates/template_liquid.rb +65 -0
  141. data/examples/templates/template_markaby.rb +58 -0
  142. data/examples/templates/template_nagoro.rb +51 -0
  143. data/examples/templates/template_redcloth.rb +59 -0
  144. data/examples/templates/template_remarkably.rb +55 -0
  145. data/examples/templates/template_tenjin.rb +53 -0
  146. data/examples/templates/template_xslt.rb +49 -0
  147. data/examples/todolist/README +1 -0
  148. data/examples/todolist/public/favicon.ico +0 -0
  149. data/examples/todolist/public/js/jquery.js +1923 -0
  150. data/examples/todolist/public/ramaze.png +0 -0
  151. data/examples/todolist/spec/todolist.rb +132 -0
  152. data/examples/todolist/src/controller/main.rb +70 -0
  153. data/examples/todolist/src/element/page.rb +31 -0
  154. data/examples/todolist/src/model.rb +14 -0
  155. data/examples/todolist/start.rb +11 -0
  156. data/examples/todolist/template/index.xhtml +17 -0
  157. data/examples/todolist/template/new.xhtml +7 -0
  158. data/examples/upload/start.rb +19 -0
  159. data/examples/upload/view/index.xhtml +25 -0
  160. data/examples/whywiki/spec/whywiki.rb +58 -0
  161. data/examples/whywiki/start.rb +46 -0
  162. data/examples/whywiki/template/edit.xhtml +14 -0
  163. data/examples/whywiki/template/show.xhtml +18 -0
  164. data/examples/wikore/spec/wikore.rb +111 -0
  165. data/examples/wikore/src/controller.rb +80 -0
  166. data/examples/wikore/src/model.rb +52 -0
  167. data/examples/wikore/start.rb +9 -0
  168. data/examples/wikore/template/index.xhtml +8 -0
  169. data/examples/wiktacular/README +2 -0
  170. data/examples/wiktacular/mkd/link/2007-07-20_19-45-51.mkd +1 -0
  171. data/examples/wiktacular/mkd/link/current.mkd +1 -0
  172. data/examples/wiktacular/mkd/main/2007-07-20_16-31-33.mkd +1 -0
  173. data/examples/wiktacular/mkd/main/2007-07-20_19-21-12.mkd +1 -0
  174. data/examples/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
  175. data/examples/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
  176. data/examples/wiktacular/mkd/main/current.mkd +2 -0
  177. data/examples/wiktacular/mkd/markdown/current.mkd +3 -0
  178. data/examples/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
  179. data/examples/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd +3 -0
  180. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd +11 -0
  181. data/examples/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd +13 -0
  182. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd +17 -0
  183. data/examples/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd +17 -0
  184. data/examples/wiktacular/mkd/testing/current.mkd +17 -0
  185. data/examples/wiktacular/public/favicon.ico +0 -0
  186. data/examples/wiktacular/public/screen.css +72 -0
  187. data/examples/wiktacular/spec/wiktacular.rb +158 -0
  188. data/examples/wiktacular/src/controller.rb +55 -0
  189. data/examples/wiktacular/src/model.rb +102 -0
  190. data/examples/wiktacular/start.rb +8 -0
  191. data/examples/wiktacular/template/edit.xhtml +6 -0
  192. data/examples/wiktacular/template/html_layout.xhtml +27 -0
  193. data/examples/wiktacular/template/index.xhtml +9 -0
  194. data/examples/wiktacular/template/new.xhtml +6 -0
  195. data/lib/proto/controller/main.rb +22 -0
  196. data/lib/proto/public/css/ramaze_error.css +90 -0
  197. data/lib/proto/public/dispatch.fcgi +11 -0
  198. data/lib/proto/public/favicon.ico +0 -0
  199. data/lib/proto/public/js/jquery.js +3436 -0
  200. data/lib/proto/public/ramaze.png +0 -0
  201. data/lib/proto/spec/main.rb +24 -0
  202. data/lib/proto/start.rb +8 -0
  203. data/lib/proto/start.ru +16 -0
  204. data/lib/proto/view/error.xhtml +64 -0
  205. data/lib/proto/view/index.xhtml +34 -0
  206. data/lib/proto/view/page.xhtml +27 -0
  207. data/lib/ramaze.rb +108 -0
  208. data/lib/ramaze/action.rb +153 -0
  209. data/lib/ramaze/action/render.rb +191 -0
  210. data/lib/ramaze/adapter.rb +101 -0
  211. data/lib/ramaze/adapter/base.rb +103 -0
  212. data/lib/ramaze/adapter/cgi.rb +24 -0
  213. data/lib/ramaze/adapter/ebb.rb +22 -0
  214. data/lib/ramaze/adapter/evented_mongrel.rb +7 -0
  215. data/lib/ramaze/adapter/fcgi.rb +24 -0
  216. data/lib/ramaze/adapter/lsws.rb +23 -0
  217. data/lib/ramaze/adapter/mongrel.rb +25 -0
  218. data/lib/ramaze/adapter/scgi.rb +22 -0
  219. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +7 -0
  220. data/lib/ramaze/adapter/thin.rb +22 -0
  221. data/lib/ramaze/adapter/webrick.rb +52 -0
  222. data/lib/ramaze/cache.rb +115 -0
  223. data/lib/ramaze/cache/memcached.rb +71 -0
  224. data/lib/ramaze/cache/memory.rb +6 -0
  225. data/lib/ramaze/cache/yaml_store.rb +68 -0
  226. data/lib/ramaze/contrib.rb +82 -0
  227. data/lib/ramaze/contrib/auto_params.rb +135 -0
  228. data/lib/ramaze/contrib/auto_params/get_args.rb +57 -0
  229. data/lib/ramaze/contrib/email.rb +84 -0
  230. data/lib/ramaze/contrib/facebook.rb +23 -0
  231. data/lib/ramaze/contrib/facebook/facebook.rb +171 -0
  232. data/lib/ramaze/contrib/file_cache.rb +65 -0
  233. data/lib/ramaze/contrib/gems.rb +65 -0
  234. data/lib/ramaze/contrib/gettext.rb +113 -0
  235. data/lib/ramaze/contrib/gettext/mo.rb +155 -0
  236. data/lib/ramaze/contrib/gettext/parser.rb +46 -0
  237. data/lib/ramaze/contrib/gettext/po.rb +109 -0
  238. data/lib/ramaze/contrib/gzip_filter.rb +56 -0
  239. data/lib/ramaze/contrib/profiling.rb +36 -0
  240. data/lib/ramaze/contrib/rest.rb +14 -0
  241. data/lib/ramaze/contrib/sequel/fill.rb +12 -0
  242. data/lib/ramaze/contrib/sequel_cache.rb +92 -0
  243. data/lib/ramaze/controller.rb +281 -0
  244. data/lib/ramaze/controller/error.rb +46 -0
  245. data/lib/ramaze/controller/main.rb +2 -0
  246. data/lib/ramaze/controller/resolve.rb +252 -0
  247. data/lib/ramaze/current.rb +70 -0
  248. data/lib/ramaze/current/request.rb +204 -0
  249. data/lib/ramaze/current/response.rb +27 -0
  250. data/lib/ramaze/current/session.rb +181 -0
  251. data/lib/ramaze/current/session/flash.rb +79 -0
  252. data/lib/ramaze/current/session/hash.rb +66 -0
  253. data/lib/ramaze/dispatcher.rb +137 -0
  254. data/lib/ramaze/dispatcher/action.rb +41 -0
  255. data/lib/ramaze/dispatcher/directory.rb +119 -0
  256. data/lib/ramaze/dispatcher/error.rb +108 -0
  257. data/lib/ramaze/dispatcher/file.rb +95 -0
  258. data/lib/ramaze/error.rb +24 -0
  259. data/lib/ramaze/gestalt.rb +129 -0
  260. data/lib/ramaze/helper.rb +78 -0
  261. data/lib/ramaze/helper/aspect.rb +110 -0
  262. data/lib/ramaze/helper/auth.rb +125 -0
  263. data/lib/ramaze/helper/cache.rb +140 -0
  264. data/lib/ramaze/helper/cgi.rb +47 -0
  265. data/lib/ramaze/helper/flash.rb +59 -0
  266. data/lib/ramaze/helper/form.rb +281 -0
  267. data/lib/ramaze/helper/formatting.rb +118 -0
  268. data/lib/ramaze/helper/httpdigest.rb +49 -0
  269. data/lib/ramaze/helper/identity.rb +105 -0
  270. data/lib/ramaze/helper/link.rb +124 -0
  271. data/lib/ramaze/helper/markaby.rb +31 -0
  272. data/lib/ramaze/helper/maruku.rb +7 -0
  273. data/lib/ramaze/helper/nitroform.rb +14 -0
  274. data/lib/ramaze/helper/pager.rb +366 -0
  275. data/lib/ramaze/helper/partial.rb +96 -0
  276. data/lib/ramaze/helper/redirect.rb +82 -0
  277. data/lib/ramaze/helper/rest.rb +43 -0
  278. data/lib/ramaze/helper/sendfile.rb +16 -0
  279. data/lib/ramaze/helper/sequel.rb +55 -0
  280. data/lib/ramaze/helper/stack.rb +72 -0
  281. data/lib/ramaze/helper/tagz.rb +19 -0
  282. data/lib/ramaze/helper/user.rb +78 -0
  283. data/lib/ramaze/log.rb +27 -0
  284. data/lib/ramaze/log/analogger.rb +37 -0
  285. data/lib/ramaze/log/growl.rb +35 -0
  286. data/lib/ramaze/log/hub.rb +38 -0
  287. data/lib/ramaze/log/informer.rb +125 -0
  288. data/lib/ramaze/log/knotify.rb +25 -0
  289. data/lib/ramaze/log/logger.rb +23 -0
  290. data/lib/ramaze/log/logging.rb +88 -0
  291. data/lib/ramaze/log/syslog.rb +36 -0
  292. data/lib/ramaze/log/xosd.rb +88 -0
  293. data/lib/ramaze/option.rb +153 -0
  294. data/lib/ramaze/option/dsl.rb +45 -0
  295. data/lib/ramaze/option/holder.rb +143 -0
  296. data/lib/ramaze/option/merger.rb +106 -0
  297. data/lib/ramaze/route.rb +97 -0
  298. data/lib/ramaze/setup.rb +50 -0
  299. data/lib/ramaze/snippets.rb +9 -0
  300. data/lib/ramaze/snippets/array/put_within.rb +37 -0
  301. data/lib/ramaze/snippets/binding/locals.rb +13 -0
  302. data/lib/ramaze/snippets/blankslate.rb +7 -0
  303. data/lib/ramaze/snippets/dictionary.rb +504 -0
  304. data/lib/ramaze/snippets/divide.rb +20 -0
  305. data/lib/ramaze/snippets/kernel/__dir__.rb +23 -0
  306. data/lib/ramaze/snippets/kernel/acquire.rb +34 -0
  307. data/lib/ramaze/snippets/kernel/constant.rb +26 -0
  308. data/lib/ramaze/snippets/kernel/pretty_inspect.rb +15 -0
  309. data/lib/ramaze/snippets/metaid.rb +17 -0
  310. data/lib/ramaze/snippets/numeric/filesize_format.rb +25 -0
  311. data/lib/ramaze/snippets/object/instance_variable_defined.rb +8 -0
  312. data/lib/ramaze/snippets/object/pretty.rb +6 -0
  313. data/lib/ramaze/snippets/object/scope.rb +11 -0
  314. data/lib/ramaze/snippets/object/thread_accessor.rb +5 -0
  315. data/lib/ramaze/snippets/object/traits.rb +76 -0
  316. data/lib/ramaze/snippets/ordered_set.rb +40 -0
  317. data/lib/ramaze/snippets/proc/locals.rb +11 -0
  318. data/lib/ramaze/snippets/ramaze/caller_info.rb +30 -0
  319. data/lib/ramaze/snippets/ramaze/caller_lines.rb +51 -0
  320. data/lib/ramaze/snippets/ramaze/deprecated.rb +7 -0
  321. data/lib/ramaze/snippets/ramaze/thread_accessor.rb +58 -0
  322. data/lib/ramaze/snippets/string/camel_case.rb +16 -0
  323. data/lib/ramaze/snippets/string/color.rb +27 -0
  324. data/lib/ramaze/snippets/string/each.rb +8 -0
  325. data/lib/ramaze/snippets/string/esc.rb +29 -0
  326. data/lib/ramaze/snippets/string/ord.rb +15 -0
  327. data/lib/ramaze/snippets/string/snake_case.rb +15 -0
  328. data/lib/ramaze/snippets/string/start_with.rb +8 -0
  329. data/lib/ramaze/snippets/string/unindent.rb +20 -0
  330. data/lib/ramaze/snippets/struct/fill.rb +23 -0
  331. data/lib/ramaze/snippets/struct/values_at.rb +24 -0
  332. data/lib/ramaze/snippets/symbol/to_proc.rb +24 -0
  333. data/lib/ramaze/snippets/thread/into.rb +18 -0
  334. data/lib/ramaze/sourcereload.rb +169 -0
  335. data/lib/ramaze/spec.rb +1 -0
  336. data/lib/ramaze/spec/helper.rb +131 -0
  337. data/lib/ramaze/spec/helper/bacon.rb +7 -0
  338. data/lib/ramaze/spec/helper/browser.rb +88 -0
  339. data/lib/ramaze/spec/helper/mock_http.rb +69 -0
  340. data/lib/ramaze/spec/helper/pretty_output.rb +82 -0
  341. data/lib/ramaze/spec/helper/requester.rb +63 -0
  342. data/lib/ramaze/spec/helper/simple_http.rb +434 -0
  343. data/lib/ramaze/spec/helper/snippets.rb +6 -0
  344. data/lib/ramaze/store/default.rb +109 -0
  345. data/lib/ramaze/template.rb +84 -0
  346. data/lib/ramaze/template/amrita2.rb +45 -0
  347. data/lib/ramaze/template/builder.rb +28 -0
  348. data/lib/ramaze/template/erubis.rb +41 -0
  349. data/lib/ramaze/template/ezamar.rb +42 -0
  350. data/lib/ramaze/template/ezamar/element.rb +169 -0
  351. data/lib/ramaze/template/ezamar/engine.rb +76 -0
  352. data/lib/ramaze/template/ezamar/morpher.rb +135 -0
  353. data/lib/ramaze/template/ezamar/render_partial.rb +31 -0
  354. data/lib/ramaze/template/haml.rb +37 -0
  355. data/lib/ramaze/template/liquid.rb +36 -0
  356. data/lib/ramaze/template/markaby.rb +52 -0
  357. data/lib/ramaze/template/nagoro.rb +52 -0
  358. data/lib/ramaze/template/none.rb +14 -0
  359. data/lib/ramaze/template/redcloth.rb +25 -0
  360. data/lib/ramaze/template/remarkably.rb +38 -0
  361. data/lib/ramaze/template/sass.rb +37 -0
  362. data/lib/ramaze/template/tagz.rb +79 -0
  363. data/lib/ramaze/template/tenjin.rb +74 -0
  364. data/lib/ramaze/template/xslt.rb +100 -0
  365. data/lib/ramaze/tool.rb +9 -0
  366. data/lib/ramaze/tool/create.rb +74 -0
  367. data/lib/ramaze/tool/localize.rb +198 -0
  368. data/lib/ramaze/tool/mime.rb +25 -0
  369. data/lib/ramaze/tool/mime_types.yaml +615 -0
  370. data/lib/ramaze/tool/record.rb +6 -0
  371. data/lib/ramaze/trinity.rb +13 -0
  372. data/lib/ramaze/version.rb +14 -0
  373. data/lib/vendor/bacon.rb +323 -0
  374. data/rake_tasks/conf.rake +83 -0
  375. data/rake_tasks/coverage.rake +46 -0
  376. data/rake_tasks/darcs.rake +14 -0
  377. data/rake_tasks/gem.rake +85 -0
  378. data/rake_tasks/git.rake +4 -0
  379. data/rake_tasks/maintenance.rake +436 -0
  380. data/rake_tasks/spec.rake +62 -0
  381. data/spec/contrib/auto_params.rb +121 -0
  382. data/spec/contrib/profiling.rb +29 -0
  383. data/spec/contrib/sequel/fill.rb +47 -0
  384. data/spec/examples/caching.rb +19 -0
  385. data/spec/examples/css.rb +15 -0
  386. data/spec/examples/element.rb +15 -0
  387. data/spec/examples/hello.rb +11 -0
  388. data/spec/examples/linking.rb +18 -0
  389. data/spec/examples/simple.rb +45 -0
  390. data/spec/examples/simple_auth.rb +32 -0
  391. data/spec/examples/templates/template_amrita2.rb +16 -0
  392. data/spec/examples/templates/template_erubis.rb +23 -0
  393. data/spec/examples/templates/template_ezamar.rb +23 -0
  394. data/spec/examples/templates/template_haml.rb +25 -0
  395. data/spec/examples/templates/template_liquid.rb +29 -0
  396. data/spec/examples/templates/template_markaby.rb +23 -0
  397. data/spec/examples/templates/template_redcloth.rb +28 -0
  398. data/spec/examples/templates/template_remarkably.rb +23 -0
  399. data/spec/examples/templates/template_tenjin.rb +28 -0
  400. data/spec/helper.rb +3 -0
  401. data/spec/ramaze/action/basics.rb +36 -0
  402. data/spec/ramaze/action/cache.rb +87 -0
  403. data/spec/ramaze/action/file_cache.rb +48 -0
  404. data/spec/ramaze/action/layout.rb +190 -0
  405. data/spec/ramaze/action/render.rb +32 -0
  406. data/spec/ramaze/action/view/bar.xhtml +1 -0
  407. data/spec/ramaze/action/view/instancevars/layout.xhtml +1 -0
  408. data/spec/ramaze/action/view/other_wrapper.xhtml +1 -0
  409. data/spec/ramaze/action/view/single_wrapper.xhtml +1 -0
  410. data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
  411. data/spec/ramaze/adapter.rb +39 -0
  412. data/spec/ramaze/adapter/ebb.rb +12 -0
  413. data/spec/ramaze/adapter/mongrel.rb +12 -0
  414. data/spec/ramaze/adapter/record.rb +31 -0
  415. data/spec/ramaze/adapter/webrick.rb +12 -0
  416. data/spec/ramaze/cache.rb +140 -0
  417. data/spec/ramaze/controller.rb +177 -0
  418. data/spec/ramaze/controller/actionless_templates.rb +32 -0
  419. data/spec/ramaze/controller/resolve.rb +32 -0
  420. data/spec/ramaze/controller/subclass.rb +21 -0
  421. data/spec/ramaze/controller/template_resolving.rb +113 -0
  422. data/spec/ramaze/controller/view/greet.xhtml +1 -0
  423. data/spec/ramaze/controller/view/list.xhtml +1 -0
  424. data/spec/ramaze/controller/view/other/greet/other.xhtml +1 -0
  425. data/spec/ramaze/controller/view/other_wrapper.xhtml +1 -0
  426. data/spec/ramaze/current/request.rb +30 -0
  427. data/spec/ramaze/current/session.rb +97 -0
  428. data/spec/ramaze/dispatcher.rb +31 -0
  429. data/spec/ramaze/dispatcher/directory.rb +55 -0
  430. data/spec/ramaze/dispatcher/file.rb +60 -0
  431. data/spec/ramaze/dispatcher/public/favicon.ico +0 -0
  432. data/spec/ramaze/dispatcher/public/file name.txt +1 -0
  433. data/spec/ramaze/dispatcher/public/test_download.css +141 -0
  434. data/spec/ramaze/element.rb +107 -0
  435. data/spec/ramaze/error.rb +94 -0
  436. data/spec/ramaze/gestalt.rb +131 -0
  437. data/spec/ramaze/helper/aspect.rb +92 -0
  438. data/spec/ramaze/helper/auth.rb +66 -0
  439. data/spec/ramaze/helper/cache.rb +160 -0
  440. data/spec/ramaze/helper/cgi.rb +43 -0
  441. data/spec/ramaze/helper/file.rb +18 -0
  442. data/spec/ramaze/helper/flash.rb +133 -0
  443. data/spec/ramaze/helper/form.rb +118 -0
  444. data/spec/ramaze/helper/formatting.rb +41 -0
  445. data/spec/ramaze/helper/link.rb +124 -0
  446. data/spec/ramaze/helper/pager.rb +99 -0
  447. data/spec/ramaze/helper/partial.rb +76 -0
  448. data/spec/ramaze/helper/redirect.rb +112 -0
  449. data/spec/ramaze/helper/stack.rb +73 -0
  450. data/spec/ramaze/helper/user.rb +43 -0
  451. data/spec/ramaze/helper/view/locals.xhtml +1 -0
  452. data/spec/ramaze/helper/view/loop.xhtml +4 -0
  453. data/spec/ramaze/helper/view/num.xhtml +1 -0
  454. data/spec/ramaze/helper/view/partial.xhtml +1 -0
  455. data/spec/ramaze/helper/view/recursive.xhtml +8 -0
  456. data/spec/ramaze/helper/view/recursive_local_ivars.xhtml +7 -0
  457. data/spec/ramaze/helper/view/recursive_locals.xhtml +7 -0
  458. data/spec/ramaze/helper/view/test_template.xhtml +1 -0
  459. data/spec/ramaze/localize.rb +89 -0
  460. data/spec/ramaze/log/informer.rb +72 -0
  461. data/spec/ramaze/log/syslog.rb +10 -0
  462. data/spec/ramaze/morpher.rb +111 -0
  463. data/spec/ramaze/params.rb +157 -0
  464. data/spec/ramaze/public/error404.xhtml +1 -0
  465. data/spec/ramaze/public/favicon.ico +0 -0
  466. data/spec/ramaze/public/ramaze.png +0 -0
  467. data/spec/ramaze/public/test_download.css +141 -0
  468. data/spec/ramaze/request.rb +185 -0
  469. data/spec/ramaze/request/ebb.rb +9 -0
  470. data/spec/ramaze/request/mongrel.rb +9 -0
  471. data/spec/ramaze/request/thin.rb +9 -0
  472. data/spec/ramaze/request/webrick.rb +5 -0
  473. data/spec/ramaze/rewrite.rb +36 -0
  474. data/spec/ramaze/rewrite/file.css +1 -0
  475. data/spec/ramaze/route.rb +131 -0
  476. data/spec/ramaze/session.rb +94 -0
  477. data/spec/ramaze/store/default.rb +71 -0
  478. data/spec/ramaze/template.rb +128 -0
  479. data/spec/ramaze/template/amrita2.rb +50 -0
  480. data/spec/ramaze/template/amrita2/external.amrita +6 -0
  481. data/spec/ramaze/template/amrita2/sum.amrita +1 -0
  482. data/spec/ramaze/template/builder.rb +55 -0
  483. data/spec/ramaze/template/builder/external.rxml +3 -0
  484. data/spec/ramaze/template/erubis.rb +41 -0
  485. data/spec/ramaze/template/erubis/sum.rhtml +1 -0
  486. data/spec/ramaze/template/ezamar.rb +63 -0
  487. data/spec/ramaze/template/ezamar/another/long/action.zmr +1 -0
  488. data/spec/ramaze/template/ezamar/combined.zmr +1 -0
  489. data/spec/ramaze/template/ezamar/file_only.zmr +1 -0
  490. data/spec/ramaze/template/ezamar/index.zmr +1 -0
  491. data/spec/ramaze/template/ezamar/nested.zmr +1 -0
  492. data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
  493. data/spec/ramaze/template/ezamar/some__long__action.zmr +1 -0
  494. data/spec/ramaze/template/ezamar/sum.zmr +1 -0
  495. data/spec/ramaze/template/haml.rb +66 -0
  496. data/spec/ramaze/template/haml/index.haml +5 -0
  497. data/spec/ramaze/template/haml/locals.haml +2 -0
  498. data/spec/ramaze/template/haml/with_vars.haml +4 -0
  499. data/spec/ramaze/template/liquid.rb +99 -0
  500. data/spec/ramaze/template/liquid/index.liquid +1 -0
  501. data/spec/ramaze/template/liquid/products.liquid +45 -0
  502. data/spec/ramaze/template/markaby.rb +61 -0
  503. data/spec/ramaze/template/markaby/external.mab +8 -0
  504. data/spec/ramaze/template/markaby/sum.mab +1 -0
  505. data/spec/ramaze/template/nagoro.rb +64 -0
  506. data/spec/ramaze/template/nagoro/another/long/action.nag +1 -0
  507. data/spec/ramaze/template/nagoro/combined.nag +1 -0
  508. data/spec/ramaze/template/nagoro/file_only.nag +1 -0
  509. data/spec/ramaze/template/nagoro/index.nag +1 -0
  510. data/spec/ramaze/template/nagoro/nested.nag +1 -0
  511. data/spec/ramaze/template/nagoro/some__long__action.nag +1 -0
  512. data/spec/ramaze/template/nagoro/sum.nag +1 -0
  513. data/spec/ramaze/template/ramaze/external.test +1 -0
  514. data/spec/ramaze/template/redcloth.rb +38 -0
  515. data/spec/ramaze/template/redcloth/external.redcloth +1 -0
  516. data/spec/ramaze/template/remarkably.rb +58 -0
  517. data/spec/ramaze/template/remarkably/external.rem +8 -0
  518. data/spec/ramaze/template/remarkably/sum.rem +1 -0
  519. data/spec/ramaze/template/sass.rb +69 -0
  520. data/spec/ramaze/template/sass/file.css.sass +5 -0
  521. data/spec/ramaze/template/tagz.rb +62 -0
  522. data/spec/ramaze/template/tagz/external.tagz +8 -0
  523. data/spec/ramaze/template/tagz/sum.tagz +1 -0
  524. data/spec/ramaze/template/tenjin.rb +47 -0
  525. data/spec/ramaze/template/tenjin/external.tenjin +1 -0
  526. data/spec/ramaze/template/xslt.rb +90 -0
  527. data/spec/ramaze/template/xslt/concat_words.xsl +16 -0
  528. data/spec/ramaze/template/xslt/index.xsl +14 -0
  529. data/spec/ramaze/template/xslt/products.xsl +32 -0
  530. data/spec/ramaze/template/xslt/ruby_version.xsl +14 -0
  531. data/spec/snippets/array/put_within.rb +33 -0
  532. data/spec/snippets/divide.rb +19 -0
  533. data/spec/snippets/kernel/__dir__.rb +8 -0
  534. data/spec/snippets/kernel/acquire.rb +71 -0
  535. data/spec/snippets/kernel/constant.rb +23 -0
  536. data/spec/snippets/numeric/filesize_format.rb +12 -0
  537. data/spec/snippets/ordered_set.rb +63 -0
  538. data/spec/snippets/ramaze/caller_info.rb +39 -0
  539. data/spec/snippets/ramaze/caller_lines.rb +30 -0
  540. data/spec/snippets/string/camel_case.rb +25 -0
  541. data/spec/snippets/string/color.rb +11 -0
  542. data/spec/snippets/string/snake_case.rb +24 -0
  543. data/spec/snippets/string/unindent.rb +43 -0
  544. data/spec/snippets/struct/fill.rb +26 -0
  545. data/spec/snippets/struct/values_at.rb +44 -0
  546. data/spec/snippets/symbol/to_proc.rb +13 -0
  547. data/spec/snippets/thread/into.rb +20 -0
  548. metadata +789 -0
@@ -0,0 +1,7 @@
1
+ libdir = File.expand_path(File.join(File.dirname(__FILE__), '../../../'))
2
+ $LOAD_PATH.unshift libdir
3
+ require 'vendor/bacon'
4
+ require 'ramaze/spec/helper/pretty_output'
5
+ Bacon.extend Bacon::PrettyOutput
6
+ # Bacon.extend Bacon::TestUnitOutput
7
+ Bacon.summary_on_exit
@@ -0,0 +1,88 @@
1
+ # Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ class Browser
5
+ attr_reader :cookie, :http
6
+
7
+ def initialize(base = '/', &block)
8
+ @base = base
9
+ @history = []
10
+ @uri = URI("http://localhost:#{Ramaze::Global.port}")
11
+ @http = SimpleHttp.new(@uri)
12
+
13
+ story(&block) if block_given?
14
+ end
15
+
16
+ def story(&block)
17
+ instance_eval(&block) if block_given?
18
+ end
19
+
20
+ def get path = '/', hash = {}
21
+ request(:get, path, hash)
22
+ end
23
+
24
+ def post path = '/', hash = {}
25
+ request(:post, path, hash)
26
+ end
27
+
28
+ def erequest method, path, hash = {}
29
+ response = request(method, path, hash)
30
+ eval(response)
31
+ rescue Object => ex
32
+ p :response => response
33
+ ex.message
34
+ end
35
+
36
+ def epost path = '/', hash = {}
37
+ erequest(:post, path, hash)
38
+ end
39
+
40
+ def eget path = '/', hash = {}
41
+ erequest(:get, path, hash)
42
+ end
43
+
44
+ def hget(*args)
45
+ @page = Hpricot(get(*args))
46
+ end
47
+
48
+ def hpost(*args)
49
+ @page = Hpricot(post(*args))
50
+ end
51
+
52
+ def find_link(text)
53
+ link = @page.at("a[text()='#{text}']")
54
+ link.should.not.be.nil if link.respond_to?(:should)
55
+ link[:href]
56
+ end
57
+
58
+ def follow_link(text)
59
+ hget find_link(text)
60
+ end
61
+
62
+ def follow_links(*texts)
63
+ texts.each do |text|
64
+ follow_link text
65
+ end
66
+ end
67
+
68
+ def request method, path, hash = {}
69
+ @http.uri = @uri + "/#{@base}/#{path}".squeeze('/')
70
+ @http.request_headers['referer'] = @history.last.path rescue '/'
71
+
72
+ if method == :get and not hash.empty?
73
+ @http.uri.query = hash.inject([]){|s,(k,v)| s << "#{k}=#{v}"}.join('&')
74
+ hash.clear
75
+ end
76
+
77
+ response = @http.send(method, hash).strip
78
+ @history << @http.uri
79
+ get_cookie
80
+
81
+ response
82
+ end
83
+
84
+ def get_cookie
85
+ @cookie = @http.response_headers['set-cookie']
86
+ @http.request_headers['cookie'] = @cookie
87
+ end
88
+ end
@@ -0,0 +1,69 @@
1
+ # Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ require 'ramaze'
5
+ require 'rack/mock'
6
+
7
+ module Ramaze
8
+ module Adapter
9
+ class Fake < Base
10
+ end
11
+ end
12
+ end
13
+
14
+ module MockHTTP
15
+ DEFAULTS = {
16
+ 'REMOTE_ADDR' => '127.0.0.1'
17
+ }
18
+
19
+ MOCK_URI = URI::HTTP.build(
20
+ :host => 'localhost',
21
+ :port => 80
22
+ )
23
+
24
+ FISHING = {
25
+ :input => :input,
26
+ :referrer => 'HTTP_REFERER',
27
+ :referer => 'HTTP_REFERER',
28
+ :cookie => 'HTTP_COOKIE',
29
+ :if_none_match=> 'HTTP_IF_NONE_MATCH',
30
+ :if_modified_since=> 'HTTP_IF_MODIFIED_SINCE',
31
+ }
32
+
33
+ MOCK_REQUEST = ::Rack::MockRequest.new(Ramaze::Adapter::Fake)
34
+
35
+ def get(*args) mock_request(:get, *args) end
36
+ def put(*args) mock_request(:put, *args) end
37
+ def post(*args) mock_request(:post, *args) end
38
+ def delete(*args) mock_request(:delete, *args) end
39
+
40
+ def mock_request(meth, path, query = {})
41
+ uri, options = process_request(path, query)
42
+ MOCK_REQUEST.send(meth, uri, DEFAULTS.merge(options))
43
+ end
44
+
45
+ def raw_mock_request(meth, uri, options = {})
46
+ MOCK_REQUEST.send(meth, uri, DEFAULTS.merge(options))
47
+ end
48
+
49
+ def process_request(path, query)
50
+ options = {}
51
+ FISHING.each{|key, value|
52
+ options[value] = query.delete(key)} if query.is_a?(Hash)
53
+ [create_url(path, query), options]
54
+ end
55
+
56
+ def create_url(path, query)
57
+ uri = MOCK_URI.dup
58
+ uri.path = path
59
+ uri.query = make_query(query)
60
+ uri.to_s
61
+ end
62
+
63
+ def make_query query
64
+ return query unless query and not query.is_a?(String)
65
+ query.map{|key, value|
66
+ "#{CGI::escape(key.to_s)}=#{CGI::escape(value.to_s)}"
67
+ }.join('&')
68
+ end
69
+ end
@@ -0,0 +1,82 @@
1
+ module Bacon
2
+ module PrettyOutput
3
+ NAME = ''
4
+
5
+ # store name and run
6
+ def handle_specification(name)
7
+ NAME.replace name
8
+ puts NAME
9
+ yield
10
+ puts
11
+ end
12
+
13
+ # Core, yields the requirement and outputs problems
14
+ def handle_requirement(description)
15
+ print "- #{description}\n"
16
+ error = yield
17
+
18
+ unless error.empty?
19
+ if defined?(Ramaze::Logging)
20
+ puts '', " #{NAME} -- #{description} [FAILED]".center(70, '-'), ''
21
+ colors = Ramaze::Informer::COLORS
22
+
23
+ until RamazeLogger.history.empty?
24
+ tag, line = RamazeLogger.history.shift
25
+ out = "%6s | %s" % [tag.to_s, line]
26
+ puts out.send(colors[tag])
27
+ end
28
+ end
29
+
30
+ general_error
31
+ end
32
+ end
33
+
34
+ # Show nicer output on error
35
+ def general_error
36
+ puts "", ErrorLog
37
+ ErrorLog.scan(/^\s*(.*?):(\d+): #{NAME} - (.*?)$/) do
38
+ puts "#{ENV['EDITOR'] || 'vim'} #$1 +#$2 # #$3"
39
+ end
40
+ ErrorLog.replace ''
41
+ end
42
+
43
+ # output summary
44
+ def handle_summary
45
+ puts
46
+ puts "%d tests, %d assertions, %d failures, %d errors" %
47
+ Counter.values_at(:specifications, :requirements, :failed, :errors)
48
+ end
49
+ end
50
+ end
51
+
52
+ if defined?(Ramaze::Logging)
53
+ module Ramaze
54
+ # Special Logger, stores everything in its history
55
+ class SpecLogger
56
+ include Ramaze::Logging
57
+ include Enumerable
58
+
59
+ attr_accessor :history
60
+
61
+ # Create new history
62
+ def initialize
63
+ @history = []
64
+ end
65
+
66
+ # Yield the history
67
+ def each
68
+ @history.each{|e| yield(e) }
69
+ end
70
+
71
+ # general log
72
+ def log(tag, str)
73
+ @history << [tag, str]
74
+ end
75
+ end
76
+ end
77
+
78
+ module Bacon::PrettyOutput
79
+ RamazeLogger = Ramaze::SpecLogger.new
80
+ Ramaze::Log.loggers = [RamazeLogger]
81
+ end
82
+ end
@@ -0,0 +1,63 @@
1
+ # Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ module Requester
5
+ def get url = '/', hash = {}
6
+ request(:get, url, hash)
7
+ end
8
+
9
+ def post url = '/', hash = {}
10
+ request(:post, url, hash)
11
+ end
12
+
13
+ def request method, url, hash = {}
14
+ http = SimpleHttp.new(url2uri(url))
15
+ if method == :get and not hash.empty?
16
+ http.uri.query = hash.map{|k,v| "#{k}=#{v}"}.join('&')
17
+ hash = {}
18
+ end
19
+
20
+ puts "#{method.to_s.upcase} => #{http.uri}"
21
+ http.send(method, hash).strip
22
+ end
23
+
24
+ def epost url = '/', hash = {}
25
+ erequest(:post, url, hash)
26
+ end
27
+
28
+ def eget url = '/', hash = {}
29
+ erequest(:get, url, hash)
30
+ end
31
+
32
+ def erequest method, url, hash = {}
33
+ response = request(method, url, hash)
34
+ eval(response)
35
+ rescue Object => ex
36
+ p :response => response
37
+ ex.message
38
+ end
39
+
40
+ def hget(url = '/', hash = {})
41
+ @response = get(url, hash)
42
+ @body = @response.body
43
+ @status = @response.status
44
+ Hpricot(@body)
45
+ end
46
+
47
+ def hpost(url = '/', hash = {})
48
+ @response = post(url, hash)
49
+ @body = @response.body
50
+ @status = @response.status
51
+ Hpricot(@body)
52
+ end
53
+
54
+ def url2uri url
55
+ uri = URI.parse(url)
56
+ #p uri.methods.sort.grep(/=/)
57
+ uri.scheme = 'http'
58
+ uri.host = 'localhost'
59
+ uri.port = Ramaze::Global.port
60
+ uri.path = "/#{url}".squeeze('/')
61
+ uri
62
+ end
63
+ end
@@ -0,0 +1,434 @@
1
+ =begin
2
+ This package is copyrighted free software by Tim Becker <tim@kuriositaet.de>.
3
+ You can redistribute it and/or modify it under either the terms of the GPL
4
+ (see COPYING.txt file), or the conditions below:
5
+
6
+ 1. You may make and give away verbatim copies of the source form of the
7
+ software without restriction, provided that you duplicate all of the
8
+ original copyright notices and associated disclaimers.
9
+
10
+ 2. You may modify your copy of the software in any way, provided that
11
+ you do at least ONE of the following:
12
+
13
+ a) place your modifications in the Public Domain or otherwise
14
+ make them Freely Available, such as by posting said
15
+ modifications to Usenet or an equivalent medium, or by allowing
16
+ the author to include your modifications in the software.
17
+
18
+ b) use the modified software only within your corporation or
19
+ organization.
20
+
21
+ c) rename any non-standard executables so the names do not conflict
22
+ with standard executables, which must also be provided.
23
+
24
+ d) make other distribution arrangements with the author.
25
+
26
+ 3. You may distribute the software in object code or executable
27
+ form, provided that you do at least ONE of the following:
28
+
29
+ a) distribute the executables and library files of the software,
30
+ together with instructions (in the manual page or equivalent)
31
+ on where to get the original distribution.
32
+
33
+ b) accompany the distribution with the machine-readable source of
34
+ the software.
35
+
36
+ c) give non-standard executables non-standard names, with
37
+ instructions on where to get the original software distribution.
38
+
39
+ d) make other distribution arrangements with the author.
40
+
41
+ 4. You may modify and include the part of the software into any other
42
+ software (possibly commercial). But some files in the distribution
43
+ are not written by the author, so that they are not under this terms.
44
+
45
+ They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
46
+ files under the ./missing directory. See each file for the copying
47
+ condition.
48
+
49
+ 5. The scripts and library files supplied as input to or produced as
50
+ output from the software do not automatically fall under the
51
+ copyright of the software, but belong to whomever generated them,
52
+ and may be sold commercially, and may be aggregated with this
53
+ software.
54
+
55
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
56
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
57
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
58
+ PURPOSE.
59
+ =end
60
+
61
+ require 'net/http'
62
+ require 'net/https'
63
+ require 'uri'
64
+ require 'cgi'
65
+
66
+
67
+ # Wrapper around ruby's standard net/http classes. Currently, only GET
68
+ # and POST https methods are supported. `SimpleHttp` provides class
69
+ # methods `get` and `post` to handle basic functionality. In case more
70
+ # complicated requests need to be made or default settings need to be
71
+ # overriden, it's possible to instantiate `SimpleHttp` and use instance
72
+ # methods `get` and `put`.
73
+ #
74
+ #
75
+ # Features:
76
+ #
77
+ # * Handles Redirects automatically
78
+ # * Proxy used transparently if http_proxy environment variable is
79
+ # set.
80
+ # * SSL handled automatically
81
+ # * fault tolerant uri, e.g. all of these would work:
82
+ # "www.example.com", "www.example.com/", "http://www.example.com"
83
+ #
84
+ # Some usage examples:
85
+ # # plain GET (using class methods)
86
+ # SimpleHttp.get "www.example.com"
87
+ #
88
+ # # POST using the instance methods
89
+ # uri = URI.parse "https://www.example.com/index.html"
90
+ # sh = SimpleHttp uri
91
+ # sh.set_proxy "my.proxy", "8080"
92
+ # sh.post {"query" => "query_data"}
93
+ #
94
+ # # POST using class methods.
95
+ # binaryData = getImage
96
+ # SimpleData.post binaryData, "image/png"
97
+ #
98
+ # # GET requst with a custom request_header
99
+ # sh = SimpleHttp.new "http://www.example.com"
100
+ # sh.request_headers= {'X-Special-Http-Header'=>'my-value'}
101
+ # sh.get
102
+ class SimpleHttp
103
+
104
+ VERSION='0.1.1'
105
+
106
+ attr_accessor :proxy_host, :proxy_port, :proxy_user, :proxy_pwd, :uri, :request_headers, :response_headers, :response_handlers, :follow_num_redirects
107
+
108
+ RESPONSE_HANDLERS = {
109
+ Net::HTTPResponse => lambda { |request, response, http|
110
+ response.each_header {|key, value|
111
+ http.response_headers[key]=value
112
+ }
113
+ raise response.to_s
114
+ },
115
+ Net::HTTPSuccess => lambda { |request, response, http|
116
+ response.each_header {|key, value|
117
+ http.response_headers[key]=value
118
+ }
119
+ return response.body
120
+ },
121
+ Net::HTTPRedirection => lambda { |request, response, http|
122
+ raise "too many redirects!" unless http.follow_num_redirects > 0
123
+
124
+ # create a new SimpleHttp for the location
125
+ # refered to decreasing the remaining redirects
126
+ # by one.
127
+ sh = SimpleHttp.new response['location']
128
+ sh.follow_num_redirects = http.follow_num_redirects-1
129
+
130
+ # copy the response handlers used in the current
131
+ # request in case they were non standard.
132
+ sh.response_handlers = http.response_handlers
133
+
134
+ # copy the request headers
135
+ sh.request_headers = http.request_headers
136
+ sh.response_headers = http.response_headers
137
+
138
+ # copy host and port
139
+ sh.uri.host = http.uri.host
140
+ sh.uri.port = http.uri.port
141
+
142
+ # http doesn't permit redirects for methods
143
+ # other than GET of HEAD, so we complain in case
144
+ # we get them in response to a POST request. (Or
145
+ # anything other than GET, for that matter.)
146
+
147
+ case request
148
+ when Net::HTTP::Get
149
+ sh.get
150
+ when Net::HTTP::Post
151
+ sh.post
152
+ else
153
+ raise "Not a valid HTTP method for redirection: #{request.class}"
154
+ end
155
+ }
156
+
157
+ }
158
+
159
+ # SimpleHttp can either be used directly through the +get+ and
160
+ # +post+ class methods or be instantiated, in case you need to
161
+ # to add custom behaviour to the requests.
162
+ #
163
+ # @param may be a URI or a String.
164
+ #
165
+ # Example:
166
+ # http = SimpleHttp.new(URI.parse("http://www.example.com"))
167
+ # http = SimpleHttp.new "www.example.com"
168
+ # http = SimpleHttp.new "http://usr:pwd@www.example.com:1234"
169
+ def initialize uri
170
+ set_proxy ENV['http_proxy'] if ENV['http_proxy']
171
+
172
+ if uri.class == String
173
+
174
+ unless uri =~ /^https?:\/\//
175
+ uri = "http://#{uri}"
176
+ end
177
+
178
+ uri = URI.parse uri
179
+
180
+ end
181
+ @uri = uri
182
+ if !@uri.path || "" == @uri.path.strip
183
+ @uri.path="/"
184
+ end
185
+
186
+
187
+ @request_headers={}
188
+ @response_headers={}
189
+ @response_handlers=RESPONSE_HANDLERS.clone
190
+ @follow_num_redirects=3
191
+
192
+ if @uri.user
193
+ basic_authentication @uri.user, @uri.password
194
+ end
195
+
196
+ end
197
+
198
+ #
199
+ # Provides facilities to perform http basic authentication. You
200
+ # don't need to provide +usr+ and +pwd+ if they are already included
201
+ # in the uri, i.e. http://user:password@www.example.com/
202
+ #
203
+
204
+ def basic_authentication usr, pwd
205
+ str = ["#{usr}:#{pwd}"].pack("*m")
206
+ str = "Basic #{str}"
207
+ @request_headers["Authorization"]=str
208
+ end
209
+
210
+ #
211
+ # this method can be used to register response handlers for specific
212
+ # http responses in case you need to override the default behaviour.
213
+ # Defaults are:
214
+ #
215
+ # HTTPSuccess : return the body of the response
216
+ # HTTPRedirection : follow the redirection until success
217
+ # Others : raise an exception
218
+ #
219
+ # `clazz` is the subclass of HTTPResponse (or HTTPResponse in case you
220
+ # want to define "default" behaviour) that you are registering the
221
+ # handler for.
222
+ #
223
+ # `block` is the handler itself, if a response of the appropriate class
224
+ # is received, `block` is called with three parameters: the the
225
+ # Net::HTTPRequest, the actual HTTPResponse object that was received
226
+ # and a reference to the instance of `SimpleHttp` that is executing the
227
+ # call.
228
+ #
229
+ # example:
230
+ #
231
+ # # to override the default action of following a HTTP
232
+ # # redirect, you could register the folllowing handler:
233
+ #
234
+ # sh = SimpleHttp "www.example.com"
235
+ # sh.register_response_handler Net::HTTPRedirection {|request, response, shttp|
236
+ # response['location']
237
+ # }
238
+ #
239
+
240
+ def register_response_handler clazz, &block
241
+ c = clazz
242
+ while c != Object
243
+ # completely unnecessary sanity check to make sure parameter
244
+ # `clazz` is in fact a HTTPResponse ...
245
+ if c == Net::HTTPResponse
246
+ @response_handlers[clazz]=block
247
+ return
248
+ end
249
+ c = c.superclass
250
+ end
251
+
252
+ raise "Trying to register a response handler for non-response class: #{clazz}"
253
+ end
254
+
255
+ #
256
+ # Set the proxy to use for the http request.
257
+ # Note that you don't need to set the proxy in case the
258
+ # `http_proxy` environment variable is set. To override
259
+ # previous proxy settings and connect directly, call
260
+ # `set_proxy nil`
261
+ #
262
+ # usage:
263
+ # http = SimpleHttp.new "www.example.com"
264
+ #
265
+ # http.set_proxy "http://proxy:8000"
266
+ # or:
267
+ # http.set_proxy(URI.parse("http://proxy:8000"))
268
+ # or:
269
+ # http.set_proxy 'proxy', '8000', 'my_user', 'secret'
270
+ # or:
271
+ # http.set_proxy nil # to override previous proxy
272
+ # settings and make the request directly.
273
+ #
274
+
275
+
276
+ def set_proxy proxy, port=nil, user=nil, pwd=nil
277
+
278
+
279
+ if !proxy
280
+ @proxy_host=@proxy_port=@proxy_user=@proxy_pwd=nil
281
+ return
282
+ end
283
+
284
+ if proxy.class == String
285
+ if !port && !user && !pwd
286
+ proxy = URI.parse(proxy)
287
+ else
288
+ @proxy_host= host
289
+ @proxy_port= port
290
+ @proxy_user= user
291
+ @proxy_pwd = pwd
292
+ end
293
+ end
294
+
295
+ if proxy.class == URI::HTTP
296
+ @proxy_host= proxy.host
297
+ @proxy_port= proxy.port
298
+ @proxy_user= proxy.user
299
+ @proxy_pwd = proxy.password
300
+ end
301
+ end
302
+
303
+ # interal
304
+ # Takes a HTTPResponse (or subclass) and determines how to
305
+ # handle the response. Default behaviour is:
306
+ #
307
+ # HTTPSuccess : return the body of the response
308
+ # HTTPRedirection : follow the redirect until success.
309
+ # default : raise the HTTPResponse.
310
+ #
311
+ # the default behaviour can be overidden by registering a
312
+ # response handler using the `register_response_handler` method.
313
+ #
314
+
315
+ def handle_response http_request, http_response
316
+ raise "Not a Net::HTTPResponse" unless http_response.is_a? Net::HTTPResponse
317
+
318
+ c = http_response.class
319
+ while c!=Object
320
+ # the response_handlers hash contains a handler
321
+ # for the specific response class.
322
+ if @response_handlers[c]
323
+ return @response_handlers[c].call(http_request, http_response, self)
324
+ end
325
+
326
+ c=c.superclass
327
+ end
328
+
329
+ # if we reached this place, no handler was registered
330
+ # for this response. default is to return the response.
331
+
332
+ return http_response
333
+ end
334
+
335
+ # internal
336
+ def do_http request
337
+ response = nil
338
+
339
+ http = Net::HTTP.new(@uri.host, @uri.port, proxy_host,
340
+ proxy_port, proxy_user, proxy_pwd)
341
+ http.use_ssl = @uri.scheme == 'https'
342
+
343
+ # add custom request headers.
344
+
345
+ @request_headers.each {|key,value|
346
+ request[key]=value
347
+ }
348
+
349
+ handle_response(request, http.request(request))
350
+ end
351
+
352
+ # internal
353
+ def make_query query
354
+ return query unless query && query.class == Hash
355
+ query.inject([]) do |s, (key, value)|
356
+ s + [CGI::escape(key) + "=" + CGI::escape(value)]
357
+ end.join('&')
358
+ end
359
+
360
+ # Make a simple GET request to the provided URI.
361
+ #
362
+ # Example:
363
+ # puts(SimpleHttp.get("www.example.com"))
364
+ def self.get uri, query=nil
365
+ http = SimpleHttp.new uri
366
+ http.get query
367
+ end
368
+
369
+ # Make a POST request to the provided URI.
370
+ #
371
+ # Example:
372
+ # puts(SimpleHttp.post("www.example.com", "query"=>"my_query"))
373
+ #
374
+ # Alternatively, you can post any sort of data, but will have to
375
+ # set the appriate content_type:
376
+ #
377
+ # SimpleHttp.post("http://www.example.com/", binary_data, "img/png")
378
+
379
+ def self.post uri, query=nil, content_type='application/x-www-form-urlencoded'
380
+ http = SimpleHttp.new uri
381
+ http.post query, content_type
382
+ end
383
+
384
+ # Call the +get+ method as an instance method if you need to
385
+ # modify the default behaviour of the library, or set special
386
+ # headers:
387
+ #
388
+ # http = SimpleHttp.new "www.example.com"
389
+ # http.request_headers["X-Special"]="whatever"
390
+ # str = http.get
391
+ def get query = nil
392
+ if (query = make_query query)
393
+ @uri.query = @uri.query ? @uri.query+"&"+query : query
394
+ end
395
+ full_path = @uri.path + (@uri.query ? "?#{@uri.query}" : "")
396
+
397
+ req = Net::HTTP::Get.new(full_path)
398
+ # puts Net::HTTP::Proxy(@proxy_host, @proxy_port, @proxy_user, @proxy_pwd).get(@uri)
399
+ do_http req
400
+ end
401
+
402
+ #
403
+ # Post the query data to the url.
404
+ # The body of the request remains empty if query=nil.
405
+ # In case `query` is a `Hash`, it's assumed that we are
406
+ # sending a form.
407
+ # In case `query` is a `String`, it's also assumed that a
408
+ # form is being sent, UNLESS the `content_type` parameter
409
+ # is set.
410
+ #
411
+ def post query=nil, content_type='application/x-www-form-urlencoded'
412
+ req = Net::HTTP::Post.new(@uri.path)
413
+
414
+ req.body= make_query query if query
415
+ req.content_type=content_type if query
416
+ req.content_length=query ? req.body.length : 0
417
+
418
+ do_http req
419
+ end
420
+
421
+ end
422
+
423
+ #ht = SimpleHttp.new "http://www.google.com/aldfksjaldskjfalskjfdlk"
424
+ ##ht.register_response_handler(Net::HTTPRedirection) {|req, res, ht| puts res['location']}
425
+ #puts ht.get.class
426
+ ##puts(ht.get("q"=>"bla"))
427
+ #
428
+ ##puts (SimpleHttp.get "http://www.google.com")
429
+ #
430
+ #['http://www.google.com/', 'www.google.com', 'https://www.google.com'].each {|u|
431
+ # SimpleHttp.new u
432
+ #}
433
+ ##puts ht.post
434
+