rq 3.1.0 → 3.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1758) hide show
  1. data/Makefile +6 -0
  2. data/all/install.rb +1 -1
  3. data/all/install.sh +50 -7
  4. data/all/local_arch_install.rb +120 -0
  5. data/all/packages/INSTALL +3 -1
  6. data/all/packages/main-1.0.0.tgz +0 -0
  7. data/all/packages/open4-0.9.3.tgz +0 -0
  8. data/all/packages/ruby-1.8.6.tar.gz +0 -0
  9. data/all/packages/sqlite-2.8.17.tar.gz +0 -0
  10. data/bin/rq +32 -3
  11. data/bin/rqmailer +846 -0
  12. data/extconf.rb +39 -11
  13. data/lib/rq.rb +25 -7
  14. data/lib/rq/arrayfields.rb +371 -0
  15. data/lib/{rq-3.1.0 → rq}/backer.rb +0 -0
  16. data/lib/{rq-3.1.0 → rq}/configfile.rb +0 -0
  17. data/lib/{rq-3.1.0 → rq}/configurator.rb +0 -0
  18. data/lib/rq/creator.rb +54 -0
  19. data/lib/rq/cron.rb +132 -0
  20. data/lib/{rq-3.1.0 → rq}/defaultconfig.txt +0 -0
  21. data/lib/{rq-3.1.0 → rq}/deleter.rb +0 -0
  22. data/lib/{rq-3.1.0 → rq}/executor.rb +0 -0
  23. data/lib/rq/feeder.rb +527 -0
  24. data/lib/{rq-3.1.0 → rq}/ioviewer.rb +0 -0
  25. data/lib/{rq-3.1.0 → rq}/job.rb +0 -0
  26. data/lib/rq/jobqueue.rb +944 -0
  27. data/lib/rq/jobrunner.rb +108 -0
  28. data/lib/{rq-3.1.0 → rq}/jobrunnerdaemon.rb +0 -0
  29. data/lib/{rq-3.1.0 → rq}/lister.rb +0 -0
  30. data/lib/{rq-3.1.0 → rq}/locker.rb +0 -0
  31. data/lib/rq/lockfile.rb +564 -0
  32. data/lib/{rq-3.1.0 → rq}/logging.rb +0 -0
  33. data/lib/rq/mainhelper.rb +189 -0
  34. data/lib/{rq-3.1.0 → rq}/orderedautohash.rb +0 -0
  35. data/lib/{rq-3.1.0 → rq}/orderedhash.rb +0 -0
  36. data/lib/rq/qdb.rb +733 -0
  37. data/lib/{rq-3.1.0 → rq}/querier.rb +0 -0
  38. data/lib/rq/rails.rb +80 -0
  39. data/lib/{rq-3.1.0 → rq}/recoverer.rb +0 -0
  40. data/lib/{rq-3.1.0 → rq}/refresher.rb +0 -0
  41. data/lib/{rq-3.1.0 → rq}/relayer.rb +0 -0
  42. data/lib/{rq-3.1.0 → rq}/resource.rb +0 -0
  43. data/lib/{rq-3.1.0 → rq}/resourcemanager.rb +0 -0
  44. data/lib/rq/resubmitter.rb +100 -0
  45. data/lib/{rq-3.1.0 → rq}/rotater.rb +0 -0
  46. data/lib/{rq-3.1.0 → rq}/sleepcycle.rb +0 -0
  47. data/lib/{rq-3.1.0 → rq}/snapshotter.rb +0 -0
  48. data/lib/{rq-3.1.0 → rq}/sqlite.rb +0 -0
  49. data/lib/{rq-3.1.0 → rq}/statuslister.rb +0 -0
  50. data/lib/rq/submitter.rb +113 -0
  51. data/lib/rq/toucher.rb +182 -0
  52. data/lib/{rq-3.1.0 → rq}/updater.rb +0 -0
  53. data/lib/{rq-3.1.0 → rq}/usage.rb +0 -0
  54. data/lib/{rq-3.1.0 → rq}/util.rb +0 -0
  55. data/q/bin/rqmailer +16 -0
  56. data/q/db +0 -0
  57. data/q/db.schema +28 -0
  58. data/{rq-3.1.0.gem → q/lock} +0 -0
  59. data/rails/README +182 -0
  60. data/rails/Rakefile +10 -0
  61. data/rails/app/controllers/application.rb +7 -0
  62. data/rails/app/helpers/application_helper.rb +3 -0
  63. data/rails/config/boot.rb +45 -0
  64. data/rails/config/database.yml +36 -0
  65. data/rails/config/environment.rb +60 -0
  66. data/rails/config/environments/development.rb +21 -0
  67. data/rails/config/environments/production.rb +18 -0
  68. data/rails/config/environments/test.rb +19 -0
  69. data/rails/config/routes.rb +23 -0
  70. data/rails/data/config +13 -0
  71. data/rails/data/template +7 -0
  72. data/rails/doc/README_FOR_APP +2 -0
  73. data/rails/example.rb +86 -0
  74. data/rails/log/development.log +0 -0
  75. data/rails/log/production.log +0 -0
  76. data/rails/log/server.log +0 -0
  77. data/rails/log/test.log +0 -0
  78. data/rails/public/404.html +30 -0
  79. data/rails/public/500.html +30 -0
  80. data/rails/public/dispatch.cgi +10 -0
  81. data/rails/public/dispatch.fcgi +24 -0
  82. data/rails/public/dispatch.rb +10 -0
  83. data/rails/public/favicon.ico +0 -0
  84. data/rails/public/images/rails.png +0 -0
  85. data/rails/public/index.html +277 -0
  86. data/rails/public/javascripts/application.js +2 -0
  87. data/rails/public/javascripts/controls.js +833 -0
  88. data/rails/public/javascripts/dragdrop.js +942 -0
  89. data/rails/public/javascripts/effects.js +1088 -0
  90. data/rails/public/javascripts/prototype.js +2515 -0
  91. data/rails/public/robots.txt +1 -0
  92. data/rails/q.20070629122840.tgz +0 -0
  93. data/rails/q/bin/rqmailer +847 -0
  94. data/rails/q/db +0 -0
  95. data/rails/q/db.schema +28 -0
  96. data/rails/q/lock +0 -0
  97. data/rails/script/about +3 -0
  98. data/rails/script/breakpointer +3 -0
  99. data/rails/script/console +3 -0
  100. data/rails/script/destroy +3 -0
  101. data/rails/script/generate +3 -0
  102. data/rails/script/performance/benchmarker +3 -0
  103. data/rails/script/performance/profiler +3 -0
  104. data/rails/script/plugin +3 -0
  105. data/rails/script/process/inspector +3 -0
  106. data/rails/script/process/reaper +3 -0
  107. data/rails/script/process/spawner +3 -0
  108. data/rails/script/runner +3 -0
  109. data/rails/script/server +3 -0
  110. data/rails/test/test_helper.rb +28 -0
  111. data/rails/vendor/rails/actionmailer/CHANGELOG +297 -0
  112. data/rails/vendor/rails/actionmailer/MIT-LICENSE +21 -0
  113. data/rails/vendor/rails/actionmailer/README +145 -0
  114. data/rails/vendor/rails/actionmailer/Rakefile +95 -0
  115. data/rails/vendor/rails/actionmailer/install.rb +30 -0
  116. data/rails/vendor/rails/actionmailer/lib/action_mailer.rb +50 -0
  117. data/rails/vendor/rails/actionmailer/lib/action_mailer/adv_attr_accessor.rb +30 -0
  118. data/rails/vendor/rails/actionmailer/lib/action_mailer/base.rb +582 -0
  119. data/rails/vendor/rails/actionmailer/lib/action_mailer/helpers.rb +111 -0
  120. data/rails/vendor/rails/actionmailer/lib/action_mailer/mail_helper.rb +19 -0
  121. data/rails/vendor/rails/actionmailer/lib/action_mailer/part.rb +113 -0
  122. data/rails/vendor/rails/actionmailer/lib/action_mailer/part_container.rb +51 -0
  123. data/rails/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +59 -0
  124. data/rails/vendor/rails/actionmailer/lib/action_mailer/utils.rb +8 -0
  125. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/text/format.rb +1466 -0
  126. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +3 -0
  127. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/address.rb +242 -0
  128. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/attachments.rb +39 -0
  129. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/base64.rb +71 -0
  130. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/config.rb +69 -0
  131. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/encode.rb +467 -0
  132. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/facade.rb +552 -0
  133. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/header.rb +914 -0
  134. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/info.rb +35 -0
  135. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/loader.rb +1 -0
  136. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/mail.rb +447 -0
  137. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/mailbox.rb +433 -0
  138. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/mbox.rb +1 -0
  139. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/net.rb +280 -0
  140. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/obsolete.rb +135 -0
  141. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/parser.rb +1522 -0
  142. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/port.rb +377 -0
  143. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/quoting.rb +131 -0
  144. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/scanner.rb +41 -0
  145. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/scanner_r.rb +263 -0
  146. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/stringio.rb +277 -0
  147. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/tmail.rb +1 -0
  148. data/rails/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail/utils.rb +238 -0
  149. data/rails/vendor/rails/actionmailer/lib/action_mailer/version.rb +9 -0
  150. data/rails/vendor/rails/actionmailer/test/abstract_unit.rb +30 -0
  151. data/rails/vendor/rails/actionmailer/test/fixtures/first_mailer/share.rhtml +1 -0
  152. data/rails/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper.rhtml +1 -0
  153. data/rails/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_helper_method.rhtml +1 -0
  154. data/rails/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_mail_helper.rhtml +5 -0
  155. data/rails/vendor/rails/actionmailer/test/fixtures/helper_mailer/use_test_helper.rhtml +1 -0
  156. data/rails/vendor/rails/actionmailer/test/fixtures/helpers/test_helper.rb +5 -0
  157. data/rails/vendor/rails/actionmailer/test/fixtures/path.with.dots/funky_path_mailer/multipart_with_template_path_with_dots.rhtml +1 -0
  158. data/rails/vendor/rails/actionmailer/test/fixtures/path.with.dots/multipart_with_template_path_with_dots.rhtml +0 -0
  159. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email +14 -0
  160. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email10 +20 -0
  161. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email11 +34 -0
  162. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email12 +32 -0
  163. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email13 +29 -0
  164. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email2 +114 -0
  165. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email3 +70 -0
  166. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email4 +59 -0
  167. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email5 +19 -0
  168. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email6 +20 -0
  169. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email7 +66 -0
  170. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email8 +47 -0
  171. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email9 +28 -0
  172. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email_quoted_with_0d0a +14 -0
  173. data/rails/vendor/rails/actionmailer/test/fixtures/raw_email_with_partially_quoted_subject +14 -0
  174. data/rails/vendor/rails/actionmailer/test/fixtures/second_mailer/share.rhtml +1 -0
  175. data/rails/vendor/rails/actionmailer/test/fixtures/templates/signed_up.rhtml +3 -0
  176. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.rhtml +1 -0
  177. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak +1 -0
  178. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml +10 -0
  179. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml +2 -0
  180. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml +1 -0
  181. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.rhtml +3 -0
  182. data/rails/vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.rhtml +3 -0
  183. data/rails/vendor/rails/actionmailer/test/mail_helper_test.rb +91 -0
  184. data/rails/vendor/rails/actionmailer/test/mail_render_test.rb +79 -0
  185. data/rails/vendor/rails/actionmailer/test/mail_service_test.rb +816 -0
  186. data/rails/vendor/rails/actionmailer/test/quoting_test.rb +57 -0
  187. data/rails/vendor/rails/actionmailer/test/tmail_test.rb +13 -0
  188. data/rails/vendor/rails/actionmailer/test/url_test.rb +68 -0
  189. data/rails/vendor/rails/actionpack/CHANGELOG +3138 -0
  190. data/rails/vendor/rails/actionpack/MIT-LICENSE +21 -0
  191. data/rails/vendor/rails/actionpack/README +469 -0
  192. data/rails/vendor/rails/actionpack/RUNNING_UNIT_TESTS +25 -0
  193. data/rails/vendor/rails/actionpack/Rakefile +154 -0
  194. data/rails/vendor/rails/actionpack/examples/address_book/index.rhtml +33 -0
  195. data/rails/vendor/rails/actionpack/examples/address_book/layout.rhtml +8 -0
  196. data/rails/vendor/rails/actionpack/examples/address_book_controller.cgi +9 -0
  197. data/rails/vendor/rails/actionpack/examples/address_book_controller.fcgi +6 -0
  198. data/rails/vendor/rails/actionpack/examples/address_book_controller.rb +52 -0
  199. data/rails/vendor/rails/actionpack/examples/address_book_controller.rbx +4 -0
  200. data/rails/vendor/rails/actionpack/examples/benchmark.rb +52 -0
  201. data/rails/vendor/rails/actionpack/examples/benchmark_with_ar.fcgi +89 -0
  202. data/rails/vendor/rails/actionpack/examples/blog_controller.cgi +53 -0
  203. data/rails/vendor/rails/actionpack/examples/debate/index.rhtml +14 -0
  204. data/rails/vendor/rails/actionpack/examples/debate/new_topic.rhtml +22 -0
  205. data/rails/vendor/rails/actionpack/examples/debate/topic.rhtml +32 -0
  206. data/rails/vendor/rails/actionpack/examples/debate_controller.cgi +57 -0
  207. data/rails/vendor/rails/actionpack/install.rb +30 -0
  208. data/rails/vendor/rails/actionpack/lib/action_controller.rb +83 -0
  209. data/rails/vendor/rails/actionpack/lib/action_controller/assertions.rb +82 -0
  210. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/deprecated_assertions.rb +228 -0
  211. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +25 -0
  212. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/model_assertions.rb +12 -0
  213. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +140 -0
  214. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/routing_assertions.rb +98 -0
  215. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +571 -0
  216. data/rails/vendor/rails/actionpack/lib/action_controller/assertions/tag_assertions.rb +117 -0
  217. data/rails/vendor/rails/actionpack/lib/action_controller/base.rb +1231 -0
  218. data/rails/vendor/rails/actionpack/lib/action_controller/benchmarking.rb +89 -0
  219. data/rails/vendor/rails/actionpack/lib/action_controller/caching.rb +616 -0
  220. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_ext/cgi_ext.rb +36 -0
  221. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb +211 -0
  222. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_ext/cookie_performance_fix.rb +125 -0
  223. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb +95 -0
  224. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_ext/session_performance_fix.rb +30 -0
  225. data/rails/vendor/rails/actionpack/lib/action_controller/cgi_process.rb +231 -0
  226. data/rails/vendor/rails/actionpack/lib/action_controller/components.rb +182 -0
  227. data/rails/vendor/rails/actionpack/lib/action_controller/cookies.rb +78 -0
  228. data/rails/vendor/rails/actionpack/lib/action_controller/deprecated_dependencies.rb +65 -0
  229. data/rails/vendor/rails/actionpack/lib/action_controller/deprecated_redirects.rb +17 -0
  230. data/rails/vendor/rails/actionpack/lib/action_controller/deprecated_request_methods.rb +34 -0
  231. data/rails/vendor/rails/actionpack/lib/action_controller/filters.rb +667 -0
  232. data/rails/vendor/rails/actionpack/lib/action_controller/flash.rb +182 -0
  233. data/rails/vendor/rails/actionpack/lib/action_controller/helpers.rb +131 -0
  234. data/rails/vendor/rails/actionpack/lib/action_controller/integration.rb +552 -0
  235. data/rails/vendor/rails/actionpack/lib/action_controller/layout.rb +313 -0
  236. data/rails/vendor/rails/actionpack/lib/action_controller/macros/auto_complete.rb +53 -0
  237. data/rails/vendor/rails/actionpack/lib/action_controller/macros/in_place_editing.rb +33 -0
  238. data/rails/vendor/rails/actionpack/lib/action_controller/mime_responds.rb +181 -0
  239. data/rails/vendor/rails/actionpack/lib/action_controller/mime_type.rb +200 -0
  240. data/rails/vendor/rails/actionpack/lib/action_controller/pagination.rb +402 -0
  241. data/rails/vendor/rails/actionpack/lib/action_controller/request.rb +265 -0
  242. data/rails/vendor/rails/actionpack/lib/action_controller/rescue.rb +142 -0
  243. data/rails/vendor/rails/actionpack/lib/action_controller/resources.rb +405 -0
  244. data/rails/vendor/rails/actionpack/lib/action_controller/response.rb +35 -0
  245. data/rails/vendor/rails/actionpack/lib/action_controller/routing.rb +1340 -0
  246. data/rails/vendor/rails/actionpack/lib/action_controller/scaffolding.rb +189 -0
  247. data/rails/vendor/rails/actionpack/lib/action_controller/session/active_record_store.rb +335 -0
  248. data/rails/vendor/rails/actionpack/lib/action_controller/session/drb_server.rb +32 -0
  249. data/rails/vendor/rails/actionpack/lib/action_controller/session/drb_store.rb +35 -0
  250. data/rails/vendor/rails/actionpack/lib/action_controller/session/mem_cache_store.rb +105 -0
  251. data/rails/vendor/rails/actionpack/lib/action_controller/session_management.rb +142 -0
  252. data/rails/vendor/rails/actionpack/lib/action_controller/status_codes.rb +88 -0
  253. data/rails/vendor/rails/actionpack/lib/action_controller/streaming.rb +138 -0
  254. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml +44 -0
  255. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.rhtml +26 -0
  256. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/diagnostics.rhtml +11 -0
  257. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/layout.rhtml +29 -0
  258. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/missing_template.rhtml +2 -0
  259. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/routing_error.rhtml +10 -0
  260. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/template_error.rhtml +21 -0
  261. data/rails/vendor/rails/actionpack/lib/action_controller/templates/rescues/unknown_action.rhtml +2 -0
  262. data/rails/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/edit.rhtml +7 -0
  263. data/rails/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/layout.rhtml +69 -0
  264. data/rails/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/list.rhtml +27 -0
  265. data/rails/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/new.rhtml +6 -0
  266. data/rails/vendor/rails/actionpack/lib/action_controller/templates/scaffolds/show.rhtml +9 -0
  267. data/rails/vendor/rails/actionpack/lib/action_controller/test_process.rb +504 -0
  268. data/rails/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +108 -0
  269. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/document.rb +65 -0
  270. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +530 -0
  271. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb +823 -0
  272. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/tokenizer.rb +105 -0
  273. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/version.rb +11 -0
  274. data/rails/vendor/rails/actionpack/lib/action_controller/vendor/xml_node.rb +97 -0
  275. data/rails/vendor/rails/actionpack/lib/action_controller/verification.rb +107 -0
  276. data/rails/vendor/rails/actionpack/lib/action_pack.rb +24 -0
  277. data/rails/vendor/rails/actionpack/lib/action_pack/version.rb +9 -0
  278. data/rails/vendor/rails/actionpack/lib/action_view.rb +32 -0
  279. data/rails/vendor/rails/actionpack/lib/action_view/base.rb +538 -0
  280. data/rails/vendor/rails/actionpack/lib/action_view/compiled_templates.rb +70 -0
  281. data/rails/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +237 -0
  282. data/rails/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +218 -0
  283. data/rails/vendor/rails/actionpack/lib/action_view/helpers/benchmark_helper.rb +24 -0
  284. data/rails/vendor/rails/actionpack/lib/action_view/helpers/cache_helper.rb +10 -0
  285. data/rails/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +128 -0
  286. data/rails/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +429 -0
  287. data/rails/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +17 -0
  288. data/rails/vendor/rails/actionpack/lib/action_view/helpers/deprecated_helper.rb +34 -0
  289. data/rails/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +446 -0
  290. data/rails/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +363 -0
  291. data/rails/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +176 -0
  292. data/rails/vendor/rails/actionpack/lib/action_view/helpers/java_script_macros_helper.rb +233 -0
  293. data/rails/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +193 -0
  294. data/rails/vendor/rails/actionpack/lib/action_view/helpers/javascripts/controls.js +833 -0
  295. data/rails/vendor/rails/actionpack/lib/action_view/helpers/javascripts/dragdrop.js +942 -0
  296. data/rails/vendor/rails/actionpack/lib/action_view/helpers/javascripts/effects.js +1088 -0
  297. data/rails/vendor/rails/actionpack/lib/action_view/helpers/javascripts/prototype.js +2515 -0
  298. data/rails/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +155 -0
  299. data/rails/vendor/rails/actionpack/lib/action_view/helpers/pagination_helper.rb +86 -0
  300. data/rails/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +876 -0
  301. data/rails/vendor/rails/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +140 -0
  302. data/rails/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +103 -0
  303. data/rails/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +406 -0
  304. data/rails/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +406 -0
  305. data/rails/vendor/rails/actionpack/lib/action_view/partials.rb +128 -0
  306. data/rails/vendor/rails/actionpack/lib/action_view/template_error.rb +110 -0
  307. data/rails/vendor/rails/actionpack/test/abstract_unit.rb +16 -0
  308. data/rails/vendor/rails/actionpack/test/active_record_unit.rb +116 -0
  309. data/rails/vendor/rails/actionpack/test/activerecord/active_record_assertions_test.rb +92 -0
  310. data/rails/vendor/rails/actionpack/test/activerecord/active_record_store_test.rb +142 -0
  311. data/rails/vendor/rails/actionpack/test/activerecord/pagination_test.rb +156 -0
  312. data/rails/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +610 -0
  313. data/rails/vendor/rails/actionpack/test/controller/addresses_render_test.rb +45 -0
  314. data/rails/vendor/rails/actionpack/test/controller/assert_select_test.rb +576 -0
  315. data/rails/vendor/rails/actionpack/test/controller/base_test.rb +136 -0
  316. data/rails/vendor/rails/actionpack/test/controller/benchmark_test.rb +33 -0
  317. data/rails/vendor/rails/actionpack/test/controller/caching_test.rb +228 -0
  318. data/rails/vendor/rails/actionpack/test/controller/capture_test.rb +82 -0
  319. data/rails/vendor/rails/actionpack/test/controller/cgi_test.rb +440 -0
  320. data/rails/vendor/rails/actionpack/test/controller/components_test.rb +151 -0
  321. data/rails/vendor/rails/actionpack/test/controller/content_type_test.rb +139 -0
  322. data/rails/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/admin/user_controller.rb +0 -0
  323. data/rails/vendor/rails/actionpack/test/controller/controller_fixtures/app/controllers/user_controller.rb +0 -0
  324. data/rails/vendor/rails/actionpack/test/controller/controller_fixtures/vendor/plugins/bad_plugin/lib/plugin_controller.rb +0 -0
  325. data/rails/vendor/rails/actionpack/test/controller/cookie_test.rb +88 -0
  326. data/rails/vendor/rails/actionpack/test/controller/custom_handler_test.rb +41 -0
  327. data/rails/vendor/rails/actionpack/test/controller/deprecated_instance_variables_test.rb +48 -0
  328. data/rails/vendor/rails/actionpack/test/controller/deprecation/deprecated_base_methods_test.rb +60 -0
  329. data/rails/vendor/rails/actionpack/test/controller/fake_controllers.rb +16 -0
  330. data/rails/vendor/rails/actionpack/test/controller/filter_params_test.rb +42 -0
  331. data/rails/vendor/rails/actionpack/test/controller/filters_test.rb +695 -0
  332. data/rails/vendor/rails/actionpack/test/controller/flash_test.rb +102 -0
  333. data/rails/vendor/rails/actionpack/test/controller/fragment_store_setting_test.rb +45 -0
  334. data/rails/vendor/rails/actionpack/test/controller/helper_test.rb +187 -0
  335. data/rails/vendor/rails/actionpack/test/controller/integration_test.rb +154 -0
  336. data/rails/vendor/rails/actionpack/test/controller/layout_test.rb +187 -0
  337. data/rails/vendor/rails/actionpack/test/controller/mime_responds_test.rb +351 -0
  338. data/rails/vendor/rails/actionpack/test/controller/mime_type_test.rb +33 -0
  339. data/rails/vendor/rails/actionpack/test/controller/new_render_test.rb +750 -0
  340. data/rails/vendor/rails/actionpack/test/controller/raw_post_test.rb +68 -0
  341. data/rails/vendor/rails/actionpack/test/controller/redirect_test.rb +156 -0
  342. data/rails/vendor/rails/actionpack/test/controller/render_test.rb +293 -0
  343. data/rails/vendor/rails/actionpack/test/controller/request_test.rb +317 -0
  344. data/rails/vendor/rails/actionpack/test/controller/resources_test.rb +482 -0
  345. data/rails/vendor/rails/actionpack/test/controller/routing_test.rb +1801 -0
  346. data/rails/vendor/rails/actionpack/test/controller/selector_test.rb +628 -0
  347. data/rails/vendor/rails/actionpack/test/controller/send_file_test.rb +117 -0
  348. data/rails/vendor/rails/actionpack/test/controller/session_management_test.rb +156 -0
  349. data/rails/vendor/rails/actionpack/test/controller/test_test.rb +495 -0
  350. data/rails/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +115 -0
  351. data/rails/vendor/rails/actionpack/test/controller/verification_test.rb +227 -0
  352. data/rails/vendor/rails/actionpack/test/controller/webservice_test.rb +248 -0
  353. data/rails/vendor/rails/actionpack/test/fixtures/addresses/list.rhtml +1 -0
  354. data/rails/vendor/rails/actionpack/test/fixtures/companies.yml +24 -0
  355. data/rails/vendor/rails/actionpack/test/fixtures/company.rb +9 -0
  356. data/rails/vendor/rails/actionpack/test/fixtures/content_type/render_default_content_types_for_respond_to.rhtml +1 -0
  357. data/rails/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rhtml.rhtml +1 -0
  358. data/rails/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rjs.rjs +1 -0
  359. data/rails/vendor/rails/actionpack/test/fixtures/content_type/render_default_for_rxml.rxml +1 -0
  360. data/rails/vendor/rails/actionpack/test/fixtures/db_definitions/sqlite.sql +42 -0
  361. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_cookies_ivar.rhtml +1 -0
  362. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_cookies_method.rhtml +1 -0
  363. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_flash_ivar.rhtml +1 -0
  364. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_flash_method.rhtml +1 -0
  365. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_headers_ivar.rhtml +1 -0
  366. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_headers_method.rhtml +1 -0
  367. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_params_ivar.rhtml +1 -0
  368. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_params_method.rhtml +1 -0
  369. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_request_ivar.rhtml +1 -0
  370. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_request_method.rhtml +1 -0
  371. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_response_ivar.rhtml +1 -0
  372. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_response_method.rhtml +1 -0
  373. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_session_ivar.rhtml +1 -0
  374. data/rails/vendor/rails/actionpack/test/fixtures/deprecated_instance_variables/_session_method.rhtml +1 -0
  375. data/rails/vendor/rails/actionpack/test/fixtures/developer.rb +7 -0
  376. data/rails/vendor/rails/actionpack/test/fixtures/developers.yml +21 -0
  377. data/rails/vendor/rails/actionpack/test/fixtures/developers_projects.yml +13 -0
  378. data/rails/vendor/rails/actionpack/test/fixtures/fun/games/hello_world.rhtml +1 -0
  379. data/rails/vendor/rails/actionpack/test/fixtures/helpers/abc_helper.rb +5 -0
  380. data/rails/vendor/rails/actionpack/test/fixtures/helpers/fun/games_helper.rb +3 -0
  381. data/rails/vendor/rails/actionpack/test/fixtures/helpers/fun/pdf_helper.rb +3 -0
  382. data/rails/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/controller_name_space/nested.rhtml +1 -0
  383. data/rails/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/item.rhtml +1 -0
  384. data/rails/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/layout_test.rhtml +1 -0
  385. data/rails/vendor/rails/actionpack/test/fixtures/layout_tests/layouts/third_party_template_library.mab +1 -0
  386. data/rails/vendor/rails/actionpack/test/fixtures/layout_tests/views/hello.rhtml +1 -0
  387. data/rails/vendor/rails/actionpack/test/fixtures/layouts/builder.rxml +3 -0
  388. data/rails/vendor/rails/actionpack/test/fixtures/layouts/standard.rhtml +1 -0
  389. data/rails/vendor/rails/actionpack/test/fixtures/layouts/talk_from_action.rhtml +2 -0
  390. data/rails/vendor/rails/actionpack/test/fixtures/layouts/yield.rhtml +2 -0
  391. data/rails/vendor/rails/actionpack/test/fixtures/multipart/binary_file +0 -0
  392. data/rails/vendor/rails/actionpack/test/fixtures/multipart/large_text_file +10 -0
  393. data/rails/vendor/rails/actionpack/test/fixtures/multipart/mixed_files +0 -0
  394. data/rails/vendor/rails/actionpack/test/fixtures/multipart/mona_lisa.jpg +0 -0
  395. data/rails/vendor/rails/actionpack/test/fixtures/multipart/single_parameter +5 -0
  396. data/rails/vendor/rails/actionpack/test/fixtures/multipart/text_file +10 -0
  397. data/rails/vendor/rails/actionpack/test/fixtures/project.rb +3 -0
  398. data/rails/vendor/rails/actionpack/test/fixtures/projects.yml +7 -0
  399. data/rails/vendor/rails/actionpack/test/fixtures/public/images/rails.png +0 -0
  400. data/rails/vendor/rails/actionpack/test/fixtures/public/javascripts/application.js +1 -0
  401. data/rails/vendor/rails/actionpack/test/fixtures/replies.yml +13 -0
  402. data/rails/vendor/rails/actionpack/test/fixtures/reply.rb +5 -0
  403. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.rhtml +1 -0
  404. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/all_types_with_layout.rjs +1 -0
  405. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/layouts/standard.rhtml +1 -0
  406. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.rhtml +1 -0
  407. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.rjs +1 -0
  408. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults.rxml +1 -0
  409. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.rhtml +1 -0
  410. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.rjs +1 -0
  411. data/rails/vendor/rails/actionpack/test/fixtures/respond_to/using_defaults_with_type_list.rxml +1 -0
  412. data/rails/vendor/rails/actionpack/test/fixtures/scope/test/modgreet.rhtml +1 -0
  413. data/rails/vendor/rails/actionpack/test/fixtures/test/_customer.rhtml +1 -0
  414. data/rails/vendor/rails/actionpack/test/fixtures/test/_customer_greeting.rhtml +1 -0
  415. data/rails/vendor/rails/actionpack/test/fixtures/test/_hash_object.rhtml +1 -0
  416. data/rails/vendor/rails/actionpack/test/fixtures/test/_hello.rxml +1 -0
  417. data/rails/vendor/rails/actionpack/test/fixtures/test/_partial_only.rhtml +1 -0
  418. data/rails/vendor/rails/actionpack/test/fixtures/test/_person.rhtml +2 -0
  419. data/rails/vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.rhtml +2 -0
  420. data/rails/vendor/rails/actionpack/test/fixtures/test/block_content_for.rhtml +2 -0
  421. data/rails/vendor/rails/actionpack/test/fixtures/test/capturing.rhtml +4 -0
  422. data/rails/vendor/rails/actionpack/test/fixtures/test/content_for.rhtml +2 -0
  423. data/rails/vendor/rails/actionpack/test/fixtures/test/delete_with_js.rjs +2 -0
  424. data/rails/vendor/rails/actionpack/test/fixtures/test/dot.directory/render_file_with_ivar.rhtml +1 -0
  425. data/rails/vendor/rails/actionpack/test/fixtures/test/enum_rjs_test.rjs +6 -0
  426. data/rails/vendor/rails/actionpack/test/fixtures/test/erb_content_for.rhtml +2 -0
  427. data/rails/vendor/rails/actionpack/test/fixtures/test/greeting.rhtml +1 -0
  428. data/rails/vendor/rails/actionpack/test/fixtures/test/hello.rxml +4 -0
  429. data/rails/vendor/rails/actionpack/test/fixtures/test/hello_world.rhtml +1 -0
  430. data/rails/vendor/rails/actionpack/test/fixtures/test/hello_world.rxml +3 -0
  431. data/rails/vendor/rails/actionpack/test/fixtures/test/hello_world_container.rxml +3 -0
  432. data/rails/vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.rhtml +1 -0
  433. data/rails/vendor/rails/actionpack/test/fixtures/test/hello_xml_world.rxml +11 -0
  434. data/rails/vendor/rails/actionpack/test/fixtures/test/list.rhtml +1 -0
  435. data/rails/vendor/rails/actionpack/test/fixtures/test/non_erb_block_content_for.rxml +4 -0
  436. data/rails/vendor/rails/actionpack/test/fixtures/test/potential_conflicts.rhtml +4 -0
  437. data/rails/vendor/rails/actionpack/test/fixtures/test/render_file_with_ivar.rhtml +1 -0
  438. data/rails/vendor/rails/actionpack/test/fixtures/test/render_file_with_locals.rhtml +1 -0
  439. data/rails/vendor/rails/actionpack/test/fixtures/test/render_to_string_test.rhtml +1 -0
  440. data/rails/vendor/rails/actionpack/test/fixtures/test/update_element_with_capture.rhtml +9 -0
  441. data/rails/vendor/rails/actionpack/test/fixtures/topic.rb +3 -0
  442. data/rails/vendor/rails/actionpack/test/fixtures/topics.yml +22 -0
  443. data/rails/vendor/rails/actionpack/test/template/active_record_helper_test.rb +204 -0
  444. data/rails/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +232 -0
  445. data/rails/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +72 -0
  446. data/rails/vendor/rails/actionpack/test/template/compiled_templates_test.rb +135 -0
  447. data/rails/vendor/rails/actionpack/test/template/date_helper_test.rb +1322 -0
  448. data/rails/vendor/rails/actionpack/test/template/deprecated_helper_test.rb +36 -0
  449. data/rails/vendor/rails/actionpack/test/template/deprecated_instance_variables_test.rb +43 -0
  450. data/rails/vendor/rails/actionpack/test/template/form_helper_test.rb +499 -0
  451. data/rails/vendor/rails/actionpack/test/template/form_options_helper_test.rb +489 -0
  452. data/rails/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +172 -0
  453. data/rails/vendor/rails/actionpack/test/template/java_script_macros_helper_test.rb +109 -0
  454. data/rails/vendor/rails/actionpack/test/template/javascript_helper_test.rb +67 -0
  455. data/rails/vendor/rails/actionpack/test/template/number_helper_test.rb +92 -0
  456. data/rails/vendor/rails/actionpack/test/template/prototype_helper_test.rb +466 -0
  457. data/rails/vendor/rails/actionpack/test/template/scriptaculous_helper_test.rb +90 -0
  458. data/rails/vendor/rails/actionpack/test/template/tag_helper_test.rb +69 -0
  459. data/rails/vendor/rails/actionpack/test/template/text_helper_test.rb +349 -0
  460. data/rails/vendor/rails/actionpack/test/template/url_helper_test.rb +366 -0
  461. data/rails/vendor/rails/actionpack/test/testing_sandbox.rb +11 -0
  462. data/rails/vendor/rails/actionwebservice/CHANGELOG +279 -0
  463. data/rails/vendor/rails/actionwebservice/MIT-LICENSE +21 -0
  464. data/rails/vendor/rails/actionwebservice/README +364 -0
  465. data/rails/vendor/rails/actionwebservice/Rakefile +171 -0
  466. data/rails/vendor/rails/actionwebservice/TODO +32 -0
  467. data/rails/vendor/rails/actionwebservice/examples/googlesearch/README +143 -0
  468. data/rails/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +50 -0
  469. data/rails/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +57 -0
  470. data/rails/vendor/rails/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +108 -0
  471. data/rails/vendor/rails/actionwebservice/examples/googlesearch/delegated/search_controller.rb +7 -0
  472. data/rails/vendor/rails/actionwebservice/examples/googlesearch/direct/google_search_api.rb +50 -0
  473. data/rails/vendor/rails/actionwebservice/examples/googlesearch/direct/search_controller.rb +58 -0
  474. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/README +17 -0
  475. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +60 -0
  476. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +34 -0
  477. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +67 -0
  478. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +48 -0
  479. data/rails/vendor/rails/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +16 -0
  480. data/rails/vendor/rails/actionwebservice/lib/action_web_service.rb +66 -0
  481. data/rails/vendor/rails/actionwebservice/lib/action_web_service/api.rb +249 -0
  482. data/rails/vendor/rails/actionwebservice/lib/action_web_service/base.rb +42 -0
  483. data/rails/vendor/rails/actionwebservice/lib/action_web_service/casting.rb +136 -0
  484. data/rails/vendor/rails/actionwebservice/lib/action_web_service/client.rb +3 -0
  485. data/rails/vendor/rails/actionwebservice/lib/action_web_service/client/base.rb +28 -0
  486. data/rails/vendor/rails/actionwebservice/lib/action_web_service/client/soap_client.rb +113 -0
  487. data/rails/vendor/rails/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +58 -0
  488. data/rails/vendor/rails/actionwebservice/lib/action_web_service/container.rb +3 -0
  489. data/rails/vendor/rails/actionwebservice/lib/action_web_service/container/action_controller_container.rb +93 -0
  490. data/rails/vendor/rails/actionwebservice/lib/action_web_service/container/delegated_container.rb +86 -0
  491. data/rails/vendor/rails/actionwebservice/lib/action_web_service/container/direct_container.rb +69 -0
  492. data/rails/vendor/rails/actionwebservice/lib/action_web_service/dispatcher.rb +2 -0
  493. data/rails/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +203 -0
  494. data/rails/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +376 -0
  495. data/rails/vendor/rails/actionwebservice/lib/action_web_service/invocation.rb +202 -0
  496. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol.rb +4 -0
  497. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol/abstract.rb +112 -0
  498. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol/discovery.rb +37 -0
  499. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +176 -0
  500. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +241 -0
  501. data/rails/vendor/rails/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +110 -0
  502. data/rails/vendor/rails/actionwebservice/lib/action_web_service/scaffolding.rb +283 -0
  503. data/rails/vendor/rails/actionwebservice/lib/action_web_service/struct.rb +68 -0
  504. data/rails/vendor/rails/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +26 -0
  505. data/rails/vendor/rails/actionwebservice/lib/action_web_service/support/signature_types.rb +222 -0
  506. data/rails/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml +65 -0
  507. data/rails/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.rhtml +6 -0
  508. data/rails/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.rhtml +29 -0
  509. data/rails/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.rhtml +30 -0
  510. data/rails/vendor/rails/actionwebservice/lib/action_web_service/test_invoke.rb +110 -0
  511. data/rails/vendor/rails/actionwebservice/lib/action_web_service/version.rb +9 -0
  512. data/rails/vendor/rails/actionwebservice/setup.rb +1379 -0
  513. data/rails/vendor/rails/actionwebservice/test/abstract_client.rb +183 -0
  514. data/rails/vendor/rails/actionwebservice/test/abstract_dispatcher.rb +505 -0
  515. data/rails/vendor/rails/actionwebservice/test/abstract_unit.rb +45 -0
  516. data/rails/vendor/rails/actionwebservice/test/api_test.rb +102 -0
  517. data/rails/vendor/rails/actionwebservice/test/apis/auto_load_api.rb +3 -0
  518. data/rails/vendor/rails/actionwebservice/test/apis/broken_auto_load_api.rb +2 -0
  519. data/rails/vendor/rails/actionwebservice/test/base_test.rb +42 -0
  520. data/rails/vendor/rails/actionwebservice/test/casting_test.rb +86 -0
  521. data/rails/vendor/rails/actionwebservice/test/client_soap_test.rb +152 -0
  522. data/rails/vendor/rails/actionwebservice/test/client_xmlrpc_test.rb +151 -0
  523. data/rails/vendor/rails/actionwebservice/test/container_test.rb +73 -0
  524. data/rails/vendor/rails/actionwebservice/test/dispatcher_action_controller_soap_test.rb +137 -0
  525. data/rails/vendor/rails/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +59 -0
  526. data/rails/vendor/rails/actionwebservice/test/fixtures/db_definitions/mysql.sql +7 -0
  527. data/rails/vendor/rails/actionwebservice/test/fixtures/users.yml +10 -0
  528. data/rails/vendor/rails/actionwebservice/test/gencov +3 -0
  529. data/rails/vendor/rails/actionwebservice/test/invocation_test.rb +185 -0
  530. data/rails/vendor/rails/actionwebservice/test/run +6 -0
  531. data/rails/vendor/rails/actionwebservice/test/scaffolded_controller_test.rb +146 -0
  532. data/rails/vendor/rails/actionwebservice/test/struct_test.rb +52 -0
  533. data/rails/vendor/rails/actionwebservice/test/test_invoke_test.rb +112 -0
  534. data/rails/vendor/rails/activerecord/CHANGELOG +3043 -0
  535. data/rails/vendor/rails/activerecord/README +360 -0
  536. data/rails/vendor/rails/activerecord/RUNNING_UNIT_TESTS +64 -0
  537. data/rails/vendor/rails/activerecord/Rakefile +226 -0
  538. data/rails/vendor/rails/activerecord/examples/associations.png +0 -0
  539. data/rails/vendor/rails/activerecord/examples/associations.rb +87 -0
  540. data/rails/vendor/rails/activerecord/examples/shared_setup.rb +15 -0
  541. data/rails/vendor/rails/activerecord/examples/validation.rb +85 -0
  542. data/rails/vendor/rails/activerecord/install.rb +30 -0
  543. data/rails/vendor/rails/activerecord/lib/active_record.rb +85 -0
  544. data/rails/vendor/rails/activerecord/lib/active_record/acts/list.rb +244 -0
  545. data/rails/vendor/rails/activerecord/lib/active_record/acts/nested_set.rb +211 -0
  546. data/rails/vendor/rails/activerecord/lib/active_record/acts/tree.rb +89 -0
  547. data/rails/vendor/rails/activerecord/lib/active_record/aggregations.rb +191 -0
  548. data/rails/vendor/rails/activerecord/lib/active_record/associations.rb +1627 -0
  549. data/rails/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +190 -0
  550. data/rails/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +158 -0
  551. data/rails/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +56 -0
  552. data/rails/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
  553. data/rails/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +169 -0
  554. data/rails/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +210 -0
  555. data/rails/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +247 -0
  556. data/rails/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +80 -0
  557. data/rails/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +75 -0
  558. data/rails/vendor/rails/activerecord/lib/active_record/base.rb +2164 -0
  559. data/rails/vendor/rails/activerecord/lib/active_record/calculations.rb +270 -0
  560. data/rails/vendor/rails/activerecord/lib/active_record/callbacks.rb +367 -0
  561. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +279 -0
  562. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +130 -0
  563. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +58 -0
  564. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +343 -0
  565. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +303 -0
  566. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +161 -0
  567. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/db2_adapter.rb +228 -0
  568. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/firebird_adapter.rb +728 -0
  569. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/frontbase_adapter.rb +861 -0
  570. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +414 -0
  571. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/openbase_adapter.rb +350 -0
  572. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb +689 -0
  573. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +584 -0
  574. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +407 -0
  575. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlserver_adapter.rb +591 -0
  576. data/rails/vendor/rails/activerecord/lib/active_record/connection_adapters/sybase_adapter.rb +662 -0
  577. data/rails/vendor/rails/activerecord/lib/active_record/deprecated_associations.rb +104 -0
  578. data/rails/vendor/rails/activerecord/lib/active_record/deprecated_finders.rb +44 -0
  579. data/rails/vendor/rails/activerecord/lib/active_record/fixtures.rb +628 -0
  580. data/rails/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +106 -0
  581. data/rails/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +77 -0
  582. data/rails/vendor/rails/activerecord/lib/active_record/migration.rb +394 -0
  583. data/rails/vendor/rails/activerecord/lib/active_record/observer.rb +178 -0
  584. data/rails/vendor/rails/activerecord/lib/active_record/query_cache.rb +64 -0
  585. data/rails/vendor/rails/activerecord/lib/active_record/reflection.rb +222 -0
  586. data/rails/vendor/rails/activerecord/lib/active_record/schema.rb +58 -0
  587. data/rails/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +149 -0
  588. data/rails/vendor/rails/activerecord/lib/active_record/timestamp.rb +51 -0
  589. data/rails/vendor/rails/activerecord/lib/active_record/transactions.rb +136 -0
  590. data/rails/vendor/rails/activerecord/lib/active_record/validations.rb +843 -0
  591. data/rails/vendor/rails/activerecord/lib/active_record/vendor/db2.rb +362 -0
  592. data/rails/vendor/rails/activerecord/lib/active_record/vendor/mysql.rb +1214 -0
  593. data/rails/vendor/rails/activerecord/lib/active_record/vendor/simple.rb +693 -0
  594. data/rails/vendor/rails/activerecord/lib/active_record/version.rb +9 -0
  595. data/rails/vendor/rails/activerecord/lib/active_record/wrappers/yaml_wrapper.rb +15 -0
  596. data/rails/vendor/rails/activerecord/lib/active_record/wrappings.rb +58 -0
  597. data/rails/vendor/rails/activerecord/lib/active_record/xml_serialization.rb +308 -0
  598. data/rails/vendor/rails/activerecord/test/aaa_create_tables_test.rb +59 -0
  599. data/rails/vendor/rails/activerecord/test/abstract_unit.rb +77 -0
  600. data/rails/vendor/rails/activerecord/test/active_schema_test_mysql.rb +31 -0
  601. data/rails/vendor/rails/activerecord/test/adapter_test.rb +87 -0
  602. data/rails/vendor/rails/activerecord/test/adapter_test_sqlserver.rb +81 -0
  603. data/rails/vendor/rails/activerecord/test/aggregations_test.rb +95 -0
  604. data/rails/vendor/rails/activerecord/test/all.sh +8 -0
  605. data/rails/vendor/rails/activerecord/test/ar_schema_test.rb +33 -0
  606. data/rails/vendor/rails/activerecord/test/association_inheritance_reload.rb +14 -0
  607. data/rails/vendor/rails/activerecord/test/associations/callbacks_test.rb +126 -0
  608. data/rails/vendor/rails/activerecord/test/associations/cascaded_eager_loading_test.rb +138 -0
  609. data/rails/vendor/rails/activerecord/test/associations/eager_test.rb +393 -0
  610. data/rails/vendor/rails/activerecord/test/associations/extension_test.rb +42 -0
  611. data/rails/vendor/rails/activerecord/test/associations/join_model_test.rb +497 -0
  612. data/rails/vendor/rails/activerecord/test/associations_test.rb +1809 -0
  613. data/rails/vendor/rails/activerecord/test/attribute_methods_test.rb +49 -0
  614. data/rails/vendor/rails/activerecord/test/base_test.rb +1586 -0
  615. data/rails/vendor/rails/activerecord/test/binary_test.rb +37 -0
  616. data/rails/vendor/rails/activerecord/test/calculations_test.rb +219 -0
  617. data/rails/vendor/rails/activerecord/test/callbacks_test.rb +377 -0
  618. data/rails/vendor/rails/activerecord/test/class_inheritable_attributes_test.rb +32 -0
  619. data/rails/vendor/rails/activerecord/test/column_alias_test.rb +17 -0
  620. data/rails/vendor/rails/activerecord/test/connection_test_firebird.rb +8 -0
  621. data/rails/vendor/rails/activerecord/test/connections/native_db2/connection.rb +25 -0
  622. data/rails/vendor/rails/activerecord/test/connections/native_firebird/connection.rb +26 -0
  623. data/rails/vendor/rails/activerecord/test/connections/native_frontbase/connection.rb +27 -0
  624. data/rails/vendor/rails/activerecord/test/connections/native_mysql/connection.rb +24 -0
  625. data/rails/vendor/rails/activerecord/test/connections/native_openbase/connection.rb +21 -0
  626. data/rails/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +27 -0
  627. data/rails/vendor/rails/activerecord/test/connections/native_postgresql/connection.rb +23 -0
  628. data/rails/vendor/rails/activerecord/test/connections/native_sqlite/connection.rb +34 -0
  629. data/rails/vendor/rails/activerecord/test/connections/native_sqlite3/connection.rb +34 -0
  630. data/rails/vendor/rails/activerecord/test/connections/native_sqlite3/in_memory_connection.rb +18 -0
  631. data/rails/vendor/rails/activerecord/test/connections/native_sqlserver/connection.rb +23 -0
  632. data/rails/vendor/rails/activerecord/test/connections/native_sqlserver_odbc/connection.rb +25 -0
  633. data/rails/vendor/rails/activerecord/test/connections/native_sybase/connection.rb +23 -0
  634. data/rails/vendor/rails/activerecord/test/copy_table_sqlite.rb +64 -0
  635. data/rails/vendor/rails/activerecord/test/datatype_test_postgresql.rb +52 -0
  636. data/rails/vendor/rails/activerecord/test/default_test_firebird.rb +16 -0
  637. data/rails/vendor/rails/activerecord/test/defaults_test.rb +60 -0
  638. data/rails/vendor/rails/activerecord/test/deprecated_associations_test.rb +396 -0
  639. data/rails/vendor/rails/activerecord/test/deprecated_finder_test.rb +151 -0
  640. data/rails/vendor/rails/activerecord/test/empty_date_time_test.rb +25 -0
  641. data/rails/vendor/rails/activerecord/test/finder_test.rb +504 -0
  642. data/rails/vendor/rails/activerecord/test/fixtures/accounts.yml +28 -0
  643. data/rails/vendor/rails/activerecord/test/fixtures/author.rb +99 -0
  644. data/rails/vendor/rails/activerecord/test/fixtures/author_favorites.yml +4 -0
  645. data/rails/vendor/rails/activerecord/test/fixtures/authors.yml +7 -0
  646. data/rails/vendor/rails/activerecord/test/fixtures/auto_id.rb +4 -0
  647. data/rails/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_numeric_first_char +1 -0
  648. data/rails/vendor/rails/activerecord/test/fixtures/bad_fixtures/attr_with_spaces +1 -0
  649. data/rails/vendor/rails/activerecord/test/fixtures/bad_fixtures/blank_line +3 -0
  650. data/rails/vendor/rails/activerecord/test/fixtures/bad_fixtures/duplicate_attributes +3 -0
  651. data/rails/vendor/rails/activerecord/test/fixtures/bad_fixtures/missing_value +1 -0
  652. data/rails/vendor/rails/activerecord/test/fixtures/binary.rb +2 -0
  653. data/rails/vendor/rails/activerecord/test/fixtures/categories.yml +14 -0
  654. data/rails/vendor/rails/activerecord/test/fixtures/categories/special_categories.yml +9 -0
  655. data/rails/vendor/rails/activerecord/test/fixtures/categories/subsubdir/arbitrary_filename.yml +4 -0
  656. data/rails/vendor/rails/activerecord/test/fixtures/categories_ordered.yml +7 -0
  657. data/rails/vendor/rails/activerecord/test/fixtures/categories_posts.yml +23 -0
  658. data/rails/vendor/rails/activerecord/test/fixtures/categorization.rb +5 -0
  659. data/rails/vendor/rails/activerecord/test/fixtures/categorizations.yml +17 -0
  660. data/rails/vendor/rails/activerecord/test/fixtures/category.rb +20 -0
  661. data/rails/vendor/rails/activerecord/test/fixtures/column_name.rb +3 -0
  662. data/rails/vendor/rails/activerecord/test/fixtures/comment.rb +23 -0
  663. data/rails/vendor/rails/activerecord/test/fixtures/comments.yml +59 -0
  664. data/rails/vendor/rails/activerecord/test/fixtures/companies.yml +55 -0
  665. data/rails/vendor/rails/activerecord/test/fixtures/company.rb +107 -0
  666. data/rails/vendor/rails/activerecord/test/fixtures/company_in_module.rb +59 -0
  667. data/rails/vendor/rails/activerecord/test/fixtures/computer.rb +3 -0
  668. data/rails/vendor/rails/activerecord/test/fixtures/computers.yml +4 -0
  669. data/rails/vendor/rails/activerecord/test/fixtures/course.rb +3 -0
  670. data/rails/vendor/rails/activerecord/test/fixtures/courses.yml +7 -0
  671. data/rails/vendor/rails/activerecord/test/fixtures/customer.rb +55 -0
  672. data/rails/vendor/rails/activerecord/test/fixtures/customers.yml +17 -0
  673. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/db2.drop.sql +32 -0
  674. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/db2.sql +231 -0
  675. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/db22.drop.sql +2 -0
  676. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/db22.sql +5 -0
  677. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.drop.sql +63 -0
  678. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/firebird.sql +304 -0
  679. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.drop.sql +2 -0
  680. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/firebird2.sql +6 -0
  681. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.drop.sql +32 -0
  682. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase.sql +268 -0
  683. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.drop.sql +1 -0
  684. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/frontbase2.sql +4 -0
  685. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/mysql.drop.sql +32 -0
  686. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/mysql.sql +234 -0
  687. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/mysql2.drop.sql +2 -0
  688. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/mysql2.sql +5 -0
  689. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.drop.sql +2 -0
  690. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/openbase.sql +302 -0
  691. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.drop.sql +2 -0
  692. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/openbase2.sql +7 -0
  693. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.drop.sql +65 -0
  694. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/oracle.sql +325 -0
  695. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.drop.sql +2 -0
  696. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/oracle2.sql +6 -0
  697. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.drop.sql +37 -0
  698. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql.sql +263 -0
  699. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.drop.sql +2 -0
  700. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/postgresql2.sql +5 -0
  701. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/schema.rb +60 -0
  702. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.drop.sql +32 -0
  703. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite.sql +215 -0
  704. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.drop.sql +2 -0
  705. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlite2.sql +5 -0
  706. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver.drop.sql +34 -0
  707. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver.sql +243 -0
  708. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver2.drop.sql +2 -0
  709. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sqlserver2.sql +5 -0
  710. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.drop.sql +34 -0
  711. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sybase.sql +218 -0
  712. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.drop.sql +4 -0
  713. data/rails/vendor/rails/activerecord/test/fixtures/db_definitions/sybase2.sql +5 -0
  714. data/rails/vendor/rails/activerecord/test/fixtures/default.rb +2 -0
  715. data/rails/vendor/rails/activerecord/test/fixtures/developer.rb +52 -0
  716. data/rails/vendor/rails/activerecord/test/fixtures/developers.yml +21 -0
  717. data/rails/vendor/rails/activerecord/test/fixtures/developers_projects.yml +17 -0
  718. data/rails/vendor/rails/activerecord/test/fixtures/developers_projects/david_action_controller +3 -0
  719. data/rails/vendor/rails/activerecord/test/fixtures/developers_projects/david_active_record +3 -0
  720. data/rails/vendor/rails/activerecord/test/fixtures/developers_projects/jamis_active_record +2 -0
  721. data/rails/vendor/rails/activerecord/test/fixtures/edge.rb +5 -0
  722. data/rails/vendor/rails/activerecord/test/fixtures/edges.yml +6 -0
  723. data/rails/vendor/rails/activerecord/test/fixtures/entrant.rb +3 -0
  724. data/rails/vendor/rails/activerecord/test/fixtures/entrants.yml +14 -0
  725. data/rails/vendor/rails/activerecord/test/fixtures/fk_test_has_fk.yml +3 -0
  726. data/rails/vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml +2 -0
  727. data/rails/vendor/rails/activerecord/test/fixtures/flowers.jpg +0 -0
  728. data/rails/vendor/rails/activerecord/test/fixtures/funny_jokes.yml +10 -0
  729. data/rails/vendor/rails/activerecord/test/fixtures/joke.rb +6 -0
  730. data/rails/vendor/rails/activerecord/test/fixtures/keyboard.rb +3 -0
  731. data/rails/vendor/rails/activerecord/test/fixtures/legacy_thing.rb +3 -0
  732. data/rails/vendor/rails/activerecord/test/fixtures/legacy_things.yml +3 -0
  733. data/rails/vendor/rails/activerecord/test/fixtures/migrations/1_people_have_last_names.rb +9 -0
  734. data/rails/vendor/rails/activerecord/test/fixtures/migrations/2_we_need_reminders.rb +12 -0
  735. data/rails/vendor/rails/activerecord/test/fixtures/migrations/3_innocent_jointable.rb +12 -0
  736. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_decimal/1_give_me_big_numbers.rb +15 -0
  737. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/1_people_have_last_names.rb +9 -0
  738. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/2_we_need_reminders.rb +12 -0
  739. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_foo.rb +7 -0
  740. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_duplicate/3_innocent_jointable.rb +12 -0
  741. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1000_people_have_middle_names.rb +9 -0
  742. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/1_people_have_last_names.rb +9 -0
  743. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/3_we_need_reminders.rb +12 -0
  744. data/rails/vendor/rails/activerecord/test/fixtures/migrations_with_missing_versions/4_innocent_jointable.rb +12 -0
  745. data/rails/vendor/rails/activerecord/test/fixtures/mixed_case_monkey.rb +3 -0
  746. data/rails/vendor/rails/activerecord/test/fixtures/mixed_case_monkeys.yml +6 -0
  747. data/rails/vendor/rails/activerecord/test/fixtures/mixin.rb +63 -0
  748. data/rails/vendor/rails/activerecord/test/fixtures/mixins.yml +127 -0
  749. data/rails/vendor/rails/activerecord/test/fixtures/movie.rb +5 -0
  750. data/rails/vendor/rails/activerecord/test/fixtures/movies.yml +7 -0
  751. data/rails/vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv +1 -0
  752. data/rails/vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml +1 -0
  753. data/rails/vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml +1 -0
  754. data/rails/vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml +1 -0
  755. data/rails/vendor/rails/activerecord/test/fixtures/order.rb +4 -0
  756. data/rails/vendor/rails/activerecord/test/fixtures/people.yml +3 -0
  757. data/rails/vendor/rails/activerecord/test/fixtures/person.rb +4 -0
  758. data/rails/vendor/rails/activerecord/test/fixtures/post.rb +58 -0
  759. data/rails/vendor/rails/activerecord/test/fixtures/posts.yml +48 -0
  760. data/rails/vendor/rails/activerecord/test/fixtures/project.rb +27 -0
  761. data/rails/vendor/rails/activerecord/test/fixtures/projects.yml +7 -0
  762. data/rails/vendor/rails/activerecord/test/fixtures/reader.rb +4 -0
  763. data/rails/vendor/rails/activerecord/test/fixtures/readers.yml +4 -0
  764. data/rails/vendor/rails/activerecord/test/fixtures/reply.rb +37 -0
  765. data/rails/vendor/rails/activerecord/test/fixtures/subject.rb +4 -0
  766. data/rails/vendor/rails/activerecord/test/fixtures/subscriber.rb +6 -0
  767. data/rails/vendor/rails/activerecord/test/fixtures/subscribers/first +2 -0
  768. data/rails/vendor/rails/activerecord/test/fixtures/subscribers/second +2 -0
  769. data/rails/vendor/rails/activerecord/test/fixtures/tag.rb +7 -0
  770. data/rails/vendor/rails/activerecord/test/fixtures/tagging.rb +6 -0
  771. data/rails/vendor/rails/activerecord/test/fixtures/taggings.yml +18 -0
  772. data/rails/vendor/rails/activerecord/test/fixtures/tags.yml +7 -0
  773. data/rails/vendor/rails/activerecord/test/fixtures/task.rb +3 -0
  774. data/rails/vendor/rails/activerecord/test/fixtures/tasks.yml +7 -0
  775. data/rails/vendor/rails/activerecord/test/fixtures/topic.rb +25 -0
  776. data/rails/vendor/rails/activerecord/test/fixtures/topics.yml +22 -0
  777. data/rails/vendor/rails/activerecord/test/fixtures/vertex.rb +9 -0
  778. data/rails/vendor/rails/activerecord/test/fixtures/vertices.yml +4 -0
  779. data/rails/vendor/rails/activerecord/test/fixtures_test.rb +401 -0
  780. data/rails/vendor/rails/activerecord/test/inheritance_test.rb +205 -0
  781. data/rails/vendor/rails/activerecord/test/lifecycle_test.rb +137 -0
  782. data/rails/vendor/rails/activerecord/test/locking_test.rb +190 -0
  783. data/rails/vendor/rails/activerecord/test/method_scoping_test.rb +416 -0
  784. data/rails/vendor/rails/activerecord/test/migration_test.rb +768 -0
  785. data/rails/vendor/rails/activerecord/test/migration_test_firebird.rb +124 -0
  786. data/rails/vendor/rails/activerecord/test/mixin_nested_set_test.rb +196 -0
  787. data/rails/vendor/rails/activerecord/test/mixin_test.rb +550 -0
  788. data/rails/vendor/rails/activerecord/test/modules_test.rb +34 -0
  789. data/rails/vendor/rails/activerecord/test/multiple_db_test.rb +60 -0
  790. data/rails/vendor/rails/activerecord/test/pk_test.rb +104 -0
  791. data/rails/vendor/rails/activerecord/test/readonly_test.rb +107 -0
  792. data/rails/vendor/rails/activerecord/test/reflection_test.rb +159 -0
  793. data/rails/vendor/rails/activerecord/test/schema_authorization_test_postgresql.rb +75 -0
  794. data/rails/vendor/rails/activerecord/test/schema_dumper_test.rb +96 -0
  795. data/rails/vendor/rails/activerecord/test/schema_test_postgresql.rb +64 -0
  796. data/rails/vendor/rails/activerecord/test/synonym_test_oracle.rb +17 -0
  797. data/rails/vendor/rails/activerecord/test/table_name_test_sqlserver.rb +23 -0
  798. data/rails/vendor/rails/activerecord/test/threaded_connections_test.rb +48 -0
  799. data/rails/vendor/rails/activerecord/test/transactions_test.rb +230 -0
  800. data/rails/vendor/rails/activerecord/test/unconnected_test.rb +32 -0
  801. data/rails/vendor/rails/activerecord/test/validations_test.rb +1097 -0
  802. data/rails/vendor/rails/activerecord/test/xml_serialization_test.rb +125 -0
  803. data/rails/vendor/rails/activesupport/CHANGELOG +703 -0
  804. data/rails/vendor/rails/activesupport/README +43 -0
  805. data/rails/vendor/rails/activesupport/lib/active_support.rb +44 -0
  806. data/rails/vendor/rails/activesupport/lib/active_support/binding_of_caller.rb +84 -0
  807. data/rails/vendor/rails/activesupport/lib/active_support/breakpoint.rb +528 -0
  808. data/rails/vendor/rails/activesupport/lib/active_support/caching_tools.rb +62 -0
  809. data/rails/vendor/rails/activesupport/lib/active_support/clean_logger.rb +38 -0
  810. data/rails/vendor/rails/activesupport/lib/active_support/core_ext.rb +1 -0
  811. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/array.rb +7 -0
  812. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +72 -0
  813. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/array/grouping.rb +55 -0
  814. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal.rb +3 -0
  815. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/bigdecimal/formatting.rb +7 -0
  816. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +50 -0
  817. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/cgi.rb +5 -0
  818. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +14 -0
  819. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/class.rb +3 -0
  820. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +48 -0
  821. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb +140 -0
  822. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/class/removal.rb +24 -0
  823. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/date.rb +6 -0
  824. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb +39 -0
  825. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +62 -0
  826. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/exception.rb +33 -0
  827. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash.rb +13 -0
  828. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash/conversions.rb +155 -0
  829. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash/diff.rb +11 -0
  830. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +88 -0
  831. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash/keys.rb +53 -0
  832. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
  833. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/integer.rb +7 -0
  834. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/integer/even_odd.rb +24 -0
  835. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb +21 -0
  836. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel.rb +4 -0
  837. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/agnostics.rb +11 -0
  838. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb +15 -0
  839. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +51 -0
  840. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/kernel/requires.rb +24 -0
  841. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/load_error.rb +38 -0
  842. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/logger.rb +16 -0
  843. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module.rb +7 -0
  844. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +58 -0
  845. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_internal.rb +31 -0
  846. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +48 -0
  847. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/delegation.rb +41 -0
  848. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/inclusion.rb +11 -0
  849. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/introspection.rb +21 -0
  850. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/module/loading.rb +13 -0
  851. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +17 -0
  852. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/numeric.rb +7 -0
  853. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/numeric/bytes.rb +44 -0
  854. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/numeric/time.rb +72 -0
  855. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +2 -0
  856. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/object/extending.rb +47 -0
  857. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/object/misc.rb +34 -0
  858. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/pathname.rb +7 -0
  859. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/pathname/clean_within.rb +14 -0
  860. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/proc.rb +12 -0
  861. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/range.rb +5 -0
  862. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/range/conversions.rb +21 -0
  863. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +15 -0
  864. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/access.rb +58 -0
  865. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb +19 -0
  866. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/inflections.rb +153 -0
  867. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/iterators.rb +17 -0
  868. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +20 -0
  869. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/string/unicode.rb +42 -0
  870. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/symbol.rb +12 -0
  871. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +17 -0
  872. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +191 -0
  873. data/rails/vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb +33 -0
  874. data/rails/vendor/rails/activesupport/lib/active_support/dependencies.rb +539 -0
  875. data/rails/vendor/rails/activesupport/lib/active_support/deprecation.rb +202 -0
  876. data/rails/vendor/rails/activesupport/lib/active_support/inflections.rb +52 -0
  877. data/rails/vendor/rails/activesupport/lib/active_support/inflector.rb +275 -0
  878. data/rails/vendor/rails/activesupport/lib/active_support/json.rb +48 -0
  879. data/rails/vendor/rails/activesupport/lib/active_support/json/encoders.rb +25 -0
  880. data/rails/vendor/rails/activesupport/lib/active_support/json/encoders/core.rb +68 -0
  881. data/rails/vendor/rails/activesupport/lib/active_support/multibyte.rb +7 -0
  882. data/rails/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +129 -0
  883. data/rails/vendor/rails/activesupport/lib/active_support/multibyte/generators/generate_tables.rb +149 -0
  884. data/rails/vendor/rails/activesupport/lib/active_support/multibyte/handlers/passthru_handler.rb +9 -0
  885. data/rails/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler.rb +454 -0
  886. data/rails/vendor/rails/activesupport/lib/active_support/multibyte/handlers/utf8_handler_proc.rb +43 -0
  887. data/rails/vendor/rails/activesupport/lib/active_support/option_merger.rb +25 -0
  888. data/rails/vendor/rails/activesupport/lib/active_support/ordered_options.rb +44 -0
  889. data/rails/vendor/rails/activesupport/lib/active_support/reloadable.rb +60 -0
  890. data/rails/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +180 -0
  891. data/rails/vendor/rails/activesupport/lib/active_support/values/unicode_tables.dat +0 -0
  892. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder.rb +13 -0
  893. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder/blankslate.rb +63 -0
  894. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder/xchar.rb +112 -0
  895. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlbase.rb +145 -0
  896. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlevents.rb +63 -0
  897. data/rails/vendor/rails/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb +327 -0
  898. data/rails/vendor/rails/activesupport/lib/active_support/vendor/xml_simple.rb +1021 -0
  899. data/rails/vendor/rails/activesupport/lib/active_support/version.rb +9 -0
  900. data/rails/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +38 -0
  901. data/rails/vendor/rails/railties/CHANGELOG +1366 -0
  902. data/rails/vendor/rails/railties/MIT-LICENSE +20 -0
  903. data/rails/vendor/rails/railties/README +182 -0
  904. data/rails/vendor/rails/railties/Rakefile +334 -0
  905. data/rails/vendor/rails/railties/bin/about +3 -0
  906. data/rails/vendor/rails/railties/bin/breakpointer +3 -0
  907. data/rails/vendor/rails/railties/bin/console +3 -0
  908. data/rails/vendor/rails/railties/bin/destroy +3 -0
  909. data/rails/vendor/rails/railties/bin/generate +3 -0
  910. data/rails/vendor/rails/railties/bin/performance/benchmarker +3 -0
  911. data/rails/vendor/rails/railties/bin/performance/profiler +3 -0
  912. data/rails/vendor/rails/railties/bin/plugin +3 -0
  913. data/rails/vendor/rails/railties/bin/process/inspector +3 -0
  914. data/rails/vendor/rails/railties/bin/process/reaper +3 -0
  915. data/rails/vendor/rails/railties/bin/process/spawner +3 -0
  916. data/rails/vendor/rails/railties/bin/rails +19 -0
  917. data/rails/vendor/rails/railties/bin/runner +3 -0
  918. data/rails/vendor/rails/railties/bin/server +3 -0
  919. data/rails/vendor/rails/railties/builtin/rails_info/rails/info.rb +123 -0
  920. data/rails/vendor/rails/railties/builtin/rails_info/rails/info_controller.rb +9 -0
  921. data/rails/vendor/rails/railties/builtin/rails_info/rails/info_helper.rb +2 -0
  922. data/rails/vendor/rails/railties/builtin/rails_info/rails_info_controller.rb +2 -0
  923. data/rails/vendor/rails/railties/configs/apache.conf +40 -0
  924. data/rails/vendor/rails/railties/configs/databases/frontbase.yml +28 -0
  925. data/rails/vendor/rails/railties/configs/databases/mysql.yml +48 -0
  926. data/rails/vendor/rails/railties/configs/databases/oracle.yml +39 -0
  927. data/rails/vendor/rails/railties/configs/databases/postgresql.yml +44 -0
  928. data/rails/vendor/rails/railties/configs/databases/sqlite2.yml +16 -0
  929. data/rails/vendor/rails/railties/configs/databases/sqlite3.yml +19 -0
  930. data/rails/vendor/rails/railties/configs/empty.log +0 -0
  931. data/rails/vendor/rails/railties/configs/lighttpd.conf +54 -0
  932. data/rails/vendor/rails/railties/configs/routes.rb +23 -0
  933. data/rails/vendor/rails/railties/dispatches/dispatch.fcgi +24 -0
  934. data/rails/vendor/rails/railties/dispatches/dispatch.rb +10 -0
  935. data/rails/vendor/rails/railties/dispatches/gateway.cgi +97 -0
  936. data/rails/vendor/rails/railties/doc/README_FOR_APP +2 -0
  937. data/rails/vendor/rails/railties/environments/boot.rb +45 -0
  938. data/rails/vendor/rails/railties/environments/development.rb +21 -0
  939. data/rails/vendor/rails/railties/environments/environment.rb +60 -0
  940. data/rails/vendor/rails/railties/environments/production.rb +18 -0
  941. data/rails/vendor/rails/railties/environments/test.rb +19 -0
  942. data/rails/vendor/rails/railties/fresh_rakefile +10 -0
  943. data/rails/vendor/rails/railties/helpers/application.rb +7 -0
  944. data/rails/vendor/rails/railties/helpers/application_helper.rb +3 -0
  945. data/rails/vendor/rails/railties/helpers/test_helper.rb +28 -0
  946. data/rails/vendor/rails/railties/html/404.html +30 -0
  947. data/rails/vendor/rails/railties/html/500.html +30 -0
  948. data/rails/vendor/rails/railties/html/favicon.ico +0 -0
  949. data/rails/vendor/rails/railties/html/images/rails.png +0 -0
  950. data/rails/vendor/rails/railties/html/index.html +277 -0
  951. data/rails/vendor/rails/railties/html/javascripts/application.js +2 -0
  952. data/rails/vendor/rails/railties/html/javascripts/controls.js +833 -0
  953. data/rails/vendor/rails/railties/html/javascripts/dragdrop.js +942 -0
  954. data/rails/vendor/rails/railties/html/javascripts/effects.js +1088 -0
  955. data/rails/vendor/rails/railties/html/javascripts/prototype.js +2515 -0
  956. data/rails/vendor/rails/railties/html/robots.txt +1 -0
  957. data/rails/vendor/rails/railties/lib/binding_of_caller.rb +85 -0
  958. data/rails/vendor/rails/railties/lib/breakpoint.rb +553 -0
  959. data/rails/vendor/rails/railties/lib/breakpoint_client.rb +196 -0
  960. data/rails/vendor/rails/railties/lib/code_statistics.rb +107 -0
  961. data/rails/vendor/rails/railties/lib/commands.rb +17 -0
  962. data/rails/vendor/rails/railties/lib/commands/about.rb +2 -0
  963. data/rails/vendor/rails/railties/lib/commands/breakpointer.rb +1 -0
  964. data/rails/vendor/rails/railties/lib/commands/console.rb +25 -0
  965. data/rails/vendor/rails/railties/lib/commands/destroy.rb +6 -0
  966. data/rails/vendor/rails/railties/lib/commands/generate.rb +6 -0
  967. data/rails/vendor/rails/railties/lib/commands/ncgi/listener +86 -0
  968. data/rails/vendor/rails/railties/lib/commands/ncgi/tracker +69 -0
  969. data/rails/vendor/rails/railties/lib/commands/performance/benchmarker.rb +24 -0
  970. data/rails/vendor/rails/railties/lib/commands/performance/profiler.rb +50 -0
  971. data/rails/vendor/rails/railties/lib/commands/plugin.rb +918 -0
  972. data/rails/vendor/rails/railties/lib/commands/process/inspector.rb +68 -0
  973. data/rails/vendor/rails/railties/lib/commands/process/reaper.rb +149 -0
  974. data/rails/vendor/rails/railties/lib/commands/process/spawner.rb +209 -0
  975. data/rails/vendor/rails/railties/lib/commands/process/spinner.rb +57 -0
  976. data/rails/vendor/rails/railties/lib/commands/runner.rb +48 -0
  977. data/rails/vendor/rails/railties/lib/commands/server.rb +39 -0
  978. data/rails/vendor/rails/railties/lib/commands/servers/base.rb +19 -0
  979. data/rails/vendor/rails/railties/lib/commands/servers/lighttpd.rb +94 -0
  980. data/rails/vendor/rails/railties/lib/commands/servers/mongrel.rb +65 -0
  981. data/rails/vendor/rails/railties/lib/commands/servers/webrick.rb +59 -0
  982. data/rails/vendor/rails/railties/lib/commands/update.rb +4 -0
  983. data/rails/vendor/rails/railties/lib/console_app.rb +27 -0
  984. data/rails/vendor/rails/railties/lib/console_sandbox.rb +6 -0
  985. data/rails/vendor/rails/railties/lib/console_with_helpers.rb +23 -0
  986. data/rails/vendor/rails/railties/lib/dispatcher.rb +173 -0
  987. data/rails/vendor/rails/railties/lib/fcgi_handler.rb +225 -0
  988. data/rails/vendor/rails/railties/lib/initializer.rb +702 -0
  989. data/rails/vendor/rails/railties/lib/rails/version.rb +9 -0
  990. data/rails/vendor/rails/railties/lib/rails_generator.rb +43 -0
  991. data/rails/vendor/rails/railties/lib/rails_generator/base.rb +261 -0
  992. data/rails/vendor/rails/railties/lib/rails_generator/commands.rb +581 -0
  993. data/rails/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +42 -0
  994. data/rails/vendor/rails/railties/lib/rails_generator/generators/applications/app/USAGE +16 -0
  995. data/rails/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +160 -0
  996. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/USAGE +30 -0
  997. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/controller_generator.rb +37 -0
  998. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb +10 -0
  999. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/functional_test.rb +18 -0
  1000. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/helper.rb +2 -0
  1001. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/view.rhtml +2 -0
  1002. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/USAGE +14 -0
  1003. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/integration_test_generator.rb +16 -0
  1004. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/integration_test/templates/integration_test.rb +10 -0
  1005. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/USAGE +18 -0
  1006. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/mailer_generator.rb +34 -0
  1007. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml +3 -0
  1008. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/mailer.rb +13 -0
  1009. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb +37 -0
  1010. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml +3 -0
  1011. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/migration/USAGE +14 -0
  1012. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/migration/migration_generator.rb +7 -0
  1013. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/migration/templates/migration.rb +7 -0
  1014. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/USAGE +26 -0
  1015. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/model_generator.rb +38 -0
  1016. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +11 -0
  1017. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb +13 -0
  1018. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/model.rb +2 -0
  1019. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/unit_test.rb +10 -0
  1020. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/observer/USAGE +15 -0
  1021. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/observer/observer_generator.rb +16 -0
  1022. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/observer.rb +2 -0
  1023. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/observer/templates/unit_test.rb +10 -0
  1024. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/USAGE +35 -0
  1025. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +38 -0
  1026. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/README +4 -0
  1027. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/Rakefile +22 -0
  1028. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/USAGE +8 -0
  1029. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/generator.rb +8 -0
  1030. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/init.rb +1 -0
  1031. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb +1 -0
  1032. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb +1 -0
  1033. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/tasks.rake +4 -0
  1034. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb +1 -0
  1035. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/unit_test.rb +8 -0
  1036. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/resource_generator.rb +76 -0
  1037. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/USAGE +18 -0
  1038. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/controller.rb +2 -0
  1039. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/fixtures.yml +11 -0
  1040. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/functional_test.rb +20 -0
  1041. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/helper.rb +2 -0
  1042. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/migration.rb +13 -0
  1043. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/model.rb +2 -0
  1044. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/resource/templates/unit_test.rb +10 -0
  1045. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE +32 -0
  1046. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +193 -0
  1047. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +58 -0
  1048. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/form.rhtml +3 -0
  1049. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/form_scaffolding.rhtml +1 -0
  1050. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +102 -0
  1051. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/helper.rb +2 -0
  1052. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.rhtml +17 -0
  1053. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/style.css +74 -0
  1054. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_edit.rhtml +9 -0
  1055. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_list.rhtml +27 -0
  1056. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_new.rhtml +8 -0
  1057. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/view_show.rhtml +8 -0
  1058. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/USAGE +29 -0
  1059. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/scaffold_resource_generator.rb +92 -0
  1060. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/controller.rb +79 -0
  1061. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/fixtures.yml +11 -0
  1062. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/functional_test.rb +57 -0
  1063. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/helper.rb +2 -0
  1064. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/layout.rhtml +17 -0
  1065. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/migration.rb +13 -0
  1066. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/model.rb +2 -0
  1067. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/style.css +74 -0
  1068. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/unit_test.rb +10 -0
  1069. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_edit.rhtml +19 -0
  1070. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_index.rhtml +24 -0
  1071. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_new.rhtml +18 -0
  1072. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold_resource/templates/view_show.rhtml +10 -0
  1073. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/USAGE +15 -0
  1074. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/session_migration_generator.rb +18 -0
  1075. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/session_migration/templates/migration.rb +16 -0
  1076. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/web_service/USAGE +28 -0
  1077. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/api_definition.rb +5 -0
  1078. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/controller.rb +8 -0
  1079. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/web_service/templates/functional_test.rb +19 -0
  1080. data/rails/vendor/rails/railties/lib/rails_generator/generators/components/web_service/web_service_generator.rb +29 -0
  1081. data/rails/vendor/rails/railties/lib/rails_generator/lookup.rb +209 -0
  1082. data/rails/vendor/rails/railties/lib/rails_generator/manifest.rb +53 -0
  1083. data/rails/vendor/rails/railties/lib/rails_generator/options.rb +143 -0
  1084. data/rails/vendor/rails/railties/lib/rails_generator/scripts.rb +83 -0
  1085. data/rails/vendor/rails/railties/lib/rails_generator/scripts/destroy.rb +7 -0
  1086. data/rails/vendor/rails/railties/lib/rails_generator/scripts/generate.rb +7 -0
  1087. data/rails/vendor/rails/railties/lib/rails_generator/scripts/update.rb +12 -0
  1088. data/rails/vendor/rails/railties/lib/rails_generator/simple_logger.rb +46 -0
  1089. data/rails/vendor/rails/railties/lib/rails_generator/spec.rb +44 -0
  1090. data/rails/vendor/rails/railties/lib/railties_path.rb +1 -0
  1091. data/rails/vendor/rails/railties/lib/ruby_version_check.rb +17 -0
  1092. data/rails/vendor/rails/railties/lib/rubyprof_ext.rb +35 -0
  1093. data/rails/vendor/rails/railties/lib/tasks/databases.rake +187 -0
  1094. data/rails/vendor/rails/railties/lib/tasks/documentation.rake +82 -0
  1095. data/rails/vendor/rails/railties/lib/tasks/framework.rake +112 -0
  1096. data/rails/vendor/rails/railties/lib/tasks/log.rake +9 -0
  1097. data/rails/vendor/rails/railties/lib/tasks/misc.rake +4 -0
  1098. data/rails/vendor/rails/railties/lib/tasks/pre_namespace_aliases.rake +53 -0
  1099. data/rails/vendor/rails/railties/lib/tasks/rails.rb +8 -0
  1100. data/rails/vendor/rails/railties/lib/tasks/statistics.rake +18 -0
  1101. data/rails/vendor/rails/railties/lib/tasks/testing.rake +120 -0
  1102. data/rails/vendor/rails/railties/lib/tasks/tmp.rake +37 -0
  1103. data/rails/vendor/rails/railties/lib/test_help.rb +19 -0
  1104. data/rails/vendor/rails/railties/lib/webrick_server.rb +166 -0
  1105. metadata +1463 -782
  1106. data/all/packages/ruby-1.8.6.tgz +0 -0
  1107. data/all/packages/sqlite-2.8.15.tar.gz +0 -0
  1108. data/bin/rq-3.1.0 +0 -860
  1109. data/doc/classes/ARGV.html +0 -134
  1110. data/doc/classes/ARGV.src/M000036.html +0 -36
  1111. data/doc/classes/ARGV.src/M000037.html +0 -25
  1112. data/doc/classes/OrderedHash.html +0 -1043
  1113. data/doc/classes/OrderedHash.src/M000003.html +0 -26
  1114. data/doc/classes/OrderedHash.src/M000004.html +0 -31
  1115. data/doc/classes/OrderedHash.src/M000005.html +0 -23
  1116. data/doc/classes/OrderedHash.src/M000006.html +0 -23
  1117. data/doc/classes/OrderedHash.src/M000007.html +0 -24
  1118. data/doc/classes/OrderedHash.src/M000009.html +0 -24
  1119. data/doc/classes/OrderedHash.src/M000010.html +0 -24
  1120. data/doc/classes/OrderedHash.src/M000011.html +0 -24
  1121. data/doc/classes/OrderedHash.src/M000012.html +0 -24
  1122. data/doc/classes/OrderedHash.src/M000013.html +0 -24
  1123. data/doc/classes/OrderedHash.src/M000014.html +0 -24
  1124. data/doc/classes/OrderedHash.src/M000016.html +0 -26
  1125. data/doc/classes/OrderedHash.src/M000017.html +0 -25
  1126. data/doc/classes/OrderedHash.src/M000018.html +0 -23
  1127. data/doc/classes/OrderedHash.src/M000019.html +0 -25
  1128. data/doc/classes/OrderedHash.src/M000020.html +0 -23
  1129. data/doc/classes/OrderedHash.src/M000021.html +0 -24
  1130. data/doc/classes/OrderedHash.src/M000022.html +0 -24
  1131. data/doc/classes/OrderedHash.src/M000023.html +0 -24
  1132. data/doc/classes/OrderedHash.src/M000024.html +0 -29
  1133. data/doc/classes/OrderedHash.src/M000025.html +0 -29
  1134. data/doc/classes/OrderedHash.src/M000026.html +0 -24
  1135. data/doc/classes/OrderedHash.src/M000027.html +0 -25
  1136. data/doc/classes/OrderedHash.src/M000028.html +0 -23
  1137. data/doc/classes/OrderedHash.src/M000029.html +0 -25
  1138. data/doc/classes/OrderedHash.src/M000030.html +0 -24
  1139. data/doc/classes/OrderedHash.src/M000032.html +0 -23
  1140. data/doc/classes/OrderedHash.src/M000033.html +0 -25
  1141. data/doc/classes/OrderedHash.src/M000034.html +0 -36
  1142. data/doc/classes/OrderedHash.src/M000035.html +0 -23
  1143. data/doc/classes/RQ.html +0 -647
  1144. data/doc/classes/RQ/Backer.html +0 -240
  1145. data/doc/classes/RQ/Backer.src/M000121.html +0 -31
  1146. data/doc/classes/RQ/ConfigFile.html +0 -416
  1147. data/doc/classes/RQ/ConfigFile.src/M000100.html +0 -34
  1148. data/doc/classes/RQ/ConfigFile.src/M000101.html +0 -26
  1149. data/doc/classes/RQ/ConfigFile.src/M000102.html +0 -33
  1150. data/doc/classes/RQ/ConfigFile.src/M000103.html +0 -25
  1151. data/doc/classes/RQ/ConfigFile.src/M000104.html +0 -34
  1152. data/doc/classes/RQ/ConfigFile.src/M000105.html +0 -25
  1153. data/doc/classes/RQ/Configurator.html +0 -249
  1154. data/doc/classes/RQ/Configurator.src/M000122.html +0 -40
  1155. data/doc/classes/RQ/Creator.html +0 -264
  1156. data/doc/classes/RQ/Creator.src/M000157.html +0 -32
  1157. data/doc/classes/RQ/Cron.html +0 -461
  1158. data/doc/classes/RQ/Deleter.html +0 -259
  1159. data/doc/classes/RQ/Deleter.src/M000078.html +0 -52
  1160. data/doc/classes/RQ/Executor.html +0 -249
  1161. data/doc/classes/RQ/Executor.src/M000099.html +0 -45
  1162. data/doc/classes/RQ/Feeder.html +0 -1131
  1163. data/doc/classes/RQ/Feeder.src/M000079.html +0 -67
  1164. data/doc/classes/RQ/Feeder.src/M000080.html +0 -47
  1165. data/doc/classes/RQ/Feeder.src/M000081.html +0 -98
  1166. data/doc/classes/RQ/Feeder.src/M000082.html +0 -25
  1167. data/doc/classes/RQ/Feeder.src/M000083.html +0 -30
  1168. data/doc/classes/RQ/Feeder.src/M000084.html +0 -58
  1169. data/doc/classes/RQ/Feeder.src/M000085.html +0 -37
  1170. data/doc/classes/RQ/Feeder.src/M000086.html +0 -40
  1171. data/doc/classes/RQ/Feeder.src/M000087.html +0 -37
  1172. data/doc/classes/RQ/Feeder.src/M000088.html +0 -35
  1173. data/doc/classes/RQ/Feeder.src/M000089.html +0 -47
  1174. data/doc/classes/RQ/Feeder.src/M000090.html +0 -25
  1175. data/doc/classes/RQ/Feeder.src/M000091.html +0 -78
  1176. data/doc/classes/RQ/Feeder.src/M000092.html +0 -34
  1177. data/doc/classes/RQ/Feeder.src/M000093.html +0 -36
  1178. data/doc/classes/RQ/Feeder.src/M000094.html +0 -25
  1179. data/doc/classes/RQ/Feeder.src/M000095.html +0 -27
  1180. data/doc/classes/RQ/IOViewer.html +0 -256
  1181. data/doc/classes/RQ/Job.html +0 -304
  1182. data/doc/classes/RQ/Job.src/M000168.html +0 -26
  1183. data/doc/classes/RQ/Job.src/M000169.html +0 -37
  1184. data/doc/classes/RQ/Job.src/M000170.html +0 -23
  1185. data/doc/classes/RQ/Job/Methods.html +0 -210
  1186. data/doc/classes/RQ/JobQueue.html +0 -1780
  1187. data/doc/classes/RQ/JobQueue.src/M000176.html +0 -31
  1188. data/doc/classes/RQ/JobQueue.src/M000177.html +0 -34
  1189. data/doc/classes/RQ/JobQueue.src/M000178.html +0 -60
  1190. data/doc/classes/RQ/JobQueue.src/M000179.html +0 -63
  1191. data/doc/classes/RQ/JobQueue.src/M000180.html +0 -73
  1192. data/doc/classes/RQ/JobQueue.src/M000181.html +0 -217
  1193. data/doc/classes/RQ/JobQueue.src/M000182.html +0 -50
  1194. data/doc/classes/RQ/JobQueue.src/M000183.html +0 -83
  1195. data/doc/classes/RQ/JobQueue.src/M000184.html +0 -25
  1196. data/doc/classes/RQ/JobQueue.src/M000185.html +0 -83
  1197. data/doc/classes/RQ/JobQueue.src/M000186.html +0 -28
  1198. data/doc/classes/RQ/JobQueue.src/M000187.html +0 -26
  1199. data/doc/classes/RQ/JobQueue.src/M000188.html +0 -26
  1200. data/doc/classes/RQ/JobQueue.src/M000189.html +0 -32
  1201. data/doc/classes/RQ/JobQueue.src/M000190.html +0 -30
  1202. data/doc/classes/RQ/JobQueue.src/M000191.html +0 -37
  1203. data/doc/classes/RQ/JobQueue.src/M000192.html +0 -36
  1204. data/doc/classes/RQ/JobQueue.src/M000193.html +0 -25
  1205. data/doc/classes/RQ/JobQueue.src/M000194.html +0 -25
  1206. data/doc/classes/RQ/JobQueue.src/M000195.html +0 -25
  1207. data/doc/classes/RQ/JobQueue.src/M000196.html +0 -25
  1208. data/doc/classes/RQ/JobQueue.src/M000197.html +0 -25
  1209. data/doc/classes/RQ/JobQueue.src/M000198.html +0 -73
  1210. data/doc/classes/RQ/JobQueue.src/M000199.html +0 -25
  1211. data/doc/classes/RQ/JobQueue.src/M000200.html +0 -38
  1212. data/doc/classes/RQ/JobQueue.src/M000201.html +0 -28
  1213. data/doc/classes/RQ/JobQueue/Error.html +0 -187
  1214. data/doc/classes/RQ/JobRunner.html +0 -386
  1215. data/doc/classes/RQ/JobRunner.src/M000117.html +0 -53
  1216. data/doc/classes/RQ/JobRunner.src/M000118.html +0 -26
  1217. data/doc/classes/RQ/JobRunnerDaemon.html +0 -590
  1218. data/doc/classes/RQ/JobRunnerDaemon.src/M000159.html +0 -94
  1219. data/doc/classes/RQ/JobRunnerDaemon.src/M000160.html +0 -27
  1220. data/doc/classes/RQ/JobRunnerDaemon.src/M000161.html +0 -39
  1221. data/doc/classes/RQ/JobRunnerDaemon.src/M000162.html +0 -27
  1222. data/doc/classes/RQ/JobRunnerDaemon.src/M000163.html +0 -27
  1223. data/doc/classes/RQ/JobRunnerDaemon.src/M000164.html +0 -28
  1224. data/doc/classes/RQ/JobRunnerDaemon.src/M000165.html +0 -28
  1225. data/doc/classes/RQ/JobRunnerDaemon.src/M000166.html +0 -37
  1226. data/doc/classes/RQ/JobRunnerDaemon.src/M000167.html +0 -25
  1227. data/doc/classes/RQ/Lister.html +0 -256
  1228. data/doc/classes/RQ/Lister.src/M000156.html +0 -52
  1229. data/doc/classes/RQ/Locker.html +0 -250
  1230. data/doc/classes/RQ/Locker.src/M000120.html +0 -40
  1231. data/doc/classes/RQ/Logging.html +0 -296
  1232. data/doc/classes/RQ/Logging.src/M000067.html +0 -28
  1233. data/doc/classes/RQ/Logging/LogClassMethods.html +0 -254
  1234. data/doc/classes/RQ/Logging/LogClassMethods.src/M000068.html +0 -32
  1235. data/doc/classes/RQ/Logging/LogClassMethods.src/M000069.html +0 -28
  1236. data/doc/classes/RQ/Logging/LogMethods.html +0 -404
  1237. data/doc/classes/RQ/Logging/LogMethods.src/M000070.html +0 -35
  1238. data/doc/classes/RQ/Logging/LogMethods.src/M000071.html +0 -28
  1239. data/doc/classes/RQ/Logging/LogMethods.src/M000072.html +0 -21
  1240. data/doc/classes/RQ/Logging/LogMethods.src/M000073.html +0 -21
  1241. data/doc/classes/RQ/Logging/LogMethods.src/M000074.html +0 -21
  1242. data/doc/classes/RQ/Logging/LogMethods.src/M000075.html +0 -21
  1243. data/doc/classes/RQ/Logging/LogMethods.src/M000076.html +0 -21
  1244. data/doc/classes/RQ/Logging/LogMethods.src/M000077.html +0 -29
  1245. data/doc/classes/RQ/Logging/LoggerExt.html +0 -194
  1246. data/doc/classes/RQ/Main.html +0 -2110
  1247. data/doc/classes/RQ/MainHelper.html +0 -607
  1248. data/doc/classes/RQ/MainHelper.src/M000171.html +0 -33
  1249. data/doc/classes/RQ/MainHelper.src/M000172.html +0 -32
  1250. data/doc/classes/RQ/MainHelper.src/M000173.html +0 -44
  1251. data/doc/classes/RQ/OrderedAutoHash.html +0 -258
  1252. data/doc/classes/RQ/OrderedAutoHash.src/M000205.html +0 -25
  1253. data/doc/classes/RQ/OrderedAutoHash.src/M000206.html +0 -25
  1254. data/doc/classes/RQ/QDB.html +0 -1653
  1255. data/doc/classes/RQ/QDB.src/M000126.html +0 -25
  1256. data/doc/classes/RQ/QDB.src/M000127.html +0 -37
  1257. data/doc/classes/RQ/QDB.src/M000128.html +0 -27
  1258. data/doc/classes/RQ/QDB.src/M000129.html +0 -27
  1259. data/doc/classes/RQ/QDB.src/M000130.html +0 -27
  1260. data/doc/classes/RQ/QDB.src/M000131.html +0 -31
  1261. data/doc/classes/RQ/QDB.src/M000132.html +0 -32
  1262. data/doc/classes/RQ/QDB.src/M000133.html +0 -30
  1263. data/doc/classes/RQ/QDB.src/M000134.html +0 -91
  1264. data/doc/classes/RQ/QDB.src/M000135.html +0 -26
  1265. data/doc/classes/RQ/QDB.src/M000136.html +0 -46
  1266. data/doc/classes/RQ/QDB.src/M000137.html +0 -26
  1267. data/doc/classes/RQ/QDB.src/M000138.html +0 -51
  1268. data/doc/classes/RQ/QDB.src/M000139.html +0 -61
  1269. data/doc/classes/RQ/QDB.src/M000140.html +0 -57
  1270. data/doc/classes/RQ/QDB.src/M000141.html +0 -25
  1271. data/doc/classes/RQ/QDB.src/M000142.html +0 -25
  1272. data/doc/classes/RQ/QDB.src/M000143.html +0 -37
  1273. data/doc/classes/RQ/QDB.src/M000144.html +0 -107
  1274. data/doc/classes/RQ/QDB.src/M000145.html +0 -40
  1275. data/doc/classes/RQ/QDB.src/M000146.html +0 -34
  1276. data/doc/classes/RQ/QDB.src/M000147.html +0 -33
  1277. data/doc/classes/RQ/QDB.src/M000148.html +0 -32
  1278. data/doc/classes/RQ/QDB.src/M000149.html +0 -98
  1279. data/doc/classes/RQ/QDB.src/M000150.html +0 -26
  1280. data/doc/classes/RQ/QDB.src/M000151.html +0 -31
  1281. data/doc/classes/RQ/QDB.src/M000154.html +0 -26
  1282. data/doc/classes/RQ/QDB/AbortedTransactionError.html +0 -187
  1283. data/doc/classes/RQ/QDB/RollbackTransactionError.html +0 -187
  1284. data/doc/classes/RQ/Querier.html +0 -328
  1285. data/doc/classes/RQ/Querier.src/M000203.html +0 -45
  1286. data/doc/classes/RQ/Querier.src/M000204.html +0 -78
  1287. data/doc/classes/RQ/ReSubmitter.html +0 -307
  1288. data/doc/classes/RQ/ReSubmitter.src/M000098.html +0 -111
  1289. data/doc/classes/RQ/Recoverer.html +0 -247
  1290. data/doc/classes/RQ/Refresher.html +0 -346
  1291. data/doc/classes/RQ/Refresher.src/M000174.html +0 -51
  1292. data/doc/classes/RQ/Refresher.src/M000175.html +0 -44
  1293. data/doc/classes/RQ/Relayer.html +0 -723
  1294. data/doc/classes/RQ/Relayer.src/M000106.html +0 -91
  1295. data/doc/classes/RQ/Relayer.src/M000107.html +0 -47
  1296. data/doc/classes/RQ/Relayer.src/M000108.html +0 -46
  1297. data/doc/classes/RQ/Relayer.src/M000109.html +0 -26
  1298. data/doc/classes/RQ/Relayer.src/M000110.html +0 -46
  1299. data/doc/classes/RQ/Relayer.src/M000111.html +0 -40
  1300. data/doc/classes/RQ/Relayer.src/M000112.html +0 -37
  1301. data/doc/classes/RQ/Relayer.src/M000113.html +0 -40
  1302. data/doc/classes/RQ/Relayer.src/M000114.html +0 -27
  1303. data/doc/classes/RQ/Relayer.src/M000115.html +0 -25
  1304. data/doc/classes/RQ/Relayer.src/M000116.html +0 -38
  1305. data/doc/classes/RQ/Resource.html +0 -187
  1306. data/doc/classes/RQ/ResourceManager.html +0 -276
  1307. data/doc/classes/RQ/Rotater.html +0 -324
  1308. data/doc/classes/RQ/Rotater.src/M000158.html +0 -71
  1309. data/doc/classes/RQ/SleepCycle.html +0 -322
  1310. data/doc/classes/RQ/SleepCycle.src/M000123.html +0 -32
  1311. data/doc/classes/RQ/SleepCycle.src/M000124.html +0 -27
  1312. data/doc/classes/RQ/SleepCycle.src/M000125.html +0 -25
  1313. data/doc/classes/RQ/Snapshotter.html +0 -250
  1314. data/doc/classes/RQ/Snapshotter.src/M000097.html +0 -35
  1315. data/doc/classes/RQ/StatusLister.html +0 -289
  1316. data/doc/classes/RQ/StatusLister.src/M000096.html +0 -26
  1317. data/doc/classes/RQ/Submitter.html +0 -319
  1318. data/doc/classes/RQ/Submitter.src/M000119.html +0 -92
  1319. data/doc/classes/RQ/Toucher.html +0 -384
  1320. data/doc/classes/RQ/Updater.html +0 -304
  1321. data/doc/classes/RQ/Updater.src/M000202.html +0 -97
  1322. data/doc/classes/RQ/Usage.html +0 -346
  1323. data/doc/classes/RQ/Usage.src/M000038.html +0 -29
  1324. data/doc/classes/RQ/Usage.src/M000039.html +0 -72
  1325. data/doc/classes/RQ/Util.html +0 -1043
  1326. data/doc/classes/RQ/Util.src/M000040.html +0 -27
  1327. data/doc/classes/RQ/Util.src/M000041.html +0 -26
  1328. data/doc/classes/RQ/Util.src/M000042.html +0 -25
  1329. data/doc/classes/RQ/Util.src/M000043.html +0 -25
  1330. data/doc/classes/RQ/Util.src/M000044.html +0 -30
  1331. data/doc/classes/RQ/Util.src/M000045.html +0 -25
  1332. data/doc/classes/RQ/Util.src/M000046.html +0 -34
  1333. data/doc/classes/RQ/Util.src/M000047.html +0 -31
  1334. data/doc/classes/RQ/Util.src/M000048.html +0 -41
  1335. data/doc/classes/RQ/Util.src/M000049.html +0 -27
  1336. data/doc/classes/RQ/Util.src/M000050.html +0 -34
  1337. data/doc/classes/RQ/Util.src/M000051.html +0 -28
  1338. data/doc/classes/RQ/Util.src/M000052.html +0 -27
  1339. data/doc/classes/RQ/Util.src/M000053.html +0 -31
  1340. data/doc/classes/RQ/Util.src/M000054.html +0 -31
  1341. data/doc/classes/RQ/Util.src/M000055.html +0 -31
  1342. data/doc/classes/RQ/Util.src/M000056.html +0 -25
  1343. data/doc/classes/RQ/Util.src/M000057.html +0 -25
  1344. data/doc/classes/RQ/Util.src/M000058.html +0 -25
  1345. data/doc/classes/RQ/Util.src/M000059.html +0 -25
  1346. data/doc/classes/RQ/Util.src/M000060.html +0 -25
  1347. data/doc/classes/RQ/Util.src/M000061.html +0 -27
  1348. data/doc/classes/RQ/Util.src/M000062.html +0 -28
  1349. data/doc/classes/RQ/Util.src/M000063.html +0 -39
  1350. data/doc/classes/RQ/Util.src/M000064.html +0 -39
  1351. data/doc/classes/RQ/Util.src/M000065.html +0 -31
  1352. data/doc/classes/RQ/Util.src/M000066.html +0 -29
  1353. data/doc/classes/SQLite.html +0 -120
  1354. data/doc/classes/SQLite/Database.html +0 -546
  1355. data/doc/classes/SQLite/TypeTranslator.html +0 -221
  1356. data/doc/created.rid +0 -1
  1357. data/doc/dot/f_0.dot +0 -14
  1358. data/doc/dot/f_0.jpg +0 -0
  1359. data/doc/dot/f_1.dot +0 -14
  1360. data/doc/dot/f_1.jpg +0 -0
  1361. data/doc/dot/f_10.dot +0 -802
  1362. data/doc/dot/f_10.jpg +0 -0
  1363. data/doc/dot/f_11.dot +0 -14
  1364. data/doc/dot/f_11.jpg +0 -0
  1365. data/doc/dot/f_12.dot +0 -802
  1366. data/doc/dot/f_12.jpg +0 -0
  1367. data/doc/dot/f_13.dot +0 -802
  1368. data/doc/dot/f_13.jpg +0 -0
  1369. data/doc/dot/f_14.dot +0 -802
  1370. data/doc/dot/f_14.jpg +0 -0
  1371. data/doc/dot/f_15.dot +0 -802
  1372. data/doc/dot/f_15.jpg +0 -0
  1373. data/doc/dot/f_16.dot +0 -802
  1374. data/doc/dot/f_16.jpg +0 -0
  1375. data/doc/dot/f_17.dot +0 -802
  1376. data/doc/dot/f_17.jpg +0 -0
  1377. data/doc/dot/f_18.dot +0 -14
  1378. data/doc/dot/f_18.jpg +0 -0
  1379. data/doc/dot/f_19.dot +0 -802
  1380. data/doc/dot/f_19.jpg +0 -0
  1381. data/doc/dot/f_2.dot +0 -14
  1382. data/doc/dot/f_2.jpg +0 -0
  1383. data/doc/dot/f_20.dot +0 -802
  1384. data/doc/dot/f_20.jpg +0 -0
  1385. data/doc/dot/f_21.dot +0 -802
  1386. data/doc/dot/f_21.jpg +0 -0
  1387. data/doc/dot/f_22.dot +0 -802
  1388. data/doc/dot/f_22.jpg +0 -0
  1389. data/doc/dot/f_23.dot +0 -802
  1390. data/doc/dot/f_23.jpg +0 -0
  1391. data/doc/dot/f_24.dot +0 -802
  1392. data/doc/dot/f_24.jpg +0 -0
  1393. data/doc/dot/f_25.dot +0 -817
  1394. data/doc/dot/f_25.jpg +0 -0
  1395. data/doc/dot/f_26.dot +0 -29
  1396. data/doc/dot/f_26.jpg +0 -0
  1397. data/doc/dot/f_27.dot +0 -802
  1398. data/doc/dot/f_27.jpg +0 -0
  1399. data/doc/dot/f_28.dot +0 -802
  1400. data/doc/dot/f_28.jpg +0 -0
  1401. data/doc/dot/f_29.dot +0 -802
  1402. data/doc/dot/f_29.jpg +0 -0
  1403. data/doc/dot/f_3.dot +0 -14
  1404. data/doc/dot/f_3.jpg +0 -0
  1405. data/doc/dot/f_30.dot +0 -802
  1406. data/doc/dot/f_30.jpg +0 -0
  1407. data/doc/dot/f_31.dot +0 -802
  1408. data/doc/dot/f_31.jpg +0 -0
  1409. data/doc/dot/f_32.dot +0 -802
  1410. data/doc/dot/f_32.jpg +0 -0
  1411. data/doc/dot/f_33.dot +0 -802
  1412. data/doc/dot/f_33.jpg +0 -0
  1413. data/doc/dot/f_34.dot +0 -802
  1414. data/doc/dot/f_34.jpg +0 -0
  1415. data/doc/dot/f_35.dot +0 -802
  1416. data/doc/dot/f_35.jpg +0 -0
  1417. data/doc/dot/f_36.dot +0 -802
  1418. data/doc/dot/f_36.jpg +0 -0
  1419. data/doc/dot/f_37.dot +0 -802
  1420. data/doc/dot/f_37.jpg +0 -0
  1421. data/doc/dot/f_38.dot +0 -54
  1422. data/doc/dot/f_38.jpg +0 -0
  1423. data/doc/dot/f_39.dot +0 -802
  1424. data/doc/dot/f_39.jpg +0 -0
  1425. data/doc/dot/f_4.dot +0 -802
  1426. data/doc/dot/f_4.jpg +0 -0
  1427. data/doc/dot/f_40.dot +0 -802
  1428. data/doc/dot/f_40.jpg +0 -0
  1429. data/doc/dot/f_41.dot +0 -802
  1430. data/doc/dot/f_41.jpg +0 -0
  1431. data/doc/dot/f_42.dot +0 -802
  1432. data/doc/dot/f_42.jpg +0 -0
  1433. data/doc/dot/f_43.dot +0 -802
  1434. data/doc/dot/f_43.jpg +0 -0
  1435. data/doc/dot/f_44.dot +0 -802
  1436. data/doc/dot/f_44.jpg +0 -0
  1437. data/doc/dot/f_5.dot +0 -802
  1438. data/doc/dot/f_5.jpg +0 -0
  1439. data/doc/dot/f_6.dot +0 -802
  1440. data/doc/dot/f_6.jpg +0 -0
  1441. data/doc/dot/f_7.dot +0 -802
  1442. data/doc/dot/f_7.jpg +0 -0
  1443. data/doc/dot/f_8.dot +0 -802
  1444. data/doc/dot/f_8.jpg +0 -0
  1445. data/doc/dot/f_9.dot +0 -802
  1446. data/doc/dot/f_9.jpg +0 -0
  1447. data/doc/dot/m_10_0.dot +0 -802
  1448. data/doc/dot/m_10_0.jpg +0 -0
  1449. data/doc/dot/m_11_0.dot +0 -734
  1450. data/doc/dot/m_11_0.jpg +0 -0
  1451. data/doc/dot/m_12_0.dot +0 -802
  1452. data/doc/dot/m_12_0.jpg +0 -0
  1453. data/doc/dot/m_13_0.dot +0 -802
  1454. data/doc/dot/m_13_0.jpg +0 -0
  1455. data/doc/dot/m_14_0.dot +0 -802
  1456. data/doc/dot/m_14_0.jpg +0 -0
  1457. data/doc/dot/m_15_0.dot +0 -802
  1458. data/doc/dot/m_15_0.jpg +0 -0
  1459. data/doc/dot/m_16_0.dot +0 -802
  1460. data/doc/dot/m_16_0.jpg +0 -0
  1461. data/doc/dot/m_17_0.dot +0 -802
  1462. data/doc/dot/m_17_0.jpg +0 -0
  1463. data/doc/dot/m_18_0.dot +0 -734
  1464. data/doc/dot/m_18_0.jpg +0 -0
  1465. data/doc/dot/m_19_0.dot +0 -802
  1466. data/doc/dot/m_19_0.jpg +0 -0
  1467. data/doc/dot/m_20_0.dot +0 -802
  1468. data/doc/dot/m_20_0.jpg +0 -0
  1469. data/doc/dot/m_21_0.dot +0 -802
  1470. data/doc/dot/m_21_0.jpg +0 -0
  1471. data/doc/dot/m_22_0.dot +0 -802
  1472. data/doc/dot/m_22_0.jpg +0 -0
  1473. data/doc/dot/m_23_0.dot +0 -802
  1474. data/doc/dot/m_23_0.jpg +0 -0
  1475. data/doc/dot/m_24_0.dot +0 -802
  1476. data/doc/dot/m_24_0.jpg +0 -0
  1477. data/doc/dot/m_25_0.dot +0 -802
  1478. data/doc/dot/m_25_0.jpg +0 -0
  1479. data/doc/dot/m_26_0.dot +0 -734
  1480. data/doc/dot/m_26_0.jpg +0 -0
  1481. data/doc/dot/m_27_0.dot +0 -802
  1482. data/doc/dot/m_27_0.jpg +0 -0
  1483. data/doc/dot/m_28_0.dot +0 -802
  1484. data/doc/dot/m_28_0.jpg +0 -0
  1485. data/doc/dot/m_29_0.dot +0 -802
  1486. data/doc/dot/m_29_0.jpg +0 -0
  1487. data/doc/dot/m_30_0.dot +0 -802
  1488. data/doc/dot/m_30_0.jpg +0 -0
  1489. data/doc/dot/m_31_0.dot +0 -802
  1490. data/doc/dot/m_31_0.jpg +0 -0
  1491. data/doc/dot/m_32_0.dot +0 -802
  1492. data/doc/dot/m_32_0.jpg +0 -0
  1493. data/doc/dot/m_33_0.dot +0 -802
  1494. data/doc/dot/m_33_0.jpg +0 -0
  1495. data/doc/dot/m_34_0.dot +0 -802
  1496. data/doc/dot/m_34_0.jpg +0 -0
  1497. data/doc/dot/m_35_0.dot +0 -802
  1498. data/doc/dot/m_35_0.jpg +0 -0
  1499. data/doc/dot/m_36_0.dot +0 -802
  1500. data/doc/dot/m_36_0.jpg +0 -0
  1501. data/doc/dot/m_37_0.dot +0 -802
  1502. data/doc/dot/m_37_0.jpg +0 -0
  1503. data/doc/dot/m_38_0.dot +0 -54
  1504. data/doc/dot/m_38_0.jpg +0 -0
  1505. data/doc/dot/m_39_0.dot +0 -802
  1506. data/doc/dot/m_39_0.jpg +0 -0
  1507. data/doc/dot/m_40_0.dot +0 -802
  1508. data/doc/dot/m_40_0.jpg +0 -0
  1509. data/doc/dot/m_41_0.dot +0 -802
  1510. data/doc/dot/m_41_0.jpg +0 -0
  1511. data/doc/dot/m_42_0.dot +0 -802
  1512. data/doc/dot/m_42_0.jpg +0 -0
  1513. data/doc/dot/m_43_0.dot +0 -802
  1514. data/doc/dot/m_43_0.jpg +0 -0
  1515. data/doc/dot/m_44_0.dot +0 -802
  1516. data/doc/dot/m_44_0.jpg +0 -0
  1517. data/doc/dot/m_4_0.dot +0 -802
  1518. data/doc/dot/m_4_0.jpg +0 -0
  1519. data/doc/dot/m_5_0.dot +0 -802
  1520. data/doc/dot/m_5_0.jpg +0 -0
  1521. data/doc/dot/m_6_0.dot +0 -802
  1522. data/doc/dot/m_6_0.jpg +0 -0
  1523. data/doc/dot/m_7_0.dot +0 -802
  1524. data/doc/dot/m_7_0.jpg +0 -0
  1525. data/doc/dot/m_8_0.dot +0 -802
  1526. data/doc/dot/m_8_0.jpg +0 -0
  1527. data/doc/dot/m_9_0.dot +0 -802
  1528. data/doc/dot/m_9_0.jpg +0 -0
  1529. data/doc/files/DEPENDS.html +0 -107
  1530. data/doc/files/HISTORY.html +0 -316
  1531. data/doc/files/INSTALL.html +0 -126
  1532. data/doc/files/README.html +0 -1223
  1533. data/doc/files/TODO.html +0 -148
  1534. data/doc/files/TUTORIAL.html +0 -392
  1535. data/doc/files/VERSION.html +0 -107
  1536. data/doc/files/bin/rq_rb.html +0 -231
  1537. data/doc/files/install_rb.html +0 -188
  1538. data/doc/files/install_rb.src/M000001.html +0 -53
  1539. data/doc/files/install_rb.src/M000002.html +0 -43
  1540. data/doc/files/lib/rq-1_0_0/backer_rb.html +0 -174
  1541. data/doc/files/lib/rq-1_0_0/configfile_rb.html +0 -174
  1542. data/doc/files/lib/rq-1_0_0/configurator_rb.html +0 -174
  1543. data/doc/files/lib/rq-1_0_0/creator_rb.html +0 -174
  1544. data/doc/files/lib/rq-1_0_0/defaultconfig_txt.html +0 -110
  1545. data/doc/files/lib/rq-1_0_0/deleter_rb.html +0 -174
  1546. data/doc/files/lib/rq-1_0_0/executor_rb.html +0 -174
  1547. data/doc/files/lib/rq-1_0_0/feeder_rb.html +0 -178
  1548. data/doc/files/lib/rq-1_0_0/job_rb.html +0 -176
  1549. data/doc/files/lib/rq-1_0_0/jobqueue_rb.html +0 -177
  1550. data/doc/files/lib/rq-1_0_0/jobrunner_rb.html +0 -175
  1551. data/doc/files/lib/rq-1_0_0/jobrunnerdaemon_rb.html +0 -179
  1552. data/doc/files/lib/rq-1_0_0/lister_rb.html +0 -174
  1553. data/doc/files/lib/rq-1_0_0/locker_rb.html +0 -175
  1554. data/doc/files/lib/rq-1_0_0/logging_rb.html +0 -178
  1555. data/doc/files/lib/rq-1_0_0/mainhelper_rb.html +0 -175
  1556. data/doc/files/lib/rq-1_0_0/qdb_rb.html +0 -177
  1557. data/doc/files/lib/rq-1_0_0/querier_rb.html +0 -174
  1558. data/doc/files/lib/rq-1_0_0/refresher_rb.html +0 -167
  1559. data/doc/files/lib/rq-1_0_0/relayer_rb.html +0 -178
  1560. data/doc/files/lib/rq-1_0_0/sleepcycle_rb.html +0 -167
  1561. data/doc/files/lib/rq-1_0_0/snapshotter_rb.html +0 -174
  1562. data/doc/files/lib/rq-1_0_0/statuslister_rb.html +0 -174
  1563. data/doc/files/lib/rq-1_0_0/submitter_rb.html +0 -174
  1564. data/doc/files/lib/rq-1_0_0/updater_rb.html +0 -174
  1565. data/doc/files/lib/rq-1_0_0/usage_rb.html +0 -174
  1566. data/doc/files/lib/rq-1_0_0/util_rb.html +0 -176
  1567. data/doc/files/lib/rq-2_0_0/backer_rb.html +0 -180
  1568. data/doc/files/lib/rq-2_0_0/configfile_rb.html +0 -180
  1569. data/doc/files/lib/rq-2_0_0/configurator_rb.html +0 -180
  1570. data/doc/files/lib/rq-2_0_0/creator_rb.html +0 -180
  1571. data/doc/files/lib/rq-2_0_0/defaultconfig_txt.html +0 -110
  1572. data/doc/files/lib/rq-2_0_0/deleter_rb.html +0 -180
  1573. data/doc/files/lib/rq-2_0_0/executor_rb.html +0 -180
  1574. data/doc/files/lib/rq-2_0_0/feeder_rb.html +0 -184
  1575. data/doc/files/lib/rq-2_0_0/job_rb.html +0 -182
  1576. data/doc/files/lib/rq-2_0_0/jobqueue_rb.html +0 -185
  1577. data/doc/files/lib/rq-2_0_0/jobrunner_rb.html +0 -181
  1578. data/doc/files/lib/rq-2_0_0/jobrunnerdaemon_rb.html +0 -185
  1579. data/doc/files/lib/rq-2_0_0/lister_rb.html +0 -180
  1580. data/doc/files/lib/rq-2_0_0/locker_rb.html +0 -181
  1581. data/doc/files/lib/rq-2_0_0/logging_rb.html +0 -184
  1582. data/doc/files/lib/rq-2_0_0/mainhelper_rb.html +0 -181
  1583. data/doc/files/lib/rq-2_0_0/orderedautohash_rb.html +0 -182
  1584. data/doc/files/lib/rq-2_0_0/orderedhash_rb.html +0 -138
  1585. data/doc/files/lib/rq-2_0_0/qdb_rb.html +0 -184
  1586. data/doc/files/lib/rq-2_0_0/querier_rb.html +0 -180
  1587. data/doc/files/lib/rq-2_0_0/refresher_rb.html +0 -173
  1588. data/doc/files/lib/rq-2_0_0/relayer_rb.html +0 -184
  1589. data/doc/files/lib/rq-2_0_0/rotater_rb.html +0 -180
  1590. data/doc/files/lib/rq-2_0_0/sleepcycle_rb.html +0 -173
  1591. data/doc/files/lib/rq-2_0_0/snapshotter_rb.html +0 -180
  1592. data/doc/files/lib/rq-2_0_0/statuslister_rb.html +0 -180
  1593. data/doc/files/lib/rq-2_0_0/submitter_rb.html +0 -181
  1594. data/doc/files/lib/rq-2_0_0/updater_rb.html +0 -180
  1595. data/doc/files/lib/rq-2_0_0/usage_rb.html +0 -180
  1596. data/doc/files/lib/rq-2_0_0/util_rb.html +0 -182
  1597. data/doc/files/lib/rq-2_3_1/backer_rb.html +0 -182
  1598. data/doc/files/lib/rq-2_3_1/configfile_rb.html +0 -182
  1599. data/doc/files/lib/rq-2_3_1/configurator_rb.html +0 -182
  1600. data/doc/files/lib/rq-2_3_1/creator_rb.html +0 -182
  1601. data/doc/files/lib/rq-2_3_1/defaultconfig_txt.html +0 -110
  1602. data/doc/files/lib/rq-2_3_1/deleter_rb.html +0 -182
  1603. data/doc/files/lib/rq-2_3_1/executor_rb.html +0 -182
  1604. data/doc/files/lib/rq-2_3_1/feeder_rb.html +0 -187
  1605. data/doc/files/lib/rq-2_3_1/job_rb.html +0 -185
  1606. data/doc/files/lib/rq-2_3_1/jobqueue_rb.html +0 -187
  1607. data/doc/files/lib/rq-2_3_1/jobrunner_rb.html +0 -184
  1608. data/doc/files/lib/rq-2_3_1/jobrunnerdaemon_rb.html +0 -187
  1609. data/doc/files/lib/rq-2_3_1/lister_rb.html +0 -182
  1610. data/doc/files/lib/rq-2_3_1/locker_rb.html +0 -183
  1611. data/doc/files/lib/rq-2_3_1/logging_rb.html +0 -186
  1612. data/doc/files/lib/rq-2_3_1/mainhelper_rb.html +0 -183
  1613. data/doc/files/lib/rq-2_3_1/orderedautohash_rb.html +0 -184
  1614. data/doc/files/lib/rq-2_3_1/orderedhash_rb.html +0 -138
  1615. data/doc/files/lib/rq-2_3_1/qdb_rb.html +0 -188
  1616. data/doc/files/lib/rq-2_3_1/querier_rb.html +0 -182
  1617. data/doc/files/lib/rq-2_3_1/refresher_rb.html +0 -175
  1618. data/doc/files/lib/rq-2_3_1/relayer_rb.html +0 -186
  1619. data/doc/files/lib/rq-2_3_1/resubmitter_rb.html +0 -183
  1620. data/doc/files/lib/rq-2_3_1/rotater_rb.html +0 -182
  1621. data/doc/files/lib/rq-2_3_1/sleepcycle_rb.html +0 -175
  1622. data/doc/files/lib/rq-2_3_1/snapshotter_rb.html +0 -182
  1623. data/doc/files/lib/rq-2_3_1/statuslister_rb.html +0 -182
  1624. data/doc/files/lib/rq-2_3_1/submitter_rb.html +0 -183
  1625. data/doc/files/lib/rq-2_3_1/updater_rb.html +0 -182
  1626. data/doc/files/lib/rq-2_3_1/usage_rb.html +0 -182
  1627. data/doc/files/lib/rq-2_3_1/util_rb.html +0 -184
  1628. data/doc/files/lib/rq-2_3_1_rb.html +0 -153
  1629. data/doc/files/lib/rq-2_3_2/backer_rb.html +0 -186
  1630. data/doc/files/lib/rq-2_3_2/configfile_rb.html +0 -186
  1631. data/doc/files/lib/rq-2_3_2/configurator_rb.html +0 -186
  1632. data/doc/files/lib/rq-2_3_2/creator_rb.html +0 -186
  1633. data/doc/files/lib/rq-2_3_2/defaultconfig_txt.html +0 -110
  1634. data/doc/files/lib/rq-2_3_2/deleter_rb.html +0 -186
  1635. data/doc/files/lib/rq-2_3_2/executor_rb.html +0 -186
  1636. data/doc/files/lib/rq-2_3_2/feeder_rb.html +0 -191
  1637. data/doc/files/lib/rq-2_3_2/ioviewer_rb.html +0 -186
  1638. data/doc/files/lib/rq-2_3_2/job_rb.html +0 -189
  1639. data/doc/files/lib/rq-2_3_2/jobqueue_rb.html +0 -192
  1640. data/doc/files/lib/rq-2_3_2/jobrunner_rb.html +0 -188
  1641. data/doc/files/lib/rq-2_3_2/jobrunnerdaemon_rb.html +0 -191
  1642. data/doc/files/lib/rq-2_3_2/lister_rb.html +0 -186
  1643. data/doc/files/lib/rq-2_3_2/locker_rb.html +0 -187
  1644. data/doc/files/lib/rq-2_3_2/logging_rb.html +0 -190
  1645. data/doc/files/lib/rq-2_3_2/mainhelper_rb.html +0 -188
  1646. data/doc/files/lib/rq-2_3_2/orderedautohash_rb.html +0 -188
  1647. data/doc/files/lib/rq-2_3_2/orderedhash_rb.html +0 -138
  1648. data/doc/files/lib/rq-2_3_2/qdb_rb.html +0 -193
  1649. data/doc/files/lib/rq-2_3_2/querier_rb.html +0 -186
  1650. data/doc/files/lib/rq-2_3_2/recoverer_rb.html +0 -186
  1651. data/doc/files/lib/rq-2_3_2/refresher_rb.html +0 -179
  1652. data/doc/files/lib/rq-2_3_2/relayer_rb.html +0 -190
  1653. data/doc/files/lib/rq-2_3_2/resubmitter_rb.html +0 -187
  1654. data/doc/files/lib/rq-2_3_2/rotater_rb.html +0 -186
  1655. data/doc/files/lib/rq-2_3_2/sleepcycle_rb.html +0 -179
  1656. data/doc/files/lib/rq-2_3_2/snapshotter_rb.html +0 -186
  1657. data/doc/files/lib/rq-2_3_2/statuslister_rb.html +0 -186
  1658. data/doc/files/lib/rq-2_3_2/submitter_rb.html +0 -187
  1659. data/doc/files/lib/rq-2_3_2/updater_rb.html +0 -186
  1660. data/doc/files/lib/rq-2_3_2/usage_rb.html +0 -186
  1661. data/doc/files/lib/rq-2_3_2/util_rb.html +0 -188
  1662. data/doc/files/lib/rq-2_3_3/backer_rb.html +0 -186
  1663. data/doc/files/lib/rq-2_3_3/configfile_rb.html +0 -186
  1664. data/doc/files/lib/rq-2_3_3/configurator_rb.html +0 -186
  1665. data/doc/files/lib/rq-2_3_3/creator_rb.html +0 -186
  1666. data/doc/files/lib/rq-2_3_3/defaultconfig_txt.html +0 -110
  1667. data/doc/files/lib/rq-2_3_3/deleter_rb.html +0 -186
  1668. data/doc/files/lib/rq-2_3_3/executor_rb.html +0 -186
  1669. data/doc/files/lib/rq-2_3_3/feeder_rb.html +0 -191
  1670. data/doc/files/lib/rq-2_3_3/ioviewer_rb.html +0 -186
  1671. data/doc/files/lib/rq-2_3_3/job_rb.html +0 -189
  1672. data/doc/files/lib/rq-2_3_3/jobqueue_rb.html +0 -192
  1673. data/doc/files/lib/rq-2_3_3/jobrunner_rb.html +0 -188
  1674. data/doc/files/lib/rq-2_3_3/jobrunnerdaemon_rb.html +0 -191
  1675. data/doc/files/lib/rq-2_3_3/lister_rb.html +0 -186
  1676. data/doc/files/lib/rq-2_3_3/locker_rb.html +0 -187
  1677. data/doc/files/lib/rq-2_3_3/logging_rb.html +0 -190
  1678. data/doc/files/lib/rq-2_3_3/mainhelper_rb.html +0 -188
  1679. data/doc/files/lib/rq-2_3_3/orderedautohash_rb.html +0 -188
  1680. data/doc/files/lib/rq-2_3_3/orderedhash_rb.html +0 -138
  1681. data/doc/files/lib/rq-2_3_3/qdb_rb.html +0 -193
  1682. data/doc/files/lib/rq-2_3_3/querier_rb.html +0 -186
  1683. data/doc/files/lib/rq-2_3_3/recoverer_rb.html +0 -186
  1684. data/doc/files/lib/rq-2_3_3/refresher_rb.html +0 -179
  1685. data/doc/files/lib/rq-2_3_3/relayer_rb.html +0 -190
  1686. data/doc/files/lib/rq-2_3_3/resubmitter_rb.html +0 -187
  1687. data/doc/files/lib/rq-2_3_3/rotater_rb.html +0 -187
  1688. data/doc/files/lib/rq-2_3_3/sleepcycle_rb.html +0 -179
  1689. data/doc/files/lib/rq-2_3_3/snapshotter_rb.html +0 -186
  1690. data/doc/files/lib/rq-2_3_3/statuslister_rb.html +0 -186
  1691. data/doc/files/lib/rq-2_3_3/submitter_rb.html +0 -187
  1692. data/doc/files/lib/rq-2_3_3/updater_rb.html +0 -186
  1693. data/doc/files/lib/rq-2_3_3/usage_rb.html +0 -186
  1694. data/doc/files/lib/rq-2_3_3/util_rb.html +0 -188
  1695. data/doc/files/lib/rq-3_0_0/backer_rb.html +0 -194
  1696. data/doc/files/lib/rq-3_0_0/configfile_rb.html +0 -194
  1697. data/doc/files/lib/rq-3_0_0/configurator_rb.html +0 -194
  1698. data/doc/files/lib/rq-3_0_0/creator_rb.html +0 -194
  1699. data/doc/files/lib/rq-3_0_0/cron_rb.html +0 -194
  1700. data/doc/files/lib/rq-3_0_0/defaultconfig_txt.html +0 -110
  1701. data/doc/files/lib/rq-3_0_0/deleter_rb.html +0 -194
  1702. data/doc/files/lib/rq-3_0_0/executor_rb.html +0 -194
  1703. data/doc/files/lib/rq-3_0_0/feeder_rb.html +0 -199
  1704. data/doc/files/lib/rq-3_0_0/ioviewer_rb.html +0 -194
  1705. data/doc/files/lib/rq-3_0_0/job_rb.html +0 -197
  1706. data/doc/files/lib/rq-3_0_0/jobqueue_rb.html +0 -200
  1707. data/doc/files/lib/rq-3_0_0/jobrunner_rb.html +0 -196
  1708. data/doc/files/lib/rq-3_0_0/jobrunnerdaemon_rb.html +0 -199
  1709. data/doc/files/lib/rq-3_0_0/lister_rb.html +0 -194
  1710. data/doc/files/lib/rq-3_0_0/locker_rb.html +0 -195
  1711. data/doc/files/lib/rq-3_0_0/logging_rb.html +0 -198
  1712. data/doc/files/lib/rq-3_0_0/mainhelper_rb.html +0 -196
  1713. data/doc/files/lib/rq-3_0_0/orderedautohash_rb.html +0 -196
  1714. data/doc/files/lib/rq-3_0_0/orderedhash_rb.html +0 -138
  1715. data/doc/files/lib/rq-3_0_0/qdb_rb.html +0 -201
  1716. data/doc/files/lib/rq-3_0_0/querier_rb.html +0 -194
  1717. data/doc/files/lib/rq-3_0_0/recoverer_rb.html +0 -194
  1718. data/doc/files/lib/rq-3_0_0/refresher_rb.html +0 -187
  1719. data/doc/files/lib/rq-3_0_0/relayer_rb.html +0 -198
  1720. data/doc/files/lib/rq-3_0_0/resource_rb.html +0 -194
  1721. data/doc/files/lib/rq-3_0_0/resourcemanager_rb.html +0 -187
  1722. data/doc/files/lib/rq-3_0_0/resubmitter_rb.html +0 -195
  1723. data/doc/files/lib/rq-3_0_0/rotater_rb.html +0 -195
  1724. data/doc/files/lib/rq-3_0_0/sleepcycle_rb.html +0 -187
  1725. data/doc/files/lib/rq-3_0_0/snapshotter_rb.html +0 -194
  1726. data/doc/files/lib/rq-3_0_0/sqlite_rb.html +0 -160
  1727. data/doc/files/lib/rq-3_0_0/statuslister_rb.html +0 -194
  1728. data/doc/files/lib/rq-3_0_0/submitter_rb.html +0 -195
  1729. data/doc/files/lib/rq-3_0_0/toucher_rb.html +0 -195
  1730. data/doc/files/lib/rq-3_0_0/updater_rb.html +0 -194
  1731. data/doc/files/lib/rq-3_0_0/usage_rb.html +0 -194
  1732. data/doc/files/lib/rq-3_0_0/util_rb.html +0 -196
  1733. data/doc/files/lib/rq_rb.html +0 -244
  1734. data/doc/fr_class_index.html +0 -73
  1735. data/doc/fr_file_index.html +0 -71
  1736. data/doc/fr_method_index.html +0 -323
  1737. data/doc/index.html +0 -24
  1738. data/doc/rdoc-style.css +0 -172
  1739. data/lib/rq-3.1.0.rb +0 -124
  1740. data/lib/rq-3.1.0/creator.rb +0 -46
  1741. data/lib/rq-3.1.0/cron.rb +0 -125
  1742. data/lib/rq-3.1.0/feeder.rb +0 -521
  1743. data/lib/rq-3.1.0/i686-linux/_sqlite.so +0 -0
  1744. data/lib/rq-3.1.0/jobqueue.rb +0 -899
  1745. data/lib/rq-3.1.0/jobrunner.rb +0 -104
  1746. data/lib/rq-3.1.0/local/bin/sqlite +0 -0
  1747. data/lib/rq-3.1.0/local/include/sqlite.h +0 -868
  1748. data/lib/rq-3.1.0/local/lib/libsqlite.a +0 -0
  1749. data/lib/rq-3.1.0/local/lib/libsqlite.la +0 -35
  1750. data/lib/rq-3.1.0/local/lib/libsqlite.so +0 -0
  1751. data/lib/rq-3.1.0/local/lib/libsqlite.so.0 +0 -0
  1752. data/lib/rq-3.1.0/local/lib/libsqlite.so.0.8.6 +0 -0
  1753. data/lib/rq-3.1.0/local/lib/pkgconfig/sqlite.pc +0 -12
  1754. data/lib/rq-3.1.0/mainhelper.rb +0 -184
  1755. data/lib/rq-3.1.0/qdb.rb +0 -733
  1756. data/lib/rq-3.1.0/resubmitter.rb +0 -96
  1757. data/lib/rq-3.1.0/submitter.rb +0 -109
  1758. data/lib/rq-3.1.0/toucher.rb +0 -177
