metry 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (377) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +376 -0
  3. data/README.txt +62 -0
  4. data/Rakefile +23 -0
  5. data/TODO +10 -0
  6. data/example/example.rb +22 -0
  7. data/features/app_tracking.feature +11 -0
  8. data/features/basic_tracking.feature +88 -0
  9. data/features/sample_application.feature +12 -0
  10. data/features/step_definitions/tracking.rb +35 -0
  11. data/features/step_definitions/web.rb +31 -0
  12. data/features/support/env.rb +22 -0
  13. data/lib/metry.rb +19 -0
  14. data/lib/metry/experiment.rb +25 -0
  15. data/lib/metry/memory.rb +27 -0
  16. data/lib/metry/rack/tracking.rb +51 -0
  17. data/lib/metry/tokyo.rb +153 -0
  18. data/radiant/example/CHANGELOG +611 -0
  19. data/radiant/example/CONTRIBUTORS +168 -0
  20. data/radiant/example/INSTALL +38 -0
  21. data/radiant/example/LICENSE +21 -0
  22. data/radiant/example/README +60 -0
  23. data/radiant/example/Rakefile +21 -0
  24. data/radiant/example/config/boot.rb +161 -0
  25. data/radiant/example/config/database.yml +20 -0
  26. data/radiant/example/config/environment.rb +83 -0
  27. data/radiant/example/config/environments/cucumber.rb +18 -0
  28. data/radiant/example/config/environments/development.rb +17 -0
  29. data/radiant/example/config/environments/production.rb +19 -0
  30. data/radiant/example/config/environments/test.rb +36 -0
  31. data/radiant/example/config/routes.rb +1 -0
  32. data/radiant/example/db/schema.rb +112 -0
  33. data/radiant/example/features/metry.feature +139 -0
  34. data/radiant/example/features/step_definitions/experiments.rb +12 -0
  35. data/radiant/example/features/step_definitions/radiant.rb +14 -0
  36. data/radiant/example/features/step_definitions/tracking.rb +35 -0
  37. data/radiant/example/features/step_definitions/web.rb +22 -0
  38. data/radiant/example/features/support/env.rb +52 -0
  39. data/radiant/example/public/.htaccess +40 -0
  40. data/radiant/example/public/404.html +8 -0
  41. data/radiant/example/public/500.html +8 -0
  42. data/radiant/example/public/dispatch.cgi +10 -0
  43. data/radiant/example/public/dispatch.fcgi +24 -0
  44. data/radiant/example/public/dispatch.rb +10 -0
  45. data/radiant/example/public/favicon.ico +0 -0
  46. data/radiant/example/public/images/admin/add-child.png +0 -0
  47. data/radiant/example/public/images/admin/brown-bottom-line.gif +0 -0
  48. data/radiant/example/public/images/admin/clear-page-cache.png +0 -0
  49. data/radiant/example/public/images/admin/collapse.png +0 -0
  50. data/radiant/example/public/images/admin/expand.png +0 -0
  51. data/radiant/example/public/images/admin/layout.png +0 -0
  52. data/radiant/example/public/images/admin/minus.png +0 -0
  53. data/radiant/example/public/images/admin/new-homepage.png +0 -0
  54. data/radiant/example/public/images/admin/new-layout.png +0 -0
  55. data/radiant/example/public/images/admin/new-snippet.png +0 -0
  56. data/radiant/example/public/images/admin/new-user.png +0 -0
  57. data/radiant/example/public/images/admin/page.png +0 -0
  58. data/radiant/example/public/images/admin/plus.png +0 -0
  59. data/radiant/example/public/images/admin/remove-disabled.png +0 -0
  60. data/radiant/example/public/images/admin/remove.png +0 -0
  61. data/radiant/example/public/images/admin/snippet.png +0 -0
  62. data/radiant/example/public/images/admin/spinner.gif +0 -0
  63. data/radiant/example/public/images/admin/view-site.gif +0 -0
  64. data/radiant/example/public/images/admin/virtual-page.png +0 -0
  65. data/radiant/example/public/javascripts/admin/admin.js +149 -0
  66. data/radiant/example/public/javascripts/admin/ruledtable.js +13 -0
  67. data/radiant/example/public/javascripts/admin/sitemap.js +132 -0
  68. data/radiant/example/public/javascripts/admin/tabcontrol.js +133 -0
  69. data/radiant/example/public/javascripts/application.js +2 -0
  70. data/radiant/example/public/javascripts/controls.js +963 -0
  71. data/radiant/example/public/javascripts/dragdrop.js +973 -0
  72. data/radiant/example/public/javascripts/effects.js +1128 -0
  73. data/radiant/example/public/javascripts/pngfix.js +39 -0
  74. data/radiant/example/public/javascripts/prototype.js +4320 -0
  75. data/radiant/example/public/javascripts/string.js +17 -0
  76. data/radiant/example/public/robots.txt +1 -0
  77. data/radiant/example/public/stylesheets/admin/main.css +640 -0
  78. data/radiant/example/script/about +3 -0
  79. data/radiant/example/script/autospec +5 -0
  80. data/radiant/example/script/breakpointer +3 -0
  81. data/radiant/example/script/console +3 -0
  82. data/radiant/example/script/cucumber +8 -0
  83. data/radiant/example/script/dbconsole +3 -0
  84. data/radiant/example/script/extension +5 -0
  85. data/radiant/example/script/generate +18 -0
  86. data/radiant/example/script/performance/benchmarker +3 -0
  87. data/radiant/example/script/performance/profiler +3 -0
  88. data/radiant/example/script/performance/request +3 -0
  89. data/radiant/example/script/process/inspector +3 -0
  90. data/radiant/example/script/process/reaper +3 -0
  91. data/radiant/example/script/process/spawner +3 -0
  92. data/radiant/example/script/process/spinner +3 -0
  93. data/radiant/example/script/runner +3 -0
  94. data/radiant/example/script/server +3 -0
  95. data/radiant/example/script/spec +5 -0
  96. data/radiant/example/script/spec_server +116 -0
  97. data/radiant/example/script/version +5 -0
  98. data/radiant/extension/README +3 -0
  99. data/radiant/extension/Rakefile +120 -0
  100. data/radiant/extension/lib/metry_tags.rb +25 -0
  101. data/radiant/extension/lib/tasks/metry_extension_tasks.rake +28 -0
  102. data/radiant/extension/metry_extension.rb +24 -0
  103. data/test/shared.rb +6 -0
  104. data/test/test_tokyo.rb +14 -0
  105. data/vendor/rufus-tokyo/CHANGELOG.txt +112 -0
  106. data/vendor/rufus-tokyo/CREDITS.txt +27 -0
  107. data/vendor/rufus-tokyo/LICENSE.txt +21 -0
  108. data/vendor/rufus-tokyo/README.txt +310 -0
  109. data/vendor/rufus-tokyo/Rakefile +118 -0
  110. data/vendor/rufus-tokyo/TODO.txt +25 -0
  111. data/vendor/rufus-tokyo/doc/decision_table.numbers +0 -0
  112. data/vendor/rufus-tokyo/doc/rdoc-style.css +320 -0
  113. data/vendor/rufus-tokyo/lib/rufus-edo.rb +3 -0
  114. data/vendor/rufus-tokyo/lib/rufus-tokyo.rb +3 -0
  115. data/vendor/rufus-tokyo/lib/rufus/edo.rb +39 -0
  116. data/vendor/rufus-tokyo/lib/rufus/edo/README.txt +106 -0
  117. data/vendor/rufus-tokyo/lib/rufus/edo/cabcore.rb +333 -0
  118. data/vendor/rufus-tokyo/lib/rufus/edo/cabinet/abstract.rb +219 -0
  119. data/vendor/rufus-tokyo/lib/rufus/edo/cabinet/table.rb +159 -0
  120. data/vendor/rufus-tokyo/lib/rufus/edo/error.rb +36 -0
  121. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant.rb +4 -0
  122. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant/abstract.rb +137 -0
  123. data/vendor/rufus-tokyo/lib/rufus/edo/ntyrant/table.rb +141 -0
  124. data/vendor/rufus-tokyo/lib/rufus/edo/tabcore.rb +567 -0
  125. data/vendor/rufus-tokyo/lib/rufus/tokyo.rb +58 -0
  126. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/abstract.rb +568 -0
  127. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/lib.rb +230 -0
  128. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/table.rb +753 -0
  129. data/vendor/rufus-tokyo/lib/rufus/tokyo/cabinet/util.rb +425 -0
  130. data/vendor/rufus-tokyo/lib/rufus/tokyo/config.rb +161 -0
  131. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia.rb +43 -0
  132. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia/lib.rb +65 -0
  133. data/vendor/rufus-tokyo/lib/rufus/tokyo/dystopia/words.rb +71 -0
  134. data/vendor/rufus-tokyo/lib/rufus/tokyo/hmethods.rb +111 -0
  135. data/vendor/rufus-tokyo/lib/rufus/tokyo/query.rb +102 -0
  136. data/vendor/rufus-tokyo/lib/rufus/tokyo/transactions.rb +74 -0
  137. data/vendor/rufus-tokyo/lib/rufus/tokyo/ttcommons.rb +59 -0
  138. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant.rb +35 -0
  139. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/abstract.rb +146 -0
  140. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/lib.rb +153 -0
  141. data/vendor/rufus-tokyo/lib/rufus/tokyo/tyrant/table.rb +162 -0
  142. data/vendor/rufus-tokyo/rufus-tokyo.gemspec +25 -0
  143. data/vendor/rufus-tokyo/spec/cabinet_spec.rb +472 -0
  144. data/vendor/rufus-tokyo/spec/cabinetconfig_spec.rb +82 -0
  145. data/vendor/rufus-tokyo/spec/edo_cabinet_spec.rb +447 -0
  146. data/vendor/rufus-tokyo/spec/edo_ntyrant_spec.rb +299 -0
  147. data/vendor/rufus-tokyo/spec/edo_ntyrant_table_spec.rb +462 -0
  148. data/vendor/rufus-tokyo/spec/edo_table_spec.rb +560 -0
  149. data/vendor/rufus-tokyo/spec/hmethods_spec.rb +44 -0
  150. data/vendor/rufus-tokyo/spec/incr.lua +20 -0
  151. data/vendor/rufus-tokyo/spec/spec.rb +9 -0
  152. data/vendor/rufus-tokyo/spec/spec_base.rb +23 -0
  153. data/vendor/rufus-tokyo/spec/start_tyrants.sh +26 -0
  154. data/vendor/rufus-tokyo/spec/stop_tyrants.sh +9 -0
  155. data/vendor/rufus-tokyo/spec/table_spec.rb +567 -0
  156. data/vendor/rufus-tokyo/spec/tyrant_spec.rb +309 -0
  157. data/vendor/rufus-tokyo/spec/tyrant_table_spec.rb +479 -0
  158. data/vendor/rufus-tokyo/spec/util_list_spec.rb +200 -0
  159. data/vendor/rufus-tokyo/spec/util_map_spec.rb +132 -0
  160. data/vendor/rufus-tokyo/tasks/dev.rb +70 -0
  161. data/vendor/rufus-tokyo/test/bm0.rb +353 -0
  162. data/vendor/rufus-tokyo/test/bm1_compression.rb +54 -0
  163. data/vendor/rufus-tokyo/test/con0.rb +30 -0
  164. data/vendor/rufus-tokyo/test/mem.rb +49 -0
  165. data/vendor/rufus-tokyo/test/mem1.rb +44 -0
  166. data/vendor/rufus-tokyo/test/readme0.rb +17 -0
  167. data/vendor/rufus-tokyo/test/readme1.rb +21 -0
  168. data/vendor/rufus-tokyo/test/readme2.rb +15 -0
  169. data/vendor/rufus-tokyo/test/readme3.rb +24 -0
  170. data/vendor/rufus-tokyo/test/readmes_test.sh +17 -0
  171. data/vendor/webrat/.document +4 -0
  172. data/vendor/webrat/History.txt +358 -0
  173. data/vendor/webrat/MIT-LICENSE.txt +19 -0
  174. data/vendor/webrat/README.rdoc +85 -0
  175. data/vendor/webrat/Rakefile +200 -0
  176. data/vendor/webrat/install.rb +1 -0
  177. data/vendor/webrat/lib/webrat.rb +31 -0
  178. data/vendor/webrat/lib/webrat/core.rb +14 -0
  179. data/vendor/webrat/lib/webrat/core/configuration.rb +102 -0
  180. data/vendor/webrat/lib/webrat/core/elements/area.rb +31 -0
  181. data/vendor/webrat/lib/webrat/core/elements/element.rb +33 -0
  182. data/vendor/webrat/lib/webrat/core/elements/field.rb +411 -0
  183. data/vendor/webrat/lib/webrat/core/elements/form.rb +103 -0
  184. data/vendor/webrat/lib/webrat/core/elements/label.rb +31 -0
  185. data/vendor/webrat/lib/webrat/core/elements/link.rb +93 -0
  186. data/vendor/webrat/lib/webrat/core/elements/select_option.rb +35 -0
  187. data/vendor/webrat/lib/webrat/core/locators.rb +20 -0
  188. data/vendor/webrat/lib/webrat/core/locators/area_locator.rb +38 -0
  189. data/vendor/webrat/lib/webrat/core/locators/button_locator.rb +54 -0
  190. data/vendor/webrat/lib/webrat/core/locators/field_by_id_locator.rb +37 -0
  191. data/vendor/webrat/lib/webrat/core/locators/field_labeled_locator.rb +56 -0
  192. data/vendor/webrat/lib/webrat/core/locators/field_locator.rb +25 -0
  193. data/vendor/webrat/lib/webrat/core/locators/field_named_locator.rb +41 -0
  194. data/vendor/webrat/lib/webrat/core/locators/form_locator.rb +19 -0
  195. data/vendor/webrat/lib/webrat/core/locators/label_locator.rb +34 -0
  196. data/vendor/webrat/lib/webrat/core/locators/link_locator.rb +74 -0
  197. data/vendor/webrat/lib/webrat/core/locators/locator.rb +20 -0
  198. data/vendor/webrat/lib/webrat/core/locators/select_option_locator.rb +59 -0
  199. data/vendor/webrat/lib/webrat/core/logging.rb +24 -0
  200. data/vendor/webrat/lib/webrat/core/matchers.rb +4 -0
  201. data/vendor/webrat/lib/webrat/core/matchers/have_content.rb +73 -0
  202. data/vendor/webrat/lib/webrat/core/matchers/have_selector.rb +74 -0
  203. data/vendor/webrat/lib/webrat/core/matchers/have_tag.rb +21 -0
  204. data/vendor/webrat/lib/webrat/core/matchers/have_xpath.rb +147 -0
  205. data/vendor/webrat/lib/webrat/core/methods.rb +63 -0
  206. data/vendor/webrat/lib/webrat/core/mime.rb +29 -0
  207. data/vendor/webrat/lib/webrat/core/save_and_open_page.rb +48 -0
  208. data/vendor/webrat/lib/webrat/core/scope.rb +350 -0
  209. data/vendor/webrat/lib/webrat/core/session.rb +290 -0
  210. data/vendor/webrat/lib/webrat/core/xml.rb +115 -0
  211. data/vendor/webrat/lib/webrat/core/xml/hpricot.rb +19 -0
  212. data/vendor/webrat/lib/webrat/core/xml/nokogiri.rb +76 -0
  213. data/vendor/webrat/lib/webrat/core/xml/rexml.rb +24 -0
  214. data/vendor/webrat/lib/webrat/core_extensions/blank.rb +58 -0
  215. data/vendor/webrat/lib/webrat/core_extensions/deprecate.rb +8 -0
  216. data/vendor/webrat/lib/webrat/core_extensions/detect_mapped.rb +12 -0
  217. data/vendor/webrat/lib/webrat/core_extensions/meta_class.rb +6 -0
  218. data/vendor/webrat/lib/webrat/core_extensions/nil_to_param.rb +5 -0
  219. data/vendor/webrat/lib/webrat/core_extensions/tcp_socket.rb +27 -0
  220. data/vendor/webrat/lib/webrat/mechanize.rb +74 -0
  221. data/vendor/webrat/lib/webrat/merb.rb +9 -0
  222. data/vendor/webrat/lib/webrat/merb_multipart_support.rb +27 -0
  223. data/vendor/webrat/lib/webrat/merb_session.rb +80 -0
  224. data/vendor/webrat/lib/webrat/rack.rb +24 -0
  225. data/vendor/webrat/lib/webrat/rack_test.rb +32 -0
  226. data/vendor/webrat/lib/webrat/rails.rb +105 -0
  227. data/vendor/webrat/lib/webrat/rspec-rails.rb +10 -0
  228. data/vendor/webrat/lib/webrat/selenium.rb +81 -0
  229. data/vendor/webrat/lib/webrat/selenium/application_server_factory.rb +40 -0
  230. data/vendor/webrat/lib/webrat/selenium/application_servers.rb +5 -0
  231. data/vendor/webrat/lib/webrat/selenium/application_servers/base.rb +46 -0
  232. data/vendor/webrat/lib/webrat/selenium/application_servers/external.rb +26 -0
  233. data/vendor/webrat/lib/webrat/selenium/application_servers/merb.rb +50 -0
  234. data/vendor/webrat/lib/webrat/selenium/application_servers/rails.rb +44 -0
  235. data/vendor/webrat/lib/webrat/selenium/application_servers/sinatra.rb +37 -0
  236. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/button.js +19 -0
  237. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/label.js +16 -0
  238. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js +5 -0
  239. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js +12 -0
  240. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js +15 -0
  241. data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js +5 -0
  242. data/vendor/webrat/lib/webrat/selenium/matchers.rb +4 -0
  243. data/vendor/webrat/lib/webrat/selenium/matchers/have_content.rb +66 -0
  244. data/vendor/webrat/lib/webrat/selenium/matchers/have_selector.rb +49 -0
  245. data/vendor/webrat/lib/webrat/selenium/matchers/have_tag.rb +72 -0
  246. data/vendor/webrat/lib/webrat/selenium/matchers/have_xpath.rb +45 -0
  247. data/vendor/webrat/lib/webrat/selenium/selenium_extensions.js +6 -0
  248. data/vendor/webrat/lib/webrat/selenium/selenium_rc_server.rb +84 -0
  249. data/vendor/webrat/lib/webrat/selenium/selenium_session.rb +248 -0
  250. data/vendor/webrat/lib/webrat/selenium/silence_stream.rb +18 -0
  251. data/vendor/webrat/lib/webrat/sinatra.rb +44 -0
  252. data/vendor/webrat/spec/fakes/test_session.rb +34 -0
  253. data/vendor/webrat/spec/integration/merb/Rakefile +35 -0
  254. data/vendor/webrat/spec/integration/merb/app/controllers/application.rb +2 -0
  255. data/vendor/webrat/spec/integration/merb/app/controllers/exceptions.rb +13 -0
  256. data/vendor/webrat/spec/integration/merb/app/controllers/testing.rb +27 -0
  257. data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb +63 -0
  258. data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb +47 -0
  259. data/vendor/webrat/spec/integration/merb/app/views/layout/application.html.erb +12 -0
  260. data/vendor/webrat/spec/integration/merb/app/views/testing/show_form.html.erb +27 -0
  261. data/vendor/webrat/spec/integration/merb/app/views/testing/upload.html.erb +9 -0
  262. data/vendor/webrat/spec/integration/merb/config/environments/development.rb +15 -0
  263. data/vendor/webrat/spec/integration/merb/config/environments/rake.rb +11 -0
  264. data/vendor/webrat/spec/integration/merb/config/environments/test.rb +14 -0
  265. data/vendor/webrat/spec/integration/merb/config/init.rb +25 -0
  266. data/vendor/webrat/spec/integration/merb/config/rack.rb +11 -0
  267. data/vendor/webrat/spec/integration/merb/config/router.rb +34 -0
  268. data/vendor/webrat/spec/integration/merb/spec/spec.opts +1 -0
  269. data/vendor/webrat/spec/integration/merb/spec/spec_helper.rb +24 -0
  270. data/vendor/webrat/spec/integration/merb/spec/webrat_spec.rb +39 -0
  271. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb +31 -0
  272. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/common.rb +64 -0
  273. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb +124 -0
  274. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/main.thor +150 -0
  275. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/ops.rb +93 -0
  276. data/vendor/webrat/spec/integration/merb/tasks/merb.thor/utils.rb +40 -0
  277. data/vendor/webrat/spec/integration/rack/Rakefile +5 -0
  278. data/vendor/webrat/spec/integration/rack/rack_app.rb +16 -0
  279. data/vendor/webrat/spec/integration/rack/test/test_helper.rb +20 -0
  280. data/vendor/webrat/spec/integration/rack/test/webrat_rack_test.rb +67 -0
  281. data/vendor/webrat/spec/integration/rails/Rakefile +30 -0
  282. data/vendor/webrat/spec/integration/rails/app/controllers/application.rb +15 -0
  283. data/vendor/webrat/spec/integration/rails/app/controllers/buttons_controller.rb +7 -0
  284. data/vendor/webrat/spec/integration/rails/app/controllers/fields_controller.rb +4 -0
  285. data/vendor/webrat/spec/integration/rails/app/controllers/links_controller.rb +7 -0
  286. data/vendor/webrat/spec/integration/rails/app/controllers/webrat_controller.rb +43 -0
  287. data/vendor/webrat/spec/integration/rails/app/helpers/buttons_helper.rb +2 -0
  288. data/vendor/webrat/spec/integration/rails/app/helpers/fields_helper.rb +2 -0
  289. data/vendor/webrat/spec/integration/rails/app/helpers/links_helper.rb +2 -0
  290. data/vendor/webrat/spec/integration/rails/app/views/buttons/show.html.erb +11 -0
  291. data/vendor/webrat/spec/integration/rails/app/views/fields/show.html.erb +9 -0
  292. data/vendor/webrat/spec/integration/rails/app/views/links/show.html.erb +5 -0
  293. data/vendor/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb +4 -0
  294. data/vendor/webrat/spec/integration/rails/app/views/webrat/buttons.html.erb +11 -0
  295. data/vendor/webrat/spec/integration/rails/app/views/webrat/form.html.erb +28 -0
  296. data/vendor/webrat/spec/integration/rails/config/boot.rb +109 -0
  297. data/vendor/webrat/spec/integration/rails/config/environment.rb +12 -0
  298. data/vendor/webrat/spec/integration/rails/config/environments/development.rb +17 -0
  299. data/vendor/webrat/spec/integration/rails/config/environments/selenium.rb +22 -0
  300. data/vendor/webrat/spec/integration/rails/config/environments/test.rb +22 -0
  301. data/vendor/webrat/spec/integration/rails/config/initializers/inflections.rb +10 -0
  302. data/vendor/webrat/spec/integration/rails/config/initializers/mime_types.rb +5 -0
  303. data/vendor/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb +17 -0
  304. data/vendor/webrat/spec/integration/rails/config/locales/en.yml +5 -0
  305. data/vendor/webrat/spec/integration/rails/config/routes.rb +18 -0
  306. data/vendor/webrat/spec/integration/rails/public/404.html +30 -0
  307. data/vendor/webrat/spec/integration/rails/public/422.html +30 -0
  308. data/vendor/webrat/spec/integration/rails/public/500.html +33 -0
  309. data/vendor/webrat/spec/integration/rails/script/about +4 -0
  310. data/vendor/webrat/spec/integration/rails/script/console +3 -0
  311. data/vendor/webrat/spec/integration/rails/script/dbconsole +3 -0
  312. data/vendor/webrat/spec/integration/rails/script/destroy +3 -0
  313. data/vendor/webrat/spec/integration/rails/script/generate +3 -0
  314. data/vendor/webrat/spec/integration/rails/script/performance/benchmarker +3 -0
  315. data/vendor/webrat/spec/integration/rails/script/performance/profiler +3 -0
  316. data/vendor/webrat/spec/integration/rails/script/performance/request +3 -0
  317. data/vendor/webrat/spec/integration/rails/script/plugin +3 -0
  318. data/vendor/webrat/spec/integration/rails/script/process/inspector +3 -0
  319. data/vendor/webrat/spec/integration/rails/script/process/reaper +3 -0
  320. data/vendor/webrat/spec/integration/rails/script/process/spawner +3 -0
  321. data/vendor/webrat/spec/integration/rails/script/runner +3 -0
  322. data/vendor/webrat/spec/integration/rails/script/server +3 -0
  323. data/vendor/webrat/spec/integration/rails/test/integration/button_click_test.rb +80 -0
  324. data/vendor/webrat/spec/integration/rails/test/integration/fill_in_test.rb +24 -0
  325. data/vendor/webrat/spec/integration/rails/test/integration/link_click_test.rb +27 -0
  326. data/vendor/webrat/spec/integration/rails/test/integration/webrat_test.rb +97 -0
  327. data/vendor/webrat/spec/integration/rails/test/test_helper.rb +25 -0
  328. data/vendor/webrat/spec/integration/sinatra/Rakefile +5 -0
  329. data/vendor/webrat/spec/integration/sinatra/classic_app.rb +64 -0
  330. data/vendor/webrat/spec/integration/sinatra/modular_app.rb +16 -0
  331. data/vendor/webrat/spec/integration/sinatra/test/classic_app_test.rb +37 -0
  332. data/vendor/webrat/spec/integration/sinatra/test/modular_app_test.rb +18 -0
  333. data/vendor/webrat/spec/integration/sinatra/test/test_helper.rb +16 -0
  334. data/vendor/webrat/spec/private/core/configuration_spec.rb +116 -0
  335. data/vendor/webrat/spec/private/core/field_spec.rb +85 -0
  336. data/vendor/webrat/spec/private/core/link_spec.rb +24 -0
  337. data/vendor/webrat/spec/private/core/logging_spec.rb +10 -0
  338. data/vendor/webrat/spec/private/core/session_spec.rb +195 -0
  339. data/vendor/webrat/spec/private/mechanize/mechanize_session_spec.rb +81 -0
  340. data/vendor/webrat/spec/private/merb/attaches_file_spec.rb +93 -0
  341. data/vendor/webrat/spec/private/merb/merb_session_spec.rb +61 -0
  342. data/vendor/webrat/spec/private/nokogiri_spec.rb +77 -0
  343. data/vendor/webrat/spec/private/rails/attaches_file_spec.rb +81 -0
  344. data/vendor/webrat/spec/private/rails/rails_session_spec.rb +110 -0
  345. data/vendor/webrat/spec/private/selenium/application_servers/rails_spec.rb +26 -0
  346. data/vendor/webrat/spec/public/basic_auth_spec.rb +24 -0
  347. data/vendor/webrat/spec/public/check_spec.rb +191 -0
  348. data/vendor/webrat/spec/public/choose_spec.rb +118 -0
  349. data/vendor/webrat/spec/public/click_area_spec.rb +106 -0
  350. data/vendor/webrat/spec/public/click_button_spec.rb +496 -0
  351. data/vendor/webrat/spec/public/click_link_spec.rb +511 -0
  352. data/vendor/webrat/spec/public/fill_in_spec.rb +209 -0
  353. data/vendor/webrat/spec/public/locators/field_by_xpath_spec.rb +19 -0
  354. data/vendor/webrat/spec/public/locators/field_labeled_spec.rb +172 -0
  355. data/vendor/webrat/spec/public/locators/field_with_id_spec.rb +16 -0
  356. data/vendor/webrat/spec/public/matchers/contain_spec.rb +114 -0
  357. data/vendor/webrat/spec/public/matchers/have_selector_spec.rb +142 -0
  358. data/vendor/webrat/spec/public/matchers/have_tag_spec.rb +39 -0
  359. data/vendor/webrat/spec/public/matchers/have_xpath_spec.rb +136 -0
  360. data/vendor/webrat/spec/public/reload_spec.rb +10 -0
  361. data/vendor/webrat/spec/public/save_and_open_spec.rb +70 -0
  362. data/vendor/webrat/spec/public/select_date_spec.rb +112 -0
  363. data/vendor/webrat/spec/public/select_datetime_spec.rb +137 -0
  364. data/vendor/webrat/spec/public/select_spec.rb +249 -0
  365. data/vendor/webrat/spec/public/select_time_spec.rb +100 -0
  366. data/vendor/webrat/spec/public/selenium/application_server_factory_spec.rb +49 -0
  367. data/vendor/webrat/spec/public/selenium/application_servers/external_spec.rb +12 -0
  368. data/vendor/webrat/spec/public/selenium/selenium_session_spec.rb +37 -0
  369. data/vendor/webrat/spec/public/set_hidden_field_spec.rb +5 -0
  370. data/vendor/webrat/spec/public/submit_form_spec.rb +5 -0
  371. data/vendor/webrat/spec/public/visit_spec.rb +58 -0
  372. data/vendor/webrat/spec/public/within_spec.rb +177 -0
  373. data/vendor/webrat/spec/rcov.opts +1 -0
  374. data/vendor/webrat/spec/spec.opts +2 -0
  375. data/vendor/webrat/spec/spec_helper.rb +50 -0
  376. data/vendor/webrat/vendor/selenium-server.jar +0 -0
  377. metadata +442 -0