@@ -0,0 +1,57 @@
1
+ require "#{File.dirname(__FILE__)}/abstract_unit"
2
+ require 'tmail'
3
+ require 'tempfile'
4
+
5
+ class QuotingTest < Test::Unit::TestCase
6
+ def test_quote_multibyte_chars
7
+ original = "\303\246 \303\270 and \303\245"
8
+
9
+ result = execute_in_sandbox(<<-CODE)
10
+ $:.unshift(File.dirname(__FILE__) + "/../lib/")
11
+ $KCODE = 'u'
12
+ require 'jcode'
13
+ require 'action_mailer/quoting'
14
+ include ActionMailer::Quoting
15
+ quoted_printable(#{original.inspect}, "UTF-8")
16
+ CODE
17
+
18
+ unquoted = TMail::Unquoter.unquote_and_convert_to(result, nil)
19
+ assert_equal unquoted, original
20
+ end
21
+
22
+ # test an email that has been created using \r\n newlines, instead of
23
+ # \n newlines.
24
+ def test_email_quoted_with_0d0a
25
+ mail = TMail::Mail.parse(IO.read("#{File.dirname(__FILE__)}/fixtures/raw_email_quoted_with_0d0a"))
26
+ assert_match %r{Elapsed time}, mail.body
27
+ end
28
+
29
+ def test_email_with_partially_quoted_subject
30
+ mail = TMail::Mail.parse(IO.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_partially_quoted_subject"))
31
+ assert_equal "Re: Test: \"\346\274\242\345\255\227\" mid \"\346\274\242\345\255\227\" tail", mail.subject
32
+ end
33
+
34
+ private
35
+
36
+ # This whole thing *could* be much simpler, but I don't think Tempfile,
37
+ # popen and others exist on all platforms (like Windows).
38
+ def execute_in_sandbox(code)
39
+ test_name = "#{File.dirname(__FILE__)}/am-quoting-test.#{$$}.rb"
40
+ res_name = "#{File.dirname(__FILE__)}/am-quoting-test.#{$$}.out"
41
+
42
+ File.open(test_name, "w+") do |file|
43
+ file.write(<<-CODE)
44
+ block = Proc.new do
45
+ #{code}
46
+ end
47
+ puts block.call
48
+ CODE
49
+ end
50
+
51
+ system("ruby #{test_name} > #{res_name}") or raise "could not run test in sandbox"
52
+ File.read(res_name).chomp
53
+ ensure
54
+ File.delete(test_name) rescue nil
55
+ File.delete(res_name) rescue nil
56
+ end
57
+ end
@@ -0,0 +1,13 @@
1
+ require "#{File.dirname(__FILE__)}/abstract_unit"
2
+
3
+ class TMailMailTest < Test::Unit::TestCase
4
+ def test_body
5
+ m = TMail::Mail.new
6
+ expected = 'something_with_underscores'
7
+ m.encoding = 'quoted-printable'
8
+ quoted_body = [expected].pack('*M')
9
+ m.body = quoted_body
10
+ assert_equal "something_with_underscores=\n", m.quoted_body
11
+ assert_equal expected, m.body
12
+ end
13
+ end
@@ -0,0 +1,68 @@
1
+ require "#{File.dirname(__FILE__)}/abstract_unit"
2
+
3
+ class TestMailer < ActionMailer::Base
4
+ def signed_up_with_url(recipient)
5
+ @recipients = recipient
6
+ @subject = "[Signed up] Welcome #{recipient}"
7
+ @from = "system@loudthinking.com"
8
+ @sent_on = Time.local(2004, 12, 12)
9
+
10
+ @body["recipient"] = recipient
11
+ @body["welcome_url"] = url_for :host => "example.com", :controller => "welcome", :action => "greeting"
12
+ end
13
+
14
+ class <<self
15
+ attr_accessor :received_body
16
+ end
17
+
18
+ def receive(mail)
19
+ self.class.received_body = mail.body
20
+ end
21
+ end
22
+
23
+ class ActionMailerUrlTest < Test::Unit::TestCase
24
+ include ActionMailer::Quoting
25
+
26
+ def encode( text, charset="utf-8" )
27
+ quoted_printable( text, charset )
28
+ end
29
+
30
+ def new_mail( charset="utf-8" )
31
+ mail = TMail::Mail.new
32
+ mail.mime_version = "1.0"
33
+ if charset
34
+ mail.set_content_type "text", "plain", { "charset" => charset }
35
+ end
36
+ mail
37
+ end
38
+
39
+ def setup
40
+ ActionMailer::Base.delivery_method = :test
41
+ ActionMailer::Base.perform_deliveries = true
42
+ ActionMailer::Base.deliveries = []
43
+
44
+ @recipient = 'test@localhost'
45
+ end
46
+
47
+ def test_signed_up_with_url
48
+ ActionController::Routing::Routes.draw do |map|
49
+ map.connect ':controller/:action/:id'
50
+ end
51
+
52
+ expected = new_mail
53
+ expected.to = @recipient
54
+ expected.subject = "[Signed up] Welcome #{@recipient}"
55
+ expected.body = "Hello there, \n\nMr. #{@recipient}. Please see our greeting at http://example.com/welcome/greeting"
56
+ expected.from = "system@loudthinking.com"
57
+ expected.date = Time.local(2004, 12, 12)
58
+
59
+ created = nil
60
+ assert_nothing_raised { created = TestMailer.create_signed_up_with_url(@recipient) }
61
+ assert_not_nil created
62
+ assert_equal expected.encoded, created.encoded
63
+
64
+ assert_nothing_raised { TestMailer.deliver_signed_up_with_url(@recipient) }
65
+ assert_not_nil ActionMailer::Base.deliveries.first
66
+ assert_equal expected.encoded, ActionMailer::Base.deliveries.first.encoded
67
+ end
68
+ end
@@ -0,0 +1,3138 @@
1
+ *1.13.3* (March 12th, 2007)
2
+
3
+ * Apply [5709] to stable.
4
+
5
+ * session_enabled? works with session :off. #6680 [Catfish]
6
+
7
+ * Performance: patch cgi/session to require digest/md5 once rather than per #create_new_id. [Stefan Kaes]
8
+
9
+
10
+ *1.13.2* (February 5th, 2007)
11
+
12
+ * Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick]
13
+
14
+ * improve error message for Routing for named routes. [Rob Sanheim]
15
+
16
+ * Added enhanced docs to routing assertions. [Rob Sanheim]
17
+
18
+ * fix form_for example in ActionController::Resources documentation. [gnarg]
19
+
20
+ * Add singleton resources from trunk [Rick Olson]
21
+
22
+ * select :multiple => true suffixes the attribute name with [] unless already suffixed. #6977 [nik.kakelin, ben, julik]
23
+
24
+ * Improve routes documentation. #7095 [zackchandler]
25
+
26
+ * Resource member routes require :id, eliminating the ambiguous overlap with collection routes. #7229 [dkubb]
27
+
28
+ * Fixed NumberHelper#number_with_delimiter to use "." always for splitting the original number, not the delimiter parameter #7389 [ceefour]
29
+
30
+ * Autolinking recognizes trailing and embedded . , : ; #7354 [Jarkko Laine]
31
+
32
+ * Make TextHelper::auto_link recognize URLs with colons in path correctly, fixes #7268. [imajes]
33
+
34
+ * Improved auto_link to match more valid urls correctly [Tobias Luetke]
35
+
36
+
37
+ *1.13.1* (January 18th, 2007)
38
+
39
+ * Fixed content-type bug in Prototype [sam]
40
+
41
+
42
+ *1.13.0* (January 16th, 2007)
43
+
44
+ * Modernize cookie testing code, and increase coverage (Heckle++) #7101 [Kevin Clark]
45
+
46
+ * Heckling ActionController::Resources::Resource revealed that set_prefixes didn't break when :name_prefix was munged. #7081 [Kevin Clark]
47
+
48
+ * Update to Prototype 1.5.0. [Sam Stephenson]
49
+
50
+ * Allow exempt_from_layout :rhtml. #6742, #7026 [dcmanges, Squeegy]
51
+
52
+ * Fix parsing of array[] CGI parameters so extra empty values aren't included. #6252 [Nicholas Seckar, aiwilliams, brentrowland]
53
+
54
+ * link_to_unless_current works with full URLs as well as paths. #6891 [Jarkko Laine, manfred, idrifter]
55
+
56
+ * Fix HTML::Node to output double quotes instead of single quotes. Closes #6845 [mitreandy]
57
+
58
+ * Fix no method error with error_messages_on. Closes #6935 [nik.wakelin Koz]
59
+
60
+ * Slight doc tweak to the ActionView::Helpers::PrototypeHelper#replace docs. Closes #6922 [Steven Bristol]
61
+
62
+ * Slight doc tweak to #prepend_filter. Closes #6493 [Jeremy Voorhis]
63
+
64
+ * Add more extensive documentation to the AssetTagHelper. Closes #6452 [Bob Silva]
65
+
66
+ * Clean up multiple calls to #stringify_keys in TagHelper, add better documentation and testing for TagHelper. Closes #6394 [Bob Silva]
67
+
68
+ * [DOCS] fix reference to ActionController::Macros::AutoComplete for #text_field_with_auto_complete. Closes #2578 [Jan Prill]
69
+
70
+ * Make sure html_document is reset between integration test requests. [ctm]
71
+
72
+ * Set session to an empty hash if :new_session => false and no session cookie or param is present. CGI::Session was raising an unrescued ArgumentError. [Josh Susser]
73
+
74
+ * Fix assert_redirected_to bug where redirecting from a nested to to a top-level controller incorrectly added the current controller's nesting. Closes #6128. [Rick Olson]
75
+
76
+ * Ensure render :json => ... skips the layout. #6808 [Josh Peek]
77
+
78
+ * Silence log_error deprecation warnings from inspecting deprecated instance variables. [Nate Wiger]
79
+
80
+ * Only cache GET requests with a 200 OK response. #6514, #6743 [RSL, anamba]
81
+
82
+ * Correctly report which filter halted the chain. #6699 [Martin Emde]
83
+
84
+ * respond_to recognizes JSON. render :json => @person.to_json automatically sets the content type and takes a :callback option to specify a client-side function to call using the rendered JSON as an argument. #4185 [Scott Raymond, eventualbuddha]
85
+ # application/json response with body 'Element.show({:name: "David"})'
86
+ respond_to do |format|
87
+ format.json { render :json => { :name => "David" }.to_json, :callback => 'Element.show' }
88
+ end
89
+
90
+ * Makes :discard_year work without breaking multi-attribute parsing in AR. #1260, #3800 [sean@ardismg.com, jmartin@desertflood.com, stephen@touset.org, Bob Silva]
91
+
92
+ * Adds html id attribute to date helper elements. #1050, #1382 [mortonda@dgrmm.net, David North, Bob Silva]
93
+
94
+ * Add :index and @auto_index capability to model driven date/time selects. #847, #2655 [moriq, Doug Fales, Bob Silva]
95
+
96
+ * Add :order to datetime_select, select_datetime, and select_date. #1427 [Timothee Peignier, patrick@lenz.sh, Bob Silva]
97
+
98
+ * Added time_select to work with time values in models. Update scaffolding. #2489, #2833 [Justin Palmer, Andre Caum, Bob Silva]
99
+
100
+ * Added :include_seconds to select_datetime, datetime_select and time_select. #2998 [csn, Bob Silva]
101
+
102
+ * All date/datetime selects can now accept an array of month names with :use_month_names. Allows for localization. #363 [tomasj, Bob Silva]
103
+
104
+ * Adds :time_separator to select_time and :date_separator to select_datetime. Preserves BC. #3811 [Bob Silva]
105
+
106
+ * @response.redirect_url works with 201 Created responses: just return headers['Location'] rather than checking the response status. [Jeremy Kemper]
107
+
108
+ * Fixed that HEAD should return the proper Content-Length header (that is, actually use @body.size, not just 0) [DHH]
109
+
110
+ * Added GET-masquarading for HEAD, so request.method will return :get even for HEADs. This will help anyone relying on case request.method to automatically work with HEAD and map.resources will also allow HEADs to all GET actions. Rails automatically throws away the response content in a reply to HEAD, so you don't even need to worry about that. If you, for whatever reason, still need to distinguish between GET and HEAD in some edge case, you can use Request#head? and even Request.headers["REQUEST_METHOD"] for get the "real" answer. Closes #6694 [DHH]
111
+
112
+
113
+ *1.13.0 RC1* (r5619, November 22nd, 2006)
114
+
115
+ * Update Routing to complain when :controller is not specified by a route. Closes #6669. [Nicholas Seckar]
116
+
117
+ * Ensure render_to_string cleans up after itself when an exception is raised. #6658 [rsanheim]
118
+
119
+ * Update to Prototype and script.aculo.us [5579]. [Sam Stephenson, Thomas Fuchs]
120
+
121
+ * simple_format helper doesn't choke on nil. #6644 [jerry426]
122
+
123
+ * Reuse named route helper module between Routing reloads. Use remove_method to delete named route methods after each load. Since the module is never collected, this fixes a significant memory leak. [Nicholas Seckar]
124
+
125
+ * Deprecate standalone components. [Jeremy Kemper]
126
+
127
+ * Always clear model associations from session. #4795 [sd@notso.net, andylien@gmail.com]
128
+
129
+ * Remove JavaScriptLiteral in favor of ActiveSupport::JSON::Variable. [Sam Stephenson]
130
+
131
+ * Sync ActionController::StatusCodes::STATUS_CODES with http://www.iana.org/assignments/http-status-codes. #6586 [dkubb]
132
+
133
+ * Multipart form values may have a content type without being treated as uploaded files if they do not provide a filename. #6401 [Andreas Schwarz, Jeremy Kemper]
134
+
135
+ * assert_response supports symbolic status codes. #6569 [Kevin Clark]
136
+ assert_response :ok
137
+ assert_response :not_found
138
+ assert_response :forbidden
139
+
140
+ * Cache parsed query parameters. #6559 [Stefan Kaes]
141
+
142
+ * Deprecate JavaScriptHelper#update_element_function, which is superseeded by RJS [Thomas Fuchs]
143
+
144
+ * Fix invalid test fixture exposed by stricter Ruby 1.8.5 multipart parsing. #6524 [Bob Silva]
145
+
146
+ * Set ActionView::Base.default_form_builder once rather than passing the :builder option to every form or overriding the form helper methods. [Jeremy Kemper]
147
+
148
+ * Deprecate expire_matched_fragments. Use expire_fragment instead. #6535 [Bob Silva]
149
+
150
+ * Deprecate start_form_tag and end_form_tag. Use form_tag / '</form>' from now on. [Rick]
151
+
152
+ * Added block-usage to PrototypeHelper#form_remote_tag, document block-usage of FormTagHelper#form_tag [Rick]
153
+
154
+ * Add a 0 margin/padding div around the hidden _method input tag that form_tag outputs. [Rick]
155
+
156
+ * Added block-usage to TagHelper#content_tag [DHH]. Example:
157
+
158
+ <% content_tag :div, :class => "strong" %>
159
+ Hello world!
160
+ <% end %>
161
+
162
+ Will output:
163
+ <div class="strong">Hello world!</div>
164
+
165
+ * Deprecated UrlHelper#link_to_image and UrlHelper#link_to :post => true #6409 [BobSilva]
166
+
167
+ * Upgraded NumberHelper with number_to_phone support international formats to comply with ITU E.123 by supporting area codes with less than 3 digits, added precision argument to number_to_human_size (defaults to 1) #6421 [BobSilva]
168
+
169
+ * Fixed that setting RAILS_ASSET_ID to "" should not add a trailing slash after assets #6454 [BobSilva/chrismear]
170
+
171
+ * Force *_url named routes to show the host in ActionView [Rick]
172
+
173
+ <%= url_for ... %> # no host
174
+ <%= foo_path %> # no host
175
+ <%= foo_url %> # host!
176
+
177
+ * Add support for converting blocks into function arguments to JavaScriptGenerator#call and JavaScriptProxy#call. [Sam Stephenson]
178
+
179
+ * Add JavaScriptGenerator#literal for wrapping a string in an object whose #to_json is the string itself. [Sam Stephenson]
180
+
181
+ * Add <%= escape_once html %> to escape html while leaving any currently escaped entities alone. Fix button_to double-escaping issue. [Rick]
182
+
183
+ * Fix double-escaped entities, such as &amp;amp;, &amp;#123;, etc. [Rick]
184
+
185
+ * Fix routing to correctly determine when generation fails. Closes #6300. [psross].
186
+
187
+ * Fix broken assert_generates when extra keys are being checked. [Jamis Buck]
188
+
189
+ * Replace KCODE checks with String#chars for truncate. Closes #6385 [Manfred Stienstra]
190
+
191
+ * Make page caching respect the format of the resource that is being requested even if the current route is the default route so that, e.g. posts.rss is not transformed by url_for to '/' and subsequently cached as '/index.html' when it should be cached as '/posts.rss'. [Marcel Molina Jr.]
192
+
193
+ * Use String#chars in TextHelper::excerpt. Closes #6386 [Manfred Stienstra]
194
+
195
+ * Fix relative URL root matching problems. [Mark Imbriaco]
196
+
197
+ * Fix filter skipping in controller subclasses. #5949, #6297, #6299 [Martin Emde]
198
+
199
+ * render_text may optionally append to the response body. render_javascript appends by default. This allows you to chain multiple render :update calls by setting @performed_render = false between them (awaiting a better public API). [Jeremy Kemper]
200
+
201
+ * Rename test assertion to prevent shadowing. Closes #6306. [psross]
202
+
203
+ * Fixed that NumberHelper#number_to_delimiter should respect precision of higher than two digits #6231 [phallstrom]
204
+
205
+ * Fixed that FormHelper#radio_button didn't respect an :id being passed in #6266 [evansj]
206
+
207
+ * Added an html_options hash parameter to javascript_tag() and update_page_tag() helpers #6311 [tzaharia]. Example:
208
+
209
+ update_page_tag :defer => 'true' { |page| ... }
210
+
211
+ Gives:
212
+
213
+ <script defer="true" type="text/javascript">...</script>
214
+
215
+ Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
216
+
217
+ * Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [mnaberez]
218
+
219
+ * Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]
220
+
221
+ * Fixed that some 500 rescues would cause 500's themselves because the response had not yet been generated #6329 [cmselmer]
222
+
223
+ * respond_to :html doesn't assume .rhtml. #6281 [Hampton Catlin]
224
+
225
+ * Fixed some deprecation warnings in ActionPack [Rick Olson]
226
+
227
+ * assert_select_rjs decodes escaped unicode chars since the Javascript generators encode them. #6240 [japgolly]
228
+
229
+ * Deprecation: @cookies, @headers, @request, @response will be removed after 1.2. Use the corresponding method instead. [Jeremy Kemper]
230
+
231
+ * Make the :status parameter expand to the default message for that status code if it is an integer. Also support symbol statuses. [Jamis Buck]. Examples:
232
+
233
+ head :status => 404 # expands to "404 Not Found"
234
+ head :status => :not_found # expands to "404 Not Found"
235
+ head :status => :created # expands to "201 Created"
236
+
237
+ * Add head(options = {}) for responses that have no body. [Jamis Buck]. Examples:
238
+
239
+ head :status => 404 # return an empty response with a 404 status
240
+ head :location => person_path(@person), :status => 201
241
+
242
+ * Fix bug that kept any before_filter except the first one from being able to halt the before_filter chain. [Rick Olson]
243
+
244
+ * strip_links is case-insensitive. #6285 [tagoh, Bob Silva]
245
+
246
+ * Clear the cache of possible controllers whenever Routes are reloaded. [Nicholas Seckar]
247
+
248
+ * Filters overhaul including meantime filter support using around filters + blocks. #5949 [Martin Emde, Roman Le Negrate, Stefan Kaes, Jeremy Kemper]
249
+
250
+ * Update CGI process to allow sessions to contain namespaced models. Closes #4638. [dfelstead@site5.com]
251
+
252
+ * Fix routing to respect user provided requirements and defaults when assigning default routing options (such as :action => 'index'). Closes #5950. [Nicholas Seckar]
253
+
254
+ * Rescue Errno::ECONNRESET to handle an unexpectedly closed socket connection. Improves SCGI reliability. #3368, #6226 [sdsykes, fhanshaw@vesaria.com]
255
+
256
+ * Added that respond_to blocks will automatically set the content type to be the same as is requested [DHH]. Examples:
257
+
258
+ respond_to do |format|
259
+ format.html { render :text => "I'm being sent as text/html" }
260
+ format.rss { render :text => "I'm being sent as application/rss+xml" }
261
+ format.atom { render :text => "I'm being sent as application/xml", :content_type => Mime::XML }
262
+ end
263
+
264
+ * Added utf-8 as the default charset for all renders. You can change this default using ActionController::Base.default_charset=(encoding) [DHH]
265
+
266
+ * Added proper getters and setters for content type and charset [DHH]. Example of what we used to do:
267
+
268
+ response.headers["Content-Type"] = "application/atom+xml; charset=utf-8"
269
+
270
+ ...now:
271
+
272
+ response.content_type = Mime::ATOM
273
+ response.charset = "utf-8"
274
+
275
+ * Declare file extensions exempt from layouts. #6219 [brandon]
276
+ Example: ActionController::Base.exempt_from_layout 'rpdf'
277
+
278
+ * Add chained replace/update support for assert_select_rjs [Rick Olson]
279
+
280
+ Given RJS like...
281
+
282
+ page['test1'].replace "<div id=\"1\">foo</div>"
283
+ page['test2'].replace_html "<div id=\"2\">foo</div>"
284
+
285
+ Test it with...
286
+
287
+ assert_select_rjs :chained_replace
288
+ assert_select_rjs :chained_replace, "test1"
289
+
290
+ assert_select_rjs :chained_replace_html
291
+ assert_select_rjs :chained_replace_html, "test2"
292
+
293
+ * Load helpers in alphabetical order for consistency. Resolve cyclic javascript_helper dependency. #6132, #6178 [choonkeat@gmail.com]
294
+
295
+ * Skip params with empty names, such as the &=Save query string from <input type="submit"/>. #2569 [manfred, raphinou@yahoo.com]
296
+
297
+ * Fix assert_tag so that :content => "foo" does not match substrings, but only exact strings. Use :content => /foo/ to match substrings. #2799 [Eric Hodel]
298
+
299
+ * Update JavaScriptGenerator#show/hide/toggle/remove to new Prototype syntax for multiple ids, #6068 [petermichaux@gmail.com]
300
+
301
+ * Update UrlWriter to support :only_path. [Nicholas Seckar, Dave Thomas]
302
+
303
+ * Fixed JavaScriptHelper#link_to_function and JavaScriptHelper#button_to_function to have the script argument be optional [DHH]. So what used to require a nil, like this:
304
+
305
+ link_to("Hider", nil, :class => "hider_link") { |p| p[:something].hide }
306
+
307
+ ...can be written like this:
308
+
309
+ link_to("Hider", :class => "hider_link") { |p| p[:something].hide }
310
+
311
+ * Added access to nested attributes in RJS #4548 [richcollins@gmail.com]. Examples:
312
+
313
+ page['foo']['style'] # => $('foo').style;
314
+ page['foo']['style']['color'] # => $('blank_slate').style.color;
315
+ page['foo']['style']['color'] = 'red' # => $('blank_slate').style.color = 'red';
316
+ page['foo']['style'].color = 'red' # => $('blank_slate').style.color = 'red';
317
+
318
+ * Fixed that AssetTagHelper#image_tag and others using compute_public_path should not modify the incoming source argument (closes #5102) [eule@space.ch]
319
+
320
+ * Deprecated the auto-appending of .png to AssetTagHelper#image_tag calls that doesn't have an extension [DHH]
321
+
322
+ * Fixed FormOptionsHelper#select to respect :selected value #5813
323
+
324
+ * Fixed TextHelper#simple_format to deal with multiple single returns within a single paragraph #5835 [moriq@moriq.com]
325
+
326
+ * Fixed TextHelper#pluralize to handle 1 as a string #5909 [rails@bencurtis.com]
327
+
328
+ * Improved resolution of DateHelper#distance_of_time_in_words for better precision #5994 [Bob Silva]
329
+
330
+ * Changed that uncaught exceptions raised any where in the application will cause RAILS_ROOT/public/500.html to be read and shown instead of just the static "Application error (Rails)" [DHH]
331
+
332
+ * Added deprecation language for pagination which will become a plugin by Rails 2.0 [DHH]
333
+
334
+ * Added deprecation language for in_place_editor and auto_complete_field that both pieces will become plugins by Rails 2.0 [DHH]
335
+
336
+ * Deprecated all of ActionController::Dependencies. All dependency loading is now handled from Active Support [DHH]
337
+
338
+ * Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
339
+
340
+ * radio_button_tag generates unique id attributes. #3353 [Bob Silva, somekool@gmail.com]
341
+
342
+ * strip_tags passes through blank args such as nil or "". #2229, #6702 [duncan@whomwah.com, dharana]
343
+
344
+ * Cleanup assert_tag :children counting. #2181 [jamie@bravenet.com]
345
+
346
+ * button_to accepts :method so you can PUT and DELETE with it. #6005 [Dan Webb]
347
+
348
+ * Update sanitize text helper to strip plaintext tags, and <img src="javascript:bang">. [Rick Olson]
349
+
350
+ * Add routing tests to assert that RoutingError is raised when conditions aren't met. Closes #6016 [Nathan Witmer]
351
+
352
+ * Make auto_link parse a greater subset of valid url formats. [Jamis Buck]
353
+
354
+ * Integration tests: headers beginning with X aren't excluded from the HTTP_ prefix, so X-Requested-With becomes HTTP_X_REQUESTED_WITH as expected. [Mike Clark]
355
+
356
+ * Switch to using FormEncodedPairParser for parsing request parameters. [Nicholas Seckar, DHH]
357
+
358
+ * respond_to .html now always renders #{action_name}.rhtml so that registered custom template handlers do not override it in priority. Custom mime types require a block and throw proper error now. [Tobias Luetke]
359
+
360
+ * Deprecation: test deprecated instance vars in partials. [Jeremy Kemper]
361
+
362
+ * Add UrlWriter to allow writing urls from Mailers and scripts. [Nicholas Seckar]
363
+
364
+ * Relax Routing's anchor pattern warning; it was preventing use of [^/] inside restrictions. [Nicholas Seckar]
365
+
366
+ * Add controller_paths variable to Routing. [Nicholas Seckar]
367
+
368
+ * Fix assert_redirected_to issue with named routes for module controllers. [Rick Olson]
369
+
370
+ * Tweak RoutingError message to show option diffs, not just missing named route significant keys. [Rick Olson]
371
+
372
+ * Invoke method_missing directly on hidden actions. Closes #3030. [Nicholas Seckar]
373
+
374
+ * Add RoutingError exception when RouteSet fails to generate a path from a Named Route. [Rick Olson]
375
+
376
+ * Replace Reloadable with Reloadable::Deprecated. [Nicholas Seckar]
377
+
378
+ * Deprecation: check whether instance variables have been monkeyed with before assigning them to deprecation proxies. Raises a RuntimeError if so. [Jeremy Kemper]
379
+
380
+ * Add support for the param_name parameter to the auto_complete_field helper. #5026 [david.a.williams@gmail.com]
381
+
382
+ * Deprecation! @params, @session, @flash will be removed after 1.2. Use the corresponding instance methods instead. You'll get printed warnings during tests and logged warnings in dev mode when you access either instance variable directly. [Jeremy Kemper]
383
+
384
+ * Make Routing noisy when an anchor regexp is assigned to a segment. #5674 [francois.beausoleil@gmail.com]
385
+
386
+ * Added months and years to the resolution of DateHelper#distance_of_time_in_words, such that "60 days ago" becomes "2 months ago" #5611 [pjhyett@gmail.com]
387
+
388
+ * Make controller_path available as an instance method. #5724 [jmckible@gmail.com]
389
+
390
+ * Update query parser to support adjacent hashes. [Nicholas Seckar]
391
+
392
+ * Make action caching aware of different formats for the same action so that, e.g. foo.xml is cached separately from foo.html. Implicitly set content type when reading in cached content with mime revealing extensions so the entire onous isn't on the webserver. [Marcel Molina Jr.]
393
+
394
+ * Restrict Request Method hacking with ?_method to POST requests. [Rick Olson]
395
+
396
+ * Fixed the new_#{resource}_url route and added named route tests for Simply Restful. [Rick Olson]
397
+
398
+ * Added map.resources from the Simply Restful plugin [DHH]. Examples (the API has changed to use plurals!):
399
+
400
+ map.resources :messages
401
+ map.resources :messages, :comments
402
+ map.resources :messages, :new => { :preview => :post }
403
+
404
+ * Fixed that integration simulation of XHRs should set Accept header as well [Edward Frederick]
405
+
406
+ * TestRequest#reset_session should restore a TestSession, not a hash [Koz]
407
+
408
+ * Don't search a load-path of '.' for controller files [Jamis Buck]
409
+
410
+ * Update integration.rb to require test_process explicitly instead of via Dependencies. [Nicholas Seckar]
411
+
412
+ * Fixed that you can still access the flash after the flash has been reset in reset_session. Closes #5584 [lmarlow@yahoo.com]
413
+
414
+ * Allow form_for and fields_for to work with indexed form inputs. [Jeremy Kemper, Matt Lyon]
415
+
416
+ <% form_for 'post[]', @post do |f| -%>
417
+ <% end -%>
418
+
419
+ * Remove leak in development mode by replacing define_method with module_eval. [Nicholas Seckar]
420
+
421
+ * Provide support for decimal columns to form helpers. Closes #5672. [dave@pragprog.com]
422
+
423
+ * Pass :id => nil or :class => nil to error_messages_for to supress that html attribute. #3586 [olivier_ansaldi@yahoo.com, sebastien@goetzilla.info]
424
+
425
+ * Reset @html_document between requests so assert_tag works. #4810 [jarkko@jlaine.net, easleydp@gmail.com]
426
+
427
+ * Integration tests behave well with render_component. #4632 [edward.frederick@revolution.com, dev.rubyonrails@maxdunn.com]
428
+
429
+ * Added exception handling of missing layouts #5373 [chris@ozmm.org]
430
+
431
+ * Fixed that real files and symlinks should be treated the same when compiling templates #5438 [zachary@panandscan.com]
432
+
433
+ * Fixed that the flash should be reset when reset_session is called #5584 [shugo@ruby-lang.org]
434
+
435
+ * Added special case for "1 Byte" in NumberHelper#number_to_human_size #5593 [murpyh@rubychan.de]
436
+
437
+ * Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [DHH]
438
+
439
+ * Add route_name_path method to generate only the path for a named routes. For example, map.person will add person_path. [Nicholas Seckar]
440
+
441
+ * Avoid naming collision among compiled view methods. [Jeremy Kemper]
442
+
443
+ * Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [mislav@nippur.irb.hr]
444
+
445
+ * Determine the correct template_root for deeply nested components. #2841 [s.brink@web.de]
446
+
447
+ * Fix that routes with *path segments in the recall can generate URLs. [Rick]
448
+
449
+ * Fix strip_links so that it doesn't hang on multiline <acronym> tags [Jamis Buck]
450
+
451
+ * Remove problematic control chars in rescue template. #5316 [Stefan Kaes]
452
+
453
+ * Make sure passed routing options are not mutated by routing code. #5314 [Blair Zajac]
454
+
455
+ * Make sure changing the controller from foo/bar to bing/bang does not change relative to foo. [Jamis Buck]
456
+
457
+ * Escape the path before routing recognition. #3671
458
+
459
+ * Make sure :id and friends are unescaped properly. #5275 [me@julik.nl]
460
+
461
+ * Rewind readable CGI params so others may reread them (such as CGI::Session when passing the session id in a multipart form). #210 [mklame@atxeu.com, matthew@walker.wattle.id.au]
462
+
463
+ * Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default types [DHH]
464
+
465
+ * Added Mime::Type.register(string, symbol, synonyms = []) for adding new custom mime types [DHH]. Example: Mime::Type.register("image/gif", :gif)
466
+
467
+ * Added support for Mime objects in render :content_type option [DHH]. Example: render :text => some_atom, :content_type => Mime::ATOM
468
+
469
+ * Add :status option to send_data and send_file. Defaults to '200 OK'. #5243 [Manfred Stienstra <m.stienstra@fngtps.com>]
470
+
471
+ * Routing rewrite. Simpler, faster, easier to understand. The published API for config/routes.rb is unchanged, but nearly everything else is different, so expect breakage in plugins and libs that try to fiddle with routes. [Nicholas Seckar, Jamis Buck]
472
+
473
+ map.connect '/foo/:id', :controller => '...', :action => '...'
474
+ map.connect '/foo/:id.:format', :controller => '...', :action => '...'
475
+ map.connect '/foo/:id', ..., :conditions => { :method => :get }
476
+
477
+ * Cope with missing content type and length headers. Parse parameters from multipart and urlencoded request bodies only. [Jeremy Kemper]
478
+
479
+ * Accept multipart PUT parameters. #5235 [guy.naor@famundo.com]
480
+
481
+ * Added interrogation of params[:format] to determine Accept type. If :format is specified and matches a declared extension, like "rss" or "xml", that mime type will be put in front of the accept handler. This means you can link to the same action from different extensions and use that fact to determine output [DHH]. Example:
482
+
483
+ class WeblogController < ActionController::Base
484
+ def index
485
+ @posts = Post.find :all
486
+
487
+ respond_to do |format|
488
+ format.html
489
+ format.xml { render :xml => @posts.to_xml }
490
+ format.rss { render :action => "feed.rxml" }
491
+ end
492
+ end
493
+ end
494
+
495
+ # returns HTML when requested by a browser, since the browser
496
+ # has the HTML mimetype at the top of its priority list
497
+ Accept: text/html
498
+ GET /weblog
499
+
500
+ # returns the XML
501
+ Accept: application/xml
502
+ GET /weblog
503
+
504
+ # returns the HTML
505
+ Accept: application/xml
506
+ GET /weblog.html
507
+
508
+ # returns the XML
509
+ Accept: text/html
510
+ GET /weblog.xml
511
+
512
+ All this relies on the fact that you have a route that includes .:format.
513
+
514
+ * Expanded :method option in FormTagHelper#form_tag, FormHelper#form_for, PrototypeHelper#remote_form_for, PrototypeHelper#remote_form_tag, and PrototypeHelper#link_to_remote to allow for verbs other than GET and POST by automatically creating a hidden form field named _method, which will simulate the other verbs over post [DHH]
515
+
516
+ * Added :method option to UrlHelper#link_to, which allows for using other verbs than GET for the link. This replaces the :post option, which is now deprecated. Example: link_to "Destroy", person_url(:id => person), :method => :delete [DHH]
517
+
518
+ * follow_redirect doesn't complain about being redirected to the same controller. #5153 [dymo@mk.ukrtelecom.ua]
519
+
520
+ * Add layout attribute to response object with the name of the layout that was rendered, or nil if none rendered. [Kevin Clark kevin.clark@gmail.com]
521
+
522
+ * Fix NoMethodError when parsing params like &&. [Adam Greenfield]
523
+
524
+ * form.text_area handles the :size option just like the original text_area (:size => '60x10' becomes cols="60" rows="10"). [Jeremy Kemper]
525
+
526
+ * Excise ingrown code from FormOptionsHelper#options_for_select. #5008 [anonymous]
527
+
528
+ * Small fix in routing to allow dynamic routes (broken after [4242]) [Rick]
529
+
530
+ map.connect '*path', :controller => 'files', :action => 'show'
531
+
532
+ * Use #flush between switching from #write to #syswrite. Closes #4907. [Blair Zajac <blair@orcaware.com>]
533
+
534
+ * Allow error_messages_for to report errors for multiple objects, as well as support for customizing the name of the object in the error summary header. Closes #4186. [andrew@redlinesoftware.com, Marcel Molina Jr.]
535
+
536
+ error_messages_for :account, :user, :subscription, :object_name => :account
537
+
538
+ * Fix assert_redirected_to tests according to real-world usage. Also, don't fail if you add an extra :controller option: [Rick]
539
+
540
+ redirect_to :action => 'new'
541
+ assert_redirected_to :controller => 'monkeys', :action => 'new'
542
+
543
+ * Diff compared routing options. Allow #assert_recognizes to take a second arg as a hash to specify optional request method [Rick]
544
+
545
+ assert_recognizes({:controller => 'users', :action => 'index'}, 'users')
546
+ assert_recognizes({:controller => 'users', :action => 'create'}, {:path => 'users', :method => :post})
547
+
548
+ * Diff compared options with #assert_redirected_to [Rick]
549
+
550
+ * Add support in routes for semicolon delimited "subpaths", like /books/:id;:action [Jamis Buck]
551
+
552
+ * Change link_to_function and button_to_function to (optionally) take an update_page block instead of a JavaScript string. Closes #4804. [zraii@comcast.net, Sam Stephenson]
553
+
554
+ * Modify routing so that you can say :require => { :method => :post } for a route, and the route will never be selected unless the request method is POST. Only works for route recognition, not for route generation. [Jamis Buck]
555
+
556
+ * Added :add_headers option to verify which merges a hash of name/value pairs into the response's headers hash if the prerequisites cannot be satisfied. [Sam Stephenson]
557
+ ex. verify :only => :speak, :method => :post,
558
+ :render => { :status => 405, :text => "Must be post" },
559
+ :add_headers => { "Allow" => "POST" }
560
+
561
+
562
+ *1.12.5* (August 10th, 2006)
563
+
564
+ * Updated security fix
565
+
566
+
567
+ *1.12.4* (August 8th, 2006)
568
+
569
+ * Cache CgiRequest#request_parameters so that multiple calls don't re-parse multipart data. [Rick]
570
+
571
+ * Fixed that remote_form_for can leave out the object parameter and default to the instance variable of the object_name, just like form_for [DHH]
572
+
573
+ * Added ActionController.filter_parameter_logging that makes it easy to remove passwords, credit card numbers, and other sensitive information from being logged when a request is handled. #1897 [jeremye@bsa.ca.gov]
574
+
575
+ * Fixed that real files and symlinks should be treated the same when compiling templates. #5438 [zachary@panandscan.com]
576
+
577
+ * Add :status option to send_data and send_file. Defaults to '200 OK'. #5243 [Manfred Stienstra <m.stienstra@fngtps.com>]
578
+
579
+ * Update documentation for erb trim syntax. #5651 [matt@mattmargolis.net]
580
+
581
+ * Short documentation to mention use of Mime::Type.register. #5710 [choonkeat@gmail.com]
582
+
583
+
584
+ *1.12.3* (June 28th, 2006)
585
+
586
+ * Fix broken traverse_to_controller. We now:
587
+ Look for a _controller.rb file under RAILS_ROOT to load.
588
+ If we find it, we require_dependency it and return the controller it defined. (If none was defined we stop looking.)
589
+ If we don't find it, we look for a .rb file under RAILS_ROOT to load. If we find it, and it loads a constant we keep looking.
590
+ Otherwise we check to see if a directory of the same name exists, and if it does we create a module for it.
591
+
592
+
593
+ *1.12.2* (June 27th, 2006)
594
+
595
+ * Refinement to avoid exceptions in traverse_to_controller.
596
+
597
+ * (Hackish) Fix loading of arbitrary files in Ruby's load path by traverse_to_controller. [Nicholas Seckar]
598
+
599
+
600
+ *1.12.1* (April 6th, 2006)
601
+
602
+ * Fixed that template extensions would be cached development mode #4624 [Stefan Kaes]
603
+
604
+ * Update to Prototype 1.5.0_rc0 [Sam Stephenson]
605
+
606
+ * Honor skipping filters conditionally for only certain actions even when the parent class sets that filter to conditionally be executed only for the same actions. #4522 [Marcel Molina Jr.]
607
+
608
+ * Delegate xml_http_request in integration tests to the session instance. [Jamis Buck]
609
+
610
+ * Update the diagnostics template skip the useless '<controller not set>' text. [Nicholas Seckar]
611
+
612
+ * CHANGED DEFAULT: Don't parse YAML input by default, but keep it available as an easy option [DHH]
613
+
614
+ * Add additional autocompleter options [aballai, Thomas Fuchs]
615
+
616
+ * Fixed fragment caching of binary data on Windows #4493 [bellis@deepthought.org]
617
+
618
+ * Applied Prototype $() performance patches (#4465, #4477) and updated script.aculo.us [Sam Stephenson, Thomas Fuchs]
619
+
620
+ * Added automated timestamping to AssetTagHelper methods for stylesheets, javascripts, and images when Action Controller is run under Rails [DHH]. Example:
621
+
622
+ image_tag("rails.png") # => '<img alt="Rails" src="/images/rails.png?1143664135" />'
623
+
624
+ ...to avoid frequent stats (not a problem for most people), you can set RAILS_ASSET_ID in the ENV to avoid stats:
625
+
626
+ ENV["RAILS_ASSET_ID"] = "2345"
627
+ image_tag("rails.png") # => '<img alt="Rails" src="/images/rails.png?2345" />'
628
+
629
+ This can be used by deployment managers to set the asset id by application revision
630
+
631
+
632
+ *1.12.0* (March 27th, 2006)
633
+
634
+ * Add documentation for respond_to. [Jamis Buck]
635
+
636
+ * Fixed require of bluecloth and redcloth when gems haven't been loaded #4446 [murphy@cYcnus.de]
637
+
638
+ * Update to Prototype 1.5.0_pre1 [Sam Stephenson]
639
+
640
+ * Change #form_for and #fields_for so that the second argument is not required [Dave Thomas]
641
+
642
+ <% form_for :post, @post, :url => { :action => 'create' } do |f| -%>
643
+
644
+ becomes...
645
+
646
+ <% form_for :post, :url => { :action => 'create' } do |f| -%>
647
+
648
+ * Update to script.aculo.us 1.6 [Thomas Fuchs]
649
+
650
+ * Enable application/x-yaml processing by default [Jamis Buck]
651
+
652
+ * Fix double url escaping of remote_function. Add :escape => false option to ActionView's url_for. [Nicholas Seckar]
653
+
654
+ * Add :script option to in_place_editor to support evalScripts (closes #4194) [codyfauser@gmail.com]
655
+
656
+ * Fix mixed case enumerable methods in the JavaScript Collection Proxy (closes #4314) [codyfauser@gmail.com]
657
+
658
+ * Undo accidental escaping for mail_to; add regression test. [Nicholas Seckar]
659
+
660
+ * Added nicer message for assert_redirected_to (closes #4294) [court3nay]
661
+
662
+ assert_redirected_to :action => 'other_host', :only_path => false
663
+
664
+ when it was expecting...
665
+
666
+ redirected_to :action => 'other_host', :only_path => true, :host => 'other.test.host'
667
+
668
+ gives the error message...
669
+
670
+ response is not a redirection to all of the options supplied (redirection is <{:only_path=>false, :host=>"other.test.host", :action=>"other_host"}>), difference: <{:only_path=>"true", :host=>"other.test.host"}>
671
+
672
+ * Change url_for to escape the resulting URLs when called from a view. [Nicholas Seckar, coffee2code]
673
+
674
+ * Added easy support for testing file uploads with fixture_file_upload #4105 [turnip@turnipspatch.com]. Example:
675
+
676
+ # Looks in Test::Unit::TestCase.fixture_path + '/files/spongebob.png'
677
+ post :change_avatar, :avatar => fixture_file_upload('/files/spongebob.png', 'image/png')
678
+
679
+ * Fixed UrlHelper#current_page? to behave even when url-escaped entities are present #3929 [jeremy@planetargon.com]
680
+
681
+ * Add ability for relative_url_root to be specified via an environment variable RAILS_RELATIVE_URL_ROOT. [isaac@reuben.com, Nicholas Seckar]
682
+
683
+ * Fixed link_to "somewhere", :post => true to produce valid XHTML by using the parentnode instead of document.body for the instant form #3007 [Bob Silva]
684
+
685
+ * Added :function option to PrototypeHelper#observe_field/observe_form that allows you to call a function instead of submitting an ajax call as the trigger #4268 [jonathan@daikini.com]
686
+
687
+ * Make Mime::Type.parse consider q values (if any) [Jamis Buck]
688
+
689
+ * XML-formatted requests are typecast according to "type" attributes for :xml_simple [Jamis Buck]
690
+
691
+ * Added protection against proxy setups treating requests as local even when they're not #3898 [stephen_purcell@yahoo.com]
692
+
693
+ * Added TestRequest#raw_post that simulate raw_post from CgiRequest #3042 [francois.beausoleil@gmail.com]
694
+
695
+ * Underscore dasherized keys in formatted requests [Jamis Buck]
696
+
697
+ * Add MimeResponds::Responder#any for managing multiple types with identical responses [Jamis Buck]
698
+
699
+ * Make the xml_http_request testing method set the HTTP_ACCEPT header [Jamis Buck]
700
+
701
+ * Add Verification to scaffolds. Prevent destructive actions using GET [Michael Koziarski]
702
+
703
+ * Avoid hitting the filesystem when using layouts by using a File.directory? cache. [Stefan Kaes, Nicholas Seckar]
704
+
705
+ * Simplify ActionController::Base#controller_path [Nicholas Seckar]
706
+
707
+ * Added simple alert() notifications for RJS exceptions when config.action_view.debug_rjs = true. [Sam Stephenson]
708
+
709
+ * Added :content_type option to render, so you can change the content type on the fly [DHH]. Example: render :action => "atom.rxml", :content_type => "application/atom+xml"
710
+
711
+ * CHANGED DEFAULT: The default content type for .rxml is now application/xml instead of type/xml, see http://www.xml.com/pub/a/2004/07/21/dive.html for reason [DHH]
712
+
713
+ * Added option to render action/template/file of a specific extension (and here by template type). This means you can have multiple templates with the same name but a different extension [DHH]. Example:
714
+
715
+ class WeblogController < ActionController::Base
716
+ def index
717
+ @posts = Post.find :all
718
+
719
+ respond_to do |type|
720
+ type.html # using defaults, which will render weblog/index.rhtml
721
+ type.xml { render :action => "index.rxml" }
722
+ type.js { render :action => "index.rjs" }
723
+ end
724
+ end
725
+ end
726
+
727
+ * Added better support for using the same actions to output for different sources depending on the Accept header [DHH]. Example:
728
+
729
+ class WeblogController < ActionController::Base
730
+ def create
731
+ @post = Post.create(params[:post])
732
+
733
+ respond_to do |type|
734
+ type.js { render } # renders create.rjs
735
+ type.html { redirect_to :action => "index" }
736
+ type.xml do
737
+ headers["Location"] = url_for(:action => "show", :id => @post)
738
+ render(:nothing, :status => "201 Created")
739
+ end
740
+ end
741
+ end
742
+ end
743
+
744
+ * Added Base#render(:xml => xml) that works just like Base#render(:text => text), but sets the content-type to text/xml and the charset to UTF-8 [DHH]
745
+
746
+ * Integration test's url_for now runs in the context of the last request (if any) so after post /products/show/1 url_for :action => 'new' will yield /product/new [Tobias Luetke]
747
+
748
+ * Re-added mixed-in helper methods for the JavascriptGenerator. Moved JavascriptGenerators methods to a module that is mixed in after the helpers are added. Also fixed that variables set in the enumeration methods like #collect are set correctly. Documentation added for the enumeration methods [Rick Olson]. Examples:
749
+
750
+ page.select('#items li').collect('items') do |element|
751
+ element.hide
752
+ end
753
+ # => var items = $$('#items li').collect(function(value, index) { return value.hide(); });
754
+
755
+ * Added plugin support for parameter parsers, which allows for better support for REST web services. By default, posts submitted with the application/xml content type is handled by creating a XmlSimple hash with the same name as the root element of the submitted xml. More handlers can easily be registered like this:
756
+
757
+ # Assign a new param parser to a new content type
758
+ ActionController::Base.param_parsers['application/atom+xml'] = Proc.new do |data|
759
+ node = REXML::Document.new(post)
760
+ { node.root.name => node.root }
761
+ end
762
+
763
+ # Assign the default XmlSimple to a new content type
764
+ ActionController::Base.param_parsers['application/backpack+xml'] = :xml_simple
765
+
766
+ Default YAML web services were retired, ActionController::Base.param_parsers carries an example which shows how to get this functionality back. As part of this new plugin support, request.[formatted_post?, xml_post?, yaml_post? and post_format] were all deprecated in favor of request.content_type [Tobias Luetke]
767
+
768
+ * Fixed Effect.Appear in effects.js to work with floats in Safari #3524, #3813, #3044 [Thomas Fuchs]
769
+
770
+ * Fixed that default image extension was not appended when using a full URL with AssetTagHelper#image_tag #4032, #3728 [rubyonrails@beautifulpixel.com]
771
+
772
+ * Added that page caching will only happen if the response code is less than 400 #4033 [g.bucher@teti.ch]
773
+
774
+ * Add ActionController::IntegrationTest to allow high-level testing of the way the controllers and routes all work together [Jamis Buck]
775
+
776
+ * Added support to AssetTagHelper#javascript_include_tag for having :defaults appear anywhere in the list, so you can now make one call ala javascript_include_tag(:defaults, "my_scripts") or javascript_include_tag("my_scripts", :defaults) depending on how you want the load order #3506 [Bob Silva]
777
+
778
+ * Added support for visual effects scoped queues to the visual_effect helper #3530 [Abdur-Rahman Advany]
779
+
780
+ * Added .rxml (and any non-rhtml template, really) supportfor CaptureHelper#content_for and CaptureHelper#capture #3287 [Brian Takita]
781
+
782
+ * Added script.aculo.us drag and drop helpers to RJS [Thomas Fuchs]. Examples:
783
+
784
+ page.draggable 'product-1'
785
+ page.drop_receiving 'wastebasket', :url => { :action => 'delete' }
786
+ page.sortable 'todolist', :url => { action => 'change_order' }
787
+
788
+ * Fixed that form elements would strip the trailing [] from the first parameter #3545 [ruby@bobsilva.com]
789
+
790
+ * During controller resolution, update the NameError suppression to check for the expected constant. [Nicholas Seckar]
791
+
792
+ * Update script.aculo.us to V1.5.3 [Thomas Fuchs]
793
+
794
+ * Added various InPlaceEditor options, #3746, #3891, #3896, #3906 [Bill Burcham, ruairi, sl33p3r]
795
+
796
+ * Added :count option to pagination that'll make it possible for the ActiveRecord::Base.count call to using something else than * for the count. Especially important for count queries using DISTINCT #3839 [skaes]
797
+
798
+ * Update script.aculo.us to V1.5.2 [Thomas Fuchs]
799
+
800
+ * Added element and collection proxies to RJS [DHH]. Examples:
801
+
802
+ page['blank_slate'] # => $('blank_slate');
803
+ page['blank_slate'].show # => $('blank_slate').show();
804
+ page['blank_slate'].show('first').up # => $('blank_slate').show('first').up();
805
+
806
+ page.select('p') # => $$('p');
807
+ page.select('p.welcome b').first # => $$('p.welcome b').first();
808
+ page.select('p.welcome b').first.hide # => $$('p.welcome b').first().hide();
809
+
810
+ * Add JavaScriptGenerator#replace for replacing an element's "outer HTML". #3246 [tom@craz8.com, Sam Stephenson]
811
+
812
+ * Remove over-engineered form_for code for a leaner implementation. [Nicholas Seckar]
813
+
814
+ * Document form_for's :html option. [Nicholas Seckar]
815
+
816
+ * Major components cleanup and speedup. #3527 [Stefan Kaes]
817
+
818
+ * Fix problems with pagination and :include. [Kevin Clark]
819
+
820
+ * Add ActiveRecordTestCase for testing AR integration. [Kevin Clark]
821
+
822
+ * Add Unit Tests for pagination [Kevin Clark]
823
+
824
+ * Add :html option for specifying form tag options in form_for. [Sam Stephenson]
825
+
826
+ * Replace dubious controller parent class in filter docs. #3655, #3722 [info@rhalff.com, eigentone@gmail.com]
827
+
828
+ * Don't interpret the :value option on text_area as an html attribute. Set the text_area's value. #3752 [gabriel@gironda.org]
829
+
830
+ * Fix remote_form_for creates a non-ajax form. [Rick Olson]
831
+
832
+ * Don't let arbitrary classes match as controllers -- a potentially dangerous bug. [Nicholas Seckar]
833
+
834
+ * Fix Routing tests. Fix routing where failing to match a controller would prevent the rest of routes from being attempted. [Nicholas Seckar]
835
+
836
+ * Add :builder => option to form_for and friends. [Nicholas Seckar, Rick Olson]
837
+
838
+ * Fix controller resolution to avoid accidentally inheriting a controller from a parent module. [Nicholas Seckar]
839
+
840
+ * Set sweeper's @controller to nil after a request so that the controller may be collected between requests. [Nicholas Seckar]
841
+
842
+ * Subclasses of ActionController::Caching::Sweeper should be Reloadable. [Rick Olson]
843
+
844
+ * Document the :xhr option for verifications. #3666 [leeo]
845
+
846
+ * Added :only and :except controls to skip_before/after_filter just like for when you add filters [DHH]
847
+
848
+ * Ensure that the instance variables are copied to the template when performing render :update. [Nicholas Seckar]
849
+
850
+ * Add the ability to call JavaScriptGenerator methods from helpers called in update blocks. [Sam Stephenson] Example:
851
+ module ApplicationHelper
852
+ def update_time
853
+ page.replace_html 'time', Time.now.to_s(:db)
854
+ page.visual_effect :highlight, 'time'
855
+ end
856
+ end
857
+
858
+ class UserController < ApplicationController
859
+ def poll
860
+ render :update { |page| page.update_time }
861
+ end
862
+ end
863
+
864
+ * Add render(:update) to ActionView::Base. [Sam Stephenson]
865
+
866
+ * Fix render(:update) to not render layouts. [Sam Stephenson]
867
+
868
+ * Fixed that SSL would not correctly be detected when running lighttpd/fcgi behind lighttpd w/mod_proxy #3548 [stephen_purcell@yahoo.com]
869
+
870
+ * Added the possibility to specify atomatic expiration for the memcachd session container #3571 [Stefan Kaes]
871
+
872
+ * Change layout discovery to take into account the change in semantics with File.join and nil arguments. [Marcel Molina Jr.]
873
+
874
+ * Raise a RedirectBackError if redirect_to :back is called when there's no HTTP_REFERER defined #3049 [kevin.clark@gmail.com]
875
+
876
+ * Treat timestamps like datetimes for scaffolding purposes #3388 [Maik Schmidt]
877
+
878
+ * Fix IE bug with link_to "something", :post => true #3443 [Justin Palmer]
879
+
880
+ * Extract Test::Unit::TestCase test process behavior into an ActionController::TestProcess module. [Sam Stephenson]
881
+
882
+ * Pass along blocks from render_to_string to render. [Sam Stephenson]
883
+
884
+ * Add render :update for inline RJS. [Sam Stephenson] Example:
885
+ class UserController < ApplicationController
886
+ def refresh
887
+ render :update do |page|
888
+ page.replace_html 'user_list', :partial => 'user', :collection => @users
889
+ page.visual_effect :highlight, 'user_list'
890
+ end
891
+ end
892
+ end
893
+
894
+ * allow nil objects for error_messages_for [Michael Koziarski]
895
+
896
+ * Refactor human_size to exclude decimal place if it is zero. [Marcel Molina Jr.]
897
+
898
+ * Update to Prototype 1.5.0_pre0 [Sam Stephenson]
899
+
900
+ * Automatically discover layouts when a controller is namespaced. #2199, #3424 [me@jonnii.com rails@jeffcole.net Marcel Molina Jr.]
901
+
902
+ * Add support for multiple proxy servers to CgiRequest#host [gaetanot@comcast.net]
903
+
904
+ * Documentation typo fix. #2367 [Blair Zajac]
905
+
906
+ * Remove Upload Progress. #2871 [Sean Treadway]
907
+
908
+ * Fix typo in function name mapping in auto_complete_field. #2929 #3446 [doppler@gmail.com phil.ross@gmail.com]
909
+
910
+ * Allow auto-discovery of third party template library layouts. [Marcel Molina Jr.]
911
+
912
+ * Have the form builder output radio button, not check box, when calling the radio button helper. #3331 [LouisStAmour@gmail.com]
913
+
914
+ * Added assignment of the Autocompleter object created by JavaScriptMacroHelper#auto_complete_field to a local javascript variables [DHH]
915
+
916
+ * Added :on option for PrototypeHelper#observe_field that allows you to specify a different callback hook to have the observer trigger on [DHH]
917
+
918
+ * Added JavaScriptHelper#button_to_function that works just like JavaScriptHelper#link_to_function but uses a button instead of a href [DHH]
919
+
920
+ * Added that JavaScriptHelper#link_to_function will honor existing :onclick definitions when adding the function call [DHH]
921
+
922
+ * Added :disable_with option to FormTagHelper#submit_tag to allow for easily disabled submit buttons with different text [DHH]
923
+
924
+ * Make auto_link handle nil by returning quickly if blank? [Scott Barron]
925
+
926
+ * Make auto_link match urls with a port number specified. [Marcel Molina Jr.]
927
+
928
+ * Added support for toggling visual effects to ScriptaculousHelper::visual_effect, #3323. [Thomas Fuchs]
929
+
930
+ * Update to script.aculo.us to 1.5.0 rev. 3343 [Thomas Fuchs]
931
+
932
+ * Added :select option for JavaScriptMacroHelper#auto_complete_field that makes it easier to only use part of the auto-complete suggestion as the value for insertion [Thomas Fuchs]
933
+
934
+ * Added delayed execution of Javascript from within RJS #3264 [devslashnull@gmail.com]. Example:
935
+
936
+ page.delay(20) do
937
+ page.visual_effect :fade, 'notice'
938
+ end
939
+
940
+ * Add session ID to default logging, but remove the verbose description of every step [DHH]
941
+
942
+ * Add the following RJS methods: [Sam Stephenson]
943
+
944
+ * alert - Displays an alert() dialog
945
+ * redirect_to - Changes window.location.href to simulate a browser redirect
946
+ * call - Calls a JavaScript function
947
+ * assign - Assigns to a JavaScript variable
948
+ * << - Inserts an arbitrary JavaScript string
949
+
950
+ * Fix incorrect documentation for form_for [Nicholas Seckar]
951
+
952
+ * Don't include a layout when rendering an rjs template using render's :template option. [Marcel Molina Jr.]
953
+
954
+ *1.1.2* (December 13th, 2005)
955
+
956
+ * Become part of Rails 1.0
957
+
958
+ * Update to script.aculo.us 1.5.0 final (equals 1.5.0_rc6) [Thomas Fuchs]
959
+
960
+ * Update to Prototype 1.4.0 final [Sam Stephenson]
961
+
962
+ * Added form_remote_for (form_for meets form_remote_tag) [DHH]
963
+
964
+ * Update to script.aculo.us 1.5.0_rc6
965
+
966
+ * More robust relative url root discovery for SCGI compatibility. This solves the 'SCGI routes problem' -- you no longer need to prefix all your routes with the name of the SCGI mountpoint. #3070 [Dave Ringoen]
967
+
968
+ * Fix docs for text_area_tag. #3083. [Christopher Cotton]
969
+
970
+ * Change form_for and fields_for method signatures to take object name and object as separate arguments rather than as a Hash. [DHH]
971
+
972
+ * Introduce :selected option to the select helper. Allows you to specify a selection other than the current value of object.method. Specify :selected => nil to leave all options unselected. #2991 [Jonathan Viney <jonathan@bluewire.net.nz>]
973
+
974
+ * Initialize @optional in routing code to avoid warnings about uninitialized access to an instance variable. [Nicholas Seckar]
975
+
976
+ * Make ActionController's render honor the :locals option when rendering a :file. #1665. [Emanuel Borsboom, Marcel Molina Jr.]
977
+
978
+ * Allow assert_tag(:conditions) to match the empty string when a tag has no children. Closes #2959. [Jamis Buck]
979
+
980
+ * Update html-scanner to handle CDATA sections better. Closes #2970. [Jamis Buck]
981
+
982
+ * Don't put flash in session if sessions are disabled. [Jeremy Kemper]
983
+
984
+ * Strip out trailing &_= for raw post bodies. Closes #2868. [Sam Stephenson]
985
+
986
+ * Pass multiple arguments to Element.show and Element.hide in JavaScriptGenerator instead of using iterators. [Sam Stephenson]
987
+
988
+ * Improve expire_fragment documentation. #2966 [court3nay@gmail.com]
989
+
990
+ * Correct docs for automatic layout assignment. #2610. [Charles M. Gerungan]
991
+
992
+ * Always create new AR sessions rather than trying too hard to avoid database traffic. #2731 [Jeremy Kemper]
993
+
994
+ * Update to Prototype 1.4.0_rc4. Closes #2943 (old Array.prototype.reverse behavior can be obtained by passing false as an argument). [Sam Stephenson]
995
+
996
+ * Use Element.update('id', 'html') instead of $('id').innerHTML = 'html' in JavaScriptGenerator#replace_html so that script tags are evaluated. [Sam Stephenson]
997
+
998
+ * Make rjs templates always implicitly skip out on layouts. [Marcel Molina Jr.]
999
+
1000
+ * Correct length for the truncate text helper. #2913 [Stefan Kaes]
1001
+
1002
+ * Update to Prototype 1.4.0_rc3. Closes #1893, #2505, #2550, #2748, #2783. [Sam Stephenson]
1003
+
1004
+ * Add support for new rjs templates which wrap an update_page block. [Marcel Molina Jr.]
1005
+
1006
+ * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
1007
+
1008
+ * Correct time_zone_options_for_select docs. #2892 [pudeyo@rpi.com]
1009
+
1010
+ * Remove the unused, slow response_dump and session_dump variables from error pages. #1222 [lmarlow@yahoo.com]
1011
+
1012
+ * Performance tweaks: use Set instead of Array to speed up prototype helper include? calls. Avoid logging code if logger is nil. Inline commonly-called template presence checks. #2880, #2881, #2882, #2883 [Stefan Kaes]
1013
+
1014
+ * MemCache store may be given multiple addresses. #2869 [Ryan Carver <ryan@fivesevensix.com>]
1015
+
1016
+ * Handle cookie parsing irregularity for certain Nokia phones. #2530 [zaitzow@gmail.com]
1017
+
1018
+ * Added PrototypeHelper::JavaScriptGenerator and PrototypeHelper#update_page for easily modifying multiple elements in an Ajax response. [Sam Stephenson] Example:
1019
+
1020
+ update_page do |page|
1021
+ page.insert_html :bottom, 'list', '<li>Last item</li>'
1022
+ page.visual_effect :highlight, 'list'
1023
+ page.hide 'status-indicator', 'cancel-link'
1024
+ end
1025
+
1026
+ generates the following JavaScript:
1027
+
1028
+ new Insertion.Bottom("list", "<li>Last item</li>");
1029
+ new Effect.Highlight("list");
1030
+ ["status-indicator", "cancel-link"].each(Element.hide);
1031
+
1032
+ * Refactored JavaScriptHelper into PrototypeHelper and ScriptaculousHelper [Sam Stephenson]
1033
+
1034
+ * Update to latest script.aculo.us version (as of [3031])
1035
+
1036
+ * Updated docs for in_place_editor, fixes a couple bugs and offers extended support for external controls [Justin Palmer]
1037
+
1038
+ * Update documentation for render :file. #2858 [Tom Werner]
1039
+
1040
+ * Only include builtin filters whose filenames match /^[a-z][a-z_]*_helper.rb$/ to avoid including operating system metadata such as ._foo_helper.rb. #2855 [court3nay@gmail.com]
1041
+
1042
+ * Added FormHelper#form_for and FormHelper#fields_for that makes it easier to work with forms for single objects also if they don't reside in instance variables [DHH]. Examples:
1043
+
1044
+ <% form_for :person, @person, :url => { :action => "update" } do |f| %>
1045
+ First name: <%= f.text_field :first_name %>
1046
+ Last name : <%= f.text_field :last_name %>
1047
+ Biography : <%= f.text_area :biography %>
1048
+ Admin? : <%= f.check_box :admin %>
1049
+ <% end %>
1050
+
1051
+ <% form_for :person, person, :url => { :action => "update" } do |person_form| %>
1052
+ First name: <%= person_form.text_field :first_name %>
1053
+ Last name : <%= person_form.text_field :last_name %>
1054
+
1055
+ <% fields_for :permission => person.permission do |permission_fields| %>
1056
+ Admin? : <%= permission_fields.check_box :admin %>
1057
+ <% end %>
1058
+ <% end %>
1059
+
1060
+ * options_for_select allows any objects which respond_to? :first and :last rather than restricting to Array and Range. #2824 [Jacob Robbins <jrobbins@cmj.com>, Jeremy Kemper]
1061
+
1062
+ * The auto_link text helper accepts an optional block to format the link text for each url and email address. Example: auto_link(post.body) { |text| truncate(text, 10) } [Jeremy Kemper]
1063
+
1064
+ * assert_tag uses exact matches for string conditions, instead of partial matches. Use regex to do partial matches. #2799 [Jamis Buck]
1065
+
1066
+ * CGI::Session::ActiveRecordStore.data_column_name = 'foobar' to use a different session data column than the 'data' default. [nbpwie102@sneakemail.com]
1067
+
1068
+ * Do not raise an exception when default helper is missing; log a debug message instead. It's nice to delete empty helpers. [Jeremy Kemper]
1069
+
1070
+ * Controllers with acronyms in their names (e.g. PDFController) require the correct default helper (PDFHelper in file pdf_helper.rb). #2262 [jeff@opendbms.com]
1071
+
1072
+
1073
+ *1.11.0* (November 7th, 2005)
1074
+
1075
+ * Added request as instance method to views, so you can do <%= request.env["HTTP_REFERER"] %>, just like you can already access response, session, and the likes [DHH]
1076
+
1077
+ * Fix conflict with assert_tag and Glue gem #2255 [david.felstead@gmail.com]
1078
+
1079
+ * Add documentation to assert_tag indicating that it only works with well-formed XHTML #1937, #2570 [Jamis Buck]
1080
+
1081
+ * Added action_pack.rb stub so that ActionPack::Version loads properly [Sam Stephenson]
1082
+
1083
+ * Added short-hand to assert_tag so assert_tag :tag => "span" can be written as assert_tag "span" [DHH]
1084
+
1085
+ * Added skip_before_filter/skip_after_filter for easier control of the filter chain in inheritance hierachies [DHH]. Example:
1086
+
1087
+ class ApplicationController < ActionController::Base
1088
+ before_filter :authenticate
1089
+ end
1090
+
1091
+ class WeblogController < ApplicationController
1092
+ # will run the :authenticate filter
1093
+ end
1094
+
1095
+ class SignupController < ActionController::Base
1096
+ # will not run the :authenticate filter
1097
+ skip_before_filter :authenticate
1098
+ end
1099
+
1100
+ * Added redirect_to :back as a short-hand for redirect_to(request.env["HTTP_REFERER"]) [DHH]
1101
+
1102
+ * Change javascript_include_tag :defaults to not use script.aculo.us loader, which facilitates the use of plugins for future script.aculo.us and third party javascript extensions, and provide register_javascript_include_default for plugins to specify additional JavaScript files to load. Removed slider.js and builder.js from actionpack. [Thomas Fuchs]
1103
+
1104
+ * Fix problem where redirecting components can cause an infinite loop [Rick Olson]
1105
+
1106
+ * Added support for the queue option on visual_effect [Thomas Fuchs]
1107
+
1108
+ * Update script.aculo.us to V1.5_rc4 [Thomas Fuchs]
1109
+
1110
+ * Fix that render :text didn't interpolate instance variables #2629, #2626 [skaes]
1111
+
1112
+ * Fix line number detection and escape RAILS_ROOT in backtrace Regexp [Nicholas Seckar]
1113
+
1114
+ * Fixed document.getElementsByClassName from Prototype to be speedy again [Sam Stephenson]
1115
+
1116
+ * Recognize ./#{RAILS_ROOT} as RAILS_ROOT in error traces [Nicholas Seckar]
1117
+
1118
+ * Remove ARStore session fingerprinting [Nicholas Seckar]
1119
+
1120
+ * Fix obscure bug in ARStore [Nicholas Seckar]
1121
+
1122
+ * Added TextHelper#strip_tags for removing HTML tags from a string (using HTMLTokenizer) #2229 [marcin@junkheap.net]
1123
+
1124
+ * Added a reader for flash.now, so it's possible to do stuff like flash.now[:alert] ||= 'New if not set' #2422 [Caio Chassot]
1125
+
1126
+
1127
+ *1.10.2* (October 26th, 2005)
1128
+
1129
+ * Reset template variables after using render_to_string [skaes@web.de]
1130
+
1131
+ * Expose the session model backing CGI::Session
1132
+
1133
+ * Abbreviate RAILS_ROOT in traces
1134
+
1135
+
1136
+ *1.10.1* (October 19th, 2005)
1137
+
1138
+ * Update error trace templates [Nicholas Seckar]
1139
+
1140
+ * Stop showing generated routing code in application traces [Nicholas Seckar]
1141
+
1142
+
1143
+ *1.10.0* (October 16th, 2005)
1144
+
1145
+ * Make string-keys locals assigns optional. Add documentation describing depreciated state [skaes@web.de]
1146
+
1147
+ * Improve line number detection for template errors [Nicholas Seckar]
1148
+
1149
+ * Update/clean up documentation (rdoc)
1150
+
1151
+ * Upgrade to Prototype 1.4.0_rc0 [Sam Stephenson]
1152
+
1153
+ * Added assert_vaild. Reports the proper AR error messages as fail message when the passed record is invalid [Tobias Luetke]
1154
+
1155
+ * Add temporary support for passing locals to render using string keys [Nicholas Seckar]
1156
+
1157
+ * Clean up error pages by providing better backtraces [Nicholas Seckar]
1158
+
1159
+ * Raise an exception if an attempt is made to insert more session data into the ActiveRecordStore data column than the column can hold. #2234. [justin@textdrive.com]
1160
+
1161
+ * Removed references to assertions.rb from actionpack assert's backtraces. Makes error reports in functional unit tests much less noisy. [Tobias Luetke]
1162
+
1163
+ * Updated and clarified documentation for JavaScriptHelper to be more concise about the various options for including the JavaScript libs. [Thomas Fuchs]
1164
+
1165
+ * Hide "Retry with Breakpoint" button on error pages until feature is functional. [DHH]
1166
+
1167
+ * Fix Request#host_with_port to use the standard port when Rails is behind a proxy. [Nicholas Seckar]
1168
+
1169
+ * Escape query strings in the href attribute of URLs created by url_helper. #2333 [Michael Schuerig <michael@schuerig.de>]
1170
+
1171
+ * Improved line number reporting for template errors [Nicholas Seckar]
1172
+
1173
+ * Added :locals support for render :inline #2463 [mdabney@cavoksolutions.com]
1174
+
1175
+ * Unset the X-Requested-With header when using the xhr wrapper in functional tests so that future requests aren't accidentally xhr'ed #2352 [me@julik.nl, Sam Stephenson]
1176
+
1177
+ * Unescape paths before writing cache to file system. #1877. [Damien Pollet]
1178
+
1179
+ * Wrap javascript_tag contents in a CDATA section and add a cdata_section method to TagHelper #1691 [Michael Schuerig, Sam Stephenson]
1180
+
1181
+ * Misc doc fixes (typos/grammar/etc). #2445. [coffee2code]
1182
+
1183
+ * Speed improvement for session_options. #2287. [skaes@web.de]
1184
+
1185
+ * Make cacheing binary files friendly with Windows. #1975. [Rich Olson]
1186
+
1187
+ * Convert boolean form options form the tag_helper. #809. [Michael Schuerig <michael@schuerig.de>]
1188
+
1189
+ * Fixed that an instance variable with the same name as a partial should be implicitly passed as the partial :object #2269 [court3nay]
1190
+
1191
+ * Update Prototype to V1.4.0_pre11, script.aculo.us to [2502] [Thomas Fuchs]
1192
+
1193
+ * Make assert_tag :children count appropriately. Closes #2181. [jamie@bravenet.com]
1194
+
1195
+ * Forced newer versions of RedCloth to use hard breaks [DHH]
1196
+
1197
+ * Added new scriptaculous options for auto_complete_field #2343 [m.stienstra@fngtps.com]
1198
+
1199
+ * Don't prepend the asset host if the string is already a fully-qualified URL
1200
+
1201
+ * Updated to script.aculo.us V1.5.0_rc2 and Prototype to V1.4.0_pre7 [Thomas Fuchs]
1202
+
1203
+ * Undo condition change made in [2345] to prevent normal parameters arriving as StringIO.
1204
+
1205
+ * Tolerate consecutive delimiters in query parameters. #2295 [darashi@gmail.com]
1206
+
1207
+ * Streamline render process, code cleaning. Closes #2294. [skae]
1208
+
1209
+ * Keep flash after components are rendered. #2291 [Rick Olson, Scott]
1210
+
1211
+ * Shorten IE file upload path to filename only to match other browsers. #1507 [court3nay@gmail.com]
1212
+
1213
+ * Fix open/save dialog in IE not opening files send with send_file/send_data, #2279 [Thomas Fuchs]
1214
+
1215
+ * Fixed that auto_discovery_link_tag couldn't take a string as the URL [DHH]
1216
+
1217
+ * Fixed problem with send_file and WEBrick using stdout #1812 [DHH]
1218
+
1219
+ * Optimized tag_options to not sort keys, which is no longer necessary when assert_dom_equal and friend is available #1995 [skae]
1220
+
1221
+ * Added assert_dom_equal and assert_dom_not_equal to compare tags generated by the helpers in an order-indifferent manner #1995 [skae]
1222
+
1223
+ * Fixed that Request#domain caused an exception if the domain header wasn't set in the original http request #1795 [Michael Koziarski]
1224
+
1225
+ * Make the truncate() helper multi-byte safe (assuming $KCODE has been set to something other than "NONE") #2103
1226
+
1227
+ * Add routing tests from #1945 [ben@groovie.org]
1228
+
1229
+ * Add a routing test case covering #2101 [Nicholas Seckar]
1230
+
1231
+ * Cache relative_url_root for all webservers, not just Apache #2193 [skae]
1232
+
1233
+ * Speed up cookie use by decreasing string copying #2194 [skae]
1234
+
1235
+ * Fixed access to "Host" header with requests made by crappy old HTTP/1.0 clients #2124 [Marcel Molina]
1236
+
1237
+ * Added easy assignment of fragment cache store through use of symbols for included stores (old way still works too)
1238
+
1239
+ Before:
1240
+ ActionController::Base.fragment_cache_store =
1241
+ ActionController::Base::Caching::Fragments::FileStore.new("/path/to/cache/directory")
1242
+
1243
+ After:
1244
+ ActionController::Base.fragment_cache_store = :file_store, "/path/to/cache/directory"
1245
+
1246
+ * Added ActionController::Base.session_store=, session_store, and session_options to make it easier to tweak the session options (instead of going straight to ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS)
1247
+
1248
+ * Added TextHelper#cycle to cycle over an array of values on each hit (useful for alternating row colors etc) #2154 [dave-ml@dribin.org]
1249
+
1250
+ * Ensure that request.path never returns nil. Closes #1675 [Nicholas Seckar]
1251
+
1252
+ * Add ability to specify Route Regexps for controllers. Closes #1917. [Sebastian Kanthak]
1253
+
1254
+ * Provide Named Route's hash methods as helper methods. Closes #1744. [Nicholas Seckar, Steve Purcell]
1255
+
1256
+ * Added :multipart option to ActiveRecordHelper#form to make it possible to add file input fields #2034 [jstirk@oobleyboo.com]
1257
+
1258
+ * Moved auto-completion and in-place editing into the Macros module and their helper counterparts into JavaScriptMacrosHelper
1259
+
1260
+ * Added in-place editing support in the spirit of auto complete with ActionController::Base.in_place_edit_for, JavascriptHelper#in_place_editor_field, and Javascript support from script.aculo.us #2038 [Jon Tirsen]
1261
+
1262
+ * Added :disabled option to all data selects that'll make the elements inaccessible for change #2167, #253 [eigentone]
1263
+
1264
+ * Fixed that TextHelper#auto_link_urls would include punctuation in the links #2166, #1671 [eigentone]
1265
+
1266
+ * Fixed that number_to_currency(1000, {:precision => 0})) should return "$1,000", instead of "$1,000." #2122 [sd@notso.net]
1267
+
1268
+ * Allow link_to_remote to use any DOM-element as the parent of the form elements to be submitted #2137 [erik@ruby-lang.nl]. Example:
1269
+
1270
+ <tr id="row023">
1271
+ <td><input name="foo"/></td>
1272
+ <td><input name="bar"/></td>
1273
+ <td><%= link_to_remote 'Save', :update => "row023",
1274
+ :submit => "row023", :url => {:action => 'save_row'} %></td>
1275
+ </tr>
1276
+
1277
+ * Fixed that render :partial would fail when :object was a Hash (due to backwards compatibility issues) #2148 [Sam Stephenson]
1278
+
1279
+ * Fixed JavascriptHelper#auto_complete_for to only include unique items #2153 [Thomas Fuchs]
1280
+
1281
+ * Fixed all AssetHelper methods to work with relative paths, such that javascript_include_tag('stdlib/standard') will look in /javascripts/stdlib/standard instead of '/stdlib/standard/' #1963
1282
+
1283
+ * Avoid extending view instance with helper modules each request. Closes #1979
1284
+
1285
+ * Performance improvements to CGI methods. Closes #1980 [Skaes]
1286
+
1287
+ * Added :post option to UrlHelper#link_to that makes it possible to do POST requests through normal ahref links using Javascript
1288
+
1289
+ * Fixed overwrite_params
1290
+
1291
+ * Added ActionController::Base.benchmark and ActionController::Base.silence to allow for easy benchmarking and turning off the log
1292
+
1293
+ * Updated vendor copy of html-scanner to support better xml parsing
1294
+
1295
+ * Added :popup option to UrlHelper#link_to #1996 [gabriel.gironda@gmail.com]. Examples:
1296
+
1297
+ link_to "Help", { :action => "help" }, :popup => true
1298
+ link_to "Busy loop", { :action => "busy" }, :popup => ['new_window', 'height=300,width=600']
1299
+
1300
+ * Drop trailing \000 if present on RAW_POST_DATA (works around bug in Safari Ajax implementation) #918
1301
+
1302
+ * Fix observe_field to fall back to event-based observation if frequency <= 0 #1916 [michael@schubert.cx]
1303
+
1304
+ * Allow use of the :with option for submit_to_remote #1936 [jon@instance-design.co.uk]
1305
+
1306
+ * AbstractRequest#domain returns nil when host is an ip address #2012 [kevin.clark@gmail.com]
1307
+
1308
+ * ActionController documentation update #2051 [fbeausoleil@ftml.net]
1309
+
1310
+ * Yield @content_for_ variables to templates #2058 [Sam Stephenson]
1311
+
1312
+ * Make rendering an empty partial collection behave like :nothing => true #2080 [Sam Stephenson]
1313
+
1314
+ * Add option to specify the singular name used by pagination.
1315
+
1316
+ * Use string key to obtain action value. Allows indifferent hashes to be disabled.
1317
+
1318
+ * Added ActionView::Base.cache_template_loading back.
1319
+
1320
+ * Rewrote compiled templates to decrease code complexity. Removed template load caching in favour of compiled caching. Fixed template error messages. [Nicholas Seckar]
1321
+
1322
+ * Fix Routing to handle :some_param => nil better. [Nicholas Seckar, Luminas]
1323
+
1324
+ * Add support for :include with pagination (subject to existing constraints for :include with :limit and :offset) #1478 [michael@schubert.cx]
1325
+
1326
+ * Prevent the benchmark module from blowing up if a non-HTTP/1.1 request is processed
1327
+
1328
+ * Added :use_short_month option to select_month helper to show month names as abbreviations
1329
+
1330
+ * Make link_to escape the javascript in the confirm option #1964 [nicolas.pouillard@gmail.com]
1331
+
1332
+ * Make assert_redirected_to properly check URL's passed as strings #1910 [Scott Barron]
1333
+
1334
+ * Make sure :layout => false is always used when rendering inside a layout
1335
+
1336
+ * Use raise instead of assert_not_nil in Test::Unit::TestCase#process to ensure that the test variables (controller, request, response) have been set
1337
+
1338
+ * Make sure assigns are built for every request when testing #1866
1339
+
1340
+ * Allow remote_addr to be queried on TestRequest #1668
1341
+
1342
+ * Fixed bug when a partial render was passing a local with the same name as the partial
1343
+
1344
+ * Improved performance of test app req/sec with ~10% refactoring the render method #1823 [Stefan Kaes]
1345
+
1346
+ * Improved performance of test app req/sec with 5-30% through a series of Action Pack optimizations #1811 [Stefan Kaes]
1347
+
1348
+ * Changed caching/expiration/hit to report using the DEBUG log level and errors to use the ERROR log level instead of both using INFO
1349
+
1350
+ * Added support for per-action session management #1763
1351
+
1352
+ * Improved rendering speed on complicated templates by up to 100% (the more complex the templates, the higher the speedup) #1234 [Stephan Kaes]. This did necessasitate a change to the internals of ActionView#render_template that now has four parameters. Developers of custom view handlers (like Amrita) need to update for that.
1353
+
1354
+ * Added options hash as third argument to FormHelper#input, so you can do input('person', 'zip', :size=>10) #1719 [jeremye@bsa.ca.gov]
1355
+
1356
+ * Added Base#expires_in(seconds)/Base#expires_now to control HTTP content cache headers #1755 [Thomas Fuchs]
1357
+
1358
+ * Fixed line number reporting for Builder template errors #1753 [piotr]
1359
+
1360
+ * Fixed assert_routing so that testing controllers in modules works as expected [Nicholas Seckar, Rick Olson]
1361
+
1362
+ * Fixed bug with :success/:failure callbacks for the JavaScriptHelper methods #1730 [court3nay/Thomas Fuchs]
1363
+
1364
+ * Added named_route method to RouteSet instances so that RouteSet instance methods do not prevent certain names from being used. [Nicholas Seckar]
1365
+
1366
+ * Fixed routes so that routes which do not specify :action in the path or in the requirements have a default of :action => 'index', In addition, fixed url generation so that :action => 'index' does not need to be provided for such urls. [Nicholas Seckar, Markjuh]
1367
+
1368
+ * Worked around a Safari bug where it wouldn't pass headers through if the response was zero length by having render :nothing return ' ' instead of ''
1369
+
1370
+ * Fixed Request#subdomains to handle "foo.foo.com" correctly
1371
+
1372
+
1373
+ *1.9.1* (11 July, 2005)
1374
+
1375
+ * Fixed that auto_complete_for didn't force the input string to lower case even as the db comparison was
1376
+
1377
+ * Fixed that Action View should always use the included Builder, never attempt to require the gem, to ensure compatibility
1378
+
1379
+ * Added that nil options are not included in tags, so tag("p", :ignore => nil) now returns <p /> not <p ignore="" /> but that tag("p", :ignore => "") still includes it #1465 [michael@schuerig.de]
1380
+
1381
+ * Fixed that UrlHelper#link_to_unless/link_to_if used html_escape on the name if no link was to be applied. This is unnecessary and breaks its use with images #1649 [joergd@pobox.com]
1382
+
1383
+ * Improved error message for DoubleRenderError
1384
+
1385
+ * Fixed routing to allow for testing of *path components #1650 [Nicholas Seckar]
1386
+
1387
+ * Added :handle as an option to sortable_element to restrict the drag handle to a given class #1642 [thejohnny]
1388
+
1389
+ * Added a bunch of script.aculo.us features #1644, #1677, #1695 [Thomas Fuchs]
1390
+ * Effect.ScrollTo, to smoothly scroll the page to an element
1391
+ * Better Firefox flickering handling on SlideUp/SlideDown
1392
+ * Removed a possible memory leak in IE with draggables
1393
+ * Added support for cancelling dragging my hitting ESC
1394
+ * Added capability to remove draggables/droppables and redeclare sortables in dragdrop.js (this makes it possible to call sortable_element on the same element more than once, e.g. in AJAX returns that modify the sortable element. all current sortable 'stuff' on the element will be discarded and the sortable will be rebuilt)
1395
+ * Always reset background color on Effect.Highlight; this make change backwards-compatibility, to be sure include style="background-color:(target-color)" on your elements or else elements will fall back to their CSS rules (which is a good thing in most circumstances)
1396
+ * Removed circular references from element to prevent memory leaks (still not completely gone in IE)
1397
+ * Changes to class extension in effects.js
1398
+ * Make Effect.Highlight restore any previously set background color when finishing (makes effect work with CSS classes that set a background color)
1399
+ * Fixed myriads of memory leaks in IE and Gecko-based browsers [David Zülke]
1400
+ * Added incremental and local autocompleting and loads of documentation to controls.js [Ivan Krstic]
1401
+ * Extended the auto_complete_field helper to accept tokens option
1402
+ * Changed object extension mechanism to favor Object.extend to make script.aculo.us easily adaptable to support 3rd party libs like IE7.js [David Zülke]
1403
+
1404
+ * Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]
1405
+
1406
+ * Fixed JavascriptHelper#visual_effect to use camelize such that :blind_up will work #1639 [pelletierm@eastmedia.net]
1407
+
1408
+ * Fixed that a SessionRestoreError was thrown if a model object was placed in the session that wasn't available to all controllers. This means that it's no longer necessary to use the 'model :post' work-around in ApplicationController to have a Post model in your session.
1409
+
1410
+
1411
+ *1.9.0* (6 July, 2005)
1412
+
1413
+ * Added logging of the request URI in the benchmark statement (makes it easy to grep for slow actions)
1414
+
1415
+ * Added javascript_include_tag :defaults shortcut that'll include all the default javascripts included with Action Pack (prototype, effects, controls, dragdrop)
1416
+
1417
+ * Cache several controller variables that are expensive to calculate #1229 [skaes@web.de]
1418
+
1419
+ * The session class backing CGI::Session::ActiveRecordStore may be replaced with any class that duck-types with a subset of Active Record. See docs for details #1238 [skaes@web.de]
1420
+
1421
+ * Fixed that hashes was not working properly when passed by GET to lighttpd #849 [Nicholas Seckar]
1422
+
1423
+ * Fixed assert_template nil will be true when no template was rendered #1565 [maceywj@telus.net]
1424
+
1425
+ * Added :prompt option to FormOptions#select (and the users of it, like FormOptions#select_country etc) to create "Please select" style descriptors #1181 [Michael Schuerig]
1426
+
1427
+ * Added JavascriptHelper#update_element_function, which returns a Javascript function (or expression) that'll update a DOM element according to the options passed #933 [mortonda@dgrmm.net]. Examples:
1428
+
1429
+ <%= update_element_function("products", :action => :insert, :position => :bottom, :content => "<p>New product!</p>") %>
1430
+
1431
+ <% update_element_function("products", :action => :replace, :binding => binding) do %>
1432
+ <p>Product 1</p>
1433
+ <p>Product 2</p>
1434
+ <% end %>
1435
+
1436
+ * Added :field_name option to DateHelper#select_(year|month|day) to deviate from the year/month/day defaults #1266 [Marcel Molina]
1437
+
1438
+ * Added JavascriptHelper#draggable_element and JavascriptHelper#drop_receiving_element to facilitate easy dragging and dropping through the script.aculo.us libraries #1578 [Thomas Fuchs]
1439
+
1440
+ * Added that UrlHelper#mail_to will now also encode the default link title #749 [f.svehla@gmail.com]
1441
+
1442
+ * Removed the default option of wrap=virtual on FormHelper#text_area to ensure XHTML compatibility #1300 [thomas@columbus.rr.com]
1443
+
1444
+ * Adds the ability to include XML CDATA tags using Builder #1563 [Josh Knowles]. Example:
1445
+
1446
+ xml.cdata! "some text" # => <![CDATA[some text]]>
1447
+
1448
+ * Added evaluation of <SCRIPT> blocks in content returned to Ajax calls #1577 [Thomas Fuchs/court3nay/Sean Treadway]
1449
+
1450
+ * Directly generate paths with a leading slash instead of tacking it on later. #1543 [Nicholas Seckar]
1451
+
1452
+ * Fixed errant parameter modification in functional tests. #1542 [Nicholas Seckar]
1453
+
1454
+ * Routes fail with leading slash #1540 [Nicholas Seckar]
1455
+
1456
+ * Added support for graceful error handling of Ajax calls #1217 [Jamis Buck/Thomas Fuchs]. Example:
1457
+
1458
+ link_to_remote(
1459
+ "test",
1460
+ :url => { :action => "faulty" },
1461
+ :update => { :success => "good", :failure => "bad" },
1462
+ 403 => "alert('Forbidden- got ya!')",
1463
+ 404 => "alert('Nothing there...?')",
1464
+ :failure => "alert('Unkown error ' + request.status)")
1465
+
1466
+ * Attempt to explicitly flush the output at the end of CgiProcess#out
1467
+
1468
+ * Fixed assert_redirected_to to handle absolute controller paths properly #1472 [Rick Olson/Nicholas Seckar]
1469
+
1470
+ * Added event-based observations when frequency is not set on observe_field/form #1474 [flash@vanklinkenbergsoftware.nl]
1471
+
1472
+ * Added script.aculo.us Javascripts (controls.js, dragdrop.js, effects.js) (NEEDS MORE DESCRIPTION) #1509 [Thomas Fuchs]
1473
+
1474
+ * Fixed prototype to consider all fields it doesn't know as text (such as Safari's search) just like the browser in its serialization #1497 [Sean Treadway]
1475
+
1476
+ * Improved performance of Routes generation by a factor of 5 #1434 [Nicholas Seckar]
1477
+
1478
+ * Added named routes (NEEDS BETTER DESCRIPTION) #1434 [Nicholas Seckar]
1479
+
1480
+ * Improved AbstractRequest documentation #1483 [court3nay@gmail.com]
1481
+
1482
+ * Added ActionController::Base.allow_concurrency to control whether the application is thread-safe, so multi-threaded servers like WEBrick knows whether to apply a mutex around the performance of each action. Turned off by default. EXPERIMENTAL FEATURE.
1483
+
1484
+ * Added TextHelper#word_wrap(text, line_length = 80) #1449 [tuxie@dekadance.se]
1485
+
1486
+ * Added a fall-through action for form_remote_tag that'll be used in case Javascript is unavailable #1459 [Scott Barron]. Example:
1487
+
1488
+ form_remote_tag :html => { :action => url_for(:controller => "some", :action => "place") }
1489
+
1490
+ * Added :xhr => true/false option to verify so you can ensure that a request is coming from an Ajax call or not #1464 [Thomas Fuchs]
1491
+
1492
+ * Added tag_options as a third parameter to AssetHelper#auto_discovery_link_tag to control options like the title of the link #1430 [kevin.clark@gmail.com]
1493
+
1494
+ * Added option to pass in parameters to CaptureHelper#capture, so you can create more advanced view helper methods #1466 [duane.johnson@gmail.com]. Example:
1495
+
1496
+ <% show_calendar(:year => 2005, :month => 6) do |day, options| %>
1497
+ <% options[:bgcolor] = '#dfd' if 10..15.include? day %>
1498
+ [<%= day %>]
1499
+ <% end %>
1500
+
1501
+ * Changed the default name of the input tag generated by FormTagHelper#submit_tag from "submit" to "commit" so it doesn't clash with form.submit() calls in Javascript #1271
1502
+
1503
+ * Fixed relative urls support for lighttpd #1048 [Nicholas Seckar/maznawak@nerim.net]
1504
+
1505
+ * Correct distance_of_time_in_words for integer arguments and make the second arg optional, treating the first arg as a duration in seconds. #1458 [madrobby <thomas@fesch.at>]
1506
+
1507
+ * Fixed query parser to deal gracefully with equal signs inside keys and values #1345 [gorou].
1508
+ Example: /?sig=abcdef=:foobar=&x=y will pass now.
1509
+
1510
+ * Added Cuba to country list #1351 [todd]
1511
+
1512
+ * Fixed radio_button to work with numeric values #1352 [demetrius]
1513
+
1514
+ * Added :extension option to NumberHelper#number_to_phone #1361 [delynnb]
1515
+
1516
+ * Added button_to as a form-based solution to deal with harmful actions that should be hidden behind POSTs. This makes it just as easy as link_to to create a safe trigger for actions like destroy, although it's limited by being a block element, the fixed look, and a no-no inside other forms. #1371 [tom@moertel.com]
1517
+
1518
+ * Fixed image_tag so an exception is not thrown just because the image is missing and alt value can't be generated #1395 [Marcel]
1519
+
1520
+ * Added a third parameter to TextHelper#auto_link called href_options for specifying additional tag options on the links generated #1401 [tyler.kovacs@gmail.com]. Example: auto_link(text, :all, { :target => "_blank" }) to have all the generated links open in a new window.
1521
+
1522
+ * Fixed TextHelper#highlight to return the text, not nil, if the phrase is blank #1409 [patrick@lenz.sh]
1523
+
1524
+ * Fixed TagHelper such that :name and 'name' keys in the options doesn't result in two attributes #1455 [take_tk]
1525
+
1526
+ * Ensure that helpers are only available to the controllers where they are defined and their subclasses. #1394 [kdole@tamu.edu]
1527
+
1528
+ * render("foo/bar") works with a layout again
1529
+
1530
+ * Fixed double-singularization on scaffolded pagination call (Address would be turned into Addres) #1216, #1404 [nilsga]
1531
+
1532
+ * Removed the require hack used by functional testing to work around an earlier bug in rake.
1533
+
1534
+ * Allow distance_of_time_in_words to work with any value that responds to #to_time (like dates) #969
1535
+
1536
+ * Support :render option for :verify #1440 [TobiasLuetke]
1537
+
1538
+ * Updated vendor copy of html-scanner lib to 0.5.2, for bug fixes and optimizations. The :content option may be used as expected--to find a tag whose textual content is a particular value--in assert_tag, now.
1539
+
1540
+ * Changed test requests to come from 0.0.0.0 instead of 127.0.0.1 such that they don't trigger debugging screens on exceptions, but instead call rescue_action_in_public
1541
+
1542
+ * Modernize scaffolding to match the generator: use the new render method and change style from the warty @params["id"] to the sleek params[:id]. #1367
1543
+
1544
+ * Include :id in the action generated by the form helper method. Then, for example, the controller can do Model.find(params[:id]) for both edit and update actions. Updated scaffolding to take advantage. #1367
1545
+
1546
+ * Add assertions with friendly messages to TestCase#process to ensure that @controller, @request, and @response are set. #1367
1547
+
1548
+ * Arrays, hashes sent via multipart posts are converted to strings #1032 [dj@omelia.org, me@julik.nl]
1549
+
1550
+ * render(:layout => true) is a synonym for render(:layout => nil)
1551
+
1552
+ * Make sure the benchmarking render method always returns the output of the render.
1553
+
1554
+ * render(:action), render(:template) and render() are the only three calls that default to using a layout. All other render calls assume :layout => false. This also fixes send_file, which was applying a layout if one existed for the current action.
1555
+
1556
+ * verify with :redirect_to won't redirect if a redirect or render has already been performed #1350
1557
+
1558
+ * render(:partial => true) is identical to the behavior of the deprecated render_partial()
1559
+
1560
+ * Fixed render(:partial => "...") to use an empty Hash for the local assigns #1365
1561
+
1562
+ * Fixed Caching::Fragments::FileStore.delete to not raise an exception if the delete fails.
1563
+
1564
+ * Deprecated all render_* methods in favor of consolidating all rendering behavior in Base#render(options). This enables more natural use of combining options, such as layouts. Examples:
1565
+
1566
+ +---------------------------------------------------------------+-------------------------------------------------------+
1567
+ | BEFORE | AFTER |
1568
+ +---------------------------------------------------------------+-------------------------------------------------------+
1569
+ | render_with_layout "weblog/show", "200 OK", "layouts/dialog" | render :action => "show", :layout => "dialog" |
1570
+ | render_without_layout "weblog/show" | render :action => "show", :layout => false |
1571
+ | render_action "error", "404 Not Found" | render :action => "error", :status => "404 Not Found" |
1572
+ | render_template "xml.div('stuff')", "200 OK", :rxml | render :inline => "xml.div('stuff')", :type => :rxml |
1573
+ | render_text "hello world!" | render :text => "hello world!" |
1574
+ | render_partial_collection "person", @people, nil, :a => 1 | render :partial => "person", :collection => @people, |
1575
+ | | :locals => { :a => 1 } |
1576
+ +---------------------------------------------------------------+-------------------------------------------------------+
1577
+
1578
+ * Deprecated redirect_to_path and redirect_to_url in favor of letting redirect_to do the right thing when passed either a path or url.
1579
+
1580
+ * Fixed use of an integer as return code for renders, so render_text "hello world", 404 now works #1327
1581
+
1582
+ * Fixed assert_redirect_to to work with redirect_to_path #869 [Nicholas Seckar]
1583
+
1584
+ * Fixed escaping of :method option in remote_form_tag #1218 [Rick Olson]
1585
+
1586
+ * Added Serbia and Montenegro to the country_select #1239 [todd@robotcoop.com]
1587
+
1588
+ * Fixed Request#remote_ip in testing #1251 [Jeremy Kemper]
1589
+
1590
+ * Fixed that compute_public_path should recognize external URLs, so image_tag("http://www.example.com/images/icon.gif") is not prefixed with the relative url path #1254 [victor-ronr-trac@carotena.net]
1591
+
1592
+ * Added support for descending year values in DateHelper#select_year, like select_year(Date.today, :start_year => 2005, :end_year => 1900), which would count down from 2005 to 1900 instead of the other way #1274 [nwoods@mail.com]
1593
+
1594
+ * Fixed that FormHelper#checkbox should return a checked checkbox if the value is the same as checked_value #1286 [Florian Weber]
1595
+
1596
+ * Fixed Form.disable in Prototype #1317 [Wintermute]
1597
+
1598
+ * Added accessors to logger, params, response, session, flash, and headers from the view, so you can write <% logger.info "stuff" %> instead of <% @logger.info "others" %> -- more consistent with the preferred way of accessing these attributes and collections from the controller
1599
+
1600
+ * Added support for POST data in form of YAML or XML, which is controller through the Content-Type header. Example request:
1601
+
1602
+ Content-Type: application/xml
1603
+ <request><item><content>HelloWorld</content></item></request>
1604
+
1605
+ ...is the same as:
1606
+
1607
+ Content-Type: application/x-yaml
1608
+ ---
1609
+ item:
1610
+ content: HelloWorld
1611
+
1612
+ ...is the same as:
1613
+
1614
+ item[content]=HelloWorld
1615
+
1616
+ Which in the end turns into { "item" => { "content" => "HelloWorld" } }. This makes it a lot easier to publish REST web services on top of your regular actions (as they won't care).
1617
+
1618
+ Example Curl call:
1619
+
1620
+ curl -H 'Content-Type: application/xml' -d '<request><item><content>KillMeMore</content></item></request>' http://www.example.com/service
1621
+
1622
+ You can query to find out whether a given request came through as one of these types with:
1623
+ - request.post_format? (:url_encoded, :xml or :yaml)
1624
+ - request.formatted_post? (for either xml or yaml)
1625
+ - request.xml_post?
1626
+ - request.yaml_post?
1627
+
1628
+ * Added bundling of XmlSimple by Maik Schmidt
1629
+
1630
+ * Fixed that render_partial_collection should always return a string (and not sometimes an array, despite <%= %> not caring)
1631
+
1632
+ * Added TextHelper#sanitize that can will remove any Javascript handlers, blocks, and forms from an input of HTML. This allows for use of HTML on public sites, but still be free of XSS issues. #1277 [Jamis Buck]
1633
+
1634
+ * Fixed the HTML scanner used by assert_tag where a infinite loop could be caused by a stray less-than sign in the input #1270 [Jamis Buck]
1635
+
1636
+ * Added functionality to assert_tag, so you can now do tests on the siblings of a node, to assert that some element comes before or after the element in question, or just to assert that some element exists as a sibling #1226 [Jamis Buck]
1637
+
1638
+ * Added better error handling for regexp caching expiration
1639
+
1640
+ * Fixed handling of requests coming from unknown HTTP methods not to kill the server
1641
+
1642
+ * Added that both AssetHelper#stylesheet_link_tag and AssetHelper#javascript_include_tag now accept an option hash as the last parameter, so you can do stuff like: stylesheet_link_tag "style", :media => "all"
1643
+
1644
+ * Added FormTagHelper#image_submit_tag for making submit buttons that uses images
1645
+
1646
+ * Added ActionController::Base.asset_host that will then be used by all the asset helpers. This enables you to easily offload static content like javascripts and images to a separate server tuned just for that.
1647
+
1648
+ * Fixed action/fragment caching using the filestore when a directory and a file wanted to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com]
1649
+
1650
+ * Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko]
1651
+
1652
+ * Fixed assert_redirected_to to work with :only_path => false #1204 [Alisdair McDiarmid]
1653
+
1654
+ * Fixed render_partial_collection to output an empty string instead of nil when handed an empty array #1202 [Ryan Carver]
1655
+
1656
+ * Improved the speed of regular expression expirations for caching by a factor of 10 #1221 [Jamis Buck]
1657
+
1658
+ * Removed dumping of template assigns on the rescue page as it would very easily include a ton of data making page loads take seconds (and the information was rarely helpful) #1222
1659
+
1660
+ * Added BenchmarkHelper that can measure the execution time of a block in a template and reports the result to the log. Example:
1661
+
1662
+ <% benchmark "Notes section" do %>
1663
+ <%= expensive_notes_operation %>
1664
+ <% end %>
1665
+
1666
+ Will add something like "Notes section (0.345234)" to the log.
1667
+
1668
+ * Added ActionController::Caching::Sweeper as an improved an easier to use sweeper. The new sweepers work on a single-step approach instead of two-steps like the old ones. Before
1669
+
1670
+ def after_save(record)
1671
+ @list = record.is_a?(List) ? record : record.list
1672
+ end
1673
+
1674
+ def filter(controller)
1675
+ controller.expire_page(:controller => "lists", :action => %w( show public feed ), :id => @list.id)
1676
+ controller.expire_action(:controller => "lists", :action => "all")
1677
+ @list.shares.each { |share| controller.expire_page(:controller => "lists", :action => "show", :id => share.url_key) }
1678
+ end
1679
+
1680
+ ..after:
1681
+
1682
+ def after_save(record)
1683
+ list = record.is_a?(List) ? record : record.list
1684
+ expire_page(:controller => "lists", :action => %w( show public feed ), :id => list.id)
1685
+ expire_action(:controller => "lists", :action => "all")
1686
+ list.shares.each { |share| expire_page(:controller => "lists", :action => "show", :id => share.url_key) }
1687
+ end
1688
+
1689
+ The new sweepers can also observe on the actions themselves by implementing methods according to (before|after)_$controller_$action. Example of a callback that'll be called after PagesController#update_title has been performed:
1690
+
1691
+ def after_pages_update_title
1692
+ expire_fragment(%r{pages/#{controller.assigns["page"].id}/.*})
1693
+ end
1694
+
1695
+ Note that missing_method is delegated to the controller instance, which is assigned in a before filter. This means that you can call expire_fragment instead of @controller.expire_fragment.
1696
+
1697
+ * Added that Fragments#expire_fragment now accepts as a regular expression as the name thereby deprecating expire_matched_fragments
1698
+
1699
+ * Fixed that fragments shouldn't use the current host and the path as part of the key like pages does
1700
+
1701
+ * Added conditions to around_filters just like before_filter and after_filter
1702
+
1703
+
1704
+ *1.8.1* (20th April, 2005)
1705
+
1706
+ * Added xml_http_request/xhr method for simulating XMLHttpRequest in functional tests #1151 [Sam Stephenson]. Example:
1707
+
1708
+ xhr :post, :index
1709
+
1710
+ * Fixed that Ajax.Base.options.asynchronous wasn't being respected in Ajax.Request (thanks Jon Casey)
1711
+
1712
+ * Fixed that :get, :post, and the others should take a flash array as the third argument just like process #1144 [rails@cogentdude.com]
1713
+
1714
+ * Fixed a problem with Flash.now
1715
+
1716
+ * Fixed stringification on all assigned hashes. The sacrifice is that assigns[:person] won't work in testing. Instead assigns["person"] or assigns(:person) must be used. In other words, the keys of assigns stay strings but we've added a method-based accessor to appease the need for symbols.
1717
+
1718
+ * Fixed that rendering a template would require a connection to the database #1146
1719
+
1720
+
1721
+ *1.8.0* (19th April, 2005)
1722
+
1723
+ * Added assert_tag and assert_no_tag as a much improved alternative to the deprecated assert_template_xpath_match #1126 [Jamis Buck]
1724
+
1725
+ * Deprecated the majority of all the testing assertions and replaced them with a much smaller core and access to all the collections the old assertions relied on. That way the regular test/unit assertions can be used against these. Added documentation about how to use it all.
1726
+
1727
+ * Added a wide range of new Javascript effects:
1728
+ * Effect.Puff zooms the element out and makes it smoothly transparent at the same time, giving a "puff" illusion #996 [thomas@fesch.at]
1729
+ After the animation is completed, the display property will be set to none.
1730
+ This effect will work on relative and absolute positioned elements.
1731
+
1732
+ * Effect.Appear as the opposite of Effect.Fade #990 [thomas@fesch.at]
1733
+ You should return elements with style="display:none;" or a like class for this to work best and have no chance of flicker.
1734
+
1735
+ * Effect.Squish for scaling down an element and making it disappear at the end #972 [thomas@fesch.at]
1736
+
1737
+ * Effect.Scale for smoothly scaling images or text up and down #972 [thomas@fesch.at]
1738
+
1739
+ * Effect.Fade which smoothly turns opacity from 100 to 0 and then hides the element #960 [thomas@fesch.at]
1740
+
1741
+ * Added Request#xml_http_request? (and an alias xhr?) to that'll return true when the request came from one of the Javascript helper methods (Ajax). This can be used to give one behavior for modern browsers supporting Ajax, another to old browsers #1127 [Sam Stephenson]
1742
+
1743
+ * Changed render_partial to take local assigns as the second parameter instead of an explicit object and then the assigns. So the API changes from:
1744
+
1745
+ <%= render_partial "account", person, "rules" => regulations.rules %>
1746
+
1747
+ ...to:
1748
+
1749
+ <%= render_partial "account", :account => person, :rules => regulations.rules %>
1750
+
1751
+ The old API will still work, though, and render_partial "account" will still assume :account => @account.
1752
+
1753
+ * Added support for web servers that use PATH_INFO instead of REQUEST_URI like IIS #1014 [BradG/Nicholas Seckar]
1754
+
1755
+ * Added graceful handling of PUT, DELETE, and OPTIONS requests for a complete coverage of REST functionality #1136 [joshknowles@gmail.com]
1756
+
1757
+ * Fixed that you can now pass an alternative :href option to link_to_function/remote in order to point to somewhere other than # if the javascript fails or is turned off. You can do the same with form_remote_tag by passing in :action. #1113 [Sam Stephenson]
1758
+
1759
+ * Fixed DateHelper to return values on the option tags such that they'll work properly in IE with form_remote_tag #1024 [Scott Raymond]
1760
+
1761
+ * Fixed FormTagHelper#check_box to respect checked #1049 [DelynnB]
1762
+
1763
+ * Added that render_partial called from a controller will use the action name as default #828 [Dan Peterson]
1764
+
1765
+ * Added Element.toggle, Element.show, and Element.hide to the prototype javascript library. Toggle.display has been deprecated, but will still work #992 [Lucas Carlson]
1766
+
1767
+ * Added that deleting a cookie should not just set it to an empty string but also instantly expire it #1118 [todd@robotcoop.com]
1768
+
1769
+ * Added AssetTagHelper#image_path, AssetTagHelper#javascript_path, and AssetTagHelper#stylesheet_path #1110 [Larry Halff]
1770
+
1771
+ * Fixed url_for(nil) in functional tests #1116 [Alisdair McDiarmid]
1772
+
1773
+ * Fixed error handling of broken layouts #1115 [Michael Schubert]
1774
+
1775
+ * Added submit_to_remote that allows you to trigger an Ajax form submition at the click of the submission button, which allows for multiple targets in a single form through the use of multiple submit buttons #930 [yrashk@gmail.com]
1776
+
1777
+ * Fixed pagination to work with joins #1034 [scott@sigkill.org]
1778
+
1779
+ * Fixed that *rest parameter in map.connect couldn't accept an empty list #1037 [Dee.Zsombor@gmail.com]
1780
+
1781
+ * Added :confirm option to link_to_remote just like link_to has #1082 [yrashk@fp.org.ua]
1782
+
1783
+ * Added minute_step as an option to select_minute (and the helpers that use it) to jump in larger increments than just 1 minute. At 15, it would return 0, 15, 30, 45 options #1085 [ordwaye@evergreen.edu]
1784
+
1785
+ * Fixed that an exception would be thrown when an empty form was submitted #1090 [jan@ulbrich-boerwang.de]
1786
+
1787
+ * Moved TextHelper#human_size to NumberHelper#number_to_human_size, but kept an deprecated alias to the old method name
1788
+
1789
+ * Fixed that the content-type for some browsers could include an additional \r which made wonky things happen #1067 [Thomas Fuchs]
1790
+
1791
+ * Fixed that radio buttons shouldn't have a default size attribute #1074 [hendrik@mans.de]
1792
+
1793
+ * Added ActionView::Helpers::InstanceTag::DEFAULT_RADIO_OPTIONS that contains a hash of default options for radio buttons #1074 [hendrik@mans.de]
1794
+
1795
+ * Fixed that in some circumstances controllers outside of modules may have hidden ones inside modules. For example, admin/content might have been hidden by /content. #1075 [Nicholas Seckar]
1796
+
1797
+ * Added JavascriptHelper#periodically_call_remote in order to create areas of a page that update automatically at a set interval #945 [Jon Tirsen]
1798
+
1799
+ * Fixed Cache#expire_matched_fragments that couldn't recognize the difference between string and url_for options #1030 [skaes@web.de]
1800
+
1801
+ * Added simulation of @request.request_uri in functional tests #1038 [Jamis Buck]
1802
+
1803
+ * Fixed autolinking to work better in more cases #1013 [Jamis Buck]
1804
+
1805
+ * Added the possible of using symbols in form helpers that relate to instance variables like text_field :account, :name in addition to text_field "account", "name"'
1806
+
1807
+ * Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson]
1808
+
1809
+ * Added NumberHelper for common string representations like phone number, currency, and percentage #1015 [DeLynn]
1810
+
1811
+ * Added pagination for scaffolding (10 items per page) #964 [mortonda@dgrmm.net]
1812
+
1813
+ * Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [Jeremy Kemper]
1814
+
1815
+ * Fixed :overwrite_param so it doesn't delete but reject elements from @request.parameters #982 [raphinou@yahoo.com]
1816
+
1817
+ * Added :method option to verify for ensuring that either GET, POST, etc is allowed #984 [Jamis Buck]
1818
+
1819
+ * Added options to set cc, bcc, subject, and body for UrlHelper#mail_to #966 [DeLynn]
1820
+
1821
+ * Fixed include_blank for select_hour/minute/second #527 [edward@debian.org]
1822
+
1823
+ * Improved the message display on the exception handler pages #963 [Johan Sorensen]
1824
+
1825
+ * Fixed that on very rare occasions, webrick would raise a NoMethodError: private method 'split' called for nil #1001 [Flurin Egger]
1826
+
1827
+ * Fixed problem with page caching #958 [Rick Olson]
1828
+
1829
+
1830
+ *1.7.0* (27th March, 2005)
1831
+
1832
+ * Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas]
1833
+
1834
+ * Fixed "bad environment variable value" exception caused by Safari, Apache, and Ajax calls #918
1835
+
1836
+ * Fixed that pagination_helper would ignore :params #947 [Sebastian Kanthak]
1837
+
1838
+ * Added :owerwrite_params back to url_for and friends -- it was AWL since the introduction of Routes #921 [raphinou]
1839
+
1840
+ * Added :position option to link_to_remote/form_remote_tag that can be either :before, :top, :bottom, or :after and specifies where the return from the method should be inserted #952 [Matthew McCray/Sam Stephenson]
1841
+
1842
+ * Added Effect.Highlight to prototype.js to do Yellow Fade Technique (of 37signals' fame) on any container #952 [Sam Stephenson/courtenay]
1843
+
1844
+ * Added include_seconds option as the third parameter to distance_of_time_in_words which will render "less than a minute" in higher resolution ("less than 10 seconds" etc) #944 [thomas@fesch.at]
1845
+
1846
+ * Added fourth option to process in test cases to specify the content of the flash #949 [Jamis Buck]
1847
+
1848
+ * Added Verifications that allows you to specify preconditions to actions in form of statements like <tt>verify :only => :update_post, :params => "admin_privileges", :redirect_to => { :action => "settings" }</tt>, which ensure that the update_post action is only called if admin_privileges is available as a parameter -- otherwise the user is redirected to settings. #897 [Jamis Buck]
1849
+
1850
+ * Fixed Form.Serialize for the JavascriptHelper to also seriliaze password fields #934 [dweitzman@gmail.com]
1851
+
1852
+ * Added JavascriptHelper#escape_javascript as a public method (was private) and made it escape both single and double quotes and new lines #940 [mortonda@dgrmm.net]
1853
+
1854
+ * Added trailing_slash option to url_for, so you can generate urls ending in a slash. Note that is currently not recommended unless you need it for special reasons since it breaks caching #937 [stian@grytoyr.net]
1855
+
1856
+ * Added expire_matched_fragments(regular_expression) to clear out a lot of fragment caches at once #927 [technoweenie@gmail.com]
1857
+
1858
+ * Fixed the problems with : and ? in file names for fragment caches on Windows #927 [technoweenie@gmail.com]
1859
+
1860
+ * Added TextHelper#human_size for formatting file sizes, like human_size(1234567) => 1.2 MB #943 [thomas@fesch.at]
1861
+
1862
+ * Fixed link_to :confirm #936 [Nicholas Seckar]
1863
+
1864
+ * Improved error reporting especially around never shallowing exceptions. Debugging helpers should be much easier now #980 [Nicholas Seckar]
1865
+
1866
+ * Fixed Toggle.display in prototype.js #902 [Lucas Carlson]
1867
+
1868
+
1869
+ *1.6.0* (22th March, 2005)
1870
+
1871
+ * Added a JavascriptHelper and accompanying prototype.js library that opens the world of Ajax to Action Pack with a large array of options for dynamically interacting with an application without reloading the page #884 [Sam Stephenson/David]
1872
+
1873
+ * Added pagination support through both a controller and helper add-on #817 [Sam Stephenson]
1874
+
1875
+ * Fixed routing and helpers to make Rails work on non-vhost setups #826 [Nicholas Seckar/Tobias Luetke]
1876
+
1877
+ * Added a much improved Flash module that allows for finer-grained control on expiration and allows you to flash the current action #839 [Caio Chassot]. Example of flash.now:
1878
+
1879
+ class SomethingController < ApplicationController
1880
+ def save
1881
+ ...
1882
+ if @something.save
1883
+ # will redirect, use flash
1884
+ flash[:message] = 'Save successful'
1885
+ redirect_to :action => 'list'
1886
+ else
1887
+ # no redirect, message is for current action, use flash.now
1888
+ flash.now[:message] = 'Save failed, review'
1889
+ render_action 'edit'
1890
+ end
1891
+ end
1892
+ end
1893
+
1894
+ * Added to_param call for parameters when composing an url using url_for from something else than strings #812 [Sam Stephenson]. Example:
1895
+
1896
+ class Page
1897
+   def initialize(number)
1898
+     @number = number
1899
+   end
1900
+   # ...
1901
+   def to_param
1902
+     @number.to_s
1903
+   end
1904
+ end
1905
+
1906
+ You can now use instances of Page with url_for:
1907
+
1908
+ class BarController < ApplicationController
1909
+   def baz
1910
+     page = Page.new(4)
1911
+     url = url_for :page => page # => "http://foo/bar/baz?page=4"
1912
+   end
1913
+ end
1914
+
1915
+ * Fixed form helpers to query Model#id_before_type_cast instead of Model#id as a temporary workaround for Ruby 1.8.2 warnings #818 [DeLynn B]
1916
+
1917
+ * Fixed TextHelper#markdown to use blank? instead of empty? so it can deal with nil strings passed #814 [Johan Sörensen]
1918
+
1919
+ * Added TextHelper#simple_format as a non-dependency text presentation helper #814 [Johan Sörensen]
1920
+
1921
+ * Added that the html options disabled, readonly, and multiple can all be treated as booleans. So specifying <tt>disabled => :true</tt> will give <tt>disabled="disabled"</tt>. #809 [mindel]
1922
+
1923
+ * Added path collection syntax for Routes that will gobble up the rest of the url and pass it on to the controller #830 [rayners]. Example:
1924
+
1925
+ map.connect 'categories/*path_info', :controller => 'categories', :action => 'show'
1926
+
1927
+ A request for /categories/top-level-cat, would give @params[:path_info] with "top-level-cat".
1928
+ A request for /categories/top-level-cat/level-1-cat, would give @params[:path_info] with "top-level-cat/level-1-cat" and so forth.
1929
+
1930
+ The @params[:path_info] return is really an array, but where to_s has been overwritten to do join("/").
1931
+
1932
+ * Fixed options_for_select on selected line issue #624 [Florian Weber]
1933
+
1934
+ * Added CaptureHelper with CaptureHelper#capture and CaptureHelper#content_for. See documentation in helper #837 [Tobias Luetke]
1935
+
1936
+ * Fixed :anchor use in url_for #821 [Nicholas Seckar]
1937
+
1938
+ * Removed the reliance on PATH_INFO as it was causing problems for caching and inhibited the new non-vhost support #822 [Nicholas Seckar]
1939
+
1940
+ * Added assigns shortcut for @response.template.assigns to controller test cases [Jeremy Kemper]. Example:
1941
+
1942
+ Before:
1943
+
1944
+ def test_list
1945
+ assert_equal 5, @response.template.assigns['recipes'].size
1946
+ assert_equal 8, @response.template.assigns['categories'].size
1947
+ end
1948
+
1949
+ After:
1950
+
1951
+ def test_list
1952
+ assert_equal 5, assigns(:recipes).size
1953
+ assert_equal 8, assigns(:categories).size
1954
+ end
1955
+
1956
+ * Added TagHelper#image_tag and deprecated UrlHelper#link_image_to (recommended approach is to combine image_tag and link_to instead)
1957
+
1958
+ * Fixed textilize to be resilient to getting nil parsed (by using Object#blank? instead of String#empty?)
1959
+
1960
+ * Fixed that the :multipart option in FormTagHelper#form_tag would be ignored [Yonatan Feldman]
1961
+
1962
+
1963
+ *1.5.1* (7th March, 2005)
1964
+
1965
+ * Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com]
1966
+
1967
+ * Changed ActiveRecordStore to use Marshal instead of YAML as the latter proved troublesome in persisting circular dependencies. Updating existing applications MUST clear their existing session table from data to start using this updated store #739 [Jamis Buck]
1968
+
1969
+ * Added shortcut :id assignment to render_component and friends (before you had to go through :params) #784 [Lucas Carlson]
1970
+
1971
+ * Fixed that map.connect should convert arguments to strings #780 [Nicholas Seckar]
1972
+
1973
+ * Added UrlHelper#link_to_if/link_to_unless to enable other conditions that just link_to_unless_current #757 [mindel]
1974
+
1975
+ * Fixed that single quote was not escaped in a UrlHelper#link_to javascript confirm #549 [Scott Barron]
1976
+
1977
+ * Removed the default border on link_image_to (it broke xhtml strict) -- can be specified with :border => 0 #517 [?/caleb]
1978
+
1979
+ * Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [Jeremy Kemper]
1980
+
1981
+ * Fixed that broken pipe errors (clients disconnecting in mid-request) could bring down a fcgi process
1982
+
1983
+ * Added the original exception message to session recall errors (so you can see which class wasnt required)
1984
+
1985
+ * Fixed that RAILS_ROOT might not be defined when AP was loaded, so do a late initialization of the ROUTE_FILE #761 [Scott Barron]
1986
+
1987
+ * Fix request.path_info and clear up LoadingModule behavior #754 [Nicholas Seckar]
1988
+
1989
+ * Fixed caching to be aware of extensions (so you can cache files like api.wsdl or logo.png) #734 [Nicholas Seckar]
1990
+
1991
+ * Fixed that Routes would raise NameErrors if a controller component contains characters that are not valid constant names #733 [Nicholas Seckar]
1992
+
1993
+ * Added PATH_INFO access from the request that allows urls like the following to be interpreted by rails: http://www.example.com/dispatcher.cgi/controller/action -- that makes it possible to use rails as a CGI under lighttpd and would also allow (for example) Rublog to be ported to rails without breaking existing links to Rublog-powered blogs. #728 [Jamis Buck]
1994
+
1995
+ * Fixed that caching the root would result in .html not index.html #731, #734 [alisdair/Nicholas Seckar]
1996
+
1997
+
1998
+ *1.5.0* (24th February, 2005)
1999
+
2000
+ * Added Routing as a replacement for mod_rewrite pretty urls [Nicholas Seckar]. Read more in ActionController::Base.url_for and on http://manuals.rubyonrails.com/read/book/9
2001
+
2002
+ * Added components that allows you to call other actions for their rendered response while execution another action. You can either delegate the entire response rendering or you can mix a partial response in with your other content. Read more on http://manuals.rubyonrails.com/read/book/14
2003
+
2004
+ * Fixed that proxy IPs do not follow all RFC1918 nets #251 [caleb@aei-tech.com]
2005
+
2006
+ * Added Base#render_to_string to parse a template and get the result back as a string #479
2007
+
2008
+ * Fixed that send_file/data can work even if render* has been called before in action processing to render the content of a file to be send for example #601
2009
+
2010
+ * Added FormOptionsHelper#time_zone_select and FormOptionsHelper#time_zone_options_for_select to work with the new value object TimeZone in Active Support #688 [Jamis Buck]
2011
+
2012
+ * Added FormHelper#file_field and FormTagHelper#file_field_tag for creating file upload fields
2013
+
2014
+ * Added :order option for date_select that allows control over the order in which the date dropdowns is used and which of them should be used #619 [Tim Bates]. Examples:
2015
+
2016
+ date_select("post", "written_on", :order => [:day, :month, :year])
2017
+ date_select("user", "birthday", :order => [:month, :day])
2018
+
2019
+ * Added ActionView::Base.register_template_handler for easy integration of an alternative template language to ERb and Builder. See test/controller/custom_handler_test.rb for a usage example #656 [Jamis Buck]
2020
+
2021
+ * Added AssetTagHelper that provides methods for linking a HTML page together with other assets, such as javascripts, stylesheets, and feeds.
2022
+
2023
+ * Added FormTagHelper that provides a number of methods for creating form tags that doesn't rely on conventions with an object assigned to the template like FormHelper does. With the FormTagHelper, you provide the names and values yourself.
2024
+
2025
+ * Added Afghanistan, Iran, and Iraq to the countries list used by FormOptions#country_select and FormOptions#country_options_for_select
2026
+
2027
+ * Renamed link_to_image to link_image_to (since thats what it actually does) -- kept alias for the old method name
2028
+
2029
+ * Fixed textilize for RedCloth3 to keep doing hardbreaks
2030
+
2031
+ * Fixed that assert_template_xpath_matches did not indicate when a path was not found #658 [Eric Hodel]
2032
+
2033
+ * Added TextHelper#auto_link to turn email addresses and urls into ahrefs
2034
+
2035
+ * Fixed that on validation errors, scaffold couldn't find template #654 [mindel]
2036
+
2037
+ * Added Base#hide_action(*names) to hide public methods from a controller that would otherwise have been callable through the URL. For the majority of cases, its preferred just to make the methods you don't want to expose protected or private (so they'll automatically be hidden) -- but if you must have a public method, this is a way to make it uncallable. Base#hidden_actions retrieve the list of all hidden actions for the controller #644 [Nicholas Seckar]
2038
+
2039
+ * Fixed that a bunch of methods from ActionController::Base was accessible as actions (callable through a URL) when they shouldn't have been #644 [Nicholas Seckar]
2040
+
2041
+ * Added UrlHelper#current_page?(options) method to check if the url_for options passed corresponds to the current page
2042
+
2043
+ * Fixed https handling on other ports than 443 [Alan Gano]
2044
+
2045
+ * Added follow_redirect method for functional tests that'll get-request the redirect that was made. Example:
2046
+
2047
+ def test_create_post
2048
+ post :create, "post" => { "title" => "Exciting!" }
2049
+ assert_redirected_to :action => "show"
2050
+
2051
+ follow_redirect
2052
+ assert_rendered_file "post/show"
2053
+ end
2054
+
2055
+ Limitation: Only works for redirects to other actions within the same controller.
2056
+
2057
+ * Fixed double requiring of models with the same name as the controller
2058
+
2059
+ * Fixed that query params could be forced to nil on a POST due to the raw post fix #562 [moriq@moriq.com]
2060
+
2061
+ * Fixed that cookies shouldn't be frozen in TestRequest #571 [Eric Hodel]
2062
+
2063
+
2064
+ *1.4.0* (January 25th, 2005)
2065
+
2066
+ * Fixed problems with ActiveRecordStore under the development environment in Rails
2067
+
2068
+ * Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye]
2069
+
2070
+ * Added @request.raw_post as a convenience access to @request.env['RAW_POST_DATA'] #534 [Tobias Luetke]
2071
+
2072
+ * Added support for automatic id-based indexing for lists of items #532 [dblack]. Example:
2073
+
2074
+ <% @students.each do |@student| %>
2075
+ <%= text_field "student[]", "first_name", :size => "20" %>
2076
+ <%= text_field "student[]", "last_name" %>
2077
+ <%= text_field "student[]", "grade", :size => "5" %>
2078
+ <% end %>
2079
+
2080
+ ...would produce, for say David Black with id 123 and a grace of C+:
2081
+
2082
+ <input id="student_123_first_name" name="student[123][first_name]" size="20" size="30" type="text" value="David" />
2083
+ <input id="student_123_last_name" name="student[123][last_name]" size="30" type="text" value="Black" />
2084
+ <input id="student_123_grade" name="student[123][grade]" size="5" type="text" value="C+" />
2085
+
2086
+ * Added :application_prefix to url_for and friends that makes it easier to setup Rails in non-vhost environments #516 [Jamis Buck]
2087
+
2088
+ * Added :encode option to mail_to that'll allow you to masquarede the email address behind javascript or hex encoding #494 [Lucas Carlson]
2089
+
2090
+ * Fixed that the content-header was being set to application/octet_stream instead of application/octet-stream on send_date/file [Alexey]
2091
+
2092
+ * Removed the need for passing the binding when using CacheHelper#cache
2093
+
2094
+ * Added TestResponse#binary_content that'll return as a string the data sent through send_data/send_file for testing #500 [Alexey]
2095
+
2096
+ * Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [Jeremy Kemper]
2097
+
2098
+ * Fixed that a default fragment store wan't being set to MemoryStore as intended.
2099
+
2100
+ * Fixed that all redirect and render calls now return true, so you can use the pattern of "do and return". Example:
2101
+
2102
+ def show
2103
+ redirect_to(:action => "login") and return unless @person.authenticated?
2104
+ render_text "I won't happen unless the person is authenticated"
2105
+ end
2106
+
2107
+ * Added that renders and redirects called in before_filters will have the same effect as returning false: stopping the chain. Example:
2108
+
2109
+ class WeblogController
2110
+ before_filter { |c| c.send(:redirect_to_url("http://www.farfaraway.com")}) }
2111
+
2112
+ def hello
2113
+ render_text "I will never be called"
2114
+ end
2115
+ end
2116
+
2117
+
2118
+ * Added that only one render or redirect can happen per action. The first call wins and subsequent calls are ignored. Example:
2119
+
2120
+ def do_something
2121
+ redirect_to :action => "elsewhere"
2122
+ render_action "overthere"
2123
+ end
2124
+
2125
+ Only the redirect happens. The rendering call is simply ignored.
2126
+
2127
+
2128
+ *1.3.1* (January 18th, 2005)
2129
+
2130
+ * Fixed a bug where cookies wouldn't be set if a symbol was used instead of a string as the key
2131
+
2132
+ * Added assert_cookie_equal to assert the contents of a named cookie
2133
+
2134
+ * Fixed bug in page caching that prevented it from working at all
2135
+
2136
+
2137
+ *1.3.0* (January 17th, 2005)
2138
+
2139
+ * Added an extensive caching module that offers three levels of granularity (page, action, fragment) and a variety of stores.
2140
+ Read more in ActionController::Caching.
2141
+
2142
+ * Added the option of passing a block to ActiveRecordHelper#form in order to add more to the auto-generated form #469 [dom@sisna.com]
2143
+
2144
+ form("entry", :action => "sign") do |form|
2145
+ form << content_tag("b", "Department")
2146
+ form << collection_select("department", "id", @departments, "id", "name")
2147
+ end
2148
+
2149
+ * Added arrays as a value option for params in url_for and friends #467 [Eric Anderson]. Example:
2150
+
2151
+ url_for(:controller => 'user', :action => 'delete', :params => { 'username' => %( paul john steve ) } )
2152
+ # => /user/delete?username[]=paul&username[]=john&username[]=steve
2153
+
2154
+ * Fixed that controller tests can now assert on the use of cookies #466 [Alexey]
2155
+
2156
+ * Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [Jeremy Kemper]
2157
+
2158
+ * Fixed url rewriter confusion when the controller or action name was a substring of the controller_prefix or action_prefix
2159
+
2160
+ * Added conditional layouts like <tt>layout "weblog_standard", :except => :rss</tt> #452 [Marcel Molina]
2161
+
2162
+ * Fixed that MemCacheStore wasn't included by default and added default MemCache object pointing to localhost #447 [Lucas Carlson]
2163
+
2164
+ * Added fourth argument to render_collection_of_partials that allows you to specify local_assigns -- just like render_partial #432 [zenspider]
2165
+
2166
+ * Fixed that host would choke when cgi.host returned nil #432 [Tobias Luetke]
2167
+
2168
+ * Added that form helpers now take an index option #448 [Tim Bates]
2169
+
2170
+ Example:
2171
+ text_field "person", "name", "index" => 3
2172
+
2173
+ Becomes:
2174
+ <input type="text" name="person[3][name]" id="person_3_name" value="<%= @person.name %>" />
2175
+
2176
+ * Fixed three issues with retrying breakpoints #417 [Florian Gross]
2177
+
2178
+ 1. Don't screw up pages that use multiple values for the same parameter (?foo=bar&foo=qux was converted to ?foo=barqux)
2179
+ 2. Don't screw up all forms when you click the "Retry with Breakpoint" link multiple times instead of reloading
2180
+ (This caused the parameters to be added multiple times for GET forms leading to trouble.)
2181
+ 3. Don't add ?BP-RETRY=1 multiple times
2182
+
2183
+ * Added that all renders and redirects now return false, so they can be used as the last line in before_filters to stop execution.
2184
+
2185
+ Before:
2186
+ def authenticate
2187
+ unless @session[:authenticated]
2188
+ redirect_to :controller => "account", :action => "login"
2189
+ return false
2190
+ end
2191
+ end
2192
+
2193
+ After:
2194
+ def authenticate
2195
+ redirect_to(:controller => "account", :action => "login") unless @session[:authenticated]
2196
+ end
2197
+
2198
+ * Added conditional filters #431 [Marcel]. Example:
2199
+
2200
+ class JournalController < ActionController::Base
2201
+ # only require authentication if the current action is edit or delete
2202
+ before_filter :authorize, :only_on => [ :edit, :delete ]
2203
+
2204
+ private
2205
+ def authorize
2206
+ # redirect to login unless authenticated
2207
+ end
2208
+ end
2209
+
2210
+ * Added Base#render_nothing as a cleaner way of doing render_text "" when you're not interested in returning anything but an empty response.
2211
+
2212
+ * Added the possibility of passing nil to UrlHelper#link_to to use the link itself as the name
2213
+
2214
+
2215
+ *1.2.0* (January 4th, 2005)
2216
+
2217
+ * Added MemCacheStore for storing session data in Danga's MemCache system [Bob Cottrell]
2218
+ Depends on: MemCached server (http://www.danga.com/memcached/), MemCache client (http://raa.ruby-lang.org/project/memcache/)
2219
+
2220
+ * Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz]
2221
+
2222
+ * Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron]
2223
+
2224
+ * Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current.
2225
+
2226
+ * Added class declaration for the MissingFile exception #388 [Kent Sibilev]
2227
+
2228
+ * Added "short hypertext note with a hyperlink to the new URI(s)" to redirects to fulfill compliance with RFC 2616 (HTTP/1.1) section 10.3.3 #397 [Tim Bates]
2229
+
2230
+ * Added second boolean parameter to Base.redirect_to_url and Response#redirect to control whether the redirect is permanent or not (301 vs 302) #375 [Hodel]
2231
+
2232
+ * Fixed redirects when the controller and action is named the same. Still haven't fixed same controller, module, and action, though #201 [Josh]
2233
+
2234
+ * Fixed problems with running multiple functional tests in Rails under 1.8.2 by including hack for test/unit weirdness
2235
+
2236
+ * Fixed that @request.remote_ip didn't work in the test environment #369 [Bruno Mattarollo]
2237
+
2238
+
2239
+ *1.1.0*
2240
+
2241
+ * Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects
2242
+ in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke]
2243
+
2244
+ * Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an
2245
+ error message tells you what file actually failed to load, rather than falling back on assuming it was the helper file itself #346 [dblack]
2246
+
2247
+ * Added use of *_before_type_cast for all input and text fields. This is helpful for getting "100,000" back on a integer-based
2248
+ validation where the value would normally be "100".
2249
+
2250
+ * Added Request#port_string to get something like ":8080" back on 8080 and "" on 80 (or 443 with https).
2251
+
2252
+ * Added Request#domain (returns string) and Request#subdomains (returns array).
2253
+
2254
+ * Added POST support for the breakpoint retries, so form processing that raises an exception can be retried with the original request [Florian Gross]
2255
+
2256
+ * Fixed regression with Base#reset_session that wouldn't use the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
2257
+
2258
+ * Fixed error rendering of rxml documents to not just swallow the exception and return 0 (still not guessing the right line, but hey)
2259
+
2260
+ * Fixed that textilize and markdown would instantiate their engines even on empty strings. This also fixes #333 [Ulysses]
2261
+
2262
+ * Fixed UrlHelper#link_to_unless so it doesn't care if the id is a string or fixnum [zenspider]
2263
+
2264
+
2265
+ *1.0.1*
2266
+
2267
+ * Fixed a bug that would cause an ApplicationController to require itself three times and hence cause filters to be run three times [evl]
2268
+
2269
+
2270
+ *1.0*
2271
+
2272
+ * Added that controllers will now attempt to require a model dependency with their name and in a singular attempt for their name.
2273
+ So both PostController and PostsController will automatically have the post.rb model required. If no model is found, no error is raised,
2274
+ as it is then expected that no match is available and the programmer will have included his own models.
2275
+
2276
+ * Fixed DateHelper#date_select so that you can pass include_blank as an option even if you don't use start_year and end_year #59 [what-a-day]
2277
+
2278
+ * Added that controllers will now search for a layout in $template_root/layouts/$controller_name.r(html|xml), so PostsController will look
2279
+ for layouts/posts.rhtml or layouts/posts.rxml and automatically configure this layout if found #307 [Marcel]
2280
+
2281
+ * Added FormHelper#radio_button to work with radio buttons like its already possible with check boxes [Michael Koziarski]
2282
+
2283
+ * Added TemplateError#backtrace that makes it much easier to debug template errors from unit and functional tests
2284
+
2285
+ * Added display of error messages with scaffolded form pages
2286
+
2287
+ * Added option to ERB templates to swallow newlines by using <% if something -%> instead of just <% if something %>. Example:
2288
+
2289
+ class SomeController < ApplicationController
2290
+ <% if options[:scaffold] %>
2291
+ scaffold :<%= singular_name %>
2292
+ <% end %>
2293
+ helper :post
2294
+
2295
+ ...produces this on post as singular_name:
2296
+
2297
+ class SomeController < ApplicationController
2298
+
2299
+ scaffold :post
2300
+
2301
+ helper :post
2302
+
2303
+ ...where as:
2304
+
2305
+ class SomeController < ApplicationController
2306
+ <% if options[:scaffold] -%>
2307
+ scaffold :<%= singular_name %>
2308
+ <% end -%>
2309
+ helper :post
2310
+
2311
+ ...produces:
2312
+
2313
+ class SomeController < ApplicationController
2314
+ scaffold :post
2315
+ helper :post
2316
+
2317
+ [This undocumented gem for ERb was uncovered by bitsweat]
2318
+
2319
+ * Fixed CgiRequest so that it'll now accept session options with Symbols as keys (as the documentation points out) [Suggested by Andreas]
2320
+
2321
+ * Added that render_partial will always by default include a counter with value 1 unless there is a counter passed in via the
2322
+ local_assigns hash that overrides it. As a result, render_collection_of_partials can still be written in terms of render_partial
2323
+ and partials that make use of a counter can be called without problems from both render_collection_of_partials as well as
2324
+ render_partial #295 [marcel]
2325
+
2326
+ * Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [Jeremy Kemper]
2327
+
2328
+ * Fixed all helpers so that they use XHTML compliant double quotes for values instead of single quotes [htonl/bitsweat]
2329
+
2330
+ * Added link_to_image(src, options = {}, html_options = {}, *parameters_for_method_reference). Documentation:
2331
+
2332
+ Creates a link tag to the image residing at the +src+ using an URL created by the set of +options+. See the valid options in
2333
+ link:classes/ActionController/Base.html#M000021. It's also possible to pass a string instead of an options hash to
2334
+ get a link tag that just points without consideration. The <tt>html_options</tt> works jointly for the image and ahref tag by
2335
+ letting the following special values enter the options on the image and the rest goes to the ahref:
2336
+
2337
+ ::alt: If no alt text is given, the file name part of the +src+ is used (capitalized and without the extension)
2338
+ ::size: Supplied as "XxY", so "30x45" becomes width="30" and height="45"
2339
+ ::align: Sets the alignment, no special features
2340
+
2341
+ The +src+ can be supplied as a...
2342
+ * full path, like "/my_images/image.gif"
2343
+ * file name, like "rss.gif", that gets expanded to "/images/rss.gif"
2344
+ * file name without extension, like "logo", that gets expanded to "/images/logo.png"
2345
+
2346
+ * Fixed to_input_field_tag so it no longer explicitly uses InstanceTag.value if value was specified in the options hash [evl]
2347
+
2348
+ * Added the possibility of having validate be protected for assert_(in)valid_column #263 [Tobias Luetke]
2349
+
2350
+ * Added that ActiveRecordHelper#form now calls url_for on the :action option.
2351
+
2352
+ * Added all the HTTP methods as alternatives to the generic "process" for functional testing #276 [Tobias Luetke]. Examples:
2353
+
2354
+ # Calls Controller#miletone with a GET request
2355
+ process :milestone
2356
+
2357
+ # Calls Controller#miletone with a POST request that has parameters
2358
+ post :milestone, { "name" => "David" }
2359
+
2360
+ # Calls Controller#milestone with a HEAD request that has both parameters and session data
2361
+ head :milestone, { "id" => 1 }, { "user_id" => 23 }
2362
+
2363
+ This is especially useful for testing idiomatic REST web services.
2364
+
2365
+ * Added proper handling of HEAD requests, so that content isn't returned (Request#head? added as well) #277 [Eric Hodel]
2366
+
2367
+ * Added indifference to whether @headers["Content-Type"], @headers["Content-type"], or @headers["content-type"] is used.
2368
+
2369
+ * Added TestSession#session_id that returns an empty string to make it easier to functional test applications that doesn't use
2370
+ cookie-based sessions #275 [jcf]
2371
+
2372
+ * Fixed that cached template loading would still check the file system to see if the file existed #258 [Andreas Schwarz]
2373
+
2374
+ * Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]
2375
+
2376
+ * Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [Jeremy Kemper]
2377
+
2378
+ * Added a new container for cookies that makes them more intuative to use. The old methods of cookie and @cookies have been deprecated.
2379
+
2380
+ Examples for writing:
2381
+
2382
+ cookies["user_name"] = "david" # => Will set a simple session cookie
2383
+ cookies["login"] = { "value" => "XJ-122", "expires" => Time.now + 360} # => Will set a cookie that expires in 1 hour
2384
+
2385
+ Examples for reading:
2386
+
2387
+ cookies["user_name"] # => "david"
2388
+ cookies.size # => 2
2389
+
2390
+ Read more in ActionController::Cookies
2391
+
2392
+ NOTE: If you were using the old accessor (cookies instead of @cookies), this could potentially break your code -- if you expect a full cookie object!
2393
+
2394
+ * Added the opportunity to defined method_missing on a controller which will handle all requests for actions not otherwise defined #223 [timb]
2395
+
2396
+ * Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 [Eric Hodel]
2397
+
2398
+ * Added Request#ssl? which is shorthand for @request.protocol == "https://"
2399
+
2400
+ * Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [Jeremy Kemper]
2401
+
2402
+ * Upgraded to Builder 1.2.1
2403
+
2404
+ * Added :module as an alias for :controller_prefix to url_for and friends, so you can do redirect_to(:module => "shop", :controller => "purchases")
2405
+ and go to /shop/purchases/
2406
+
2407
+ * Added support for controllers in modules through @params["module"].
2408
+
2409
+ * Added reloading for dependencies under cached environments like FastCGI and mod_ruby. This makes it possible to use those environments for development.
2410
+ This is turned on by default, but can be turned off with ActionController::Base.reload_dependencies = false in production environments.
2411
+
2412
+ NOTE: This will only have an effect if you use the new model, service, and observer class methods to mark dependencies. All libraries loaded through
2413
+ require will be "forever" cached. You can, however, use ActionController::Base.load_or_require("library") to get this behavior outside of the new
2414
+ dependency style.
2415
+
2416
+ * Added that controllers will automatically require their own helper if possible. So instead of doing:
2417
+
2418
+ class MsgController < ApplicationController
2419
+ helper :msg
2420
+ end
2421
+
2422
+ ...you can just do:
2423
+
2424
+ class MsgController < ApplicationController
2425
+ end
2426
+
2427
+ * Added dependencies_on(layer) to query the dependencies of a controller. Examples:
2428
+
2429
+ MsgController.dependencies_on(:model) # => [ :post, :comment, :attachment ]
2430
+ MsgController.dependencies_on(:service) # => [ :notification_service ]
2431
+ MsgController.dependencies_on(:observer) # => [ :comment_observer ]
2432
+
2433
+ * Added a new dependency model with the class methods model, service, and observer. Example:
2434
+
2435
+ class MsgController < ApplicationController
2436
+ model :post, :comment, :attachment
2437
+ service :notification_service
2438
+ observer :comment_observer
2439
+ end
2440
+
2441
+ These new "keywords" remove the need for explicitly calling 'require' in most cases. The observer method even instantiates the
2442
+ observer as well as requiring it.
2443
+
2444
+ * Fixed that link_to would escape & in the url again after url_for already had done so
2445
+
2446
+
2447
+ *0.9.5* (28)
2448
+
2449
+ * Added helper_method to designate that a given private or protected method you should available as a helper in the view. [Jeremy Kemper]
2450
+
2451
+ * Fixed assert_rendered_file so it actually verifies if that was the rendered file [htonl]
2452
+
2453
+ * Added the option for sharing partial spacer templates just like partials themselves [radsaq]
2454
+
2455
+ * Fixed that Russia was named twice in country_select [alexey]
2456
+
2457
+ * Fixed request_origin to use remote_ip instead of remote_addr [Jeremy Kemper]
2458
+
2459
+ * Fixed link_to breakage when nil was passed for html_options [alexey]
2460
+
2461
+ * Fixed redirect_to on a virtual server setup with apache with a port other than the default where it would forget the port number [seanohalpin]
2462
+
2463
+ * Fixed that auto-loading webrick on Windows would cause file uploads to fail [Jeremy Kemper]
2464
+
2465
+ * Fixed issues with sending files on WEBrick by setting the proper binmode [Jeremy Kemper]
2466
+
2467
+ * Added send_data as an alternative to send_file when the stream is not read off the filesystem but from a database or generated live [Jeremy Kemper]
2468
+
2469
+ * Added a new way to include helpers that doesn't require the include hack and can go without the explicit require. [Jeremy Kemper]
2470
+
2471
+ Before:
2472
+
2473
+ module WeblogHelper
2474
+ def self.included(controller) #:nodoc:
2475
+ controller.ancestors.include?(ActionController::Base) ? controller.add_template_helper(self) : super
2476
+ end
2477
+ end
2478
+
2479
+ require 'weblog_helper'
2480
+ class WeblogController < ActionController::Base
2481
+ include WeblogHelper
2482
+ end
2483
+
2484
+ After:
2485
+
2486
+ module WeblogHelper
2487
+ end
2488
+
2489
+ class WeblogController < ActionController::Base
2490
+ helper :weblog
2491
+ end
2492
+
2493
+ * Added a default content-type of "text/xml" to .rxml renders [Ryan Platte]
2494
+
2495
+ * Fixed that when /controller/index was requested by the browser, url_for would generates wrong URLs [Ryan Platte]
2496
+
2497
+ * Fixed a bug that would share cookies between users when using FastCGI and mod_ruby [The Robot Co-op]
2498
+
2499
+ * Added an optional third hash parameter to the process method in functional tests that takes the session data to be used [alexey]
2500
+
2501
+ * Added UrlHelper#mail_to to make it easier to create mailto: style ahrefs
2502
+
2503
+ * Added better error messages for layouts declared with the .rhtml extension (which they shouldn't) [geech]
2504
+
2505
+ * Added another case to DateHelper#distance_in_minutes to return "less than a minute" instead of "0 minutes" and "1 minute" instead of "1 minutes"
2506
+
2507
+ * Added a hidden field to checkboxes generated with FormHelper#check_box that will make sure that the unchecked value (usually 0)
2508
+ is sent even if the checkbox is not checked. This relieves the controller from doing custom checking if the checkbox wasn't
2509
+ checked. BEWARE: This might conflict with your run-on-the-mill work-around code. [Tobias Luetke]
2510
+
2511
+ * Fixed error_message_on to just use the first if more than one error had been added [marcel]
2512
+
2513
+ * Fixed that URL rewriting with /controller/ was working but /controller was not and that you couldn't use :id on index [geech]
2514
+
2515
+ * Fixed a bug with link_to where the :confirm option wouldn't be picked up if the link was a straight url instead of an option hash
2516
+
2517
+ * Changed scaffolding of forms to use <label> tags instead of <b> to please W3C [evl]
2518
+
2519
+ * Added DateHelper#distance_of_time_in_words_to_now(from_time) that works like distance_of_time_in_words,
2520
+ but where <tt>to_time</tt> is fixed to <tt>Time.now</tt>.
2521
+
2522
+ * Added assert_flash_equal(expected, key, message), assert_session_equal(expected, key, message),
2523
+ assert_assigned_equal(expected, key, message) to test the contents of flash, session, and template assigns.
2524
+
2525
+ * Improved the failure report on assert_success when the action triggered a redirection [alexey].
2526
+
2527
+ * Added "markdown" to accompany "textilize" as a TextHelper method for converting text to HTML using the Markdown syntax.
2528
+ BlueCloth must be installed in order for this method to become available.
2529
+
2530
+ * Made sure that an active session exists before we attempt to delete it [Samuel]
2531
+
2532
+ * Changed link_to with Javascript confirmation to use onclick instead of onClick for XHTML validity [Scott Barron]
2533
+
2534
+
2535
+ *0.9.0 (43)*
2536
+
2537
+ * Added support for Builder-based templates for files with the .rxml extension. These new templates are an alternative to ERb that
2538
+ are especially useful for generating XML content, such as this RSS example from Basecamp:
2539
+
2540
+ xml.rss("version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/") do
2541
+ xml.channel do
2542
+ xml.title(@feed_title)
2543
+ xml.link(@url)
2544
+ xml.description "Basecamp: Recent items"
2545
+ xml.language "en-us"
2546
+ xml.ttl "40"
2547
+
2548
+ for item in @recent_items
2549
+ xml.item do
2550
+ xml.title(item_title(item))
2551
+ xml.description(item_description(item)) if item_description(item)
2552
+ xml.pubDate(item_pubDate(item))
2553
+ xml.guid(@person.firm.account.url + @recent_items.url(item))
2554
+ xml.link(@person.firm.account.url + @recent_items.url(item))
2555
+
2556
+ xml.tag!("dc:creator", item.author_name) if item_has_creator?(item)
2557
+ end
2558
+ end
2559
+ end
2560
+ end
2561
+
2562
+ ...which will generate something like:
2563
+
2564
+ <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
2565
+ <channel>
2566
+ <title>Web Site Redesign</title>
2567
+ <link>http://www.basecamphq.com/clients/travelcenter/1/</link>
2568
+ <description>Basecamp: Recent items</description>
2569
+ <language>en-us</language>
2570
+ <ttl>40</ttl>
2571
+ <item>
2572
+ <title>Post: don't you know</title>
2573
+ <description>&amp;lt;p&amp;gt;deeper and down&amp;lt;/p&amp;gt;</description>
2574
+ <pubDate>Fri, 20 Aug 2004 21:13:50 CEST</pubDate>
2575
+ <guid>http://www.basecamphq.com/clients/travelcenter/1/msg/assets/96976/comments</guid>
2576
+ <link>http://www.basecamphq.com/clients/travelcenter/1/msg/assets/96976/comments</link>
2577
+ <dc:creator>David H. Heinemeier</dc:creator>
2578
+ </item>
2579
+ <item>
2580
+ <title>Milestone completed: Design Comp 2</title>
2581
+ <pubDate>Mon, 9 Aug 2004 14:42:06 CEST</pubDate>
2582
+ <guid>http://www.basecamphq.com/clients/travelcenter/1/milestones/#49</guid>
2583
+ <link>http://www.basecamphq.com/clients/travelcenter/1/milestones/#49</link>
2584
+ </item>
2585
+ </channel>
2586
+ </rss>
2587
+
2588
+ The "xml" local variable is automatically available in .rxml templates. You construct the template by calling a method with the name
2589
+ of the tag you want. Options for the tag can be specified as a hash parameter to that method.
2590
+
2591
+ Builder-based templates can be mixed and matched with the regular ERb ones. The only thing that differentiates them is the extension.
2592
+ No new methods have been added to the public interface to handle them.
2593
+
2594
+ Action Pack ships with a version of Builder, but it will use the RubyGems version if you have one installed.
2595
+
2596
+ Read more about Builder on: http://onestepback.org/index.cgi/Tech/Ruby/StayingSimple.rdoc
2597
+
2598
+ [Builder is created by Jim Weirich]
2599
+
2600
+ * Added much improved support for functional testing [what-a-day].
2601
+
2602
+ # Old style
2603
+ def test_failing_authenticate
2604
+ @request.request_uri = "/login/authenticate"
2605
+ @request.action = "authenticate"
2606
+ @request.request_parameters["user_name"] = "nop"
2607
+ @request.request_parameters["password"] = ""
2608
+
2609
+ response = LoginController.process_test(@request)
2610
+
2611
+ assert_equal "The username and/or password you entered is invalid.", response.session["flash"]["alert"]
2612
+ assert_equal "http://37signals.basecamp.com/login/", response.headers["location"]
2613
+ end
2614
+
2615
+ # New style
2616
+ def test_failing_authenticate
2617
+ process :authenticate, "user_name" => "nop", "password" => ""
2618
+ assert_flash_has 'alert'
2619
+ assert_redirected_to :action => "index"
2620
+ end
2621
+
2622
+ See a full example on http://codepaste.org/view/paste/334
2623
+
2624
+ * Increased performance by up to 100% with a revised cookie class that fixes the performance problems with the
2625
+ default one that ships with 1.8.1 and below. It replaces the inheritance on SimpleDelegator with DelegateClass(Array)
2626
+ following the suggestion from Matz on:
2627
+ http://groups.google.com/groups?th=e3a4e68ba042f842&seekm=c3sioe%241qvm%241%40news.cybercity.dk#link14
2628
+
2629
+ * Added caching for compiled ERb templates. On Basecamp, it gave between 8.5% and 71% increase in performance [Andreas Schwarz].
2630
+
2631
+ * Added implicit counter variable to render_collection_of_partials [Marcel]. From the docs:
2632
+
2633
+ <%= render_collection_of_partials "ad", @advertisements %>
2634
+
2635
+ This will render "advertiser/_ad.rhtml" and pass the local variable +ad+ to the template for display. An iteration counter
2636
+ will automatically be made available to the template with a name of the form +partial_name_counter+. In the case of the
2637
+ example above, the template would be fed +ad_counter+.
2638
+
2639
+ * Fixed problems with two sessions being maintained on reset_session that would particularly screw up ActiveRecordStore.
2640
+
2641
+ * Fixed reset_session to start an entirely new session instead of merely deleting the old. So you can now safely access @session
2642
+ after calling reset_ression and expect it to work.
2643
+
2644
+ * Added @request.get?, @request.post?, @request.put?, @request.delete? as convenience query methods for @request.method [geech]
2645
+
2646
+ * Added @request.method that'll return a symbol representing the HTTP method, such as :get, :post, :put, :delete [geech]
2647
+
2648
+ * Changed @request.remote_ip and @request.host to work properly even when a proxy is in front of the application [geech]
2649
+
2650
+ * Added JavaScript confirm feature to link_to. Documentation:
2651
+
2652
+ The html_options have a special feature for creating javascript confirm alerts where if you pass
2653
+ :confirm => 'Are you sure?', the link will be guarded with a JS popup asking that question.
2654
+ If the user accepts, the link is processed, otherwise not.
2655
+
2656
+ * Added link_to_unless_current as a UrlHelper method [Sam Stephenson]. Documentation:
2657
+
2658
+ Creates a link tag of the given +name+ using an URL created by the set of +options+, unless the current
2659
+ controller, action, and id are the same as the link's, in which case only the name is returned (or the
2660
+ given block is yielded, if one exists). This is useful for creating link bars where you don't want to link
2661
+ to the page currently being viewed.
2662
+
2663
+ * Fixed that UrlRewriter (the driver for url_for, link_to, etc) would blow up when the anchor was an integer [alexey]
2664
+
2665
+ * Added that layouts defined with no directory defaults to layouts. So layout "weblog/standard" will use
2666
+ weblog/standard (as always), but layout "standard" will use layouts/standard.
2667
+
2668
+ * Fixed that partials (or any template starting with an underscore) was publically viewable [Marten]
2669
+
2670
+ * Added HTML escaping to text_area helper.
2671
+
2672
+ * Added :overwrite_params to url_for and friends to keep the parameters as they were passed to the current action and only overwrite a subset.
2673
+ The regular :params will clear the slate so you need to manually add in existing parameters if you want to reuse them. [raphinou]
2674
+
2675
+ * Fixed scaffolding problem with composite named objects [Moo Jester]
2676
+
2677
+ * Added the possibility for shared partials. Example:
2678
+
2679
+ <%= render_partial "advertisement/ad", ad %>
2680
+
2681
+ This will render the partial "advertisement/_ad.rhtml" regardless of which controller this is being called from.
2682
+
2683
+ [Jacob Fugal]
2684
+
2685
+ * Fixed crash when encountering forms that have empty-named fields [James Prudente]
2686
+
2687
+ * Added check_box form helper method now accepts true/false as well as 1/0 [what-a-day]
2688
+
2689
+ * Fixed the lacking creation of all directories with install.rb [Dave Steinberg]
2690
+
2691
+ * Fixed that date_select returns valid XHTML selected options [Andreas Schwarz]
2692
+
2693
+ * Fixed referencing an action with the same name as a controller in url_for [what-a-day]
2694
+
2695
+ * Fixed the destructive nature of Base#attributes= on the argument [Kevin Watt]
2696
+
2697
+ * Changed ActionControllerError to decent from StandardError instead of Exception. It can now be caught by a generic rescue.
2698
+
2699
+ * Added SessionRestoreError that is raised when a session being restored holds objects where there is no class available.
2700
+
2701
+ * Added block as option for inline filters. So what used to be written as:
2702
+
2703
+ before_filter Proc { |controller| return false if controller.params["stop_action"] }
2704
+
2705
+ ...can now be as:
2706
+
2707
+ before_filter { |controller| return false if controller.params["stop_action"] }
2708
+
2709
+ [Jeremy Kemper]
2710
+
2711
+ * Made the following methods public (was protected): url_for, controller_class_name, controller_name, action_name
2712
+ This makes it easier to write filters without cheating around the encapsulation with send.
2713
+
2714
+ * ActionController::Base#reset_session now sticks even if you access @session afterwards [Kent Sibilev]
2715
+
2716
+ * Improved the exception logging so the log file gets almost as much as in-browser debugging.
2717
+
2718
+ * Changed base class setup from AbstractTemplate/ERbTemplate to ActionView::Base. This change should be harmless unless you were
2719
+ accessing Action View directly in which case you now need to reference the Base class.\
2720
+
2721
+ * Added that render_collection_of_partials returns nil if the collection is empty. This makes showing a “no items” message easier.
2722
+ For example: <%= render_collection_of_partials("message", @messages) || "No messages found." %> [Sam Stephenson]
2723
+
2724
+ * Added :month_before_year as an option to date_select to get the month select before the year. Especially useful for credit card forms.
2725
+
2726
+ * Added :add_month_numbers to select_month to get options like "3 - March".
2727
+
2728
+ * Removed Base.has_active_layout? as it couldn't answer the question without the instance. Use Base#active_layout instead.
2729
+
2730
+ * Removed redundant call to update on ActionController::Base#close_session [Andreas Schwarz]
2731
+
2732
+ * Fixed that DRb Store accidently started its own server (instead of just client) [Andreas]
2733
+
2734
+ * Fixed strip_links so it now works across multiple lines [Chad Fowler]
2735
+
2736
+ * Fixed the TemplateError exception to show the proper trace on to_s (useful for unit test debugging)
2737
+
2738
+ * Implemented class inheritable attributes without eval [Caio Chassot]
2739
+
2740
+ * Made TextHelper#concat accept binding as it would otherwise not work
2741
+
2742
+ * The FormOptionsHelper will now call to_s on the keys and values used to generate options
2743
+
2744
+
2745
+ *0.8.5*
2746
+
2747
+ * Introduced passing of locally scoped variables between templates:
2748
+
2749
+ You can pass local variables to sub templates by using a hash of with the variable
2750
+ names as keys and the objects as values:
2751
+
2752
+ <%= render "shared/header", { "headline" => "Welcome", "person" => person } %>
2753
+
2754
+ These can now be accessed in shared/header with:
2755
+
2756
+ Headline: <%= headline %>
2757
+ First name: <%= person.first_name %>
2758
+
2759
+ * Introduced the concept of partials as a certain type of sub templates:
2760
+
2761
+ There's also a convenience method for rendering sub templates within the current
2762
+ controller that depends on a single object (we call this kind of sub templates for
2763
+ partials). It relies on the fact that partials should follow the naming convention
2764
+ of being prefixed with an underscore -- as to separate them from regular templates
2765
+ that could be rendered on their own. In the template for Advertiser#buy, we could have:
2766
+
2767
+ <% for ad in @advertisements %>
2768
+ <%= render_partial "ad", ad %>
2769
+ <% end %>
2770
+
2771
+ This would render "advertiser/_ad.rhtml" and pass the local variable +ad+
2772
+ for the template to display.
2773
+
2774
+ == Rendering a collection of partials
2775
+
2776
+ The example of partial use describes a familar pattern where a template needs
2777
+ to iterate over a array and render a sub template for each of the elements.
2778
+ This pattern has been implemented as a single method that accepts an array and
2779
+ renders a partial by the same name of as the elements contained within. So the
2780
+ three-lined example in "Using partials" can be rewritten with a single line:
2781
+
2782
+ <%= render_collection_of_partials "ad", @advertisements %>
2783
+
2784
+ So this will render "advertiser/_ad.rhtml" and pass the local variable +ad+ for
2785
+ the template to display.
2786
+
2787
+ * Improved send_file by allowing a wide range of options to be applied [Jeremy Kemper]:
2788
+
2789
+ Sends the file by streaming it 4096 bytes at a time. This way the
2790
+ whole file doesn't need to be read into memory at once. This makes
2791
+ it feasible to send even large files.
2792
+
2793
+ Be careful to sanitize the path parameter if it coming from a web
2794
+ page. send_file(@params['path'] allows a malicious user to
2795
+ download any file on your server.
2796
+
2797
+ Options:
2798
+ * <tt>:filename</tt> - specifies the filename the browser will see.
2799
+ Defaults to File.basename(path).
2800
+ * <tt>:type</tt> - specifies an HTTP content type.
2801
+ Defaults to 'application/octet-stream'.
2802
+ * <tt>:disposition</tt> - specifies whether the file will be shown inline or downloaded.
2803
+ Valid values are 'inline' and 'attachment' (default).
2804
+ * <tt>:buffer_size</tt> - specifies size (in bytes) of the buffer used to stream
2805
+ the file. Defaults to 4096.
2806
+
2807
+ The default Content-Type and Content-Disposition headers are
2808
+ set to download arbitrary binary files in as many browsers as
2809
+ possible. IE versions 4, 5, 5.5, and 6 are all known to have
2810
+ a variety of quirks (especially when downloading over SSL).
2811
+
2812
+ Simple download:
2813
+ send_file '/path/to.zip'
2814
+
2815
+ Show a JPEG in browser:
2816
+ send_file '/path/to.jpeg', :type => 'image/jpeg', :disposition => 'inline'
2817
+
2818
+ Read about the other Content-* HTTP headers if you'd like to
2819
+ provide the user with more information (such as Content-Description).
2820
+ http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.11
2821
+
2822
+ Also be aware that the document may be cached by proxies and browsers.
2823
+ The Pragma and Cache-Control headers declare how the file may be cached
2824
+ by intermediaries. They default to require clients to validate with
2825
+ the server before releasing cached responses. See
2826
+ http://www.mnot.net/cache_docs/ for an overview of web caching and
2827
+ http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
2828
+ for the Cache-Control header spec.
2829
+
2830
+ * Added pluralize method to the TextHelper that makes it easy to get strings like "1 message", "3 messages"
2831
+
2832
+ * Added proper escaping for the rescues [Andreas Schwarz]
2833
+
2834
+ * Added proper escaping for the option and collection tags [Andreas Schwarz]
2835
+
2836
+ * Fixed NaN errors on benchmarking [Jim Weirich]
2837
+
2838
+ * Fixed query string parsing for URLs that use the escaped versions of & or ; as part of a key or value
2839
+
2840
+ * Fixed bug with custom Content-Type headers being in addition to rather than instead of the default header.
2841
+ (This bug didn't matter with neither CGI or mod_ruby, but FCGI exploded on it) [With help from Ara T. Howard]
2842
+
2843
+
2844
+ *0.8.0*
2845
+
2846
+ * Added select, collection_select, and country_select to make it easier for Active Records to set attributes through
2847
+ drop-down lists of options. Example:
2848
+
2849
+ <%= select "person", "gender", %w( Male Female ) %>
2850
+
2851
+ ...would give the following:
2852
+
2853
+ <select name="person[gender]" id="person_gender"><option>Male</option><option>Female</option></select>
2854
+
2855
+ * Added an option for getting multiple values on a single form name into an array instead of having the last one overwrite.
2856
+ This is especially useful for groups of checkboxes, which can now be written as:
2857
+
2858
+ <input type="checkbox" name="rights[]" value="CREATE" />
2859
+ <input type="checkbox" name="rights[]" value="UPDATE" />
2860
+ <input type="checkbox" name="rights[]" value="DELETE" />
2861
+
2862
+ ...and retrieved in the controller action with:
2863
+
2864
+ @params["rights"] # => [ "CREATE", "UPDATE", "DELETE" ]
2865
+
2866
+ The old behavior (where the last one wins, "DELETE" in the example) is still available. Just don't add "[]" to the
2867
+ end of the name. [Scott Baron]
2868
+
2869
+ * Added send_file which uses the new render_text block acceptance to make it feasible to send large files.
2870
+ The files is sent with a bunch of voodoo HTTP headers required to get arbitrary files to download as
2871
+ expected in as many browsers as possible (eg, IE hacks). Example:
2872
+
2873
+ def play_movie
2874
+ send_file "/movies/that_movie.avi"
2875
+ end
2876
+
2877
+ [Jeremy Kemper]
2878
+
2879
+ * render_text now accepts a block for deferred rendering. Useful for streaming large files, displaying
2880
+ a “please wait” message during a complex search, etc. Streaming example:
2881
+
2882
+ render_text do |response|
2883
+ File.open(path, 'rb') do |file|
2884
+ while buf = file.read(1024)
2885
+ print buf
2886
+ end
2887
+ end
2888
+ end
2889
+
2890
+ [Jeremy Kemper]
2891
+
2892
+ * Added a new Tag Helper that can generate generic tags programmatically insted of through HTML. Example:
2893
+
2894
+ tag("br", "clear" => "all") => <br clear="all" />
2895
+
2896
+ ...that's usually not terribly interesting (unless you have a lot of options already in a hash), but it
2897
+ gives way for more specific tags, like the new form tag:
2898
+
2899
+ form_tag({ :controller => "weblog", :action => "update" }, { :multipart => "true", "style" => "width: 200px"}) =>
2900
+ <form action="/weblog/update" enctype="multipart/formdata" style="width: 200px">
2901
+
2902
+ There's even a "pretty" version for people who don't like to open tags in code and close them in HTML:
2903
+
2904
+ <%= start_form_tag :action => "update" %>
2905
+ # all the input fields
2906
+ <%= end_form_tag %>
2907
+
2908
+ (end_form_tag just returns "</form>")
2909
+
2910
+ * The selected parameter in options_for_select may now also an array of values to be selected when
2911
+ using a multiple select. Example:
2912
+
2913
+ options_for_select([ "VISA", "Mastercard", "Discover" ], ["VISA", "Discover"]) =>
2914
+ <option selected>VISA</option>\n<option>Mastercard</option>\n<option selected>Discover</option>
2915
+
2916
+ [Scott Baron]
2917
+
2918
+ * Changed the URL rewriter so controller_prefix and action_prefix can be used in isolation. You can now do:
2919
+
2920
+ url_for(:controller_prefix => "clients")
2921
+
2922
+ ...or:
2923
+
2924
+ url_for(:action_prefix => "category/messages")
2925
+
2926
+ Neither would have worked in isolation before (:controller_prefix required a :controller and :action_prefix required an :action)
2927
+
2928
+ * Started process of a cleaner separation between Action Controller and ERb-based Action Views by introducing an
2929
+ abstract base class for views. And Amita adapter could be fitted in more easily now.
2930
+
2931
+ * The date helper methods date_select and datetime_select now also use the field error wrapping
2932
+ (div with class fieldWithErrors by default).
2933
+
2934
+ * The date helper methods date_select and datetime_select can now discard selects
2935
+
2936
+ * Added option on AbstractTemplate to specify a different field error wrapping. Example:
2937
+
2938
+ ActionView::AbstractTemplate.field_error_proc = Proc.new do |html, instance|
2939
+ "<p>#{instance.method_name + instance.error_message}</p><div style='background-color: red'>#{html}</div>"
2940
+ end
2941
+
2942
+ ...would give the following on a Post#title (text field) error:
2943
+
2944
+ <p>Title can't be empty</p>
2945
+ <div style='background-color: red'>
2946
+ <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
2947
+ </div>
2948
+
2949
+ * The UrlHelper methods url_for and link_to will now by default only return paths, not complete URIs.
2950
+ That should make it easier to fit a Rails application behind a proxy or load-balancer.
2951
+ You can overwrite this by passing :only_path => false as part of the options. [Suggested by U235]
2952
+
2953
+ * Fixed bug with having your own layout for use with scaffolding [Kevin Radloff]
2954
+
2955
+ * Fixed bug where redirect_to_path didn't append the port on non-standard ports [dhawkins]
2956
+
2957
+ * Scaffolding plays nicely with single-table inheritance (LoadErrors are caught) [Jeremy Kemper]
2958
+
2959
+ * Scaffolding plays nice with plural models like Category/categories [Jeremy Kemper]
2960
+
2961
+ * Fixed missing suffix appending in scaffolding [Kevin Radloff]
2962
+
2963
+
2964
+ *0.7.9*
2965
+
2966
+ * The "form" method now present boolean fields from PostgreSQL as drop-down menu. [Scott]
2967
+
2968
+ * Scaffolding now automatically attempts to require the class that's being scaffolded.
2969
+
2970
+ * Scaffolding will use the current active layout, instead of its own, if one has been specified. Example:
2971
+
2972
+ class WeblogController < ActionController::Base
2973
+ layout "layouts/weblog"
2974
+ scaffold :post
2975
+ end
2976
+
2977
+ [Suggested by Scott]
2978
+
2979
+ * Changed url_for (and all the that drives, like redirect_to, link_to, link_for) so you can pass it a symbol instead of a hash.
2980
+ This symbol is a method reference which is then called to calculate the url. Example:
2981
+
2982
+ class WeblogController < ActionController::Base
2983
+ def update
2984
+ # do some update
2985
+ redirect_to :dashboard_url
2986
+ end
2987
+
2988
+ protected
2989
+ def dashboard_url
2990
+ if @project.active?
2991
+ url_for :controller => "project", :action => "dashboard"
2992
+ else
2993
+ url_for :controller => "account", :action => "dashboard"
2994
+ end
2995
+ end
2996
+ end
2997
+
2998
+ * Added default_url_options to specialize behavior for all url_for (and friends) calls:
2999
+
3000
+ Overwrite to implement a number of default options that all url_for-based methods will use.
3001
+ The default options should come in form of a hash, just like the one you would use for
3002
+ url_for directly. Example:
3003
+
3004
+ def default_url_options(options)
3005
+ { :controller_prefix => @project.active? ? "projects/" : "accounts/" }
3006
+ end
3007
+
3008
+ As you can infer from the example, this is mostly useful for situations where you want to
3009
+ centralize dynamic dissions about the urls as they stem from the business domain. Please note
3010
+ that any individual url_for call can always override the defaults set by this method.
3011
+
3012
+
3013
+ * Changed url_for so that an "id" passed in the :params is not treated special. You need to use the dedicated :id to get
3014
+ the special auto path-params treatment. Considering the url http://localhost:81/friends/list
3015
+
3016
+ url_for(:action => "show", :params => { "id" => 5 })
3017
+ ...used to give http://localhost:81/friends/show/5
3018
+ ......now gives http://localhost:81/friends/show?id=5
3019
+
3020
+ If you want the automated id behavior, do:
3021
+
3022
+ url_for(:action => "show", :id => 5 )
3023
+ ....which gives http://localhost:81/friends/show/5
3024
+
3025
+
3026
+ * Fixed problem with anchor being inserted before path parameters with url_for (and friends)
3027
+
3028
+
3029
+ *0.7.8*
3030
+
3031
+ * Fixed session bug where you couldn't store any objects that didn't exist in the standard library
3032
+ (such as Active Record objects).
3033
+
3034
+ * Added reset_session method for Action Controller objects to clear out all objects in the session.
3035
+
3036
+ * Fixed that exceptions raised during filters are now also caught by the default rescues
3037
+
3038
+ * Added new around_filter for doing before and after filtering with a single object [Florian Weber]:
3039
+
3040
+ class WeblogController < ActionController::Base
3041
+ around_filter BenchmarkingFilter.new
3042
+
3043
+ # Before this action is performed, BenchmarkingFilter#before(controller) is executed
3044
+ def index
3045
+ end
3046
+ # After this action has been performed, BenchmarkingFilter#after(controller) is executed
3047
+ end
3048
+
3049
+ class BenchmarkingFilter
3050
+ def initialize
3051
+ @runtime
3052
+ end
3053
+
3054
+ def before
3055
+ start_timer
3056
+ end
3057
+
3058
+ def after
3059
+ stop_timer
3060
+ report_result
3061
+ end
3062
+ end
3063
+
3064
+ * Added the options for specifying a different name and id for the form helper methods than what is guessed [Florian Weber]:
3065
+
3066
+ text_field "post", "title"
3067
+ ...just gives: <input id="post_title" name="post[title]" size="30" type="text" value="" />
3068
+
3069
+ text_field "post", "title", "id" => "title_for_post", "name" => "first_post_title"
3070
+ ...can now give: <input id="title_for_post" name="first_post_title" size="30" type="text" value="" />
3071
+
3072
+ * Added DebugHelper with a single "debug" method for doing pretty dumps of objects in the view
3073
+ (now used in the default rescues to better present the contents of session and template variables)
3074
+
3075
+ * Added note to log about the templates rendered within layouts (before just the layout was shown)
3076
+
3077
+ * Fixed redirects on https setups [Andreas]
3078
+
3079
+ * Fixed scaffolding problem on the edit action when using :suffix => true [Scott]
3080
+
3081
+ * Fixed scaffolding problem where implementing list.rhtml wouldn't work for the index action
3082
+
3083
+ * URLs generated now uses &amp; instead of just & so pages using it can validate with W3C [Spotted by Andreas]
3084
+
3085
+
3086
+ *0.7.7*
3087
+
3088
+ * Fixed bug in CGI extension that prevented multipart forms from working
3089
+
3090
+
3091
+ *0.7.6*
3092
+
3093
+ * Included ERB::Util so all templates can easily escape HTML content with <%=h @person.content %>
3094
+
3095
+ * All requests are now considered local by default, so everyone will be exposed to detailed debugging screens on errors.
3096
+ When the application is ready to go public, set ActionController::Base.consider_all_requests_local to false,
3097
+ and implement the protected method local_request? in the controller to determine when debugging screens should be shown.
3098
+
3099
+ * Fixed three bugs with the url_for/redirect_to/link_to handling. Considering the url http://localhost:81/friends/show/1
3100
+
3101
+ url_for(:action => "list")
3102
+ ...used to give http://localhost:81/friends/list/1
3103
+ ......now gives http://localhost:81/friends/list
3104
+
3105
+ url_for(:controller => "friends", :action => "destroy", :id => 5)
3106
+ ...used to give http://localhost:81/friends/destroy
3107
+ ......now gives http://localhost:81/friends/destroy/5
3108
+
3109
+ Considering the url http://localhost:81/teachers/show/t
3110
+
3111
+ url_for(:action => "list", :id => 5)
3112
+ ...used to give http://localhost:81/5eachers/list/t
3113
+ ......now gives http://localhost:81/teachers/list/5
3114
+
3115
+ [Reported by David Morton & Radsaq]
3116
+
3117
+ * Logs exception to logfile in addition to showing them for local requests
3118
+
3119
+ * Protects the eruby load behind a begin/rescue block. eRuby is not required to run ActionController.
3120
+
3121
+ * Fixed install.rb to also install clean_logger and the templates
3122
+
3123
+ * Added ActiveRecordStore as a session option. Read more in lib/action_controller/session/active_record_store.rb [Tim Bates]
3124
+
3125
+ * Change license to MIT License (and included license file in package)
3126
+
3127
+ * Application error page now returns status code 500 instead of 200
3128
+
3129
+ * Fixed using Procs as layout handlers [Florian Weber]
3130
+
3131
+ * Fixed bug with using redirects ports other than 80
3132
+
3133
+ * Added index method that calls list on scaffolding
3134
+
3135
+
3136
+ *0.7.5*
3137
+
3138
+ * First public release