@@ -0,0 +1,611 @@
1
+ == Change Log
2
+
3
+ === 0.8.0 Asterism
4
+
5
+ * Warn about using the RedCloth 3 fallback. [Sean Cribbs, Jason Garber]
6
+ * Prevent stty errors on JRuby while running bootstrap. [Sean Cribbs]
7
+ * Moved template_name to ApplicationController [Jim Gay, Michael Kessler]
8
+ * Remove vizres plugin. [Sean Cribbs]
9
+ * Update instance config/environments to remove ResponseCache [Jim Gay]
10
+ * Remove :order option from <r:children:count />, which causes errors on
11
+ postgresql. [Sean Cribbs]
12
+ * Prevent recursion via the <r:content /> tag. [Sean Cribbs]
13
+ * Update Highline. [Sean Cribbs]
14
+ * Update Cucumber and RSpec, clean up some features and fix specs. [Sean Cribbs]
15
+ * Set the protected attributes for users in User.protected_attributes
16
+ [Jim Gay]
17
+ * Don't allow a nil ETag in SiteController. [David Cato]
18
+ * Prevent failed login message from sticking around. [Kunal Shah]
19
+ * Fix failing test regarding extension order. [Brett McHargue]
20
+ * Catch ActiveRecord::RecordNotFound in Admin::ResourceController
21
+ [Jim Gay]
22
+ * Catch missing template errors for show routes [Jim Gay]
23
+ * Fix with_error in render_matcher not causing the spec to fail when no
24
+ exception raised. [Jason Garber]
25
+ * Make features task run in instance mode. [Sean Cribbs]
26
+ * Remove Admin::AbstractModelController. [Sean Cribbs]
27
+ * Cleanup deprecated Gem::manage_gems. [Sean Cribbs]
28
+ * Add begin...rescue blocks to rspec.rake [Sean Cribbs]
29
+ * Add begin...rescue blocks for requiring cucumber. [Matt Henry]
30
+ * Deprecate ResponseCache, add Radiant::Cache based on Rack::Cache.
31
+ [Sean Cribbs]
32
+ * Use app name for session cookie. [Josh French]
33
+ * Upgrade to Rails 2.3.2. [Sean Cribbs, Rick DeNatale, Josh French,
34
+ Kunal Shah]
35
+ * Populate config.extensions so extensions can be disabled easily.
36
+ [Jason Garber]
37
+ * Convert integration specs to Cucumber stories and update RSpec. [Sean
38
+ Cribbs]
39
+ * Use ActionView::PathSet instead of normal arrays for view paths. [Pat
40
+ Allan]
41
+ * Don't raise exception on unauthenticated request to /admin/logout.
42
+ [Josh French]
43
+ * Reverse view paths order in extension loader. [Sean Cribbs, Brent
44
+ Kroeker]
45
+ * Remove obviated Ruby 1.8.7 compatibility patch. [Sean Cribbs]
46
+ * Adjust StandardTags#relative_url_for for case when relative_url_root
47
+ is nil. [Sean Cribbs]
48
+ * Correct rendering error in extensions controller. [Sean Cribbs]
49
+ * Correct typo in config/boot.rb. [Sean Cribbs]
50
+ * Major refactoring and simplification of LoginSystem. [Sean Cribbs]
51
+ * Update Haml to 2.0.7. [Sean Cribbs]
52
+ * Upgrade to Rails 2.2.2. [Sean Cribbs]
53
+ * Cleanup the config class a little, add some more documentation. [Sean
54
+ Cribbs]
55
+ * Avoid bootstrap errors related to Radiant::Config by checking for
56
+ table existence. [Sean Cribbs]
57
+ * Correct status code typo in Admin::ResourceController. [Sean Cribbs]
58
+
59
+ === 0.7.1 Engraving
60
+
61
+ * Properly escape page part contents in the UI. [John Muhl, Sean Cribbs]
62
+ * Fix tag reference popup and spec out helper better. [Sean Cribbs]
63
+
64
+ === 0.7.0 Intaglio
65
+ * Add Roasters template. [Paul du Coudray]
66
+ * Make ResponseCache spec insensitive to key order. [Sean Cribbs]
67
+ * Adjust <r:children:count /> to use same options as
68
+ <r:children:each />. [Sean Cribbs]
69
+ * Allowing for custom labels and other options in save_model_button.
70
+ [Pat Allan]
71
+ * Ignoring TextMate project files. [Pat Allan]
72
+ * Present a more helpful error message when missing a mailer template.
73
+ [Nikolay Karev]
74
+ * Use ActiveRecord:Base#[] and ActiveRecord:Base#[]= instead of
75
+ undocumented read_attribute and write_attribute. [August Lilleas]
76
+ * Make extension installer use git submodules when appropriate. [Sean
77
+ Cribbs]
78
+ * Ease extension updates by proxying deprecated named routes. [Sean
79
+ Cribbs]
80
+ * Add support and specs for conditional GETs with ETags. [Sean Cribbs]
81
+ * Initialize and update submodules when freezing edge. [John Muhl]
82
+ * Add Nginx support to ResponseCache. [Sean Cribbs]
83
+ * Changed (some) permissions examples not to use login_system_matcher.
84
+ [Brandan Lennox]
85
+ * Remove expensive grep of Rails log in spec. [Rick DeNatale]
86
+ * Make markdown filter specs be tolerant of RDiscount. [Sean Cribbs]
87
+ * Be more explicit about vendor libraries, move Textile requirement into
88
+ core. [Sean Cribbs]
89
+ * Add <r:children:each:if/unless_first/last> tags. [Rick DeNatale]
90
+ * Use RDiscount's smart quotes instead of SmartyPants. [John Muhl]
91
+ * Update extension generator to use new admin REST routing. [Jeroen
92
+ Janssen]
93
+ * Update Admin::ResourceController to overcome respond_to weaknesses by
94
+ choosing HTML format by default. [Sean Cribbs]
95
+ * Add an IE-specific integration spec. [Jeroen Janssen]
96
+ * Update dataset, spec_integration, and vizres plugins. [Sean Cribbs]
97
+ * Make specs and bootstrap work in instance mode. [Sean Cribbs]
98
+ * Override spec:integration task and rescope some spec task options to
99
+ RADIANT_ROOT. [Sean Cribbs]
100
+ * Improve rspec-1.1.12 compatibility. [Sean Cribbs]
101
+ * Add Ruby 1.8.7 compatibility patch. [Sean Cribbs]
102
+ * Fix upgrade issue from 0.5.x where class_name is expected to be
103
+ present. [Sean Cribbs]
104
+ * Remove unneeded patch. [Sean Cribbs]
105
+ * Add some inline documentation to resource controller. [Sean Cribbs]
106
+ * Fix some form problems on pages. [Sean Cribbs]
107
+ * Fix form on snippets/remove. [Sean Cribbs]
108
+ * Make sure resourceful responses deeply clone on inheritance. [Sean
109
+ Cribbs]
110
+ * Fix broken Ajax children callback. [Sean Cribbs]
111
+ * Fix broken URL in snippets/remove. [Sean Cribbs]
112
+ * Correct assume_migrated_upto_version behavior in instance mode. [Sean
113
+ Cribbs]
114
+ * Correct missing @@configuration variable in initializer. [John Muhl]
115
+ * Handle SQL special characters in extension names in migrations.
116
+ [Erik Ostrom]
117
+ * Converted extension migrations to use schema_migrations table instead
118
+ of extension_meta. [Nathaniel Talbott, Sean Cribbs, Rick DeNatale]
119
+ * Replaced scenarios with dataset. [Nathaniel Talbott, Adam Williams,
120
+ Rick DeNatale]
121
+ * Fix RSpec git submodules. [Nathaniel Talbott, Clinton Nixon]
122
+ * Generate and fix gemspec for GitHub. [Sean Cribbs]
123
+ * Add support for newer Textile and Markdown libraries, with fallbacks
124
+ on packaged libraries. [Sean Cribbs, Jason Garber]
125
+ * Make request parameters available to tags. [Brian Landau]
126
+ * Add URL method helpers to tags. [Brian Landau]
127
+ * Add some database indexes. [Yevgeny Smirnoff]
128
+ * Added notice to install RSpec if a certain database error occurs.
129
+ [Sytse Sijbrandij]
130
+ * Refactor LoginSystem to use filter-skipping instead of controller
131
+ tracking. [Sean Cribbs]
132
+ * Add generator specs and more generators. [Brian Landau]
133
+ * Add initial integration specs. [Adam Williams, Mark Imbriaco]
134
+ * Refactor admin controllers and views toward RESTful principles.
135
+ [Sean Cribbs, Clinton Nixon, Rick DeNatale]
136
+ * Remove RSpec from packaged libraries. [Sean Cribbs]
137
+ * Correct CSS validation errors. [John Muhl]
138
+ * Add String#to_slug. [Andrew O'Brien]
139
+ * New page parts should have the default filter_id. [Joe Van Dyk]
140
+ * Show draft children by default on dev host. [Sean Cribbs]
141
+ * Correct db:schema:dump error when in instance mode. [Pat Allan, Sean
142
+ Cribbs]
143
+ * Simplify set_javascripts_and_stylesheets. [Sean Cribbs]
144
+ * Cleanup boot.rb and allow generators from user-installed plugins.
145
+ [Sean Cribbs]
146
+ * Added regions to user-preferences screen. [Jim Gay]
147
+ * Apply Rails redirect sanitization patch. [Sean Cribbs]
148
+ * Updated to Rspec and Rspec-Rails 1.1.8 [Jim Gay]
149
+ * Added development dependency to INSTALL [Matt Henry]
150
+ * Added reference to sample database configuration files to INSTALL.
151
+ [Keith Bennett]
152
+ * Added ZenTest development dependency to README. [Thomas Ingram]
153
+ * Remove REXML expansion fix, included in Rails 2.1.1 [Sean Cribbs]
154
+ * Upgrade to 2.1.1 [Sean Cribbs]
155
+ * Fixed migrations for Rails 2.1 [Josh French]
156
+ * Fixed final specs [Jim Gay]
157
+ * Fixed up some specs for new Rails/RSpec [Josh French]
158
+ * Updated timezone management [Josh French]
159
+ * Update to Rails 2.1 [Jim Gay]
160
+ * Update to RSpec 1.1.4 [Jim Gay]
161
+ * Make Git extension install method recognize submodules. [Sean Cribbs]
162
+ * Fix malformed Textile in standard tag descriptions. [Jason Garber]
163
+ * Update script/extension help output. [Jim Gay]
164
+ * Allow load_subclasses to work when multiple apps are on the same
165
+ database. [Jim Gay]
166
+ * Add REXML expansion fix. [Sean Cribbs]
167
+ * Fix filter_reference admin helper for filter names that have spaces in
168
+ them. [Mislav Marohnić]
169
+ * Make script/extension more friendly, adding help and info commands.
170
+ [Sean Cribbs]
171
+ * Added more render regions to layout, snippet, user, and extension
172
+ views. [Sean Cribbs]
173
+ * Fixed the radiant:update:scripts to find the proper directory [Jim
174
+ Gay]
175
+ * Factor out dev? functionality in StandardTags, allowing other tags to
176
+ access it. [Sean Cribbs]
177
+
178
+ === 0.6.9 Etch
179
+ * Make <r:random> accept dynamically generated options. [Jim Gay, Sean
180
+ Cribbs]
181
+ * Correctly set default 'inherit' to false on <r:unless_content> [Mark
182
+ A. Yoon]
183
+ * Correct authenticity token errors when using cookie session store
184
+ [Sean Cribbs]
185
+ * Make script/extension executable. [Sean Cribbs]
186
+ * Correct bugs in radiant:freeze:edge task. [Sean Cribbs]
187
+ * Fix strange Page subclass loading errors in development mode. [Sean
188
+ Cribbs]
189
+ * Fix typo in if_content description. [Jim Gay]
190
+ * Correct error in radiant:update:configs task. [Sean Cribbs]
191
+
192
+ === 0.6.8 Incise
193
+ * Hide page publish date selector unless page.edit.published_date?
194
+ config is set. [Sean Cribbs]
195
+ * Add <r:yield /> tag to support snippets that accept blocks. [Andrew
196
+ Neil]
197
+ * Fix bug with FileNotFoundPage subclasses and draft status. [Glenn
198
+ Murray]
199
+ * Update radiant:freeze:edge task to support BRANCH, TAG, and REVISION.
200
+ [John Muhl]
201
+ * Update to Haml 2.0.1. [Jim Gay]
202
+ * Fix radiant:update:configs task to properly evaluate environment.rb
203
+ [Sean Cribbs]
204
+ * Fix page subclass loading issues. [Sean Cribbs]
205
+ * Add <r:unless_ancestor_or_self> and <r:unless_self> tags. [Tim
206
+ Gossett]
207
+ * Add specific installation modes for gzip and bzip2 compression. [Sean
208
+ Cribbs]
209
+ * Added extension installation scripts. [Sean Cribbs]
210
+ * Added find attr to r:if_content and r:unless_content to expand based
211
+ on finding 'any' or 'all' specified parts [Jim Gay]
212
+ * Added inherit attr to r:if_content and r:unless_content to search for
213
+ parts independently in the page tree. [Jim Gay]
214
+ * Update radiant:freeze:edge task to use git and GitHub. [John Muhl]
215
+ * Update login page layout from prototype. [Sean Cribbs]
216
+ * Change order of extension paths to prefer project extensions over
217
+ Radiant's. [John Muhl]
218
+ * Switch default session store to cookies [Josh French]
219
+ * Add remember-me function to login [Josh French]
220
+ * Allow an inclusive list of parts in r:if_content and r:unless_content
221
+ [Jim Gay]
222
+ * Added a defaults.page.filter config setting for setting a default page
223
+ filter. [Alex Wayne]
224
+ * Fix Users fixtures for extensions that still use test/unit. [Nick
225
+ Plante]
226
+ * Don't search for missing Page subclasses before bootstrap. [Sean
227
+ Cribbs]
228
+ * Added tolerance for missing Page class definitions. [Loren Johnson]
229
+ * Don't require an authenticity token check on the login action. [Sean
230
+ Cribbs]
231
+ * Make sure region sets are reloaded when activating extensions in
232
+ development mode. [Sean Cribbs]
233
+ * Fix Haml rendering errors. [Thomas Watson Steen]
234
+
235
+ === 0.6.7 Mordant
236
+ * Integrate shards extension into core. [Sean Cribbs]
237
+ * Convert all views to Haml. [Sean Cribbs, John Long]
238
+ * Avoid authenticity check when listing page children. [Sean Cribbs]
239
+ * Add radiant:extensions:update_all task. [Josh French]
240
+ * Tweak LoginSystem to allow attempted URL redirection after login and
241
+ auto-redirect from login URL if logged in. [Josh French]
242
+ * Add per-user salting to password encryption. [Sean Cribbs]
243
+ * Address CSRF vulnerabilities in forms. [Sean Cribbs]
244
+ * Remove clear cache action, always clear cache after saving a page.
245
+ [Sean Cribbs]
246
+
247
+ === 0.6.6 Chiseled
248
+ * Make sure extension view paths override Radiant view paths. [Josh
249
+ French]
250
+ * Fix problem in framework.rake when public/javascripts/admin doesn't
251
+ exist. [Sean Cribbs]
252
+
253
+ === 0.6.5 Chisel
254
+ * Convert StandardTags specs to nested describe blocks. [Sean Cribbs]
255
+ * Remove test/unit tests - all RSpec now. [Sean Cribbs]
256
+ * Fix radiant:update:javascripts task. [Sean Cribbs]
257
+ * Fix problem in test fixtures. [Adam Keyes]
258
+ * Add <r:meta /> tag and appropriate fields to pages table. [Sean
259
+ Cribbs]
260
+ * Move admin-related javascripts to admin/. [Bjørn Arild Mæland]
261
+ * Add if_self and if_ancestor_or_self tags. [Marty Haught, Sean Cribbs]
262
+ * Rename created_by and updated_by columns on standard models. [Sean
263
+ Cribbs]
264
+ * Fix Dir glob for extension rake tasks. [Sean Cribbs]
265
+ * Respect view_paths set by plugins in extensions. [xtoddx]
266
+ * Move extra initialization into after_initialize block. [Sean Cribbs]
267
+ * Notice area now fades away after 3 seconds. [Andrew O'Brien]
268
+ * <r:find /> now accepts paths relative to the current page. [Andrew
269
+ O'Brien]
270
+ * Update RSpec and RSpec on Rails to r3333. [Josh French]
271
+ * Add autotest support for Radiant and extensions. [Josh French]
272
+ * Add pkg/ ignore to git, correct CSS problems with fieldset tables.
273
+ [Sean Cribbs]
274
+ * Ignore git files when building gem. [Sean Cribbs]
275
+ * Fix generated test and spec harnesses, convert core extensions to
276
+ specs. [Sean Cribbs]
277
+ * Cover edge case in Page spec. [Sean Cribbs]
278
+ * Increase coverage of helper, controller, and model specs. [Sean
279
+ Cribbs]
280
+ * Correct some view and spec bugs. [Sean Cribbs]
281
+ * Added specs for view helpers. [Sean Cribbs]
282
+ * Use TH for fieldset tables and correct error in CSS. [skrat]
283
+ * Adjust admin links and r:breadcrumbs tag to deal with Rails site
284
+ prefix. [Sean Cribbs]
285
+ * Adjust tags to deal with Rails site prefix (relative_url_root).
286
+ [Sean Cribbs]
287
+ * Resolve issue with undefined method :view_paths in ActionMailer.
288
+ [Sean Cribbs]
289
+ * Fixed incompatibility with RubyGems >= 0.9.5 that broke
290
+ radiant:freeze:gems rake task. [Michael Klett]
291
+ * Fixed problem with the list of templates containing duplicates in the
292
+ db:bootstrap rake task when not running in instance mode. [John Long]
293
+ * Update Subversion URL so rake radiant:freeze:edge works. [John Long]
294
+ * Add AVLUX to list of links in Styled Blog template. [John Long]
295
+ * Fix Ruby 1.8.5 compatibility issue with Dir[]. [Sean Cribbs]
296
+ * Backup old environment.rb when copying new version. [Sean Cribbs]
297
+ * Fill out more controller specs. [Sean Cribbs]
298
+ * Fix Admin::PageController specs. [Sean Cribbs]
299
+ * Make autotest work. [Matthew Elder]
300
+ * Clean up cache files before running site_controller spec. [Matthew
301
+ Elder]
302
+ * Add r:status tag. [Andrew O'Brien]
303
+ * Add ability to set publication date manually. [Nick Plante, Sean
304
+ Cribbs]
305
+ * Remove blank nodes in r:navigation tag. [ben]
306
+ * Bubble up parsing exceptions in development mode. [jonleighton]
307
+ * Fix authorization system for controller inheritance [Josh French]
308
+ * Add 'nolinks' attribute to breadcrumbs tag. [abstractioneer]
309
+ * Fix fixtures for RSpec enabled extensions. [andreas]
310
+ * Generate extensions with RSpec support by default, fix rake and
311
+ script/spec in instance mode. [Andrew O'Brien]
312
+ * Support database templates in a Radiant instance. [Benny Degezelle]
313
+ * Make rake test:extensions work in instance mode. [Daniel Sheppard]
314
+ * Fix tests failing in instance mode with config.extensions set.
315
+ [Daniel Sheppard]
316
+ * Finished converting page_controller_test.rb to page_controller_spec.rb
317
+ [John Long]
318
+ * Completed converting user_controller_test.rb to
319
+ user_controller_spec.rb [John Long]
320
+ * Fix failing extension loading tests, remove irrelevant ones. [Sean
321
+ Cribbs]
322
+ * Fix test:extensions Rake task. [Sean Cribbs]
323
+ * Prevent following the link that toggles visibility of meta items on
324
+ page edit. [Mislav Marohnić]
325
+ * Fix extension loader and previously failing unit tests; update specs.
326
+ [Mislav Marohnić]
327
+ * Fixed problem with response_cached? returning true when perform
328
+ caching was off; fixed failing spec. [John Long]
329
+ * Fixed issues with whitespace in page.rb. [John Long]
330
+ * Fix filtering in tag reference popup. [Mislav Marohnić]
331
+ * Updated rspec and rspec_on_rails. [John Long]
332
+ * Add more controller specs and a matcher for LoginSystem features.
333
+ [Sean Cribbs]
334
+ * Make all extensions loaded by default. [Sean Cribbs]
335
+ * Update extension loader spec. [Sean Cribbs]
336
+ * Work around a nasty issue with extensions + Dependencies unloading in
337
+ development mode. [Mislav Marohnić]
338
+ * Fix the tree expansion issue in admin interface (cookie-related).
339
+ minor cleanup server-side [Mislav Marohnić]
340
+ * Cleanup up the underscore layout hack by using method chain.
341
+ [Mislav Marohnić]
342
+ * Refactored initialization, extension loading, updated plugins. [Sean
343
+ Cribbs]
344
+ * Fix SiteController#show_page for Rails 2.0. [Mislav Marohnić]
345
+ * Minor optimization for Page; remove the unneccessary 'virtual'
346
+ accessor. [Mislav Marohnić]
347
+ * Fix tests for PostgreSQL: comment out a test that breaks most of the
348
+ specs somehow. [Mislav Marohnić]
349
+ * Failures in initializer_spec.rb fixed [John Long]
350
+ * Failure in site_controller_spec.rb fixed. [John Long]
351
+ * The last test/unit failure is now fixed. [John Long]
352
+ * Failing tests in page_controller_test.rb fixed. [John Long]
353
+ * Error in response cache spec fixed. [Keeran Hawoldar]
354
+ * ActionController::Base.view_paths is now set correctly for extensions.
355
+ [John Long]
356
+ * Changed view extensions to ".html.erb" [John Long]
357
+ * Fixed content type test failures. [John Long]
358
+ * Fix page_test. [John Long]
359
+ * Updated environments. [John Long]
360
+ * Modify ApplicationController spec. [Loren Johnson]
361
+ * Modify SiteController spec. [Loren Johnson]
362
+ * Fix failing unit test for old type of logger. [Daniel Sheppard]
363
+ * Fix problems preventing script/console from running: acts_as_tree is
364
+ now a plugin, view_paths is now a core feature. [Daniel Sheppard]
365
+ * Upgrade to Rails 2.0.2 [Daniel Sheppard]
366
+ * Escape angle brackets to avoid assertion warnings in StandardTags.
367
+ [Sean Cribbs]
368
+ * Remove unused ConsoleUtils module and fix failing specs. [Sean Cribbs]
369
+ * Added standard_tags_spec.rb [John Long]
370
+ * Make sure all scenario pages have at least a body part. [Sean Cribbs]
371
+ * Added render matcher. [John Long]
372
+ * Modify pages scenario. [Loren Johnson]
373
+ * A beginning on the Application and Site controller specs. [Loren
374
+ Johnson]
375
+ * Fix failing specs - use of before(:all) when before(:each) was needed
376
+ [Daniel Sheppard]
377
+ * Fix failing extension_load_order_test.rb [Daniel Sheppard]
378
+ * Don't load scenarios stuff unless using specs. [Sean Cribbs]
379
+ * Add initializer spec. [Sean Cribbs]
380
+ * Add extension loader spec and refactorings. [Sean Cribbs]
381
+ * Added user_spec.rb [John Long]
382
+ * Upgrade Rails to 1.2.6. [Sean Cribbs]
383
+ * Added user_action_observer_spec.rb [John Long]
384
+ * Removed duplicate load paths from environments/test.rb [John Long]
385
+ * Added text_filter_spec.rb [John Long]
386
+ * Added status_spec.rb [John Long]
387
+ * Added spec/models/snippet_spec.rb [John Long]
388
+ * Added response_cache_spec.rb [John Long]
389
+ * Small improvements to page_part_spec.rb [John Long]
390
+ * Remove duplicate specs and move Radiant::ExtensionMigrator? spec to
391
+ proper location. [Sean Cribbs]
392
+ * Fix admin.js to initialize TabControl even if there are no tabs.
393
+ [Benny Degezelle]
394
+ * Correct RenderTestHelper to better resemble expectations from Rails.
395
+ [Sean Cribbs]
396
+ * Add model specs and scenarios. [John Long]
397
+ * Modify script/spec to work in instance mode. [Andrew O'Brien]
398
+ * Add RSpec to load path in test environment. [Andrew O'Brien]
399
+ * Add specs for Radiant::Extension and Radiant::Taggable. [Sean Cribbs]
400
+ * Fixed admin CSS for IE6 - ugly borders begone! [Bjørn Arild Mæland]
401
+ * Fixed that homepage is no longer cached outside of cache dir, but to
402
+ "_site-root.data". [Bjørn Arild Mæland]
403
+ * Fix typo in pngfix.js. [Mislav Marohnić]
404
+ * Turn off auto-loading RSpec stuff, even in test environment.
405
+ [Mislav Marohnić]
406
+ * Add specs for Annotatable, InheritableClassAttributes, LocalTime,
407
+ MethodObserver, and Simpleton. [Sean Cribbs]
408
+ * Add spec for Radiant::AdminUI and Users scenario. [Sean Cribbs]
409
+ * Import and create boilerplate for RSpec and Scenarios. [Sean Cribbs]
410
+ * Honor config.extensions when running rake test:extensions and also
411
+ include core extensions. [Daniel Sheppard]
412
+ * Propagate global page when using <r:content /> with inherit attribute.
413
+ [Sean Cribbs]
414
+
415
+ === 0.6.4 Gem Shaper
416
+ * Extract Archive pages into a core extension. Add automatic testing of
417
+ core extensions from default test task. [Sean Cribbs]
418
+ * Add <r:if_children /> and <r:unless_children /> tags. [Andrew Neil]
419
+ * Add HTML labels to role checkboxes in user edit template. [zilkey]
420
+ * Cleanup whitespace and line-endings in environment.rb. [Bjørn Arild
421
+ Mæland]
422
+ * Fix various SQL Server issues via Rails ticket #8886. [Mark Gallop]
423
+ * Refactor locals from _node.rhtml into Admin::NodeHelper. [Sean Cribbs]
424
+ * Fix XHTML validation errors in view templates. [Bjørn Arild Mæland]
425
+ * Update Prototype and script.aculo.us to 1.6 and 1.8 releases. [Sean
426
+ Cribbs]
427
+ * Fix edge case in tabcontrol.js where tab label is incorrect. [Sean
428
+ Cribbs]
429
+ * Remove duplication in admin.js. [Sean Cribbs]
430
+ * Factor TimeZone stuff out of Radiant::Config into a module, fix
431
+ failing tests. [Sean Cribbs]
432
+ * Add has_part?, inherits_part?, and has_or_inherits_part? methods to
433
+ Page. [ana]
434
+ * Allow setting of local timezone via Radiant::Config and
435
+ auto-adjustment of times in admin UI and <r:date /> tag. [Bodhi Philpot]
436
+ * Update to latest Prototype and script.aculo.us and refactor and
437
+ extract inline Javascript into external files. [Mislav Marohnić]
438
+ * Narrow scope of exception to only throw on missing fixture files,
439
+ allowing invalid yaml errors through. [Daniel Sheppard]
440
+ * Added tests to ensure that response_cache stays within the cache dir.
441
+ [Daniel Sheppard]
442
+ * Add assert_requires_login to LoginTestHelper. [Sean Cribbs]
443
+ * Make sure tag binding stack is popped when an exception occurs.
444
+ [jay@jay.fm]
445
+ * Clean up some apparent cruft in page.rb [Daniel Sheppard]
446
+ * Add logout method to LoginTestHelper. [Sean Cribbs]
447
+ * Run single extension tests with rake test:extensions
448
+ EXT=<extension_name> [Brian Skahan]
449
+ * Update Javascript libraries to Prototype 1.6.0_rc1 and script.aculo.us
450
+ 1.8.0_pre1. [Mislav Marohnić]
451
+ * Fixed <r:attempted_url /> tag to escape the uri [Daniel Sheppard]
452
+ * Allow parts to be accessed by name from Page#part before they are
453
+ saved. [Sean Cribbs]
454
+ * Disambiguate namespace of ActionMailer::Part. [Sean Cribbs]
455
+ * Fix namespacing problem with ActionController::RoutingError. [Sean
456
+ Cribbs]
457
+ * Update Rails to 1.2.5. [John Long]
458
+ * Ensured that the request and response are passed along to other pages
459
+ that are rendered within the same context. [John Long]
460
+ * Added <r:if_dev /> and <r:unless_dev /> tags. [Peter Berkenbosch]
461
+ * Removed session stringification patch in test helper. [Sean Cribbs]
462
+ * Update Rails to 1.2.4. [Sean Cribbs]
463
+ * Add extensions paths to the standard $LOAD_PATH so requires work
464
+ properly. [Sean Cribbs]
465
+ * Fixed some loading issues for plugins that are included in extensions.
466
+ [Sean Cribbs]
467
+
468
+ === 0.6.3 Rock Grinder
469
+ * Add generic public/ copy task to generated extensions. [Sean Cribbs]
470
+ * Fix typo in StandardTags. [oli]
471
+ * Added db:remigrate:extensions task. [Sean Cribbs]
472
+ * Show all child pages on remove confirmation, regardless of sitemap
473
+ expansion. [Sean Cribbs]
474
+ * Make LoginSystem store user ids in session rather than whole user
475
+ objects. [Sean Cribbs]
476
+ * Plugins included in an extension's vendor/plugins directory will
477
+ automatically be loaded before the extension is activated. Plugins
478
+ included in more than one extension will be loaded only once according
479
+ to the extension load order. [Sean Cribbs]
480
+ * Allow subclassing of FileNotFoundPage. [Daniel Sheppard]
481
+ * <r:find/> should not return FileNotFoundPage. [Daniel Sheppard]
482
+ * Change test for tabs to just check dupes and for the requested tab
483
+ rather than a specific list (test was breaking if a real extension added
484
+ a tab). [Daniel Sheppard]
485
+ * Ensure test extensions are loaded in the test environment. [Daniel
486
+ Sheppard]
487
+ * Prevent ExtensionInitializationTest from unloading real extensions.
488
+ [Daniel Sheppard]
489
+ * Expire the old URL from the cache when the page slug changes. [Daniel
490
+ Sheppard]
491
+ * Fix failing tests in instance mode. [Daniel Sheppard]
492
+ * Move difference assertions upstream from forms extension into a test
493
+ helper. [Sean Cribbs]
494
+ * Update Prototype to 1.5.0 final release. [Sean Cribbs]
495
+ * Allow specification of extension loading order in environment.rb
496
+ [Daniel Sheppard]
497
+ * Fix bugs in assert_global_tag_defined and assert_tag_defined of
498
+ ExtensionTagTestHelper. [Sean Cribbs]
499
+ * Make sure included stylesheets and javascripts are only linked to once
500
+ in <head>. [Sean Cribbs]
501
+ * Fix navigation tag tests. [vitali]
502
+ * Suppress errors about missing default helper by providing a blank
503
+ helper. [Sean Cribbs]
504
+ * Fix mis-alignment of "Clear cache" button when homepage not present.
505
+ [Sean Cribbs]
506
+ * Fix issues with misnesting of modules in fixture loading extension and
507
+ test suites running randomly from dispatchers. [Sean Cribbs]
508
+ * Remove invalid image alignment. [tolbrino]
509
+ * Display not_found.rhtml on standard 'not found'-like exceptions.
510
+ [Sean Cribbs]
511
+ * Make sitemap.js use relative URLs. [Earl Chew]
512
+ * Preliminary support for active_record sessions. [John Long]
513
+
514
+ === 0.6.2 Jewel Carver (June 23, 2007)
515
+ * Removed some of the database specific code from the ArchiveFinder
516
+ [Daniel Sheppard]
517
+ * Fixed typo in extension model generator documentation.
518
+ * Reworked the way the generator extension is loaded (closing #500)
519
+ [Keita]
520
+ * Fixed failing unit tests in instance mode [Daniel Sheppard]
521
+ * Modified the page edit form to use multipart/form-data (useful for an
522
+ upload extension) [Sean Cribbs]
523
+
524
+ === 0.6.1 Stone Cutter (May 5, 2007)
525
+ * Fixed a security vulnerability which caused passwords to appear in the
526
+ logs
527
+ * Fixed a bug in the site map code which caused it to forget which rows
528
+ were expanded
529
+ * The find_by_url method has been optimized to improve performance
530
+ [Daniel Sheppard]
531
+ * GET requests are now the only requests that are cached [Daniel
532
+ Sheppard]
533
+ * Added rudimentary support for extension dependency specification
534
+ through directory prefixing [Daniel Sheppard]
535
+ * Fixed syntax error in fixture loading extension [Sean Cribbs]
536
+ * Minor documentation fix for date tag [Sean Cribbs]
537
+ * Fixed a bug in the migrations that prevented 0.5.x users from
538
+ upgrading properly [Sean Cribbs]
539
+
540
+ === 0.6.0 Lapidary (April 24, 2007)
541
+ * Added support for extensions--an extremely flexible way to extend
542
+ radiant
543
+ * Merged Behaviors into the Page class; subclass page now instead
544
+ * Improved database support for Postgres and Sqlite
545
+ * Limited support for SQL Server
546
+ * Exceptions from tags now bubble up during testing
547
+ * Page parts are now sorted by ID so the order that you create them in
548
+ is preserved [Josh Ferguson]
549
+ * Implemented tag documentation DSL and UI [Sean Cribbs]
550
+ * Reworked the setup code
551
+ * Renamed script/setup_database to rake db:bootstrap
552
+ * Reworked the upgrade code to work around rake tasks
553
+ * Added rake tasks for freezing and unfreezing radiant to the edge
554
+ * r:children:each, r:children:first, and r:children:last now all accept
555
+ the same ordering and limit attributes and have the same defaults
556
+ * Snippets are now responsive to global context via the r:page tag. This
557
+ means that any tags inside r:page will refer to the page currently being
558
+ rendered, i.e. the page requested, not the local contextual page via
559
+ tags like r:children:each, etc. This is most relevant to recursive
560
+ snippets like the sitemapper example [Sean Cribbs]
561
+ * r:navigation now uses the pipe character ("|") to delimit URLs in the
562
+ urls attribute rather than the semi-colon
563
+ * r:date now accepts a "for" attribute that specifies which attribute of
564
+ the page to render. Valid values of the attribute are published_at,
565
+ updated_at, created_at, and now.
566
+ * Created the r:cycle tag to make alternating tables and lists possible
567
+ * Added popups for filter and tag documentation inside the page editing
568
+ interface
569
+ * Added support for optimistic locking for all models [Daniel Sheppard]
570
+ * Added support to Radiant::Config for boolean values [Sean Cribbs]
571
+ * Caching no longer stores the headers and body in the same file [Daniel
572
+ Sheppard]
573
+ * Added support for the X-Sendfile header that works in conjunction with
574
+ caching to speed it up (by default X-Sendfile support is off) [Daniel
575
+ Sheppard]
576
+ * Moved the images and stylesheets into images/admin and
577
+ stylesheets/admin respectively to make it easier for Radiant's assets to
578
+ coexist easily with the site's assets
579
+ * Improved the Javascript that automatically updates the slug and
580
+ breadcrumb based off of the title so that it now response to all change
581
+ events
582
+ * For the full scoop on what's changed see Sean Cribbs' detailed blog
583
+ post: http://seancribbs.com/tech/2007/04/18/whats-new-in-radiant-0-6
584
+
585
+ === 0.5.2 Raildust (August 10, 2006)
586
+ * Upgraded Rails to 1.1.6 because of a security vulnerability in 1.1.5
587
+
588
+ === 0.5.1 Gemdust (August 10, 2006)
589
+ * Upgraded Rails to 1.1.5 because of a security vulnerability in 1.1.4
590
+ * Added basic support for upgrades to the `radiant` command
591
+ * Gem now includes the .htaccess file (this should make Apache users
592
+ happier)
593
+ * Updated icons for layouts
594
+ * Migrations are now repaired so that you can run `rake migrate` to
595
+ create the initial database. (`script/setup_database` is still the
596
+ recommended method.) (closes ticket #46) [Daniel Sheppard]
597
+ * When you collapse a branch in the admin page tree view and move to
598
+ another tab the collapsed status is now saved so that when you return,
599
+ the collapsed status is preserved. Also the status of collapsed branches
600
+ is preserved when collapsing and expanding parent nodes. (closes ticket
601
+ #29) [Daniel Sheppard]
602
+ * Fixed documentation problem in response_cache.rb (closes ticket #142)
603
+ [Paul Smith]
604
+ * Fixed problem with timezones on fixtures causing tests to fail in
605
+ Japan (closes ticket #154) [Bodhi Philpot]
606
+ * Fixed a problem with an error being thrown when the <r:context /> tag
607
+ was rendered with the inherit attribute set to true and the page part
608
+ did not exist (closes ticket #155) [Bodhi Philpot]
609
+
610
+ === 0.5.0 Grindstone (June 28, 2006)
611
+ * First release.