rango 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1046) hide show
  1. data/CONTRIBUTORS +2 -0
  2. data/README.textile +9 -10
  3. data/benchmarks/ab.rb +6 -0
  4. data/benchmarks/bm/boot.rb +20 -0
  5. data/{lib/rango/helpers/spec/fixture/app/views/foo/bar.html.erb → benchmarks/bm/callbacks.rb} +0 -0
  6. data/benchmarks/bm/request.rb +4 -0
  7. data/benchmarks/bm/routers.rb +22 -0
  8. data/benchmarks/bm/stack.rb +19 -0
  9. data/{spec/rango/auth/core/authenticated_helper_spec.rb → benchmarks/bm/templates.rb} +0 -0
  10. data/benchmarks/helper.rb +7 -0
  11. data/benchmarks/stubs/merb-app/Rakefile +35 -0
  12. data/benchmarks/stubs/merb-app/app/controllers/application.rb +4 -0
  13. data/benchmarks/stubs/merb-app/app/controllers/exceptions.rb +15 -0
  14. data/benchmarks/stubs/merb-app/app/helpers/global_helpers.rb +7 -0
  15. data/benchmarks/stubs/merb-app/app/models/user.rb +19 -0
  16. data/benchmarks/stubs/merb-app/app/views/exceptions/not_acceptable.html.erb +63 -0
  17. data/benchmarks/stubs/merb-app/app/views/exceptions/not_found.html.erb +47 -0
  18. data/benchmarks/stubs/merb-app/app/views/layout/application.html.erb +12 -0
  19. data/benchmarks/stubs/merb-app/autotest/discover.rb +4 -0
  20. data/benchmarks/stubs/merb-app/autotest/merb.rb +154 -0
  21. data/benchmarks/stubs/merb-app/autotest/merb_rspec.rb +167 -0
  22. data/benchmarks/stubs/merb-app/config/database.yml +33 -0
  23. data/benchmarks/stubs/merb-app/config/dependencies.rb +36 -0
  24. data/benchmarks/stubs/merb-app/config/environments/development.rb +17 -0
  25. data/benchmarks/stubs/merb-app/config/environments/production.rb +12 -0
  26. data/benchmarks/stubs/merb-app/config/environments/rake.rb +13 -0
  27. data/benchmarks/stubs/merb-app/config/environments/staging.rb +12 -0
  28. data/benchmarks/stubs/merb-app/config/environments/test.rb +14 -0
  29. data/benchmarks/stubs/merb-app/config/init.rb +26 -0
  30. data/benchmarks/stubs/merb-app/config/rack.rb +13 -0
  31. data/benchmarks/stubs/merb-app/config/router.rb +46 -0
  32. data/benchmarks/stubs/merb-app/doc/rdoc/generators/merb_generator.rb +1364 -0
  33. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/api_grease.js +640 -0
  34. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/index.html.erb +37 -0
  35. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.css +252 -0
  36. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb.rb +353 -0
  37. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
  38. data/benchmarks/stubs/merb-app/doc/rdoc/generators/template/merb/prototype.js +2515 -0
  39. data/benchmarks/stubs/merb-app/merb/merb-auth/setup.rb +46 -0
  40. data/benchmarks/stubs/merb-app/merb/merb-auth/strategies.rb +13 -0
  41. data/benchmarks/stubs/merb-app/merb/session/session.rb +11 -0
  42. data/benchmarks/stubs/merb-app/public/favicon.ico +0 -0
  43. data/benchmarks/stubs/merb-app/public/images/merb.jpg +0 -0
  44. data/benchmarks/stubs/merb-app/public/javascripts/application.js +1 -0
  45. data/benchmarks/stubs/merb-app/public/javascripts/jquery.js +19 -0
  46. data/benchmarks/stubs/merb-app/public/merb.fcgi +22 -0
  47. data/benchmarks/stubs/merb-app/public/robots.txt +5 -0
  48. data/benchmarks/stubs/merb-app/public/stylesheets/master.css +119 -0
  49. data/{spec/rango/auth/core/authentication_spec.rb → benchmarks/stubs/merb-app/spec/spec.opts} +0 -0
  50. data/benchmarks/stubs/merb-app/spec/spec_helper.rb +27 -0
  51. data/benchmarks/stubs/merb-app/tasks/doc.thor +151 -0
  52. data/benchmarks/stubs/merb-app/tasks/merb.thor/app_script.rb +33 -0
  53. data/benchmarks/stubs/merb-app/tasks/merb.thor/common.rb +70 -0
  54. data/benchmarks/stubs/merb-app/tasks/merb.thor/gem_ext.rb +127 -0
  55. data/benchmarks/stubs/merb-app/tasks/merb.thor/main.thor +152 -0
  56. data/benchmarks/stubs/merb-app/tasks/merb.thor/ops.rb +95 -0
  57. data/benchmarks/stubs/merb-app/tasks/merb.thor/utils.rb +42 -0
  58. data/benchmarks/stubs/merb-core/Rakefile +35 -0
  59. data/benchmarks/stubs/merb-core/app/controllers/application.rb +4 -0
  60. data/benchmarks/stubs/merb-core/app/controllers/exceptions.rb +15 -0
  61. data/benchmarks/stubs/merb-core/app/helpers/global_helpers.rb +7 -0
  62. data/benchmarks/stubs/merb-core/app/views/exceptions/not_acceptable.html.erb +63 -0
  63. data/benchmarks/stubs/merb-core/app/views/exceptions/not_found.html.erb +47 -0
  64. data/benchmarks/stubs/merb-core/app/views/layout/application.html.erb +12 -0
  65. data/benchmarks/stubs/merb-core/autotest/discover.rb +1 -0
  66. data/benchmarks/stubs/merb-core/autotest/merb.rb +151 -0
  67. data/benchmarks/stubs/merb-core/autotest/merb_rspec.rb +167 -0
  68. data/benchmarks/stubs/merb-core/config/environments/development.rb +17 -0
  69. data/benchmarks/stubs/merb-core/config/environments/production.rb +12 -0
  70. data/benchmarks/stubs/merb-core/config/environments/rake.rb +13 -0
  71. data/benchmarks/stubs/merb-core/config/environments/staging.rb +12 -0
  72. data/benchmarks/stubs/merb-core/config/environments/test.rb +14 -0
  73. data/benchmarks/stubs/merb-core/config/init.rb +27 -0
  74. data/benchmarks/stubs/merb-core/config/rack.rb +13 -0
  75. data/benchmarks/stubs/merb-core/config/router.rb +43 -0
  76. data/benchmarks/stubs/merb-core/doc/rdoc/generators/merb_generator.rb +1364 -0
  77. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/api_grease.js +640 -0
  78. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/index.html.erb +37 -0
  79. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.css +252 -0
  80. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb.rb +353 -0
  81. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/merb_doc_styles.css +492 -0
  82. data/benchmarks/stubs/merb-core/doc/rdoc/generators/template/merb/prototype.js +2515 -0
  83. data/benchmarks/stubs/merb-core/public/favicon.ico +0 -0
  84. data/benchmarks/stubs/merb-core/public/images/merb.jpg +0 -0
  85. data/benchmarks/stubs/merb-core/public/javascripts/application.js +1 -0
  86. data/benchmarks/stubs/merb-core/public/merb.fcgi +22 -0
  87. data/benchmarks/stubs/merb-core/public/robots.txt +5 -0
  88. data/benchmarks/stubs/merb-core/public/stylesheets/master.css +119 -0
  89. data/{spec/rango/auth/core/callbacks_spec.rb → benchmarks/stubs/merb-core/spec/spec.opts} +0 -0
  90. data/benchmarks/stubs/merb-core/spec/spec_helper.rb +22 -0
  91. data/benchmarks/stubs/merb-core/tasks/merb.thor/app_script.rb +33 -0
  92. data/benchmarks/stubs/merb-core/tasks/merb.thor/common.rb +70 -0
  93. data/benchmarks/stubs/merb-core/tasks/merb.thor/gem_ext.rb +127 -0
  94. data/benchmarks/stubs/merb-core/tasks/merb.thor/main.thor +152 -0
  95. data/benchmarks/stubs/merb-core/tasks/merb.thor/ops.rb +95 -0
  96. data/benchmarks/stubs/merb-core/tasks/merb.thor/utils.rb +42 -0
  97. data/benchmarks/stubs/merb-flat/README.txt +10 -0
  98. data/benchmarks/stubs/merb-flat/Rakefile +35 -0
  99. data/benchmarks/stubs/merb-flat/application.rb +17 -0
  100. data/benchmarks/stubs/merb-flat/config/framework.rb +9 -0
  101. data/benchmarks/stubs/merb-flat/config/init.rb +42 -0
  102. data/benchmarks/stubs/merb-flat/spec/spec_helper.rb +26 -0
  103. data/benchmarks/stubs/merb-flat/tasks/merb.thor/app_script.rb +33 -0
  104. data/benchmarks/stubs/merb-flat/tasks/merb.thor/common.rb +70 -0
  105. data/benchmarks/stubs/merb-flat/tasks/merb.thor/gem_ext.rb +127 -0
  106. data/benchmarks/stubs/merb-flat/tasks/merb.thor/main.thor +152 -0
  107. data/benchmarks/stubs/merb-flat/tasks/merb.thor/ops.rb +95 -0
  108. data/benchmarks/stubs/merb-flat/tasks/merb.thor/utils.rb +42 -0
  109. data/benchmarks/stubs/merb-flat/views/foo.html.erb +3 -0
  110. data/benchmarks/stubs/merb-very-flat/Rakefile +35 -0
  111. data/benchmarks/stubs/merb-very-flat/merb-very-flat.rb +61 -0
  112. data/benchmarks/stubs/merb-very-flat/spec/spec_helper.rb +26 -0
  113. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/app_script.rb +33 -0
  114. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/common.rb +70 -0
  115. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/gem_ext.rb +127 -0
  116. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/main.thor +152 -0
  117. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/ops.rb +95 -0
  118. data/benchmarks/stubs/merb-very-flat/tasks/merb.thor/utils.rb +42 -0
  119. data/benchmarks/stubs/rails/README +243 -0
  120. data/benchmarks/stubs/rails/Rakefile +10 -0
  121. data/benchmarks/stubs/rails/app/controllers/application_controller.rb +12 -0
  122. data/benchmarks/stubs/rails/app/helpers/application_helper.rb +5 -0
  123. data/benchmarks/stubs/rails/config/boot.rb +112 -0
  124. data/benchmarks/stubs/rails/config/database.yml +22 -0
  125. data/benchmarks/stubs/rails/config/environment.rb +43 -0
  126. data/benchmarks/stubs/rails/config/environments/development.rb +19 -0
  127. data/benchmarks/stubs/rails/config/environments/production.rb +30 -0
  128. data/benchmarks/stubs/rails/config/environments/test.rb +30 -0
  129. data/benchmarks/stubs/rails/config/initializers/backtrace_silencers.rb +9 -0
  130. data/benchmarks/stubs/rails/config/initializers/inflections.rb +12 -0
  131. data/benchmarks/stubs/rails/config/initializers/mime_types.rb +7 -0
  132. data/benchmarks/stubs/rails/config/initializers/new_rails_defaults.rb +21 -0
  133. data/benchmarks/stubs/rails/config/initializers/session_store.rb +17 -0
  134. data/benchmarks/stubs/rails/config/locales/en.yml +5 -0
  135. data/benchmarks/stubs/rails/config/routes.rb +45 -0
  136. data/benchmarks/stubs/rails/doc/README_FOR_APP +2 -0
  137. data/{spec/rango/auth/core/errors_spec.rb → benchmarks/stubs/rails/log/development.log} +0 -0
  138. data/{spec/rango/auth/core/responses_spec.rb → benchmarks/stubs/rails/log/production.log} +0 -0
  139. data/{spec/rango/auth/core/session_mixin_spec.rb → benchmarks/stubs/rails/log/server.log} +0 -0
  140. data/{spec/rango/auth/core/spec/helpers/authentication_helper_spec_spec.rb → benchmarks/stubs/rails/log/test.log} +0 -0
  141. data/benchmarks/stubs/rails/public/404.html +30 -0
  142. data/benchmarks/stubs/rails/public/422.html +30 -0
  143. data/benchmarks/stubs/rails/public/500.html +30 -0
  144. data/{spec/rango/auth/core/spec/merb-auth-core/activation_fixture_spec.rb → benchmarks/stubs/rails/public/favicon.ico} +0 -0
  145. data/benchmarks/stubs/rails/public/images/rails.png +0 -0
  146. data/benchmarks/stubs/rails/public/index.html +275 -0
  147. data/benchmarks/stubs/rails/public/javascripts/application.js +2 -0
  148. data/benchmarks/stubs/rails/public/javascripts/controls.js +963 -0
  149. data/benchmarks/stubs/rails/public/javascripts/dragdrop.js +973 -0
  150. data/benchmarks/stubs/rails/public/javascripts/effects.js +1128 -0
  151. data/benchmarks/stubs/rails/public/javascripts/prototype.js +4320 -0
  152. data/benchmarks/stubs/rails/public/robots.txt +5 -0
  153. data/benchmarks/stubs/rails/script/about +4 -0
  154. data/benchmarks/stubs/rails/script/console +3 -0
  155. data/benchmarks/stubs/rails/script/dbconsole +3 -0
  156. data/benchmarks/stubs/rails/script/destroy +3 -0
  157. data/benchmarks/stubs/rails/script/generate +3 -0
  158. data/benchmarks/stubs/rails/script/performance/benchmarker +3 -0
  159. data/benchmarks/stubs/rails/script/performance/profiler +3 -0
  160. data/benchmarks/stubs/rails/script/plugin +3 -0
  161. data/benchmarks/stubs/rails/script/runner +3 -0
  162. data/benchmarks/stubs/rails/script/server +3 -0
  163. data/benchmarks/stubs/rails/test/performance/browsing_test.rb +11 -0
  164. data/benchmarks/stubs/rails/test/test_helper.rb +40 -0
  165. data/{spec/rango/auth/core/spec/merb-auth-core/authentication_spec_spec.rb → benchmarks/stubs/ramaze.rb} +0 -0
  166. data/benchmarks/stubs/sinatra.rb +11 -0
  167. data/bin/rango +10 -9
  168. data/cucumber.yml +1 -0
  169. data/doc/0.0.3/Array.html +354 -0
  170. data/doc/0.0.3/AttributeMixin.html +697 -0
  171. data/doc/0.0.3/Class.html +102 -0
  172. data/doc/0.0.3/ColoredString.html +476 -0
  173. data/doc/0.0.3/Enumerable.html +256 -0
  174. data/doc/0.0.3/File.html +909 -0
  175. data/doc/0.0.3/Hash.html +1586 -0
  176. data/doc/0.0.3/Kernel.html +956 -0
  177. data/doc/0.0.3/OS.html +740 -0
  178. data/doc/0.0.3/Object.html +466 -0
  179. data/doc/0.0.3/ObjectSpace.html +184 -0
  180. data/doc/0.0.3/Path.html +2499 -0
  181. data/doc/0.0.3/Range.html +190 -0
  182. data/doc/0.0.3/Rango.html +379 -0
  183. data/doc/0.0.3/Rango/ApplicationMixin.html +396 -0
  184. data/doc/0.0.3/Rango/Bundling.html +23 -0
  185. data/doc/0.0.3/Rango/Bundling/RequireStrategy.html +283 -0
  186. data/doc/0.0.3/Rango/Bundling/Strategy.html +703 -0
  187. data/doc/0.0.3/Rango/CLI.html +23 -0
  188. data/doc/0.0.3/Rango/CLI/Generator.html +762 -0
  189. data/doc/0.0.3/Rango/CLI/Templater.html +258 -0
  190. data/doc/0.0.3/Rango/CallableStrategy.html +300 -0
  191. data/doc/0.0.3/Rango/Chainable.html +181 -0
  192. data/doc/0.0.3/Rango/Configurable.html +199 -0
  193. data/doc/0.0.3/Rango/Controller.html +962 -0
  194. data/doc/0.0.3/Rango/ControllerMixin.html +860 -0
  195. data/doc/0.0.3/Rango/ControllerStrategy.html +264 -0
  196. data/doc/0.0.3/Rango/DependencyStrategy.html +116 -0
  197. data/doc/0.0.3/Rango/Dispatcher.html +305 -0
  198. data/doc/0.0.3/Rango/Form.html +162 -0
  199. data/doc/0.0.3/Rango/GemDependencyStrategy.html +210 -0
  200. data/doc/0.0.3/Rango/Generator.html +93 -0
  201. data/doc/0.0.3/Rango/GenericViews.html +128 -0
  202. data/doc/0.0.3/Rango/GitDependencyStrategy.html +224 -0
  203. data/doc/0.0.3/Rango/GithubDependencyStrategy.html +118 -0
  204. data/doc/0.0.3/Rango/Handler.html +474 -0
  205. data/doc/0.0.3/Rango/Helpers.html +1335 -0
  206. data/doc/0.0.3/Rango/Hookable.html +202 -0
  207. data/doc/0.0.3/Rango/ImportMixin.html +755 -0
  208. data/doc/0.0.3/Rango/Logger.html +920 -0
  209. data/doc/0.0.3/Rango/Mini.html +117 -0
  210. data/doc/0.0.3/Rango/ModelForm.html +42 -0
  211. data/doc/0.0.3/Rango/Project.html +516 -0
  212. data/doc/0.0.3/Rango/RenderMixin.html +23 -0
  213. data/doc/0.0.3/Rango/Request.html +1177 -0
  214. data/doc/0.0.3/Rango/Route.html +751 -0
  215. data/doc/0.0.3/Rango/Router.html +42 -0
  216. data/doc/0.0.3/Rango/Router/Dispatcher.html +311 -0
  217. data/doc/0.0.3/Rango/RouterStrategy.html +258 -0
  218. data/doc/0.0.3/Rango/Session.html +23 -0
  219. data/doc/0.0.3/Rango/Settings.html +23 -0
  220. data/doc/0.0.3/Rango/Settings/Erubis.html +23 -0
  221. data/doc/0.0.3/Rango/Settings/Framework.html +254 -0
  222. data/doc/0.0.3/Rango/Settings/Haml.html +23 -0
  223. data/doc/0.0.3/Rango/Settings/Template.html +23 -0
  224. data/doc/0.0.3/Rango/SimpleTemplate.html +187 -0
  225. data/doc/0.0.3/Rango/StrategyMixin.html +261 -0
  226. data/doc/0.0.3/Rango/Tasks.html +219 -0
  227. data/doc/0.0.3/Rango/Template.html +95 -0
  228. data/doc/0.0.3/Rango/Template/Adapter.html +90 -0
  229. data/doc/0.0.3/Rango/Templates.html +116 -0
  230. data/doc/0.0.3/Rango/Templates/Adapter.html +128 -0
  231. data/doc/0.0.3/Rango/Templates/Template.html +636 -0
  232. data/doc/0.0.3/Rango/Templates/TemplateHelpers.html +328 -0
  233. data/doc/0.0.3/RangoThor.html +205 -0
  234. data/doc/0.0.3/String.html +307 -0
  235. data/doc/0.0.3/Time.html +193 -0
  236. data/doc/0.0.3/TimeDSL.html +601 -0
  237. data/doc/0.0.3/all-methods.html +1908 -0
  238. data/doc/0.0.3/all-namespaces.html +114 -0
  239. data/doc/0.0.3/app.js +18 -0
  240. data/doc/0.0.3/head/Array.html +354 -0
  241. data/doc/0.0.3/head/AttributeMixin.html +697 -0
  242. data/doc/0.0.3/head/Class.html +102 -0
  243. data/doc/0.0.3/head/ColoredString.html +476 -0
  244. data/doc/0.0.3/head/Enumerable.html +256 -0
  245. data/doc/0.0.3/head/File.html +909 -0
  246. data/doc/0.0.3/head/Hash.html +1586 -0
  247. data/doc/0.0.3/head/Kernel.html +956 -0
  248. data/doc/0.0.3/head/OS.html +740 -0
  249. data/doc/0.0.3/head/Object.html +466 -0
  250. data/doc/0.0.3/head/ObjectSpace.html +184 -0
  251. data/doc/0.0.3/head/Path.html +2499 -0
  252. data/doc/0.0.3/head/Range.html +190 -0
  253. data/doc/0.0.3/head/Rango.html +379 -0
  254. data/doc/0.0.3/head/Rango/ApplicationMixin.html +396 -0
  255. data/doc/0.0.3/head/Rango/Bundling.html +23 -0
  256. data/doc/0.0.3/head/Rango/Bundling/RequireStrategy.html +283 -0
  257. data/doc/0.0.3/head/Rango/Bundling/Strategy.html +703 -0
  258. data/doc/0.0.3/head/Rango/CLI.html +23 -0
  259. data/doc/0.0.3/head/Rango/CLI/Generator.html +762 -0
  260. data/doc/0.0.3/head/Rango/CLI/Templater.html +258 -0
  261. data/doc/0.0.3/head/Rango/CallableStrategy.html +300 -0
  262. data/doc/0.0.3/head/Rango/Chainable.html +181 -0
  263. data/doc/0.0.3/head/Rango/Configurable.html +199 -0
  264. data/doc/0.0.3/head/Rango/Controller.html +962 -0
  265. data/doc/0.0.3/head/Rango/ControllerMixin.html +860 -0
  266. data/doc/0.0.3/head/Rango/ControllerStrategy.html +264 -0
  267. data/doc/0.0.3/head/Rango/DependencyStrategy.html +116 -0
  268. data/doc/0.0.3/head/Rango/Dispatcher.html +305 -0
  269. data/doc/0.0.3/head/Rango/Form.html +162 -0
  270. data/doc/0.0.3/head/Rango/GemDependencyStrategy.html +210 -0
  271. data/doc/0.0.3/head/Rango/Generator.html +93 -0
  272. data/doc/0.0.3/head/Rango/GenericViews.html +128 -0
  273. data/doc/0.0.3/head/Rango/GitDependencyStrategy.html +224 -0
  274. data/doc/0.0.3/head/Rango/GithubDependencyStrategy.html +118 -0
  275. data/doc/0.0.3/head/Rango/Handler.html +474 -0
  276. data/doc/0.0.3/head/Rango/Helpers.html +1335 -0
  277. data/doc/0.0.3/head/Rango/Hookable.html +202 -0
  278. data/doc/0.0.3/head/Rango/ImportMixin.html +755 -0
  279. data/doc/0.0.3/head/Rango/Logger.html +920 -0
  280. data/doc/0.0.3/head/Rango/Mini.html +117 -0
  281. data/doc/0.0.3/head/Rango/ModelForm.html +42 -0
  282. data/doc/0.0.3/head/Rango/Project.html +516 -0
  283. data/doc/0.0.3/head/Rango/RenderMixin.html +23 -0
  284. data/doc/0.0.3/head/Rango/Request.html +1177 -0
  285. data/doc/0.0.3/head/Rango/Route.html +751 -0
  286. data/doc/0.0.3/head/Rango/Router.html +42 -0
  287. data/doc/0.0.3/head/Rango/Router/Dispatcher.html +311 -0
  288. data/doc/0.0.3/head/Rango/RouterStrategy.html +258 -0
  289. data/doc/0.0.3/head/Rango/Session.html +23 -0
  290. data/doc/0.0.3/head/Rango/Settings.html +23 -0
  291. data/doc/0.0.3/head/Rango/Settings/Erubis.html +23 -0
  292. data/doc/0.0.3/head/Rango/Settings/Framework.html +254 -0
  293. data/doc/0.0.3/head/Rango/Settings/Haml.html +23 -0
  294. data/doc/0.0.3/head/Rango/Settings/Template.html +23 -0
  295. data/doc/0.0.3/head/Rango/SimpleTemplate.html +187 -0
  296. data/doc/0.0.3/head/Rango/StrategyMixin.html +261 -0
  297. data/doc/0.0.3/head/Rango/Tasks.html +219 -0
  298. data/doc/0.0.3/head/Rango/Template.html +95 -0
  299. data/doc/0.0.3/head/Rango/Template/Adapter.html +90 -0
  300. data/doc/0.0.3/head/Rango/Templates.html +116 -0
  301. data/doc/0.0.3/head/Rango/Templates/Adapter.html +128 -0
  302. data/doc/0.0.3/head/Rango/Templates/Template.html +636 -0
  303. data/doc/0.0.3/head/Rango/Templates/TemplateHelpers.html +328 -0
  304. data/doc/0.0.3/head/RangoThor.html +205 -0
  305. data/doc/0.0.3/head/String.html +307 -0
  306. data/doc/0.0.3/head/Time.html +193 -0
  307. data/doc/0.0.3/head/TimeDSL.html +601 -0
  308. data/doc/0.0.3/head/all-methods.html +1908 -0
  309. data/doc/0.0.3/head/all-namespaces.html +114 -0
  310. data/doc/0.0.3/head/app.js +18 -0
  311. data/doc/0.0.3/head/index.html +18 -0
  312. data/doc/0.0.3/head/jquery.js +11 -0
  313. data/doc/0.0.3/head/readme.html +36 -0
  314. data/doc/0.0.3/head/style.css +68 -0
  315. data/doc/0.0.3/head/syntax_highlight.css +21 -0
  316. data/doc/0.0.3/index.html +18 -0
  317. data/doc/0.0.3/jquery.js +11 -0
  318. data/doc/0.0.3/readme.html +36 -0
  319. data/doc/0.0.3/style.css +68 -0
  320. data/doc/0.0.3/syntax_highlight.css +21 -0
  321. data/doc/0.0.4/Array.html +354 -0
  322. data/doc/0.0.4/AttributeMixin.html +697 -0
  323. data/doc/0.0.4/Class.html +102 -0
  324. data/doc/0.0.4/ColoredString.html +476 -0
  325. data/doc/0.0.4/Enumerable.html +256 -0
  326. data/doc/0.0.4/File.html +909 -0
  327. data/doc/0.0.4/Hash.html +1586 -0
  328. data/doc/0.0.4/Kernel.html +956 -0
  329. data/doc/0.0.4/OS.html +740 -0
  330. data/doc/0.0.4/Object.html +466 -0
  331. data/doc/0.0.4/ObjectSpace.html +184 -0
  332. data/doc/0.0.4/Path.html +2499 -0
  333. data/doc/0.0.4/Range.html +190 -0
  334. data/doc/0.0.4/Rango.html +379 -0
  335. data/doc/0.0.4/Rango/ApplicationMixin.html +396 -0
  336. data/doc/0.0.4/Rango/Bundling.html +23 -0
  337. data/doc/0.0.4/Rango/Bundling/RequireStrategy.html +283 -0
  338. data/doc/0.0.4/Rango/Bundling/Strategy.html +703 -0
  339. data/doc/0.0.4/Rango/CLI.html +23 -0
  340. data/doc/0.0.4/Rango/CLI/Generator.html +762 -0
  341. data/doc/0.0.4/Rango/CLI/Templater.html +258 -0
  342. data/doc/0.0.4/Rango/CallableStrategy.html +300 -0
  343. data/doc/0.0.4/Rango/Chainable.html +181 -0
  344. data/doc/0.0.4/Rango/Configurable.html +199 -0
  345. data/doc/0.0.4/Rango/Controller.html +962 -0
  346. data/doc/0.0.4/Rango/ControllerMixin.html +860 -0
  347. data/doc/0.0.4/Rango/ControllerStrategy.html +264 -0
  348. data/doc/0.0.4/Rango/DependencyStrategy.html +116 -0
  349. data/doc/0.0.4/Rango/Dispatcher.html +305 -0
  350. data/doc/0.0.4/Rango/Form.html +162 -0
  351. data/doc/0.0.4/Rango/GemDependencyStrategy.html +210 -0
  352. data/doc/0.0.4/Rango/Generator.html +93 -0
  353. data/doc/0.0.4/Rango/GenericViews.html +128 -0
  354. data/doc/0.0.4/Rango/GitDependencyStrategy.html +224 -0
  355. data/doc/0.0.4/Rango/GithubDependencyStrategy.html +118 -0
  356. data/doc/0.0.4/Rango/Handler.html +474 -0
  357. data/doc/0.0.4/Rango/Helpers.html +1335 -0
  358. data/doc/0.0.4/Rango/Hookable.html +202 -0
  359. data/doc/0.0.4/Rango/ImportMixin.html +755 -0
  360. data/doc/0.0.4/Rango/Logger.html +920 -0
  361. data/doc/0.0.4/Rango/Mini.html +117 -0
  362. data/doc/0.0.4/Rango/ModelForm.html +42 -0
  363. data/doc/0.0.4/Rango/Project.html +516 -0
  364. data/doc/0.0.4/Rango/RenderMixin.html +23 -0
  365. data/doc/0.0.4/Rango/Request.html +1177 -0
  366. data/doc/0.0.4/Rango/Route.html +751 -0
  367. data/doc/0.0.4/Rango/Router.html +42 -0
  368. data/doc/0.0.4/Rango/Router/Dispatcher.html +311 -0
  369. data/doc/0.0.4/Rango/RouterStrategy.html +258 -0
  370. data/doc/0.0.4/Rango/Session.html +23 -0
  371. data/doc/0.0.4/Rango/Settings.html +23 -0
  372. data/doc/0.0.4/Rango/Settings/Erubis.html +23 -0
  373. data/doc/0.0.4/Rango/Settings/Framework.html +254 -0
  374. data/doc/0.0.4/Rango/Settings/Haml.html +23 -0
  375. data/doc/0.0.4/Rango/Settings/Template.html +23 -0
  376. data/doc/0.0.4/Rango/SimpleTemplate.html +187 -0
  377. data/doc/0.0.4/Rango/StrategyMixin.html +261 -0
  378. data/doc/0.0.4/Rango/Tasks.html +219 -0
  379. data/doc/0.0.4/Rango/Template.html +95 -0
  380. data/doc/0.0.4/Rango/Template/Adapter.html +90 -0
  381. data/doc/0.0.4/Rango/Templates.html +116 -0
  382. data/doc/0.0.4/Rango/Templates/Adapter.html +128 -0
  383. data/doc/0.0.4/Rango/Templates/Template.html +636 -0
  384. data/doc/0.0.4/Rango/Templates/TemplateHelpers.html +328 -0
  385. data/doc/0.0.4/RangoThor.html +205 -0
  386. data/doc/0.0.4/String.html +307 -0
  387. data/doc/0.0.4/Time.html +193 -0
  388. data/doc/0.0.4/TimeDSL.html +601 -0
  389. data/doc/0.0.4/all-methods.html +1908 -0
  390. data/doc/0.0.4/all-namespaces.html +114 -0
  391. data/doc/0.0.4/app.js +18 -0
  392. data/doc/0.0.4/head/Array.html +354 -0
  393. data/doc/0.0.4/head/AttributeMixin.html +697 -0
  394. data/doc/0.0.4/head/Class.html +102 -0
  395. data/doc/0.0.4/head/ColoredString.html +476 -0
  396. data/doc/0.0.4/head/Enumerable.html +256 -0
  397. data/doc/0.0.4/head/File.html +909 -0
  398. data/doc/0.0.4/head/Hash.html +1586 -0
  399. data/doc/0.0.4/head/Kernel.html +956 -0
  400. data/doc/0.0.4/head/OS.html +740 -0
  401. data/doc/0.0.4/head/Object.html +466 -0
  402. data/doc/0.0.4/head/ObjectSpace.html +184 -0
  403. data/doc/0.0.4/head/Path.html +2499 -0
  404. data/doc/0.0.4/head/Range.html +190 -0
  405. data/doc/0.0.4/head/Rango.html +379 -0
  406. data/doc/0.0.4/head/Rango/ApplicationMixin.html +396 -0
  407. data/doc/0.0.4/head/Rango/Bundling.html +23 -0
  408. data/doc/0.0.4/head/Rango/Bundling/RequireStrategy.html +283 -0
  409. data/doc/0.0.4/head/Rango/Bundling/Strategy.html +703 -0
  410. data/doc/0.0.4/head/Rango/CLI.html +23 -0
  411. data/doc/0.0.4/head/Rango/CLI/Generator.html +762 -0
  412. data/doc/0.0.4/head/Rango/CLI/Templater.html +258 -0
  413. data/doc/0.0.4/head/Rango/CallableStrategy.html +300 -0
  414. data/doc/0.0.4/head/Rango/Chainable.html +181 -0
  415. data/doc/0.0.4/head/Rango/Configurable.html +199 -0
  416. data/doc/0.0.4/head/Rango/Controller.html +962 -0
  417. data/doc/0.0.4/head/Rango/ControllerMixin.html +860 -0
  418. data/doc/0.0.4/head/Rango/ControllerStrategy.html +264 -0
  419. data/doc/0.0.4/head/Rango/DependencyStrategy.html +116 -0
  420. data/doc/0.0.4/head/Rango/Dispatcher.html +305 -0
  421. data/doc/0.0.4/head/Rango/Form.html +162 -0
  422. data/doc/0.0.4/head/Rango/GemDependencyStrategy.html +210 -0
  423. data/doc/0.0.4/head/Rango/Generator.html +93 -0
  424. data/doc/0.0.4/head/Rango/GenericViews.html +128 -0
  425. data/doc/0.0.4/head/Rango/GitDependencyStrategy.html +224 -0
  426. data/doc/0.0.4/head/Rango/GithubDependencyStrategy.html +118 -0
  427. data/doc/0.0.4/head/Rango/Handler.html +474 -0
  428. data/doc/0.0.4/head/Rango/Helpers.html +1335 -0
  429. data/doc/0.0.4/head/Rango/Hookable.html +202 -0
  430. data/doc/0.0.4/head/Rango/ImportMixin.html +755 -0
  431. data/doc/0.0.4/head/Rango/Logger.html +920 -0
  432. data/doc/0.0.4/head/Rango/Mini.html +117 -0
  433. data/doc/0.0.4/head/Rango/ModelForm.html +42 -0
  434. data/doc/0.0.4/head/Rango/Project.html +516 -0
  435. data/doc/0.0.4/head/Rango/RenderMixin.html +23 -0
  436. data/doc/0.0.4/head/Rango/Request.html +1177 -0
  437. data/doc/0.0.4/head/Rango/Route.html +751 -0
  438. data/doc/0.0.4/head/Rango/Router.html +42 -0
  439. data/doc/0.0.4/head/Rango/Router/Dispatcher.html +311 -0
  440. data/doc/0.0.4/head/Rango/RouterStrategy.html +258 -0
  441. data/doc/0.0.4/head/Rango/Session.html +23 -0
  442. data/doc/0.0.4/head/Rango/Settings.html +23 -0
  443. data/doc/0.0.4/head/Rango/Settings/Erubis.html +23 -0
  444. data/doc/0.0.4/head/Rango/Settings/Framework.html +254 -0
  445. data/doc/0.0.4/head/Rango/Settings/Haml.html +23 -0
  446. data/doc/0.0.4/head/Rango/Settings/Template.html +23 -0
  447. data/doc/0.0.4/head/Rango/SimpleTemplate.html +187 -0
  448. data/doc/0.0.4/head/Rango/StrategyMixin.html +261 -0
  449. data/doc/0.0.4/head/Rango/Tasks.html +219 -0
  450. data/doc/0.0.4/head/Rango/Template.html +95 -0
  451. data/doc/0.0.4/head/Rango/Template/Adapter.html +90 -0
  452. data/doc/0.0.4/head/Rango/Templates.html +116 -0
  453. data/doc/0.0.4/head/Rango/Templates/Adapter.html +128 -0
  454. data/doc/0.0.4/head/Rango/Templates/Template.html +636 -0
  455. data/doc/0.0.4/head/Rango/Templates/TemplateHelpers.html +328 -0
  456. data/doc/0.0.4/head/RangoThor.html +205 -0
  457. data/doc/0.0.4/head/String.html +307 -0
  458. data/doc/0.0.4/head/Time.html +193 -0
  459. data/doc/0.0.4/head/TimeDSL.html +601 -0
  460. data/doc/0.0.4/head/all-methods.html +1908 -0
  461. data/doc/0.0.4/head/all-namespaces.html +114 -0
  462. data/doc/0.0.4/head/app.js +18 -0
  463. data/doc/0.0.4/head/index.html +18 -0
  464. data/doc/0.0.4/head/jquery.js +11 -0
  465. data/doc/0.0.4/head/readme.html +36 -0
  466. data/doc/0.0.4/head/style.css +68 -0
  467. data/doc/0.0.4/head/syntax_highlight.css +21 -0
  468. data/doc/0.0.4/index.html +18 -0
  469. data/doc/0.0.4/jquery.js +11 -0
  470. data/doc/0.0.4/readme.html +36 -0
  471. data/doc/0.0.4/style.css +68 -0
  472. data/doc/0.0.4/syntax_highlight.css +21 -0
  473. data/doc/head/Array.html +247 -7
  474. data/doc/head/AttributeMixin.html +127 -43
  475. data/doc/head/ColoredString.html +1 -1
  476. data/doc/head/Enumerable.html +256 -0
  477. data/doc/head/File.html +909 -0
  478. data/doc/head/Hash.html +1043 -100
  479. data/doc/head/Kernel.html +378 -63
  480. data/doc/head/OS.html +740 -0
  481. data/doc/head/Object.html +363 -37
  482. data/doc/head/ObjectSpace.html +94 -13
  483. data/doc/head/Range.html +87 -6
  484. data/doc/head/Rango.html +21 -39
  485. data/doc/head/Rango/ApplicationMixin.html +4 -4
  486. data/doc/head/Rango/Bundling/RequireStrategy.html +1 -1
  487. data/doc/head/Rango/Bundling/Strategy.html +1 -1
  488. data/doc/head/Rango/CLI.html +23 -0
  489. data/doc/head/Rango/CLI/Generator.html +762 -0
  490. data/doc/head/Rango/CLI/Templater.html +258 -0
  491. data/doc/head/Rango/Chainable.html +14 -14
  492. data/doc/head/Rango/ControllerMixin.html +36 -36
  493. data/doc/head/Rango/Form.html +1 -1
  494. data/doc/head/Rango/Helpers.html +89 -25
  495. data/doc/head/Rango/Hookable.html +3 -3
  496. data/doc/head/Rango/Mini.html +117 -0
  497. data/doc/head/Rango/ModelForm.html +1 -1
  498. data/doc/head/Rango/Router.html +1 -1
  499. data/doc/head/Rango/Settings/Framework.html +64 -8
  500. data/doc/head/Rango/Settings/Template.html +23 -0
  501. data/doc/head/Rango/Tasks.html +10 -42
  502. data/doc/head/Rango/Templates/Adapter.html +1 -1
  503. data/doc/head/Rango/Templates/Template.html +21 -21
  504. data/doc/head/Rango/Templates/TemplateHelpers.html +12 -12
  505. data/doc/head/String.html +152 -8
  506. data/doc/head/Time.html +193 -0
  507. data/doc/head/TimeDSL.html +28 -39
  508. data/doc/head/all-methods.html +236 -340
  509. data/doc/head/all-namespaces.html +21 -21
  510. data/doc/head/readme.html +14 -12
  511. data/examples/README.textile +13 -0
  512. data/{spec/rango/auth/core/spec/merb-auth-core/callbacks_spec_spec.rb → examples/TODO} +0 -0
  513. data/examples/flat/basic.ru +31 -0
  514. data/examples/flat/generic_views.ru +16 -0
  515. data/examples/flat/info.ru +18 -0
  516. data/examples/flat/simple_controller.ru +1 -0
  517. data/examples/flat/templates/about/author.html.haml +1 -0
  518. data/{spec/rango/auth/core/spec/merb-auth-core/customizations_spec_spec.rb → examples/flat/templates/about/contact.html.haml} +0 -0
  519. data/{spec/rango/auth/core/spec/merb-auth-core/errors_spec_spec.rb → examples/flat/templates/base.html.haml} +0 -0
  520. data/examples/flat/templates/info.html.haml +25 -0
  521. data/examples/twitter/Thorfile +12 -0
  522. data/examples/twitter/config.ru +48 -0
  523. data/examples/twitter/development.db +0 -0
  524. data/examples/twitter/factories.rb +19 -0
  525. data/examples/twitter/init.rb +15 -0
  526. data/{spec/rango/auth/core/spec/merb-auth-core/failed_login_spec_spec.rb → examples/twitter/media/hello-static.txt} +0 -0
  527. data/examples/twitter/models.rb +13 -0
  528. data/examples/twitter/run.rb +8 -0
  529. data/examples/twitter/settings.rb +5 -0
  530. data/examples/twitter/settings_local.rb +6 -0
  531. data/examples/twitter/templates/base.html.haml +9 -0
  532. data/examples/twitter/templates/index.html.haml +4 -0
  533. data/examples/twitter/templates/show.html.haml +4 -0
  534. data/examples/twitter/templates/timeline.html.haml +10 -0
  535. data/examples/twitter/views.rb +40 -0
  536. data/features/TODO.txt +5 -0
  537. data/{spec/rango/auth/core/spec/merb-auth-core/merb-auth-core_spec_spec.rb → features/auth/warden.feature} +0 -0
  538. data/features/generators/app.feature +11 -0
  539. data/{spec/rango/auth/core/spec/merb-auth-core/router_helper_spec_spec.rb → features/generators/bigapp.feature} +0 -0
  540. data/{spec/rango/auth/core/spec/merb-auth-core/strategy_spec_spec.rb → features/generators/features.feature} +0 -0
  541. data/{spec/rango/auth/core/spec/spec_helper_spec.rb → features/generators/flat.feature} +0 -0
  542. data/{spec/rango/auth/core/strategy_spec.rb → features/generators/project.feature} +0 -0
  543. data/{spec/rango/auth/core_spec.rb → features/generators/pupu.feature} +0 -0
  544. data/{spec/rango/auth/more/mixins/redirect_back_spec.rb → features/generators/stub.feature} +0 -0
  545. data/features/generators_steps.rb +26 -0
  546. data/{spec/rango/auth/more/mixins/salted_user/ar_salted_user_spec.rb → features/routers/rack-router.feature} +0 -0
  547. data/{spec/rango/auth/more/mixins/salted_user/dm_salted_user_spec.rb → features/routers/rack.feature} +0 -0
  548. data/{spec/rango/auth/more/mixins/salted_user/relaxdb_salted_user_spec.rb → features/routers/urlmap.feature} +0 -0
  549. data/features/shared/given_steps.rb +1 -0
  550. data/features/shared/then_steps.rb +1 -0
  551. data/features/shared/when_steps.rb +1 -0
  552. data/features/support/env.rb +64 -0
  553. data/lib/rango.rb +15 -6
  554. data/lib/rango/boot.rb +36 -25
  555. data/lib/rango/bundling/dependency.rb +3 -7
  556. data/lib/rango/bundling/strategies/copy.rb +2 -2
  557. data/lib/rango/bundling/strategies/gem.rb +2 -2
  558. data/lib/rango/bundling/strategies/git.rb +2 -2
  559. data/lib/rango/bundling/strategies/hg.rb +2 -2
  560. data/lib/rango/bundling/strategy.rb +2 -2
  561. data/lib/rango/cli/generator.rb +119 -12
  562. data/lib/rango/cli/templater.rb +89 -0
  563. data/lib/rango/contrib/pagination.rb +5 -3
  564. data/lib/rango/contrib/pagination/adapters/datamapper.rb +2 -0
  565. data/lib/rango/contrib/pagination/helpers.rb +3 -1
  566. data/lib/rango/contrib/pagination/page.rb +2 -0
  567. data/lib/rango/contrib/pagination/strategies.rb +2 -2
  568. data/lib/rango/contrib/syndication.rb +1 -1
  569. data/lib/rango/controller.rb +151 -0
  570. data/lib/rango/exceptions.rb +90 -241
  571. data/lib/rango/ext.rb +85 -14
  572. data/lib/rango/ext/array.rb +20 -0
  573. data/lib/rango/ext/attribute.rb +14 -2
  574. data/lib/rango/ext/colored_string.rb +1 -1
  575. data/lib/rango/ext/enumerable.rb +30 -0
  576. data/lib/rango/ext/file.rb +84 -0
  577. data/lib/rango/ext/hash.rb +127 -1
  578. data/lib/rango/ext/kernel.rb +41 -24
  579. data/lib/rango/ext/object.rb +56 -0
  580. data/lib/rango/ext/object_space.rb +10 -5
  581. data/lib/rango/ext/os.rb +89 -0
  582. data/lib/rango/ext/platform.rb +27 -0
  583. data/lib/rango/ext/random.rb +11 -8
  584. data/lib/rango/ext/string.rb +17 -3
  585. data/lib/rango/ext/thor.rb +12 -12
  586. data/lib/rango/ext/time.rb +15 -0
  587. data/lib/rango/ext/time_dsl.rb +2 -3
  588. data/lib/rango/ext/unique_array.rb +16 -0
  589. data/lib/rango/forms/form.rb +2 -2
  590. data/lib/rango/generic_views.rb +18 -0
  591. data/lib/rango/helpers.rb +2 -2
  592. data/lib/rango/helpers/assets.rb +2 -2
  593. data/lib/rango/helpers/general.rb +13 -2
  594. data/lib/rango/helpers/merb-helpers.rb +2 -39
  595. data/lib/rango/helpers/merb-helpers/core_ext.rb +1 -1
  596. data/lib/rango/helpers/merb-helpers/core_ext/numeric.rb +2 -2
  597. data/lib/rango/helpers/merb-helpers/date_time_formatting.rb +1 -1
  598. data/lib/rango/helpers/merb-helpers/date_time_helpers.rb +2 -2
  599. data/lib/rango/helpers/merb-helpers/form/builder.rb +1 -1
  600. data/lib/rango/helpers/merb-helpers/form/helpers.rb +1 -1
  601. data/lib/rango/helpers/merb-helpers/form_helpers.rb +4 -4
  602. data/lib/rango/helpers/merb-helpers/tag_helpers.rb +2 -2
  603. data/lib/rango/helpers/merb-helpers/text_helpers.rb +1 -1
  604. data/lib/rango/helpers/syntax.rb +2 -2
  605. data/lib/rango/loggers/fireruby.rb +1 -1
  606. data/lib/rango/loggers/logger.rb +2 -2
  607. data/lib/rango/mixins/application.rb +2 -2
  608. data/lib/rango/mixins/chainable.rb +68 -0
  609. data/lib/rango/mixins/configurable.rb +2 -2
  610. data/lib/rango/mixins/controller.rb +4 -3
  611. data/lib/rango/mixins/hookable.rb +32 -0
  612. data/lib/rango/mixins/import.rb +2 -2
  613. data/lib/rango/mixins/mini.rb +29 -0
  614. data/lib/rango/mixins/strategy.rb +2 -2
  615. data/lib/rango/orm/adapters/datamapper/fields.rb +1 -1
  616. data/lib/rango/orm/adapters/datamapper/setup.rb +1 -1
  617. data/lib/rango/orm/adapters/datamapper/support.rb +3 -3
  618. data/lib/rango/orm/adapters/datamapper/tasks.thor +1 -1
  619. data/lib/rango/orm/adapters/datamapper/types/unicode_string.rb +1 -1
  620. data/{spec/rango/auth/more/mixins/salted_user/sq_salted_user_spec.rb → lib/rango/orm/adapters/sequel/tasks.thor} +0 -0
  621. data/lib/rango/project.rb +2 -2
  622. data/lib/rango/rack/middlewares/basic.rb +46 -0
  623. data/lib/rango/rack/middlewares/email_obfuscator.rb +25 -0
  624. data/lib/rango/rack/middlewares/encoding.rb +2 -2
  625. data/lib/rango/rack/middlewares/static.rb +41 -37
  626. data/lib/rango/rack/request.rb +2 -2
  627. data/lib/rango/rango.rb +34 -21
  628. data/lib/rango/router.rb +17 -0
  629. data/lib/rango/router/adapters/rack_router.rb +8 -0
  630. data/lib/rango/router/adapters/urlmap.rb +10 -0
  631. data/lib/rango/router/adapters/usher.rb +8 -0
  632. data/lib/rango/router/specification.txt +1 -6
  633. data/lib/rango/settings.rb +2 -2
  634. data/lib/rango/settings/erubis.rb +2 -2
  635. data/lib/rango/settings/framework.rb +7 -3
  636. data/lib/rango/settings/haml.rb +3 -3
  637. data/lib/rango/settings/template.rb +17 -0
  638. data/lib/rango/support/cucumber/steps/given_steps.rb +1 -1
  639. data/lib/rango/support/cucumber/steps/then_steps.rb +1 -1
  640. data/lib/rango/support/cucumber/steps/when_steps.rb +1 -1
  641. data/lib/rango/tasks/bundle.thor +1 -1
  642. data/lib/rango/tasks/stats.thor +1 -0
  643. data/lib/rango/templates/adapter.rb +3 -3
  644. data/lib/rango/templates/adapters/erb.rb +23 -5
  645. data/lib/rango/templates/adapters/erubis.rb +41 -36
  646. data/lib/rango/templates/adapters/haml.rb +13 -4
  647. data/lib/rango/templates/template.rb +3 -1
  648. data/rango.gemspec +32 -24
  649. data/rango.gemspec.erb +43 -0
  650. data/spec/factories.rb +3 -2
  651. data/spec/rango/boot_spec.rb +2 -6
  652. data/spec/rango/{auth/more/mixins/salted_user_spec.rb → bundling/strategies/copy_spec.rb} +0 -0
  653. data/spec/rango/{auth/more/spec/merb-auth-more_spec_spec.rb → bundling/strategies/gem_spec.rb} +0 -0
  654. data/spec/rango/{auth/more/spec/mixins/redirect_back_spec_spec.rb → bundling/strategies/git_spec.rb} +0 -0
  655. data/spec/rango/{auth/more/spec/mixins/salted_user_spec_spec.rb → bundling/strategies/hg_spec.rb} +0 -0
  656. data/spec/rango/{auth/more/spec/spec_helper_spec.rb → bundling/strategy_spec.rb} +0 -0
  657. data/spec/rango/{auth/more/strategies/abstract_password_spec.rb → cli/generator_spec.rb} +0 -0
  658. data/spec/rango/{auth/more/strategies/basic/basic_auth_spec.rb → cli/templater_spec.rb} +0 -0
  659. data/spec/rango/{auth/more/strategies/basic/openid_spec.rb → contrib/pagination/adapters/datamapper_spec.rb} +0 -0
  660. data/spec/rango/contrib/pagination/page_spec.rb +2 -2
  661. data/spec/rango/controller_spec.rb +24 -0
  662. data/spec/rango/exceptions_spec.rb +74 -0
  663. data/spec/rango/ext/array_spec.rb +19 -0
  664. data/spec/rango/ext/attribute_spec.rb +37 -0
  665. data/spec/rango/ext/colored_string_spec.rb +9 -0
  666. data/spec/rango/ext/enumerable_spec.rb +52 -0
  667. data/spec/rango/ext/file_spec.rb +78 -0
  668. data/spec/rango/ext/hash_spec.rb +91 -0
  669. data/spec/rango/ext/kernel_spec.rb +9 -0
  670. data/spec/rango/ext/object_space_spec.rb +17 -0
  671. data/spec/rango/ext/object_spec.rb +57 -0
  672. data/spec/rango/ext/os_spec.rb +121 -0
  673. data/spec/rango/ext/random_spec.rb +31 -0
  674. data/spec/rango/ext/string_spec.rb +23 -0
  675. data/spec/rango/ext/thor_spec.rb +26 -0
  676. data/spec/rango/ext/time_dsl_spec.rb +86 -0
  677. data/spec/rango/ext/time_spec.rb +11 -0
  678. data/spec/rango/ext_spec.rb +182 -0
  679. data/spec/rango/{auth/more/strategies/basic/password_form_spec.rb → generic_views_spec.rb} +0 -0
  680. data/spec/rango/helpers/merb-helpers/core_ext_spec.rb +21 -0
  681. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/application.rb +4 -0
  682. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_check_box.rb +4 -0
  683. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_file_field.rb +4 -0
  684. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_hidden_field.rb +4 -0
  685. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_option_tag.rb +4 -0
  686. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_password_field.rb +4 -0
  687. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_button.rb +4 -0
  688. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_radio_group.rb +4 -0
  689. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_select.rb +4 -0
  690. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_area.rb +4 -0
  691. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/bound_text_field.rb +4 -0
  692. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/button.rb +4 -0
  693. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/check_box.rb +4 -0
  694. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/custom_builder.rb +4 -0
  695. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/delete_button.rb +4 -0
  696. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/exceptions.rb +25 -0
  697. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/field_set.rb +4 -0
  698. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/fields_for.rb +3 -0
  699. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/file_field.rb +4 -0
  700. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/foo.rb +23 -0
  701. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/form.rb +4 -0
  702. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/form_for.rb +4 -0
  703. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/hacker.rb +4 -0
  704. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/hidden_field.rb +4 -0
  705. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/label.rb +4 -0
  706. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/numeric_ext.rb +4 -0
  707. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/option_tag.rb +4 -0
  708. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/password_field.rb +4 -0
  709. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_button.rb +4 -0
  710. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/radio_group.rb +4 -0
  711. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date.rb +4 -0
  712. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/relative_date_span.rb +4 -0
  713. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/select.rb +4 -0
  714. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/specs_controller.rb +13 -0
  715. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/submit.rb +4 -0
  716. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/tag_helper.rb +23 -0
  717. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/text_area.rb +4 -0
  718. data/spec/rango/helpers/merb-helpers/fixture/app/controllers/text_field.rb +4 -0
  719. data/spec/rango/helpers/merb-helpers/fixture/app/helpers/global_helpers.rb +7 -0
  720. data/spec/rango/helpers/merb-helpers/fixture/app/models/fake_dm_model.rb +27 -0
  721. data/spec/rango/helpers/merb-helpers/fixture/app/models/first_generic_fake_model.rb +59 -0
  722. data/spec/rango/helpers/merb-helpers/fixture/app/models/hacker_generic_model.rb +7 -0
  723. data/spec/rango/helpers/merb-helpers/fixture/app/models/second_generic_fake_model.rb +20 -0
  724. data/spec/rango/helpers/merb-helpers/fixture/app/models/third_generic_fake_model.rb +5 -0
  725. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/basic.html.erb +0 -0
  726. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/basic_unchecked.html.erb +0 -0
  727. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/checked.html.erb +0 -0
  728. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/errors.html.erb +0 -0
  729. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/label.html.erb +0 -0
  730. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/on_and_off.html.erb +0 -0
  731. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_check_box_specs/raise_value_error.html.erb +0 -0
  732. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/additional_attributes.html.erb +0 -0
  733. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/takes_string.html.erb +0 -0
  734. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_file_field_specs/with_label.html.erb +0 -0
  735. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/basic.html.erb +0 -0
  736. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/errors.html.erb +0 -0
  737. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/hidden_error.html.erb +0 -0
  738. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_hidden_field_specs/label.html.erb +0 -0
  739. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/grouped.html.erb +0 -0
  740. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/nested.html.erb +0 -0
  741. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_option_tag_specs/text_and_value.html.erb +0 -0
  742. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/attributes.html.erb +0 -0
  743. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/basic.html.erb +0 -0
  744. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_password_field_specs/label.html.erb +0 -0
  745. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_button_specs/basic.html.erb +0 -0
  746. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/basic.html.erb +0 -0
  747. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/hashes.html.erb +0 -0
  748. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/mixed.html.erb +0 -0
  749. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_radio_group_specs/override_id.html.erb +0 -0
  750. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/basic.html.erb +0 -0
  751. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/blank.html.erb +0 -0
  752. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/label.html.erb +0 -0
  753. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/multiple.html.erb +0 -0
  754. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/prompt.html.erb +0 -0
  755. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/with_options.html.erb +0 -0
  756. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_select_specs/with_options_with_blank.html.erb +0 -0
  757. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_area_specs/basic.html.erb +0 -0
  758. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_area_specs/label.html.erb +0 -0
  759. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/bound_text_field_specs/basic.html.erb +0 -0
  760. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/button_with_label.html.erb +0 -0
  761. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/button_with_values.html.erb +0 -0
  762. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/button_specs/disabled_button.html.erb +0 -0
  763. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/basic.html.erb +0 -0
  764. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/boolean.html.erb +0 -0
  765. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/disabled.html.erb +0 -0
  766. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/label.html.erb +0 -0
  767. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/on_off_is_boolean.html.erb +0 -0
  768. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raise_unless_both_on_and_off.html.erb +0 -0
  769. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raises_error_if_not_boolean.html.erb +0 -0
  770. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/raises_error_if_on_off_and_boolean_false.html.erb +0 -0
  771. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/simple.html.erb +0 -0
  772. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/to_string.html.erb +0 -0
  773. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/check_box_specs/unchecked.html.erb +0 -0
  774. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/custom_builder_specs/everything.html.erb +0 -0
  775. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_explicit_url.html.erb +0 -0
  776. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_extra_params.html.erb +0 -0
  777. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/delete_with_label.html.erb +0 -0
  778. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/delete_button_specs/simple_delete.html.erb +0 -0
  779. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/client_error.html.erb +0 -0
  780. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/internal_server_error.html.erb +0 -0
  781. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/not_acceptable.html.erb +0 -0
  782. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/exeptions/not_found.html.erb +0 -0
  783. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/basic.html.erb +0 -0
  784. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/midstream.html.erb +0 -0
  785. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fields_for_specs/nil.html.erb +0 -0
  786. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/fieldset_specs/legend.html.erb +0 -0
  787. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/disabled.html.erb +0 -0
  788. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/makes_multipart.html.erb +0 -0
  789. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/with_label.html.erb +0 -0
  790. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/file_field_specs/with_values.html.erb +0 -0
  791. data/spec/rango/{auth/more_spec.rb → helpers/merb-helpers/fixture/app/views/foo/bar.html.erb} +0 -0
  792. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_for_specs/basic.html.erb +0 -0
  793. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/create_a_form.html.erb +0 -0
  794. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/create_a_multipart_form.html.erb +0 -0
  795. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/fake_delete_if_set.html.erb +0 -0
  796. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/fake_put_if_set.html.erb +0 -0
  797. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/get_if_set.html.erb +0 -0
  798. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/post_by_default.html.erb +0 -0
  799. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/form_specs/resourceful_form.html.erb +0 -0
  800. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/file_field.html.erb +0 -0
  801. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/hidden_field.html.erb +0 -0
  802. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/option_tag.html.erb +0 -0
  803. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/password_field.html.erb +0 -0
  804. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/radio_button.html.erb +0 -0
  805. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/radio_group.html.erb +0 -0
  806. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/text_area.html.erb +0 -0
  807. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hacker/text_field.html.erb +0 -0
  808. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/basic.html.erb +0 -0
  809. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/disabled.html.erb +0 -0
  810. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/hidden_field_specs/label.html.erb +0 -0
  811. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic.html.erb +0 -0
  812. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic_with_attributes.html.erb +0 -0
  813. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/label_specs/basic_with_class.html.erb +0 -0
  814. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/layout/application.html.erb +0 -0
  815. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/minutes_to_hours.html.erb +0 -0
  816. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/to_concurrency_default.html.erb +0 -0
  817. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/numeric_ext_specs/two_digits.html.erb +0 -0
  818. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/array.html.erb +0 -0
  819. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/clean.html.erb +0 -0
  820. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/collection.html.erb +0 -0
  821. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/multiple_selects.html.erb +0 -0
  822. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/no_extra_attributes.html.erb +0 -0
  823. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/optgroups.html.erb +0 -0
  824. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/selected.html.erb +0 -0
  825. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/with_blank.html.erb +0 -0
  826. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/option_tag_specs/with_prompt.html.erb +0 -0
  827. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/password_field_specs/basic.html.erb +0 -0
  828. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/password_field_specs/disabled.html.erb +0 -0
  829. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/basic.html.erb +0 -0
  830. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/checked.html.erb +0 -0
  831. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/disabled.html.erb +0 -0
  832. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/label.html.erb +0 -0
  833. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_button_specs/unchecked.html.erb +0 -0
  834. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/attributes.html.erb +0 -0
  835. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/basic.html.erb +0 -0
  836. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/checked.html.erb +0 -0
  837. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/hash.html.erb +0 -0
  838. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/radio_group_specs/specific_attributes.html.erb +0 -0
  839. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_span_specs/date_span_on_same_day.html.erb +0 -0
  840. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_span_specs/date_span_on_same_day_on_different_year.html.erb +0 -0
  841. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_date_with_year.html.erb +0 -0
  842. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_date_without_year.html.erb +0 -0
  843. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_today.html.erb +0 -0
  844. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_tomorrow.html.erb +0 -0
  845. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/relative_date_specs/relative_yesterday.html.erb +0 -0
  846. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/basic.html.erb +0 -0
  847. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/blank.html.erb +0 -0
  848. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/multiple.html.erb +0 -0
  849. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/select_specs/selected.html.erb +0 -0
  850. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/disabled_submit.html.erb +0 -0
  851. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/submit_with_label.html.erb +0 -0
  852. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/submit_specs/submit_with_values.html.erb +0 -0
  853. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/nested_tags.html.erb +0 -0
  854. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_attributes.html.erb +0 -0
  855. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_content.html.erb +0 -0
  856. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/tag_helper/tag_with_content_in_the_block.html.erb +0 -0
  857. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/basic.html.erb +0 -0
  858. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/disabled.html.erb +0 -0
  859. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/label.html.erb +0 -0
  860. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_area_specs/nil.html.erb +0 -0
  861. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/basic.html.erb +0 -0
  862. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/class.html.erb +0 -0
  863. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/disabled.html.erb +0 -0
  864. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/label.html.erb +0 -0
  865. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/app/views/text_field_specs/symbolized_name.html.erb +0 -0
  866. data/spec/rango/helpers/merb-helpers/fixture/config/environments/development.rb +8 -0
  867. data/spec/rango/helpers/merb-helpers/fixture/config/environments/production.rb +7 -0
  868. data/spec/rango/helpers/merb-helpers/fixture/config/environments/test.rb +8 -0
  869. data/spec/rango/helpers/merb-helpers/fixture/config/init.rb +48 -0
  870. data/spec/rango/helpers/merb-helpers/fixture/config/rack.rb +13 -0
  871. data/spec/rango/helpers/merb-helpers/fixture/config/router.rb +40 -0
  872. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/images/merb.jpg +0 -0
  873. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/merb.fcgi +0 -0
  874. data/{lib/rango/helpers/spec → spec/rango/helpers/merb-helpers}/fixture/public/stylesheets/master.css +0 -0
  875. data/spec/rango/helpers/merb-helpers/merb_helpers_config_spec.rb +84 -0
  876. data/spec/rango/helpers/merb-helpers/merb_helpers_date_time_spec.rb +268 -0
  877. data/spec/rango/helpers/merb-helpers/merb_helpers_form_spec.rb +1370 -0
  878. data/spec/rango/helpers/merb-helpers/merb_helpers_tag_helper_spec.rb +42 -0
  879. data/spec/rango/helpers/merb-helpers/merb_helpers_text_spec.rb +69 -0
  880. data/spec/rango/helpers/merb-helpers/numeric_extlib_spec.rb +137 -0
  881. data/spec/rango/helpers/merb-helpers/ordinalize_spec.rb +53 -0
  882. data/spec/rango/{auth/slice/exceptions_spec.rb → mixins/configurable_spec.rb} +0 -0
  883. data/spec/rango/{auth/slice/merb-auth-slice-password_spec.rb → mixins/mini_spec.rb} +0 -0
  884. data/spec/rango/{auth/slice/sessions_spec.rb → mixins/strategy_spec.rb} +0 -0
  885. data/spec/rango/orm/adapters/{dm → datamapper}/fields_spec.rb +0 -0
  886. data/spec/rango/orm/adapters/{dm → datamapper}/setup_spec.rb +0 -0
  887. data/spec/rango/{auth/slice/spec_helper_spec.rb → orm/adapters/datamapper/support_spec.rb} +0 -0
  888. data/spec/rango/{auth/slice/xsessions_spec.rb → orm/adapters/datamapper/types/unicode_string_spec.rb} +0 -0
  889. data/spec/rango/project_spec.rb +3 -3
  890. data/spec/rango/{bundling/strategies_spec.rb → rack/middlewares/basic_spec.rb} +0 -0
  891. data/spec/rango/{cli/project_spec.rb → rack/middlewares/email_obfuscator_spec.rb} +0 -0
  892. data/spec/rango/{contrib/pagination/adapters/dm_spec.rb → rack/middlewares/encoding_spec.rb} +0 -0
  893. data/spec/rango/rack/request_spec.rb +3 -3
  894. data/spec/rango/{ext/core_ext_spec.rb → router/adapters/basic_spec.rb} +0 -0
  895. data/spec/rango/{ext/path_spec.rb → router/adapters/rack-router_spec.rb} +0 -0
  896. data/spec/rango/{rack → router}/dispatcher_spec.rb +0 -0
  897. data/spec/rango/{generators_spec.rb → settings/erubis_spec.rb} +0 -0
  898. data/spec/rango/{generic_views/static_spec.rb → settings/framework_spec.rb} +0 -0
  899. data/spec/rango/{helpers/merb-helpers/core_ext/numeric_spec.rb → settings/haml_spec.rb} +0 -0
  900. data/spec/rango/{helpers/merb-helpers/date_time_formatting_spec.rb → settings/template_spec.rb} +0 -0
  901. data/spec/rango/settings_spec.rb +3 -3
  902. data/spec/rango/{helpers/merb-helpers/date_time_helpers_spec.rb → support/cucumber/steps/given_steps_spec.rb} +0 -0
  903. data/spec/rango/{helpers/merb-helpers/form/builder_spec.rb → support/cucumber/steps/then_steps_spec.rb} +0 -0
  904. data/spec/rango/{helpers/merb-helpers/form/helpers_spec.rb → support/cucumber/steps/when_steps_spec.rb} +0 -0
  905. data/spec/rango/templates/adapters/erubis_spec.rb +117 -0
  906. data/spec/rango/templates/adapters/template_helpers.rb +38 -0
  907. data/spec/rango_spec.rb +4 -3
  908. data/spec/spec_helper.rb +27 -5
  909. data/spec/{rango/helpers/merb-helpers/form_helpers_spec.rb → stubs/acqs/dir/lib.rb} +0 -0
  910. data/spec/{rango/helpers/merb-helpers/tag_helpers_spec.rb → stubs/acqs/dir/lib_spec.rb} +0 -0
  911. data/spec/{rango/helpers/merb-helpers/text_helpers_spec.rb → stubs/acqs/lib.rb} +0 -0
  912. data/spec/{rango/helpers/merb-helpers/time_dsl_spec.rb → stubs/acqs/tasks.thor} +0 -0
  913. data/spec/stubs/flat.rb +1 -0
  914. data/spec/stubs/templates/basic.html.erb +6 -0
  915. data/spec/stubs/templates/capture.html.erb +11 -0
  916. data/spec/stubs/templates/context.html.erb +6 -0
  917. data/spec/stubs/templates/exception.html.erb +1 -0
  918. data/stubs/app/content/init.rb.rbt +2 -2
  919. data/stubs/app/content/models.rb.rbt +2 -2
  920. data/stubs/app/content/views.rb.rbt +3 -3
  921. data/stubs/app/metadata.yml +4 -0
  922. data/stubs/app/preprocess.rb +7 -6
  923. data/stubs/bigapp/metadata.yml +4 -0
  924. data/stubs/bigapp/preprocess.rb +2 -2
  925. data/stubs/features/content/env.rb +1 -1
  926. data/stubs/features/metadata.yml +4 -0
  927. data/stubs/flat/content/flat.ru.rbt +5 -4
  928. data/stubs/flat/metadata.yml +4 -0
  929. data/stubs/flat/preprocess.rb +2 -2
  930. data/stubs/project/content/Thorfile +1 -1
  931. data/stubs/project/content/config.ru +4 -5
  932. data/stubs/project/content/init.rb +11 -1
  933. data/stubs/project/content/settings.rb.rbt +1 -1
  934. data/stubs/project/content/settings_local.rb.rbt +1 -1
  935. data/stubs/project/metadata.yml +4 -0
  936. data/stubs/project/postprocess.rb +8 -0
  937. data/{spec/rango/mvc/strategies_spec.rb → stubs/pupu/content/CHANGELOG} +0 -0
  938. data/stubs/pupu/content/LICENSE.rbt +20 -0
  939. data/stubs/pupu/content/README.textile.rbt +7 -0
  940. data/stubs/pupu/content/TODO +5 -0
  941. data/stubs/pupu/content/Thorfile.rbt +21 -0
  942. data/stubs/pupu/content/config.rb.rbt +14 -0
  943. data/{spec/rango/rack/middlewares/emails_spec.rb → stubs/pupu/content/initializers/%name%.css} +0 -0
  944. data/stubs/pupu/content/initializers/%name%.js +3 -0
  945. data/{spec/rango/router/route_spec.rb → stubs/pupu/content/javascripts/%name%.js} +0 -0
  946. data/{spec/rango/router/router_spec.rb → stubs/pupu/content/stylesheets/%name%.css} +0 -0
  947. data/stubs/pupu/metadata.yml +4 -0
  948. data/stubs/pupu/preprocess.rb +4 -2
  949. data/stubs/stub/content/metadata.yml +3 -1
  950. data/stubs/stub/content/postprocess.rb +2 -4
  951. data/stubs/stub/content/preprocess.rb +2 -2
  952. data/stubs/stub/metadata.yml +4 -0
  953. data/tasks/benchmark.thor +15 -0
  954. data/tasks/hooks.thor +2 -2
  955. data/tasks/package.thor +20 -7
  956. data/tasks/release.thor +14 -12
  957. data/tasks/repair.thor +14 -25
  958. data/tasks/spec.thor +2 -1
  959. data/tasks/stats.thor +19 -3
  960. data/tasks/yardoc.thor +1 -1
  961. data/templates.txt +39 -0
  962. metadata +1059 -362
  963. data/lib/rango/cli/project.rb +0 -87
  964. data/lib/rango/cli/simple_template.rb +0 -47
  965. data/lib/rango/ext/class.rb +0 -99
  966. data/lib/rango/ext/core_ext.rb +0 -52
  967. data/lib/rango/ext/path.rb +0 -222
  968. data/lib/rango/ext/try.rb +0 -30
  969. data/lib/rango/generic_views/static.rb +0 -7
  970. data/lib/rango/helpers/merb-helpers/time_dsl.rb +0 -61
  971. data/lib/rango/helpers/spec/core_ext_spec.rb +0 -21
  972. data/lib/rango/helpers/spec/fixture/app/controllers/application.rb +0 -4
  973. data/lib/rango/helpers/spec/fixture/app/controllers/bound_check_box.rb +0 -2
  974. data/lib/rango/helpers/spec/fixture/app/controllers/bound_file_field.rb +0 -2
  975. data/lib/rango/helpers/spec/fixture/app/controllers/bound_hidden_field.rb +0 -2
  976. data/lib/rango/helpers/spec/fixture/app/controllers/bound_option_tag.rb +0 -2
  977. data/lib/rango/helpers/spec/fixture/app/controllers/bound_password_field.rb +0 -2
  978. data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_button.rb +0 -2
  979. data/lib/rango/helpers/spec/fixture/app/controllers/bound_radio_group.rb +0 -2
  980. data/lib/rango/helpers/spec/fixture/app/controllers/bound_select.rb +0 -2
  981. data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_area.rb +0 -2
  982. data/lib/rango/helpers/spec/fixture/app/controllers/bound_text_field.rb +0 -2
  983. data/lib/rango/helpers/spec/fixture/app/controllers/button.rb +0 -2
  984. data/lib/rango/helpers/spec/fixture/app/controllers/check_box.rb +0 -2
  985. data/lib/rango/helpers/spec/fixture/app/controllers/custom_builder.rb +0 -2
  986. data/lib/rango/helpers/spec/fixture/app/controllers/delete_button.rb +0 -2
  987. data/lib/rango/helpers/spec/fixture/app/controllers/exceptions.rb +0 -25
  988. data/lib/rango/helpers/spec/fixture/app/controllers/field_set.rb +0 -2
  989. data/lib/rango/helpers/spec/fixture/app/controllers/fields_for.rb +0 -3
  990. data/lib/rango/helpers/spec/fixture/app/controllers/file_field.rb +0 -2
  991. data/lib/rango/helpers/spec/fixture/app/controllers/foo.rb +0 -23
  992. data/lib/rango/helpers/spec/fixture/app/controllers/form.rb +0 -2
  993. data/lib/rango/helpers/spec/fixture/app/controllers/form_for.rb +0 -2
  994. data/lib/rango/helpers/spec/fixture/app/controllers/hacker.rb +0 -2
  995. data/lib/rango/helpers/spec/fixture/app/controllers/hidden_field.rb +0 -2
  996. data/lib/rango/helpers/spec/fixture/app/controllers/label.rb +0 -3
  997. data/lib/rango/helpers/spec/fixture/app/controllers/numeric_ext.rb +0 -3
  998. data/lib/rango/helpers/spec/fixture/app/controllers/option_tag.rb +0 -2
  999. data/lib/rango/helpers/spec/fixture/app/controllers/password_field.rb +0 -2
  1000. data/lib/rango/helpers/spec/fixture/app/controllers/radio_button.rb +0 -2
  1001. data/lib/rango/helpers/spec/fixture/app/controllers/radio_group.rb +0 -2
  1002. data/lib/rango/helpers/spec/fixture/app/controllers/relative_date.rb +0 -2
  1003. data/lib/rango/helpers/spec/fixture/app/controllers/relative_date_span.rb +0 -2
  1004. data/lib/rango/helpers/spec/fixture/app/controllers/select.rb +0 -2
  1005. data/lib/rango/helpers/spec/fixture/app/controllers/specs_controller.rb +0 -11
  1006. data/lib/rango/helpers/spec/fixture/app/controllers/submit.rb +0 -2
  1007. data/lib/rango/helpers/spec/fixture/app/controllers/tag_helper.rb +0 -21
  1008. data/lib/rango/helpers/spec/fixture/app/controllers/text_area.rb +0 -2
  1009. data/lib/rango/helpers/spec/fixture/app/controllers/text_field.rb +0 -3
  1010. data/lib/rango/helpers/spec/fixture/app/helpers/global_helpers.rb +0 -8
  1011. data/lib/rango/helpers/spec/fixture/app/models/fake_dm_model.rb +0 -25
  1012. data/lib/rango/helpers/spec/fixture/app/models/first_generic_fake_model.rb +0 -57
  1013. data/lib/rango/helpers/spec/fixture/app/models/hacker_generic_model.rb +0 -5
  1014. data/lib/rango/helpers/spec/fixture/app/models/second_generic_fake_model.rb +0 -18
  1015. data/lib/rango/helpers/spec/fixture/app/models/third_generic_fake_model.rb +0 -3
  1016. data/lib/rango/helpers/spec/fixture/config/environments/development.rb +0 -6
  1017. data/lib/rango/helpers/spec/fixture/config/environments/production.rb +0 -5
  1018. data/lib/rango/helpers/spec/fixture/config/environments/test.rb +0 -6
  1019. data/lib/rango/helpers/spec/fixture/config/init.rb +0 -46
  1020. data/lib/rango/helpers/spec/fixture/config/rack.rb +0 -11
  1021. data/lib/rango/helpers/spec/fixture/config/router.rb +0 -38
  1022. data/lib/rango/helpers/spec/merb_helpers_config_spec.rb +0 -84
  1023. data/lib/rango/helpers/spec/merb_helpers_date_time_spec.rb +0 -270
  1024. data/lib/rango/helpers/spec/merb_helpers_form_spec.rb +0 -1371
  1025. data/lib/rango/helpers/spec/merb_helpers_tag_helper_spec.rb +0 -42
  1026. data/lib/rango/helpers/spec/merb_helpers_text_spec.rb +0 -69
  1027. data/lib/rango/helpers/spec/numeric_extlib_spec.rb +0 -137
  1028. data/lib/rango/helpers/spec/ordinalize_spec.rb +0 -53
  1029. data/lib/rango/helpers/spec/spec_helper.rb +0 -160
  1030. data/lib/rango/helpers/spec/time_dsl_spec.rb +0 -45
  1031. data/lib/rango/mvc/controller.rb +0 -139
  1032. data/lib/rango/mvc/strategies.rb +0 -6
  1033. data/lib/rango/rack/dispatcher.rb +0 -61
  1034. data/lib/rango/rack/middlewares/emails.rb +0 -7
  1035. data/lib/rango/router/adapters/basic.rb +0 -21
  1036. data/lib/rango/router/adapters/rack-router.rb +0 -18
  1037. data/lib/rango/router/dispatcher.rb +0 -29
  1038. data/spec/rango/mvc/controller_spec.rb +0 -24
  1039. data/spec/rango/router/strategies_spec.rb +0 -0
  1040. data/spec/rango/spec/cucumber_spec.rb +0 -0
  1041. data/spec/rango/spec/rspec_spec.rb +0 -0
  1042. data/stubs/project/preprocess.rb +0 -5
  1043. data/stubs/stub/preprocess.rb +0 -5
  1044. data/templates/errors/404.html.erb +0 -52
  1045. data/templates/errors/406.html.erb +0 -1
  1046. data/templates/errors/500.html.erb +0 -48
@@ -0,0 +1,2515 @@
1
+ /* Prototype JavaScript framework, version 1.5.0
2
+ * (c) 2005-2007 Sam Stephenson
3
+ *
4
+ * Prototype is freely distributable under the terms of an MIT-style license.
5
+ * For details, see the Prototype web site: http://prototype.conio.net/
6
+ *
7
+ /*--------------------------------------------------------------------------*/
8
+
9
+ var Prototype = {
10
+ Version: '1.5.0',
11
+ BrowserFeatures: {
12
+ XPath: !!document.evaluate
13
+ },
14
+
15
+ ScriptFragment: '(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)',
16
+ emptyFunction: function() {},
17
+ K: function(x) { return x }
18
+ }
19
+
20
+ var Class = {
21
+ create: function() {
22
+ return function() {
23
+ this.initialize.apply(this, arguments);
24
+ }
25
+ }
26
+ }
27
+
28
+ var Abstract = new Object();
29
+
30
+ Object.extend = function(destination, source) {
31
+ for (var property in source) {
32
+ destination[property] = source[property];
33
+ }
34
+ return destination;
35
+ }
36
+
37
+ Object.extend(Object, {
38
+ inspect: function(object) {
39
+ try {
40
+ if (object === undefined) return 'undefined';
41
+ if (object === null) return 'null';
42
+ return object.inspect ? object.inspect() : object.toString();
43
+ } catch (e) {
44
+ if (e instanceof RangeError) return '...';
45
+ throw e;
46
+ }
47
+ },
48
+
49
+ keys: function(object) {
50
+ var keys = [];
51
+ for (var property in object)
52
+ keys.push(property);
53
+ return keys;
54
+ },
55
+
56
+ values: function(object) {
57
+ var values = [];
58
+ for (var property in object)
59
+ values.push(object[property]);
60
+ return values;
61
+ },
62
+
63
+ clone: function(object) {
64
+ return Object.extend({}, object);
65
+ }
66
+ });
67
+
68
+ Function.prototype.bind = function() {
69
+ var __method = this, args = $A(arguments), object = args.shift();
70
+ return function() {
71
+ return __method.apply(object, args.concat($A(arguments)));
72
+ }
73
+ }
74
+
75
+ Function.prototype.bindAsEventListener = function(object) {
76
+ var __method = this, args = $A(arguments), object = args.shift();
77
+ return function(event) {
78
+ return __method.apply(object, [( event || window.event)].concat(args).concat($A(arguments)));
79
+ }
80
+ }
81
+
82
+ Object.extend(Number.prototype, {
83
+ toColorPart: function() {
84
+ var digits = this.toString(16);
85
+ if (this < 16) return '0' + digits;
86
+ return digits;
87
+ },
88
+
89
+ succ: function() {
90
+ return this + 1;
91
+ },
92
+
93
+ times: function(iterator) {
94
+ $R(0, this, true).each(iterator);
95
+ return this;
96
+ }
97
+ });
98
+
99
+ var Try = {
100
+ these: function() {
101
+ var returnValue;
102
+
103
+ for (var i = 0, length = arguments.length; i < length; i++) {
104
+ var lambda = arguments[i];
105
+ try {
106
+ returnValue = lambda();
107
+ break;
108
+ } catch (e) {}
109
+ }
110
+
111
+ return returnValue;
112
+ }
113
+ }
114
+
115
+ /*--------------------------------------------------------------------------*/
116
+
117
+ var PeriodicalExecuter = Class.create();
118
+ PeriodicalExecuter.prototype = {
119
+ initialize: function(callback, frequency) {
120
+ this.callback = callback;
121
+ this.frequency = frequency;
122
+ this.currentlyExecuting = false;
123
+
124
+ this.registerCallback();
125
+ },
126
+
127
+ registerCallback: function() {
128
+ this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
129
+ },
130
+
131
+ stop: function() {
132
+ if (!this.timer) return;
133
+ clearInterval(this.timer);
134
+ this.timer = null;
135
+ },
136
+
137
+ onTimerEvent: function() {
138
+ if (!this.currentlyExecuting) {
139
+ try {
140
+ this.currentlyExecuting = true;
141
+ this.callback(this);
142
+ } finally {
143
+ this.currentlyExecuting = false;
144
+ }
145
+ }
146
+ }
147
+ }
148
+ String.interpret = function(value){
149
+ return value == null ? '' : String(value);
150
+ }
151
+
152
+ Object.extend(String.prototype, {
153
+ gsub: function(pattern, replacement) {
154
+ var result = '', source = this, match;
155
+ replacement = arguments.callee.prepareReplacement(replacement);
156
+
157
+ while (source.length > 0) {
158
+ if (match = source.match(pattern)) {
159
+ result += source.slice(0, match.index);
160
+ result += String.interpret(replacement(match));
161
+ source = source.slice(match.index + match[0].length);
162
+ } else {
163
+ result += source, source = '';
164
+ }
165
+ }
166
+ return result;
167
+ },
168
+
169
+ sub: function(pattern, replacement, count) {
170
+ replacement = this.gsub.prepareReplacement(replacement);
171
+ count = count === undefined ? 1 : count;
172
+
173
+ return this.gsub(pattern, function(match) {
174
+ if (--count < 0) return match[0];
175
+ return replacement(match);
176
+ });
177
+ },
178
+
179
+ scan: function(pattern, iterator) {
180
+ this.gsub(pattern, iterator);
181
+ return this;
182
+ },
183
+
184
+ truncate: function(length, truncation) {
185
+ length = length || 30;
186
+ truncation = truncation === undefined ? '...' : truncation;
187
+ return this.length > length ?
188
+ this.slice(0, length - truncation.length) + truncation : this;
189
+ },
190
+
191
+ strip: function() {
192
+ return this.replace(/^\s+/, '').replace(/\s+$/, '');
193
+ },
194
+
195
+ stripTags: function() {
196
+ return this.replace(/<\/?[^>]+>/gi, '');
197
+ },
198
+
199
+ stripScripts: function() {
200
+ return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
201
+ },
202
+
203
+ extractScripts: function() {
204
+ var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
205
+ var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
206
+ return (this.match(matchAll) || []).map(function(scriptTag) {
207
+ return (scriptTag.match(matchOne) || ['', ''])[1];
208
+ });
209
+ },
210
+
211
+ evalScripts: function() {
212
+ return this.extractScripts().map(function(script) { return eval(script) });
213
+ },
214
+
215
+ escapeHTML: function() {
216
+ var div = document.createElement('div');
217
+ var text = document.createTextNode(this);
218
+ div.appendChild(text);
219
+ return div.innerHTML;
220
+ },
221
+
222
+ unescapeHTML: function() {
223
+ var div = document.createElement('div');
224
+ div.innerHTML = this.stripTags();
225
+ return div.childNodes[0] ? (div.childNodes.length > 1 ?
226
+ $A(div.childNodes).inject('',function(memo,node){ return memo+node.nodeValue }) :
227
+ div.childNodes[0].nodeValue) : '';
228
+ },
229
+
230
+ toQueryParams: function(separator) {
231
+ var match = this.strip().match(/([^?#]*)(#.*)?$/);
232
+ if (!match) return {};
233
+
234
+ return match[1].split(separator || '&').inject({}, function(hash, pair) {
235
+ if ((pair = pair.split('='))[0]) {
236
+ var name = decodeURIComponent(pair[0]);
237
+ var value = pair[1] ? decodeURIComponent(pair[1]) : undefined;
238
+
239
+ if (hash[name] !== undefined) {
240
+ if (hash[name].constructor != Array)
241
+ hash[name] = [hash[name]];
242
+ if (value) hash[name].push(value);
243
+ }
244
+ else hash[name] = value;
245
+ }
246
+ return hash;
247
+ });
248
+ },
249
+
250
+ toArray: function() {
251
+ return this.split('');
252
+ },
253
+
254
+ succ: function() {
255
+ return this.slice(0, this.length - 1) +
256
+ String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
257
+ },
258
+
259
+ camelize: function() {
260
+ var parts = this.split('-'), len = parts.length;
261
+ if (len == 1) return parts[0];
262
+
263
+ var camelized = this.charAt(0) == '-'
264
+ ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
265
+ : parts[0];
266
+
267
+ for (var i = 1; i < len; i++)
268
+ camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);
269
+
270
+ return camelized;
271
+ },
272
+
273
+ capitalize: function(){
274
+ return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
275
+ },
276
+
277
+ underscore: function() {
278
+ return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();
279
+ },
280
+
281
+ dasherize: function() {
282
+ return this.gsub(/_/,'-');
283
+ },
284
+
285
+ inspect: function(useDoubleQuotes) {
286
+ var escapedString = this.replace(/\\/g, '\\\\');
287
+ if (useDoubleQuotes)
288
+ return '"' + escapedString.replace(/"/g, '\\"') + '"';
289
+ else
290
+ return "'" + escapedString.replace(/'/g, '\\\'') + "'";
291
+ }
292
+ });
293
+
294
+ String.prototype.gsub.prepareReplacement = function(replacement) {
295
+ if (typeof replacement == 'function') return replacement;
296
+ var template = new Template(replacement);
297
+ return function(match) { return template.evaluate(match) };
298
+ }
299
+
300
+ String.prototype.parseQuery = String.prototype.toQueryParams;
301
+
302
+ var Template = Class.create();
303
+ Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;
304
+ Template.prototype = {
305
+ initialize: function(template, pattern) {
306
+ this.template = template.toString();
307
+ this.pattern = pattern || Template.Pattern;
308
+ },
309
+
310
+ evaluate: function(object) {
311
+ return this.template.gsub(this.pattern, function(match) {
312
+ var before = match[1];
313
+ if (before == '\\') return match[2];
314
+ return before + String.interpret(object[match[3]]);
315
+ });
316
+ }
317
+ }
318
+
319
+ var $break = new Object();
320
+ var $continue = new Object();
321
+
322
+ var Enumerable = {
323
+ each: function(iterator) {
324
+ var index = 0;
325
+ try {
326
+ this._each(function(value) {
327
+ try {
328
+ iterator(value, index++);
329
+ } catch (e) {
330
+ if (e != $continue) throw e;
331
+ }
332
+ });
333
+ } catch (e) {
334
+ if (e != $break) throw e;
335
+ }
336
+ return this;
337
+ },
338
+
339
+ eachSlice: function(number, iterator) {
340
+ var index = -number, slices = [], array = this.toArray();
341
+ while ((index += number) < array.length)
342
+ slices.push(array.slice(index, index+number));
343
+ return slices.map(iterator);
344
+ },
345
+
346
+ all: function(iterator) {
347
+ var result = true;
348
+ this.each(function(value, index) {
349
+ result = result && !!(iterator || Prototype.K)(value, index);
350
+ if (!result) throw $break;
351
+ });
352
+ return result;
353
+ },
354
+
355
+ any: function(iterator) {
356
+ var result = false;
357
+ this.each(function(value, index) {
358
+ if (result = !!(iterator || Prototype.K)(value, index))
359
+ throw $break;
360
+ });
361
+ return result;
362
+ },
363
+
364
+ collect: function(iterator) {
365
+ var results = [];
366
+ this.each(function(value, index) {
367
+ results.push((iterator || Prototype.K)(value, index));
368
+ });
369
+ return results;
370
+ },
371
+
372
+ detect: function(iterator) {
373
+ var result;
374
+ this.each(function(value, index) {
375
+ if (iterator(value, index)) {
376
+ result = value;
377
+ throw $break;
378
+ }
379
+ });
380
+ return result;
381
+ },
382
+
383
+ findAll: function(iterator) {
384
+ var results = [];
385
+ this.each(function(value, index) {
386
+ if (iterator(value, index))
387
+ results.push(value);
388
+ });
389
+ return results;
390
+ },
391
+
392
+ grep: function(pattern, iterator) {
393
+ var results = [];
394
+ this.each(function(value, index) {
395
+ var stringValue = value.toString();
396
+ if (stringValue.match(pattern))
397
+ results.push((iterator || Prototype.K)(value, index));
398
+ })
399
+ return results;
400
+ },
401
+
402
+ include: function(object) {
403
+ var found = false;
404
+ this.each(function(value) {
405
+ if (value == object) {
406
+ found = true;
407
+ throw $break;
408
+ }
409
+ });
410
+ return found;
411
+ },
412
+
413
+ inGroupsOf: function(number, fillWith) {
414
+ fillWith = fillWith === undefined ? null : fillWith;
415
+ return this.eachSlice(number, function(slice) {
416
+ while(slice.length < number) slice.push(fillWith);
417
+ return slice;
418
+ });
419
+ },
420
+
421
+ inject: function(memo, iterator) {
422
+ this.each(function(value, index) {
423
+ memo = iterator(memo, value, index);
424
+ });
425
+ return memo;
426
+ },
427
+
428
+ invoke: function(method) {
429
+ var args = $A(arguments).slice(1);
430
+ return this.map(function(value) {
431
+ return value[method].apply(value, args);
432
+ });
433
+ },
434
+
435
+ max: function(iterator) {
436
+ var result;
437
+ this.each(function(value, index) {
438
+ value = (iterator || Prototype.K)(value, index);
439
+ if (result == undefined || value >= result)
440
+ result = value;
441
+ });
442
+ return result;
443
+ },
444
+
445
+ min: function(iterator) {
446
+ var result;
447
+ this.each(function(value, index) {
448
+ value = (iterator || Prototype.K)(value, index);
449
+ if (result == undefined || value < result)
450
+ result = value;
451
+ });
452
+ return result;
453
+ },
454
+
455
+ partition: function(iterator) {
456
+ var trues = [], falses = [];
457
+ this.each(function(value, index) {
458
+ ((iterator || Prototype.K)(value, index) ?
459
+ trues : falses).push(value);
460
+ });
461
+ return [trues, falses];
462
+ },
463
+
464
+ pluck: function(property) {
465
+ var results = [];
466
+ this.each(function(value, index) {
467
+ results.push(value[property]);
468
+ });
469
+ return results;
470
+ },
471
+
472
+ reject: function(iterator) {
473
+ var results = [];
474
+ this.each(function(value, index) {
475
+ if (!iterator(value, index))
476
+ results.push(value);
477
+ });
478
+ return results;
479
+ },
480
+
481
+ sortBy: function(iterator) {
482
+ return this.map(function(value, index) {
483
+ return {value: value, criteria: iterator(value, index)};
484
+ }).sort(function(left, right) {
485
+ var a = left.criteria, b = right.criteria;
486
+ return a < b ? -1 : a > b ? 1 : 0;
487
+ }).pluck('value');
488
+ },
489
+
490
+ toArray: function() {
491
+ return this.map();
492
+ },
493
+
494
+ zip: function() {
495
+ var iterator = Prototype.K, args = $A(arguments);
496
+ if (typeof args.last() == 'function')
497
+ iterator = args.pop();
498
+
499
+ var collections = [this].concat(args).map($A);
500
+ return this.map(function(value, index) {
501
+ return iterator(collections.pluck(index));
502
+ });
503
+ },
504
+
505
+ size: function() {
506
+ return this.toArray().length;
507
+ },
508
+
509
+ inspect: function() {
510
+ return '#<Enumerable:' + this.toArray().inspect() + '>';
511
+ }
512
+ }
513
+
514
+ Object.extend(Enumerable, {
515
+ map: Enumerable.collect,
516
+ find: Enumerable.detect,
517
+ select: Enumerable.findAll,
518
+ member: Enumerable.include,
519
+ entries: Enumerable.toArray
520
+ });
521
+ var $A = Array.from = function(iterable) {
522
+ if (!iterable) return [];
523
+ if (iterable.toArray) {
524
+ return iterable.toArray();
525
+ } else {
526
+ var results = [];
527
+ for (var i = 0, length = iterable.length; i < length; i++)
528
+ results.push(iterable[i]);
529
+ return results;
530
+ }
531
+ }
532
+
533
+ Object.extend(Array.prototype, Enumerable);
534
+
535
+ if (!Array.prototype._reverse)
536
+ Array.prototype._reverse = Array.prototype.reverse;
537
+
538
+ Object.extend(Array.prototype, {
539
+ _each: function(iterator) {
540
+ for (var i = 0, length = this.length; i < length; i++)
541
+ iterator(this[i]);
542
+ },
543
+
544
+ clear: function() {
545
+ this.length = 0;
546
+ return this;
547
+ },
548
+
549
+ first: function() {
550
+ return this[0];
551
+ },
552
+
553
+ last: function() {
554
+ return this[this.length - 1];
555
+ },
556
+
557
+ compact: function() {
558
+ return this.select(function(value) {
559
+ return value != null;
560
+ });
561
+ },
562
+
563
+ flatten: function() {
564
+ return this.inject([], function(array, value) {
565
+ return array.concat(value && value.constructor == Array ?
566
+ value.flatten() : [value]);
567
+ });
568
+ },
569
+
570
+ without: function() {
571
+ var values = $A(arguments);
572
+ return this.select(function(value) {
573
+ return !values.include(value);
574
+ });
575
+ },
576
+
577
+ indexOf: function(object) {
578
+ for (var i = 0, length = this.length; i < length; i++)
579
+ if (this[i] == object) return i;
580
+ return -1;
581
+ },
582
+
583
+ reverse: function(inline) {
584
+ return (inline !== false ? this : this.toArray())._reverse();
585
+ },
586
+
587
+ reduce: function() {
588
+ return this.length > 1 ? this : this[0];
589
+ },
590
+
591
+ uniq: function() {
592
+ return this.inject([], function(array, value) {
593
+ return array.include(value) ? array : array.concat([value]);
594
+ });
595
+ },
596
+
597
+ clone: function() {
598
+ return [].concat(this);
599
+ },
600
+
601
+ size: function() {
602
+ return this.length;
603
+ },
604
+
605
+ inspect: function() {
606
+ return '[' + this.map(Object.inspect).join(', ') + ']';
607
+ }
608
+ });
609
+
610
+ Array.prototype.toArray = Array.prototype.clone;
611
+
612
+ function $w(string){
613
+ string = string.strip();
614
+ return string ? string.split(/\s+/) : [];
615
+ }
616
+
617
+ if(window.opera){
618
+ Array.prototype.concat = function(){
619
+ var array = [];
620
+ for(var i = 0, length = this.length; i < length; i++) array.push(this[i]);
621
+ for(var i = 0, length = arguments.length; i < length; i++) {
622
+ if(arguments[i].constructor == Array) {
623
+ for(var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++)
624
+ array.push(arguments[i][j]);
625
+ } else {
626
+ array.push(arguments[i]);
627
+ }
628
+ }
629
+ return array;
630
+ }
631
+ }
632
+ var Hash = function(obj) {
633
+ Object.extend(this, obj || {});
634
+ };
635
+
636
+ Object.extend(Hash, {
637
+ toQueryString: function(obj) {
638
+ var parts = [];
639
+
640
+ this.prototype._each.call(obj, function(pair) {
641
+ if (!pair.key) return;
642
+
643
+ if (pair.value && pair.value.constructor == Array) {
644
+ var values = pair.value.compact();
645
+ if (values.length < 2) pair.value = values.reduce();
646
+ else {
647
+ key = encodeURIComponent(pair.key);
648
+ values.each(function(value) {
649
+ value = value != undefined ? encodeURIComponent(value) : '';
650
+ parts.push(key + '=' + encodeURIComponent(value));
651
+ });
652
+ return;
653
+ }
654
+ }
655
+ if (pair.value == undefined) pair[1] = '';
656
+ parts.push(pair.map(encodeURIComponent).join('='));
657
+ });
658
+
659
+ return parts.join('&');
660
+ }
661
+ });
662
+
663
+ Object.extend(Hash.prototype, Enumerable);
664
+ Object.extend(Hash.prototype, {
665
+ _each: function(iterator) {
666
+ for (var key in this) {
667
+ var value = this[key];
668
+ if (value && value == Hash.prototype[key]) continue;
669
+
670
+ var pair = [key, value];
671
+ pair.key = key;
672
+ pair.value = value;
673
+ iterator(pair);
674
+ }
675
+ },
676
+
677
+ keys: function() {
678
+ return this.pluck('key');
679
+ },
680
+
681
+ values: function() {
682
+ return this.pluck('value');
683
+ },
684
+
685
+ merge: function(hash) {
686
+ return $H(hash).inject(this, function(mergedHash, pair) {
687
+ mergedHash[pair.key] = pair.value;
688
+ return mergedHash;
689
+ });
690
+ },
691
+
692
+ remove: function() {
693
+ var result;
694
+ for(var i = 0, length = arguments.length; i < length; i++) {
695
+ var value = this[arguments[i]];
696
+ if (value !== undefined){
697
+ if (result === undefined) result = value;
698
+ else {
699
+ if (result.constructor != Array) result = [result];
700
+ result.push(value)
701
+ }
702
+ }
703
+ delete this[arguments[i]];
704
+ }
705
+ return result;
706
+ },
707
+
708
+ toQueryString: function() {
709
+ return Hash.toQueryString(this);
710
+ },
711
+
712
+ inspect: function() {
713
+ return '#<Hash:{' + this.map(function(pair) {
714
+ return pair.map(Object.inspect).join(': ');
715
+ }).join(', ') + '}>';
716
+ }
717
+ });
718
+
719
+ function $H(object) {
720
+ if (object && object.constructor == Hash) return object;
721
+ return new Hash(object);
722
+ };
723
+ ObjectRange = Class.create();
724
+ Object.extend(ObjectRange.prototype, Enumerable);
725
+ Object.extend(ObjectRange.prototype, {
726
+ initialize: function(start, end, exclusive) {
727
+ this.start = start;
728
+ this.end = end;
729
+ this.exclusive = exclusive;
730
+ },
731
+
732
+ _each: function(iterator) {
733
+ var value = this.start;
734
+ while (this.include(value)) {
735
+ iterator(value);
736
+ value = value.succ();
737
+ }
738
+ },
739
+
740
+ include: function(value) {
741
+ if (value < this.start)
742
+ return false;
743
+ if (this.exclusive)
744
+ return value < this.end;
745
+ return value <= this.end;
746
+ }
747
+ });
748
+
749
+ var $R = function(start, end, exclusive) {
750
+ return new ObjectRange(start, end, exclusive);
751
+ }
752
+
753
+ var Ajax = {
754
+ getTransport: function() {
755
+ return Try.these(
756
+ function() {return new XMLHttpRequest()},
757
+ function() {return new ActiveXObject('Msxml2.XMLHTTP')},
758
+ function() {return new ActiveXObject('Microsoft.XMLHTTP')}
759
+ ) || false;
760
+ },
761
+
762
+ activeRequestCount: 0
763
+ }
764
+
765
+ Ajax.Responders = {
766
+ responders: [],
767
+
768
+ _each: function(iterator) {
769
+ this.responders._each(iterator);
770
+ },
771
+
772
+ register: function(responder) {
773
+ if (!this.include(responder))
774
+ this.responders.push(responder);
775
+ },
776
+
777
+ unregister: function(responder) {
778
+ this.responders = this.responders.without(responder);
779
+ },
780
+
781
+ dispatch: function(callback, request, transport, json) {
782
+ this.each(function(responder) {
783
+ if (typeof responder[callback] == 'function') {
784
+ try {
785
+ responder[callback].apply(responder, [request, transport, json]);
786
+ } catch (e) {}
787
+ }
788
+ });
789
+ }
790
+ };
791
+
792
+ Object.extend(Ajax.Responders, Enumerable);
793
+
794
+ Ajax.Responders.register({
795
+ onCreate: function() {
796
+ Ajax.activeRequestCount++;
797
+ },
798
+ onComplete: function() {
799
+ Ajax.activeRequestCount--;
800
+ }
801
+ });
802
+
803
+ Ajax.Base = function() {};
804
+ Ajax.Base.prototype = {
805
+ setOptions: function(options) {
806
+ this.options = {
807
+ method: 'post',
808
+ asynchronous: true,
809
+ contentType: 'application/x-www-form-urlencoded',
810
+ encoding: 'UTF-8',
811
+ parameters: ''
812
+ }
813
+ Object.extend(this.options, options || {});
814
+
815
+ this.options.method = this.options.method.toLowerCase();
816
+ if (typeof this.options.parameters == 'string')
817
+ this.options.parameters = this.options.parameters.toQueryParams();
818
+ }
819
+ }
820
+
821
+ Ajax.Request = Class.create();
822
+ Ajax.Request.Events =
823
+ ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
824
+
825
+ Ajax.Request.prototype = Object.extend(new Ajax.Base(), {
826
+ _complete: false,
827
+
828
+ initialize: function(url, options) {
829
+ this.transport = Ajax.getTransport();
830
+ this.setOptions(options);
831
+ this.request(url);
832
+ },
833
+
834
+ request: function(url) {
835
+ this.url = url;
836
+ this.method = this.options.method;
837
+ var params = this.options.parameters;
838
+
839
+ if (!['get', 'post'].include(this.method)) {
840
+ // simulate other verbs over post
841
+ params['_method'] = this.method;
842
+ this.method = 'post';
843
+ }
844
+
845
+ params = Hash.toQueryString(params);
846
+ if (params && /Konqueror|Safari|KHTML/.test(navigator.userAgent)) params += '&_='
847
+
848
+ // when GET, append parameters to URL
849
+ if (this.method == 'get' && params)
850
+ this.url += (this.url.indexOf('?') > -1 ? '&' : '?') + params;
851
+
852
+ try {
853
+ Ajax.Responders.dispatch('onCreate', this, this.transport);
854
+
855
+ this.transport.open(this.method.toUpperCase(), this.url,
856
+ this.options.asynchronous);
857
+
858
+ if (this.options.asynchronous)
859
+ setTimeout(function() { this.respondToReadyState(1) }.bind(this), 10);
860
+
861
+ this.transport.onreadystatechange = this.onStateChange.bind(this);
862
+ this.setRequestHeaders();
863
+
864
+ var body = this.method == 'post' ? (this.options.postBody || params) : null;
865
+
866
+ this.transport.send(body);
867
+
868
+ /* Force Firefox to handle ready state 4 for synchronous requests */
869
+ if (!this.options.asynchronous && this.transport.overrideMimeType)
870
+ this.onStateChange();
871
+
872
+ }
873
+ catch (e) {
874
+ this.dispatchException(e);
875
+ }
876
+ },
877
+
878
+ onStateChange: function() {
879
+ var readyState = this.transport.readyState;
880
+ if (readyState > 1 && !((readyState == 4) && this._complete))
881
+ this.respondToReadyState(this.transport.readyState);
882
+ },
883
+
884
+ setRequestHeaders: function() {
885
+ var headers = {
886
+ 'X-Requested-With': 'XMLHttpRequest',
887
+ 'X-Prototype-Version': Prototype.Version,
888
+ 'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
889
+ };
890
+
891
+ if (this.method == 'post') {
892
+ headers['Content-type'] = this.options.contentType +
893
+ (this.options.encoding ? '; charset=' + this.options.encoding : '');
894
+
895
+ /* Force "Connection: close" for older Mozilla browsers to work
896
+ * around a bug where XMLHttpRequest sends an incorrect
897
+ * Content-length header. See Mozilla Bugzilla #246651.
898
+ */
899
+ if (this.transport.overrideMimeType &&
900
+ (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
901
+ headers['Connection'] = 'close';
902
+ }
903
+
904
+ // user-defined headers
905
+ if (typeof this.options.requestHeaders == 'object') {
906
+ var extras = this.options.requestHeaders;
907
+
908
+ if (typeof extras.push == 'function')
909
+ for (var i = 0, length = extras.length; i < length; i += 2)
910
+ headers[extras[i]] = extras[i+1];
911
+ else
912
+ $H(extras).each(function(pair) { headers[pair.key] = pair.value });
913
+ }
914
+
915
+ for (var name in headers)
916
+ this.transport.setRequestHeader(name, headers[name]);
917
+ },
918
+
919
+ success: function() {
920
+ return !this.transport.status
921
+ || (this.transport.status >= 200 && this.transport.status < 300);
922
+ },
923
+
924
+ respondToReadyState: function(readyState) {
925
+ var state = Ajax.Request.Events[readyState];
926
+ var transport = this.transport, json = this.evalJSON();
927
+
928
+ if (state == 'Complete') {
929
+ try {
930
+ this._complete = true;
931
+ (this.options['on' + this.transport.status]
932
+ || this.options['on' + (this.success() ? 'Success' : 'Failure')]
933
+ || Prototype.emptyFunction)(transport, json);
934
+ } catch (e) {
935
+ this.dispatchException(e);
936
+ }
937
+
938
+ if ((this.getHeader('Content-type') || 'text/javascript').strip().
939
+ match(/^(text|application)\/(x-)?(java|ecma)script(;.*)?$/i))
940
+ this.evalResponse();
941
+ }
942
+
943
+ try {
944
+ (this.options['on' + state] || Prototype.emptyFunction)(transport, json);
945
+ Ajax.Responders.dispatch('on' + state, this, transport, json);
946
+ } catch (e) {
947
+ this.dispatchException(e);
948
+ }
949
+
950
+ if (state == 'Complete') {
951
+ // avoid memory leak in MSIE: clean up
952
+ this.transport.onreadystatechange = Prototype.emptyFunction;
953
+ }
954
+ },
955
+
956
+ getHeader: function(name) {
957
+ try {
958
+ return this.transport.getResponseHeader(name);
959
+ } catch (e) { return null }
960
+ },
961
+
962
+ evalJSON: function() {
963
+ try {
964
+ var json = this.getHeader('X-JSON');
965
+ return json ? eval('(' + json + ')') : null;
966
+ } catch (e) { return null }
967
+ },
968
+
969
+ evalResponse: function() {
970
+ try {
971
+ return eval(this.transport.responseText);
972
+ } catch (e) {
973
+ this.dispatchException(e);
974
+ }
975
+ },
976
+
977
+ dispatchException: function(exception) {
978
+ (this.options.onException || Prototype.emptyFunction)(this, exception);
979
+ Ajax.Responders.dispatch('onException', this, exception);
980
+ }
981
+ });
982
+
983
+ Ajax.Updater = Class.create();
984
+
985
+ Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), {
986
+ initialize: function(container, url, options) {
987
+ this.container = {
988
+ success: (container.success || container),
989
+ failure: (container.failure || (container.success ? null : container))
990
+ }
991
+
992
+ this.transport = Ajax.getTransport();
993
+ this.setOptions(options);
994
+
995
+ var onComplete = this.options.onComplete || Prototype.emptyFunction;
996
+ this.options.onComplete = (function(transport, param) {
997
+ this.updateContent();
998
+ onComplete(transport, param);
999
+ }).bind(this);
1000
+
1001
+ this.request(url);
1002
+ },
1003
+
1004
+ updateContent: function() {
1005
+ var receiver = this.container[this.success() ? 'success' : 'failure'];
1006
+ var response = this.transport.responseText;
1007
+
1008
+ if (!this.options.evalScripts) response = response.stripScripts();
1009
+
1010
+ if (receiver = $(receiver)) {
1011
+ if (this.options.insertion)
1012
+ new this.options.insertion(receiver, response);
1013
+ else
1014
+ receiver.update(response);
1015
+ }
1016
+
1017
+ if (this.success()) {
1018
+ if (this.onComplete)
1019
+ setTimeout(this.onComplete.bind(this), 10);
1020
+ }
1021
+ }
1022
+ });
1023
+
1024
+ Ajax.PeriodicalUpdater = Class.create();
1025
+ Ajax.PeriodicalUpdater.prototype = Object.extend(new Ajax.Base(), {
1026
+ initialize: function(container, url, options) {
1027
+ this.setOptions(options);
1028
+ this.onComplete = this.options.onComplete;
1029
+
1030
+ this.frequency = (this.options.frequency || 2);
1031
+ this.decay = (this.options.decay || 1);
1032
+
1033
+ this.updater = {};
1034
+ this.container = container;
1035
+ this.url = url;
1036
+
1037
+ this.start();
1038
+ },
1039
+
1040
+ start: function() {
1041
+ this.options.onComplete = this.updateComplete.bind(this);
1042
+ this.onTimerEvent();
1043
+ },
1044
+
1045
+ stop: function() {
1046
+ this.updater.options.onComplete = undefined;
1047
+ clearTimeout(this.timer);
1048
+ (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
1049
+ },
1050
+
1051
+ updateComplete: function(request) {
1052
+ if (this.options.decay) {
1053
+ this.decay = (request.responseText == this.lastText ?
1054
+ this.decay * this.options.decay : 1);
1055
+
1056
+ this.lastText = request.responseText;
1057
+ }
1058
+ this.timer = setTimeout(this.onTimerEvent.bind(this),
1059
+ this.decay * this.frequency * 1000);
1060
+ },
1061
+
1062
+ onTimerEvent: function() {
1063
+ this.updater = new Ajax.Updater(this.container, this.url, this.options);
1064
+ }
1065
+ });
1066
+ function $(element) {
1067
+ if (arguments.length > 1) {
1068
+ for (var i = 0, elements = [], length = arguments.length; i < length; i++)
1069
+ elements.push($(arguments[i]));
1070
+ return elements;
1071
+ }
1072
+ if (typeof element == 'string')
1073
+ element = document.getElementById(element);
1074
+ return Element.extend(element);
1075
+ }
1076
+
1077
+ if (Prototype.BrowserFeatures.XPath) {
1078
+ document._getElementsByXPath = function(expression, parentElement) {
1079
+ var results = [];
1080
+ var query = document.evaluate(expression, $(parentElement) || document,
1081
+ null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
1082
+ for (var i = 0, length = query.snapshotLength; i < length; i++)
1083
+ results.push(query.snapshotItem(i));
1084
+ return results;
1085
+ };
1086
+ }
1087
+
1088
+ document.getElementsByClassName = function(className, parentElement) {
1089
+ if (Prototype.BrowserFeatures.XPath) {
1090
+ var q = ".//*[contains(concat(' ', @class, ' '), ' " + className + " ')]";
1091
+ return document._getElementsByXPath(q, parentElement);
1092
+ } else {
1093
+ var children = ($(parentElement) || document.body).getElementsByTagName('*');
1094
+ var elements = [], child;
1095
+ for (var i = 0, length = children.length; i < length; i++) {
1096
+ child = children[i];
1097
+ if (Element.hasClassName(child, className))
1098
+ elements.push(Element.extend(child));
1099
+ }
1100
+ return elements;
1101
+ }
1102
+ };
1103
+
1104
+ /*--------------------------------------------------------------------------*/
1105
+
1106
+ if (!window.Element)
1107
+ var Element = new Object();
1108
+
1109
+ Element.extend = function(element) {
1110
+ if (!element || _nativeExtensions || element.nodeType == 3) return element;
1111
+
1112
+ if (!element._extended && element.tagName && element != window) {
1113
+ var methods = Object.clone(Element.Methods), cache = Element.extend.cache;
1114
+
1115
+ if (element.tagName == 'FORM')
1116
+ Object.extend(methods, Form.Methods);
1117
+ if (['INPUT', 'TEXTAREA', 'SELECT'].include(element.tagName))
1118
+ Object.extend(methods, Form.Element.Methods);
1119
+
1120
+ Object.extend(methods, Element.Methods.Simulated);
1121
+
1122
+ for (var property in methods) {
1123
+ var value = methods[property];
1124
+ if (typeof value == 'function' && !(property in element))
1125
+ element[property] = cache.findOrStore(value);
1126
+ }
1127
+ }
1128
+
1129
+ element._extended = true;
1130
+ return element;
1131
+ };
1132
+
1133
+ Element.extend.cache = {
1134
+ findOrStore: function(value) {
1135
+ return this[value] = this[value] || function() {
1136
+ return value.apply(null, [this].concat($A(arguments)));
1137
+ }
1138
+ }
1139
+ };
1140
+
1141
+ Element.Methods = {
1142
+ visible: function(element) {
1143
+ return $(element).style.display != 'none';
1144
+ },
1145
+
1146
+ toggle: function(element) {
1147
+ element = $(element);
1148
+ Element[Element.visible(element) ? 'hide' : 'show'](element);
1149
+ return element;
1150
+ },
1151
+
1152
+ hide: function(element) {
1153
+ $(element).style.display = 'none';
1154
+ return element;
1155
+ },
1156
+
1157
+ show: function(element) {
1158
+ $(element).style.display = '';
1159
+ return element;
1160
+ },
1161
+
1162
+ remove: function(element) {
1163
+ element = $(element);
1164
+ element.parentNode.removeChild(element);
1165
+ return element;
1166
+ },
1167
+
1168
+ update: function(element, html) {
1169
+ html = typeof html == 'undefined' ? '' : html.toString();
1170
+ $(element).innerHTML = html.stripScripts();
1171
+ setTimeout(function() {html.evalScripts()}, 10);
1172
+ return element;
1173
+ },
1174
+
1175
+ replace: function(element, html) {
1176
+ element = $(element);
1177
+ html = typeof html == 'undefined' ? '' : html.toString();
1178
+ if (element.outerHTML) {
1179
+ element.outerHTML = html.stripScripts();
1180
+ } else {
1181
+ var range = element.ownerDocument.createRange();
1182
+ range.selectNodeContents(element);
1183
+ element.parentNode.replaceChild(
1184
+ range.createContextualFragment(html.stripScripts()), element);
1185
+ }
1186
+ setTimeout(function() {html.evalScripts()}, 10);
1187
+ return element;
1188
+ },
1189
+
1190
+ inspect: function(element) {
1191
+ element = $(element);
1192
+ var result = '<' + element.tagName.toLowerCase();
1193
+ $H({'id': 'id', 'className': 'class'}).each(function(pair) {
1194
+ var property = pair.first(), attribute = pair.last();
1195
+ var value = (element[property] || '').toString();
1196
+ if (value) result += ' ' + attribute + '=' + value.inspect(true);
1197
+ });
1198
+ return result + '>';
1199
+ },
1200
+
1201
+ recursivelyCollect: function(element, property) {
1202
+ element = $(element);
1203
+ var elements = [];
1204
+ while (element = element[property])
1205
+ if (element.nodeType == 1)
1206
+ elements.push(Element.extend(element));
1207
+ return elements;
1208
+ },
1209
+
1210
+ ancestors: function(element) {
1211
+ return $(element).recursivelyCollect('parentNode');
1212
+ },
1213
+
1214
+ descendants: function(element) {
1215
+ return $A($(element).getElementsByTagName('*'));
1216
+ },
1217
+
1218
+ immediateDescendants: function(element) {
1219
+ if (!(element = $(element).firstChild)) return [];
1220
+ while (element && element.nodeType != 1) element = element.nextSibling;
1221
+ if (element) return [element].concat($(element).nextSiblings());
1222
+ return [];
1223
+ },
1224
+
1225
+ previousSiblings: function(element) {
1226
+ return $(element).recursivelyCollect('previousSibling');
1227
+ },
1228
+
1229
+ nextSiblings: function(element) {
1230
+ return $(element).recursivelyCollect('nextSibling');
1231
+ },
1232
+
1233
+ siblings: function(element) {
1234
+ element = $(element);
1235
+ return element.previousSiblings().reverse().concat(element.nextSiblings());
1236
+ },
1237
+
1238
+ match: function(element, selector) {
1239
+ if (typeof selector == 'string')
1240
+ selector = new Selector(selector);
1241
+ return selector.match($(element));
1242
+ },
1243
+
1244
+ up: function(element, expression, index) {
1245
+ return Selector.findElement($(element).ancestors(), expression, index);
1246
+ },
1247
+
1248
+ down: function(element, expression, index) {
1249
+ return Selector.findElement($(element).descendants(), expression, index);
1250
+ },
1251
+
1252
+ previous: function(element, expression, index) {
1253
+ return Selector.findElement($(element).previousSiblings(), expression, index);
1254
+ },
1255
+
1256
+ next: function(element, expression, index) {
1257
+ return Selector.findElement($(element).nextSiblings(), expression, index);
1258
+ },
1259
+
1260
+ getElementsBySelector: function() {
1261
+ var args = $A(arguments), element = $(args.shift());
1262
+ return Selector.findChildElements(element, args);
1263
+ },
1264
+
1265
+ getElementsByClassName: function(element, className) {
1266
+ return document.getElementsByClassName(className, element);
1267
+ },
1268
+
1269
+ readAttribute: function(element, name) {
1270
+ element = $(element);
1271
+ if (document.all && !window.opera) {
1272
+ var t = Element._attributeTranslations;
1273
+ if (t.values[name]) return t.values[name](element, name);
1274
+ if (t.names[name]) name = t.names[name];
1275
+ var attribute = element.attributes[name];
1276
+ if(attribute) return attribute.nodeValue;
1277
+ }
1278
+ return element.getAttribute(name);
1279
+ },
1280
+
1281
+ getHeight: function(element) {
1282
+ return $(element).getDimensions().height;
1283
+ },
1284
+
1285
+ getWidth: function(element) {
1286
+ return $(element).getDimensions().width;
1287
+ },
1288
+
1289
+ classNames: function(element) {
1290
+ return new Element.ClassNames(element);
1291
+ },
1292
+
1293
+ hasClassName: function(element, className) {
1294
+ if (!(element = $(element))) return;
1295
+ var elementClassName = element.className;
1296
+ if (elementClassName.length == 0) return false;
1297
+ if (elementClassName == className ||
1298
+ elementClassName.match(new RegExp("(^|\\s)" + className + "(\\s|$)")))
1299
+ return true;
1300
+ return false;
1301
+ },
1302
+
1303
+ addClassName: function(element, className) {
1304
+ if (!(element = $(element))) return;
1305
+ Element.classNames(element).add(className);
1306
+ return element;
1307
+ },
1308
+
1309
+ removeClassName: function(element, className) {
1310
+ if (!(element = $(element))) return;
1311
+ Element.classNames(element).remove(className);
1312
+ return element;
1313
+ },
1314
+
1315
+ toggleClassName: function(element, className) {
1316
+ if (!(element = $(element))) return;
1317
+ Element.classNames(element)[element.hasClassName(className) ? 'remove' : 'add'](className);
1318
+ return element;
1319
+ },
1320
+
1321
+ observe: function() {
1322
+ Event.observe.apply(Event, arguments);
1323
+ return $A(arguments).first();
1324
+ },
1325
+
1326
+ stopObserving: function() {
1327
+ Event.stopObserving.apply(Event, arguments);
1328
+ return $A(arguments).first();
1329
+ },
1330
+
1331
+ // removes whitespace-only text node children
1332
+ cleanWhitespace: function(element) {
1333
+ element = $(element);
1334
+ var node = element.firstChild;
1335
+ while (node) {
1336
+ var nextNode = node.nextSibling;
1337
+ if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
1338
+ element.removeChild(node);
1339
+ node = nextNode;
1340
+ }
1341
+ return element;
1342
+ },
1343
+
1344
+ empty: function(element) {
1345
+ return $(element).innerHTML.match(/^\s*$/);
1346
+ },
1347
+
1348
+ descendantOf: function(element, ancestor) {
1349
+ element = $(element), ancestor = $(ancestor);
1350
+ while (element = element.parentNode)
1351
+ if (element == ancestor) return true;
1352
+ return false;
1353
+ },
1354
+
1355
+ scrollTo: function(element) {
1356
+ element = $(element);
1357
+ var pos = Position.cumulativeOffset(element);
1358
+ window.scrollTo(pos[0], pos[1]);
1359
+ return element;
1360
+ },
1361
+
1362
+ getStyle: function(element, style) {
1363
+ element = $(element);
1364
+ if (['float','cssFloat'].include(style))
1365
+ style = (typeof element.style.styleFloat != 'undefined' ? 'styleFloat' : 'cssFloat');
1366
+ style = style.camelize();
1367
+ var value = element.style[style];
1368
+ if (!value) {
1369
+ if (document.defaultView && document.defaultView.getComputedStyle) {
1370
+ var css = document.defaultView.getComputedStyle(element, null);
1371
+ value = css ? css[style] : null;
1372
+ } else if (element.currentStyle) {
1373
+ value = element.currentStyle[style];
1374
+ }
1375
+ }
1376
+
1377
+ if((value == 'auto') && ['width','height'].include(style) && (element.getStyle('display') != 'none'))
1378
+ value = element['offset'+style.capitalize()] + 'px';
1379
+
1380
+ if (window.opera && ['left', 'top', 'right', 'bottom'].include(style))
1381
+ if (Element.getStyle(element, 'position') == 'static') value = 'auto';
1382
+ if(style == 'opacity') {
1383
+ if(value) return parseFloat(value);
1384
+ if(value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
1385
+ if(value[1]) return parseFloat(value[1]) / 100;
1386
+ return 1.0;
1387
+ }
1388
+ return value == 'auto' ? null : value;
1389
+ },
1390
+
1391
+ setStyle: function(element, style) {
1392
+ element = $(element);
1393
+ for (var name in style) {
1394
+ var value = style[name];
1395
+ if(name == 'opacity') {
1396
+ if (value == 1) {
1397
+ value = (/Gecko/.test(navigator.userAgent) &&
1398
+ !/Konqueror|Safari|KHTML/.test(navigator.userAgent)) ? 0.999999 : 1.0;
1399
+ if(/MSIE/.test(navigator.userAgent) && !window.opera)
1400
+ element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'');
1401
+ } else if(value == '') {
1402
+ if(/MSIE/.test(navigator.userAgent) && !window.opera)
1403
+ element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'');
1404
+ } else {
1405
+ if(value < 0.00001) value = 0;
1406
+ if(/MSIE/.test(navigator.userAgent) && !window.opera)
1407
+ element.style.filter = element.getStyle('filter').replace(/alpha\([^\)]*\)/gi,'') +
1408
+ 'alpha(opacity='+value*100+')';
1409
+ }
1410
+ } else if(['float','cssFloat'].include(name)) name = (typeof element.style.styleFloat != 'undefined') ? 'styleFloat' : 'cssFloat';
1411
+ element.style[name.camelize()] = value;
1412
+ }
1413
+ return element;
1414
+ },
1415
+
1416
+ getDimensions: function(element) {
1417
+ element = $(element);
1418
+ var display = $(element).getStyle('display');
1419
+ if (display != 'none' && display != null) // Safari bug
1420
+ return {width: element.offsetWidth, height: element.offsetHeight};
1421
+
1422
+ // All *Width and *Height properties give 0 on elements with display none,
1423
+ // so enable the element temporarily
1424
+ var els = element.style;
1425
+ var originalVisibility = els.visibility;
1426
+ var originalPosition = els.position;
1427
+ var originalDisplay = els.display;
1428
+ els.visibility = 'hidden';
1429
+ els.position = 'absolute';
1430
+ els.display = 'block';
1431
+ var originalWidth = element.clientWidth;
1432
+ var originalHeight = element.clientHeight;
1433
+ els.display = originalDisplay;
1434
+ els.position = originalPosition;
1435
+ els.visibility = originalVisibility;
1436
+ return {width: originalWidth, height: originalHeight};
1437
+ },
1438
+
1439
+ makePositioned: function(element) {
1440
+ element = $(element);
1441
+ var pos = Element.getStyle(element, 'position');
1442
+ if (pos == 'static' || !pos) {
1443
+ element._madePositioned = true;
1444
+ element.style.position = 'relative';
1445
+ // Opera returns the offset relative to the positioning context, when an
1446
+ // element is position relative but top and left have not been defined
1447
+ if (window.opera) {
1448
+ element.style.top = 0;
1449
+ element.style.left = 0;
1450
+ }
1451
+ }
1452
+ return element;
1453
+ },
1454
+
1455
+ undoPositioned: function(element) {
1456
+ element = $(element);
1457
+ if (element._madePositioned) {
1458
+ element._madePositioned = undefined;
1459
+ element.style.position =
1460
+ element.style.top =
1461
+ element.style.left =
1462
+ element.style.bottom =
1463
+ element.style.right = '';
1464
+ }
1465
+ return element;
1466
+ },
1467
+
1468
+ makeClipping: function(element) {
1469
+ element = $(element);
1470
+ if (element._overflow) return element;
1471
+ element._overflow = element.style.overflow || 'auto';
1472
+ if ((Element.getStyle(element, 'overflow') || 'visible') != 'hidden')
1473
+ element.style.overflow = 'hidden';
1474
+ return element;
1475
+ },
1476
+
1477
+ undoClipping: function(element) {
1478
+ element = $(element);
1479
+ if (!element._overflow) return element;
1480
+ element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
1481
+ element._overflow = null;
1482
+ return element;
1483
+ }
1484
+ };
1485
+
1486
+ Object.extend(Element.Methods, {childOf: Element.Methods.descendantOf});
1487
+
1488
+ Element._attributeTranslations = {};
1489
+
1490
+ Element._attributeTranslations.names = {
1491
+ colspan: "colSpan",
1492
+ rowspan: "rowSpan",
1493
+ valign: "vAlign",
1494
+ datetime: "dateTime",
1495
+ accesskey: "accessKey",
1496
+ tabindex: "tabIndex",
1497
+ enctype: "encType",
1498
+ maxlength: "maxLength",
1499
+ readonly: "readOnly",
1500
+ longdesc: "longDesc"
1501
+ };
1502
+
1503
+ Element._attributeTranslations.values = {
1504
+ _getAttr: function(element, attribute) {
1505
+ return element.getAttribute(attribute, 2);
1506
+ },
1507
+
1508
+ _flag: function(element, attribute) {
1509
+ return $(element).hasAttribute(attribute) ? attribute : null;
1510
+ },
1511
+
1512
+ style: function(element) {
1513
+ return element.style.cssText.toLowerCase();
1514
+ },
1515
+
1516
+ title: function(element) {
1517
+ var node = element.getAttributeNode('title');
1518
+ return node.specified ? node.nodeValue : null;
1519
+ }
1520
+ };
1521
+
1522
+ Object.extend(Element._attributeTranslations.values, {
1523
+ href: Element._attributeTranslations.values._getAttr,
1524
+ src: Element._attributeTranslations.values._getAttr,
1525
+ disabled: Element._attributeTranslations.values._flag,
1526
+ checked: Element._attributeTranslations.values._flag,
1527
+ readonly: Element._attributeTranslations.values._flag,
1528
+ multiple: Element._attributeTranslations.values._flag
1529
+ });
1530
+
1531
+ Element.Methods.Simulated = {
1532
+ hasAttribute: function(element, attribute) {
1533
+ var t = Element._attributeTranslations;
1534
+ attribute = t.names[attribute] || attribute;
1535
+ return $(element).getAttributeNode(attribute).specified;
1536
+ }
1537
+ };
1538
+
1539
+ // IE is missing .innerHTML support for TABLE-related elements
1540
+ if (document.all && !window.opera){
1541
+ Element.Methods.update = function(element, html) {
1542
+ element = $(element);
1543
+ html = typeof html == 'undefined' ? '' : html.toString();
1544
+ var tagName = element.tagName.toUpperCase();
1545
+ if (['THEAD','TBODY','TR','TD'].include(tagName)) {
1546
+ var div = document.createElement('div');
1547
+ switch (tagName) {
1548
+ case 'THEAD':
1549
+ case 'TBODY':
1550
+ div.innerHTML = '<table><tbody>' + html.stripScripts() + '</tbody></table>';
1551
+ depth = 2;
1552
+ break;
1553
+ case 'TR':
1554
+ div.innerHTML = '<table><tbody><tr>' + html.stripScripts() + '</tr></tbody></table>';
1555
+ depth = 3;
1556
+ break;
1557
+ case 'TD':
1558
+ div.innerHTML = '<table><tbody><tr><td>' + html.stripScripts() + '</td></tr></tbody></table>';
1559
+ depth = 4;
1560
+ }
1561
+ $A(element.childNodes).each(function(node){
1562
+ element.removeChild(node)
1563
+ });
1564
+ depth.times(function(){ div = div.firstChild });
1565
+
1566
+ $A(div.childNodes).each(
1567
+ function(node){ element.appendChild(node) });
1568
+ } else {
1569
+ element.innerHTML = html.stripScripts();
1570
+ }
1571
+ setTimeout(function() {html.evalScripts()}, 10);
1572
+ return element;
1573
+ }
1574
+ };
1575
+
1576
+ Object.extend(Element, Element.Methods);
1577
+
1578
+ var _nativeExtensions = false;
1579
+
1580
+ if(/Konqueror|Safari|KHTML/.test(navigator.userAgent))
1581
+ ['', 'Form', 'Input', 'TextArea', 'Select'].each(function(tag) {
1582
+ var className = 'HTML' + tag + 'Element';
1583
+ if(window[className]) return;
1584
+ var klass = window[className] = {};
1585
+ klass.prototype = document.createElement(tag ? tag.toLowerCase() : 'div').__proto__;
1586
+ });
1587
+
1588
+ Element.addMethods = function(methods) {
1589
+ Object.extend(Element.Methods, methods || {});
1590
+
1591
+ function copy(methods, destination, onlyIfAbsent) {
1592
+ onlyIfAbsent = onlyIfAbsent || false;
1593
+ var cache = Element.extend.cache;
1594
+ for (var property in methods) {
1595
+ var value = methods[property];
1596
+ if (!onlyIfAbsent || !(property in destination))
1597
+ destination[property] = cache.findOrStore(value);
1598
+ }
1599
+ }
1600
+
1601
+ if (typeof HTMLElement != 'undefined') {
1602
+ copy(Element.Methods, HTMLElement.prototype);
1603
+ copy(Element.Methods.Simulated, HTMLElement.prototype, true);
1604
+ copy(Form.Methods, HTMLFormElement.prototype);
1605
+ [HTMLInputElement, HTMLTextAreaElement, HTMLSelectElement].each(function(klass) {
1606
+ copy(Form.Element.Methods, klass.prototype);
1607
+ });
1608
+ _nativeExtensions = true;
1609
+ }
1610
+ }
1611
+
1612
+ var Toggle = new Object();
1613
+ Toggle.display = Element.toggle;
1614
+
1615
+ /*--------------------------------------------------------------------------*/
1616
+
1617
+ Abstract.Insertion = function(adjacency) {
1618
+ this.adjacency = adjacency;
1619
+ }
1620
+
1621
+ Abstract.Insertion.prototype = {
1622
+ initialize: function(element, content) {
1623
+ this.element = $(element);
1624
+ this.content = content.stripScripts();
1625
+
1626
+ if (this.adjacency && this.element.insertAdjacentHTML) {
1627
+ try {
1628
+ this.element.insertAdjacentHTML(this.adjacency, this.content);
1629
+ } catch (e) {
1630
+ var tagName = this.element.tagName.toUpperCase();
1631
+ if (['TBODY', 'TR'].include(tagName)) {
1632
+ this.insertContent(this.contentFromAnonymousTable());
1633
+ } else {
1634
+ throw e;
1635
+ }
1636
+ }
1637
+ } else {
1638
+ this.range = this.element.ownerDocument.createRange();
1639
+ if (this.initializeRange) this.initializeRange();
1640
+ this.insertContent([this.range.createContextualFragment(this.content)]);
1641
+ }
1642
+
1643
+ setTimeout(function() {content.evalScripts()}, 10);
1644
+ },
1645
+
1646
+ contentFromAnonymousTable: function() {
1647
+ var div = document.createElement('div');
1648
+ div.innerHTML = '<table><tbody>' + this.content + '</tbody></table>';
1649
+ return $A(div.childNodes[0].childNodes[0].childNodes);
1650
+ }
1651
+ }
1652
+
1653
+ var Insertion = new Object();
1654
+
1655
+ Insertion.Before = Class.create();
1656
+ Insertion.Before.prototype = Object.extend(new Abstract.Insertion('beforeBegin'), {
1657
+ initializeRange: function() {
1658
+ this.range.setStartBefore(this.element);
1659
+ },
1660
+
1661
+ insertContent: function(fragments) {
1662
+ fragments.each((function(fragment) {
1663
+ this.element.parentNode.insertBefore(fragment, this.element);
1664
+ }).bind(this));
1665
+ }
1666
+ });
1667
+
1668
+ Insertion.Top = Class.create();
1669
+ Insertion.Top.prototype = Object.extend(new Abstract.Insertion('afterBegin'), {
1670
+ initializeRange: function() {
1671
+ this.range.selectNodeContents(this.element);
1672
+ this.range.collapse(true);
1673
+ },
1674
+
1675
+ insertContent: function(fragments) {
1676
+ fragments.reverse(false).each((function(fragment) {
1677
+ this.element.insertBefore(fragment, this.element.firstChild);
1678
+ }).bind(this));
1679
+ }
1680
+ });
1681
+
1682
+ Insertion.Bottom = Class.create();
1683
+ Insertion.Bottom.prototype = Object.extend(new Abstract.Insertion('beforeEnd'), {
1684
+ initializeRange: function() {
1685
+ this.range.selectNodeContents(this.element);
1686
+ this.range.collapse(this.element);
1687
+ },
1688
+
1689
+ insertContent: function(fragments) {
1690
+ fragments.each((function(fragment) {
1691
+ this.element.appendChild(fragment);
1692
+ }).bind(this));
1693
+ }
1694
+ });
1695
+
1696
+ Insertion.After = Class.create();
1697
+ Insertion.After.prototype = Object.extend(new Abstract.Insertion('afterEnd'), {
1698
+ initializeRange: function() {
1699
+ this.range.setStartAfter(this.element);
1700
+ },
1701
+
1702
+ insertContent: function(fragments) {
1703
+ fragments.each((function(fragment) {
1704
+ this.element.parentNode.insertBefore(fragment,
1705
+ this.element.nextSibling);
1706
+ }).bind(this));
1707
+ }
1708
+ });
1709
+
1710
+ /*--------------------------------------------------------------------------*/
1711
+
1712
+ Element.ClassNames = Class.create();
1713
+ Element.ClassNames.prototype = {
1714
+ initialize: function(element) {
1715
+ this.element = $(element);
1716
+ },
1717
+
1718
+ _each: function(iterator) {
1719
+ this.element.className.split(/\s+/).select(function(name) {
1720
+ return name.length > 0;
1721
+ })._each(iterator);
1722
+ },
1723
+
1724
+ set: function(className) {
1725
+ this.element.className = className;
1726
+ },
1727
+
1728
+ add: function(classNameToAdd) {
1729
+ if (this.include(classNameToAdd)) return;
1730
+ this.set($A(this).concat(classNameToAdd).join(' '));
1731
+ },
1732
+
1733
+ remove: function(classNameToRemove) {
1734
+ if (!this.include(classNameToRemove)) return;
1735
+ this.set($A(this).without(classNameToRemove).join(' '));
1736
+ },
1737
+
1738
+ toString: function() {
1739
+ return $A(this).join(' ');
1740
+ }
1741
+ };
1742
+
1743
+ Object.extend(Element.ClassNames.prototype, Enumerable);
1744
+ var Selector = Class.create();
1745
+ Selector.prototype = {
1746
+ initialize: function(expression) {
1747
+ this.params = {classNames: []};
1748
+ this.expression = expression.toString().strip();
1749
+ this.parseExpression();
1750
+ this.compileMatcher();
1751
+ },
1752
+
1753
+ parseExpression: function() {
1754
+ function abort(message) { throw 'Parse error in selector: ' + message; }
1755
+
1756
+ if (this.expression == '') abort('empty expression');
1757
+
1758
+ var params = this.params, expr = this.expression, match, modifier, clause, rest;
1759
+ while (match = expr.match(/^(.*)\[([a-z0-9_:-]+?)(?:([~\|!]?=)(?:"([^"]*)"|([^\]\s]*)))?\]$/i)) {
1760
+ params.attributes = params.attributes || [];
1761
+ params.attributes.push({name: match[2], operator: match[3], value: match[4] || match[5] || ''});
1762
+ expr = match[1];
1763
+ }
1764
+
1765
+ if (expr == '*') return this.params.wildcard = true;
1766
+
1767
+ while (match = expr.match(/^([^a-z0-9_-])?([a-z0-9_-]+)(.*)/i)) {
1768
+ modifier = match[1], clause = match[2], rest = match[3];
1769
+ switch (modifier) {
1770
+ case '#': params.id = clause; break;
1771
+ case '.': params.classNames.push(clause); break;
1772
+ case '':
1773
+ case undefined: params.tagName = clause.toUpperCase(); break;
1774
+ default: abort(expr.inspect());
1775
+ }
1776
+ expr = rest;
1777
+ }
1778
+
1779
+ if (expr.length > 0) abort(expr.inspect());
1780
+ },
1781
+
1782
+ buildMatchExpression: function() {
1783
+ var params = this.params, conditions = [], clause;
1784
+
1785
+ if (params.wildcard)
1786
+ conditions.push('true');
1787
+ if (clause = params.id)
1788
+ conditions.push('element.readAttribute("id") == ' + clause.inspect());
1789
+ if (clause = params.tagName)
1790
+ conditions.push('element.tagName.toUpperCase() == ' + clause.inspect());
1791
+ if ((clause = params.classNames).length > 0)
1792
+ for (var i = 0, length = clause.length; i < length; i++)
1793
+ conditions.push('element.hasClassName(' + clause[i].inspect() + ')');
1794
+ if (clause = params.attributes) {
1795
+ clause.each(function(attribute) {
1796
+ var value = 'element.readAttribute(' + attribute.name.inspect() + ')';
1797
+ var splitValueBy = function(delimiter) {
1798
+ return value + ' && ' + value + '.split(' + delimiter.inspect() + ')';
1799
+ }
1800
+
1801
+ switch (attribute.operator) {
1802
+ case '=': conditions.push(value + ' == ' + attribute.value.inspect()); break;
1803
+ case '~=': conditions.push(splitValueBy(' ') + '.include(' + attribute.value.inspect() + ')'); break;
1804
+ case '|=': conditions.push(
1805
+ splitValueBy('-') + '.first().toUpperCase() == ' + attribute.value.toUpperCase().inspect()
1806
+ ); break;
1807
+ case '!=': conditions.push(value + ' != ' + attribute.value.inspect()); break;
1808
+ case '':
1809
+ case undefined: conditions.push('element.hasAttribute(' + attribute.name.inspect() + ')'); break;
1810
+ default: throw 'Unknown operator ' + attribute.operator + ' in selector';
1811
+ }
1812
+ });
1813
+ }
1814
+
1815
+ return conditions.join(' && ');
1816
+ },
1817
+
1818
+ compileMatcher: function() {
1819
+ this.match = new Function('element', 'if (!element.tagName) return false; \
1820
+ element = $(element); \
1821
+ return ' + this.buildMatchExpression());
1822
+ },
1823
+
1824
+ findElements: function(scope) {
1825
+ var element;
1826
+
1827
+ if (element = $(this.params.id))
1828
+ if (this.match(element))
1829
+ if (!scope || Element.childOf(element, scope))
1830
+ return [element];
1831
+
1832
+ scope = (scope || document).getElementsByTagName(this.params.tagName || '*');
1833
+
1834
+ var results = [];
1835
+ for (var i = 0, length = scope.length; i < length; i++)
1836
+ if (this.match(element = scope[i]))
1837
+ results.push(Element.extend(element));
1838
+
1839
+ return results;
1840
+ },
1841
+
1842
+ toString: function() {
1843
+ return this.expression;
1844
+ }
1845
+ }
1846
+
1847
+ Object.extend(Selector, {
1848
+ matchElements: function(elements, expression) {
1849
+ var selector = new Selector(expression);
1850
+ return elements.select(selector.match.bind(selector)).map(Element.extend);
1851
+ },
1852
+
1853
+ findElement: function(elements, expression, index) {
1854
+ if (typeof expression == 'number') index = expression, expression = false;
1855
+ return Selector.matchElements(elements, expression || '*')[index || 0];
1856
+ },
1857
+
1858
+ findChildElements: function(element, expressions) {
1859
+ return expressions.map(function(expression) {
1860
+ return expression.match(/[^\s"]+(?:"[^"]*"[^\s"]+)*/g).inject([null], function(results, expr) {
1861
+ var selector = new Selector(expr);
1862
+ return results.inject([], function(elements, result) {
1863
+ return elements.concat(selector.findElements(result || element));
1864
+ });
1865
+ });
1866
+ }).flatten();
1867
+ }
1868
+ });
1869
+
1870
+ function $$() {
1871
+ return Selector.findChildElements(document, $A(arguments));
1872
+ }
1873
+ var Form = {
1874
+ reset: function(form) {
1875
+ $(form).reset();
1876
+ return form;
1877
+ },
1878
+
1879
+ serializeElements: function(elements, getHash) {
1880
+ var data = elements.inject({}, function(result, element) {
1881
+ if (!element.disabled && element.name) {
1882
+ var key = element.name, value = $(element).getValue();
1883
+ if (value != undefined) {
1884
+ if (result[key]) {
1885
+ if (result[key].constructor != Array) result[key] = [result[key]];
1886
+ result[key].push(value);
1887
+ }
1888
+ else result[key] = value;
1889
+ }
1890
+ }
1891
+ return result;
1892
+ });
1893
+
1894
+ return getHash ? data : Hash.toQueryString(data);
1895
+ }
1896
+ };
1897
+
1898
+ Form.Methods = {
1899
+ serialize: function(form, getHash) {
1900
+ return Form.serializeElements(Form.getElements(form), getHash);
1901
+ },
1902
+
1903
+ getElements: function(form) {
1904
+ return $A($(form).getElementsByTagName('*')).inject([],
1905
+ function(elements, child) {
1906
+ if (Form.Element.Serializers[child.tagName.toLowerCase()])
1907
+ elements.push(Element.extend(child));
1908
+ return elements;
1909
+ }
1910
+ );
1911
+ },
1912
+
1913
+ getInputs: function(form, typeName, name) {
1914
+ form = $(form);
1915
+ var inputs = form.getElementsByTagName('input');
1916
+
1917
+ if (!typeName && !name) return $A(inputs).map(Element.extend);
1918
+
1919
+ for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
1920
+ var input = inputs[i];
1921
+ if ((typeName && input.type != typeName) || (name && input.name != name))
1922
+ continue;
1923
+ matchingInputs.push(Element.extend(input));
1924
+ }
1925
+
1926
+ return matchingInputs;
1927
+ },
1928
+
1929
+ disable: function(form) {
1930
+ form = $(form);
1931
+ form.getElements().each(function(element) {
1932
+ element.blur();
1933
+ element.disabled = 'true';
1934
+ });
1935
+ return form;
1936
+ },
1937
+
1938
+ enable: function(form) {
1939
+ form = $(form);
1940
+ form.getElements().each(function(element) {
1941
+ element.disabled = '';
1942
+ });
1943
+ return form;
1944
+ },
1945
+
1946
+ findFirstElement: function(form) {
1947
+ return $(form).getElements().find(function(element) {
1948
+ return element.type != 'hidden' && !element.disabled &&
1949
+ ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
1950
+ });
1951
+ },
1952
+
1953
+ focusFirstElement: function(form) {
1954
+ form = $(form);
1955
+ form.findFirstElement().activate();
1956
+ return form;
1957
+ }
1958
+ }
1959
+
1960
+ Object.extend(Form, Form.Methods);
1961
+
1962
+ /*--------------------------------------------------------------------------*/
1963
+
1964
+ Form.Element = {
1965
+ focus: function(element) {
1966
+ $(element).focus();
1967
+ return element;
1968
+ },
1969
+
1970
+ select: function(element) {
1971
+ $(element).select();
1972
+ return element;
1973
+ }
1974
+ }
1975
+
1976
+ Form.Element.Methods = {
1977
+ serialize: function(element) {
1978
+ element = $(element);
1979
+ if (!element.disabled && element.name) {
1980
+ var value = element.getValue();
1981
+ if (value != undefined) {
1982
+ var pair = {};
1983
+ pair[element.name] = value;
1984
+ return Hash.toQueryString(pair);
1985
+ }
1986
+ }
1987
+ return '';
1988
+ },
1989
+
1990
+ getValue: function(element) {
1991
+ element = $(element);
1992
+ var method = element.tagName.toLowerCase();
1993
+ return Form.Element.Serializers[method](element);
1994
+ },
1995
+
1996
+ clear: function(element) {
1997
+ $(element).value = '';
1998
+ return element;
1999
+ },
2000
+
2001
+ present: function(element) {
2002
+ return $(element).value != '';
2003
+ },
2004
+
2005
+ activate: function(element) {
2006
+ element = $(element);
2007
+ element.focus();
2008
+ if (element.select && ( element.tagName.toLowerCase() != 'input' ||
2009
+ !['button', 'reset', 'submit'].include(element.type) ) )
2010
+ element.select();
2011
+ return element;
2012
+ },
2013
+
2014
+ disable: function(element) {
2015
+ element = $(element);
2016
+ element.disabled = true;
2017
+ return element;
2018
+ },
2019
+
2020
+ enable: function(element) {
2021
+ element = $(element);
2022
+ element.blur();
2023
+ element.disabled = false;
2024
+ return element;
2025
+ }
2026
+ }
2027
+
2028
+ Object.extend(Form.Element, Form.Element.Methods);
2029
+ var Field = Form.Element;
2030
+ var $F = Form.Element.getValue;
2031
+
2032
+ /*--------------------------------------------------------------------------*/
2033
+
2034
+ Form.Element.Serializers = {
2035
+ input: function(element) {
2036
+ switch (element.type.toLowerCase()) {
2037
+ case 'checkbox':
2038
+ case 'radio':
2039
+ return Form.Element.Serializers.inputSelector(element);
2040
+ default:
2041
+ return Form.Element.Serializers.textarea(element);
2042
+ }
2043
+ },
2044
+
2045
+ inputSelector: function(element) {
2046
+ return element.checked ? element.value : null;
2047
+ },
2048
+
2049
+ textarea: function(element) {
2050
+ return element.value;
2051
+ },
2052
+
2053
+ select: function(element) {
2054
+ return this[element.type == 'select-one' ?
2055
+ 'selectOne' : 'selectMany'](element);
2056
+ },
2057
+
2058
+ selectOne: function(element) {
2059
+ var index = element.selectedIndex;
2060
+ return index >= 0 ? this.optionValue(element.options[index]) : null;
2061
+ },
2062
+
2063
+ selectMany: function(element) {
2064
+ var values, length = element.length;
2065
+ if (!length) return null;
2066
+
2067
+ for (var i = 0, values = []; i < length; i++) {
2068
+ var opt = element.options[i];
2069
+ if (opt.selected) values.push(this.optionValue(opt));
2070
+ }
2071
+ return values;
2072
+ },
2073
+
2074
+ optionValue: function(opt) {
2075
+ // extend element because hasAttribute may not be native
2076
+ return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
2077
+ }
2078
+ }
2079
+
2080
+ /*--------------------------------------------------------------------------*/
2081
+
2082
+ Abstract.TimedObserver = function() {}
2083
+ Abstract.TimedObserver.prototype = {
2084
+ initialize: function(element, frequency, callback) {
2085
+ this.frequency = frequency;
2086
+ this.element = $(element);
2087
+ this.callback = callback;
2088
+
2089
+ this.lastValue = this.getValue();
2090
+ this.registerCallback();
2091
+ },
2092
+
2093
+ registerCallback: function() {
2094
+ setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
2095
+ },
2096
+
2097
+ onTimerEvent: function() {
2098
+ var value = this.getValue();
2099
+ var changed = ('string' == typeof this.lastValue && 'string' == typeof value
2100
+ ? this.lastValue != value : String(this.lastValue) != String(value));
2101
+ if (changed) {
2102
+ this.callback(this.element, value);
2103
+ this.lastValue = value;
2104
+ }
2105
+ }
2106
+ }
2107
+
2108
+ Form.Element.Observer = Class.create();
2109
+ Form.Element.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
2110
+ getValue: function() {
2111
+ return Form.Element.getValue(this.element);
2112
+ }
2113
+ });
2114
+
2115
+ Form.Observer = Class.create();
2116
+ Form.Observer.prototype = Object.extend(new Abstract.TimedObserver(), {
2117
+ getValue: function() {
2118
+ return Form.serialize(this.element);
2119
+ }
2120
+ });
2121
+
2122
+ /*--------------------------------------------------------------------------*/
2123
+
2124
+ Abstract.EventObserver = function() {}
2125
+ Abstract.EventObserver.prototype = {
2126
+ initialize: function(element, callback) {
2127
+ this.element = $(element);
2128
+ this.callback = callback;
2129
+
2130
+ this.lastValue = this.getValue();
2131
+ if (this.element.tagName.toLowerCase() == 'form')
2132
+ this.registerFormCallbacks();
2133
+ else
2134
+ this.registerCallback(this.element);
2135
+ },
2136
+
2137
+ onElementEvent: function() {
2138
+ var value = this.getValue();
2139
+ if (this.lastValue != value) {
2140
+ this.callback(this.element, value);
2141
+ this.lastValue = value;
2142
+ }
2143
+ },
2144
+
2145
+ registerFormCallbacks: function() {
2146
+ Form.getElements(this.element).each(this.registerCallback.bind(this));
2147
+ },
2148
+
2149
+ registerCallback: function(element) {
2150
+ if (element.type) {
2151
+ switch (element.type.toLowerCase()) {
2152
+ case 'checkbox':
2153
+ case 'radio':
2154
+ Event.observe(element, 'click', this.onElementEvent.bind(this));
2155
+ break;
2156
+ default:
2157
+ Event.observe(element, 'change', this.onElementEvent.bind(this));
2158
+ break;
2159
+ }
2160
+ }
2161
+ }
2162
+ }
2163
+
2164
+ Form.Element.EventObserver = Class.create();
2165
+ Form.Element.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
2166
+ getValue: function() {
2167
+ return Form.Element.getValue(this.element);
2168
+ }
2169
+ });
2170
+
2171
+ Form.EventObserver = Class.create();
2172
+ Form.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), {
2173
+ getValue: function() {
2174
+ return Form.serialize(this.element);
2175
+ }
2176
+ });
2177
+ if (!window.Event) {
2178
+ var Event = new Object();
2179
+ }
2180
+
2181
+ Object.extend(Event, {
2182
+ KEY_BACKSPACE: 8,
2183
+ KEY_TAB: 9,
2184
+ KEY_RETURN: 13,
2185
+ KEY_ESC: 27,
2186
+ KEY_LEFT: 37,
2187
+ KEY_UP: 38,
2188
+ KEY_RIGHT: 39,
2189
+ KEY_DOWN: 40,
2190
+ KEY_DELETE: 46,
2191
+ KEY_HOME: 36,
2192
+ KEY_END: 35,
2193
+ KEY_PAGEUP: 33,
2194
+ KEY_PAGEDOWN: 34,
2195
+
2196
+ element: function(event) {
2197
+ return event.target || event.srcElement;
2198
+ },
2199
+
2200
+ isLeftClick: function(event) {
2201
+ return (((event.which) && (event.which == 1)) ||
2202
+ ((event.button) && (event.button == 1)));
2203
+ },
2204
+
2205
+ pointerX: function(event) {
2206
+ return event.pageX || (event.clientX +
2207
+ (document.documentElement.scrollLeft || document.body.scrollLeft));
2208
+ },
2209
+
2210
+ pointerY: function(event) {
2211
+ return event.pageY || (event.clientY +
2212
+ (document.documentElement.scrollTop || document.body.scrollTop));
2213
+ },
2214
+
2215
+ stop: function(event) {
2216
+ if (event.preventDefault) {
2217
+ event.preventDefault();
2218
+ event.stopPropagation();
2219
+ } else {
2220
+ event.returnValue = false;
2221
+ event.cancelBubble = true;
2222
+ }
2223
+ },
2224
+
2225
+ // find the first node with the given tagName, starting from the
2226
+ // node the event was triggered on; traverses the DOM upwards
2227
+ findElement: function(event, tagName) {
2228
+ var element = Event.element(event);
2229
+ while (element.parentNode && (!element.tagName ||
2230
+ (element.tagName.toUpperCase() != tagName.toUpperCase())))
2231
+ element = element.parentNode;
2232
+ return element;
2233
+ },
2234
+
2235
+ observers: false,
2236
+
2237
+ _observeAndCache: function(element, name, observer, useCapture) {
2238
+ if (!this.observers) this.observers = [];
2239
+ if (element.addEventListener) {
2240
+ this.observers.push([element, name, observer, useCapture]);
2241
+ element.addEventListener(name, observer, useCapture);
2242
+ } else if (element.attachEvent) {
2243
+ this.observers.push([element, name, observer, useCapture]);
2244
+ element.attachEvent('on' + name, observer);
2245
+ }
2246
+ },
2247
+
2248
+ unloadCache: function() {
2249
+ if (!Event.observers) return;
2250
+ for (var i = 0, length = Event.observers.length; i < length; i++) {
2251
+ Event.stopObserving.apply(this, Event.observers[i]);
2252
+ Event.observers[i][0] = null;
2253
+ }
2254
+ Event.observers = false;
2255
+ },
2256
+
2257
+ observe: function(element, name, observer, useCapture) {
2258
+ element = $(element);
2259
+ useCapture = useCapture || false;
2260
+
2261
+ if (name == 'keypress' &&
2262
+ (navigator.appVersion.match(/Konqueror|Safari|KHTML/)
2263
+ || element.attachEvent))
2264
+ name = 'keydown';
2265
+
2266
+ Event._observeAndCache(element, name, observer, useCapture);
2267
+ },
2268
+
2269
+ stopObserving: function(element, name, observer, useCapture) {
2270
+ element = $(element);
2271
+ useCapture = useCapture || false;
2272
+
2273
+ if (name == 'keypress' &&
2274
+ (navigator.appVersion.match(/Konqueror|Safari|KHTML/)
2275
+ || element.detachEvent))
2276
+ name = 'keydown';
2277
+
2278
+ if (element.removeEventListener) {
2279
+ element.removeEventListener(name, observer, useCapture);
2280
+ } else if (element.detachEvent) {
2281
+ try {
2282
+ element.detachEvent('on' + name, observer);
2283
+ } catch (e) {}
2284
+ }
2285
+ }
2286
+ });
2287
+
2288
+ /* prevent memory leaks in IE */
2289
+ if (navigator.appVersion.match(/\bMSIE\b/))
2290
+ Event.observe(window, 'unload', Event.unloadCache, false);
2291
+ var Position = {
2292
+ // set to true if needed, warning: firefox performance problems
2293
+ // NOT neeeded for page scrolling, only if draggable contained in
2294
+ // scrollable elements
2295
+ includeScrollOffsets: false,
2296
+
2297
+ // must be called before calling withinIncludingScrolloffset, every time the
2298
+ // page is scrolled
2299
+ prepare: function() {
2300
+ this.deltaX = window.pageXOffset
2301
+ || document.documentElement.scrollLeft
2302
+ || document.body.scrollLeft
2303
+ || 0;
2304
+ this.deltaY = window.pageYOffset
2305
+ || document.documentElement.scrollTop
2306
+ || document.body.scrollTop
2307
+ || 0;
2308
+ },
2309
+
2310
+ realOffset: function(element) {
2311
+ var valueT = 0, valueL = 0;
2312
+ do {
2313
+ valueT += element.scrollTop || 0;
2314
+ valueL += element.scrollLeft || 0;
2315
+ element = element.parentNode;
2316
+ } while (element);
2317
+ return [valueL, valueT];
2318
+ },
2319
+
2320
+ cumulativeOffset: function(element) {
2321
+ var valueT = 0, valueL = 0;
2322
+ do {
2323
+ valueT += element.offsetTop || 0;
2324
+ valueL += element.offsetLeft || 0;
2325
+ element = element.offsetParent;
2326
+ } while (element);
2327
+ return [valueL, valueT];
2328
+ },
2329
+
2330
+ positionedOffset: function(element) {
2331
+ var valueT = 0, valueL = 0;
2332
+ do {
2333
+ valueT += element.offsetTop || 0;
2334
+ valueL += element.offsetLeft || 0;
2335
+ element = element.offsetParent;
2336
+ if (element) {
2337
+ if(element.tagName=='BODY') break;
2338
+ var p = Element.getStyle(element, 'position');
2339
+ if (p == 'relative' || p == 'absolute') break;
2340
+ }
2341
+ } while (element);
2342
+ return [valueL, valueT];
2343
+ },
2344
+
2345
+ offsetParent: function(element) {
2346
+ if (element.offsetParent) return element.offsetParent;
2347
+ if (element == document.body) return element;
2348
+
2349
+ while ((element = element.parentNode) && element != document.body)
2350
+ if (Element.getStyle(element, 'position') != 'static')
2351
+ return element;
2352
+
2353
+ return document.body;
2354
+ },
2355
+
2356
+ // caches x/y coordinate pair to use with overlap
2357
+ within: function(element, x, y) {
2358
+ if (this.includeScrollOffsets)
2359
+ return this.withinIncludingScrolloffsets(element, x, y);
2360
+ this.xcomp = x;
2361
+ this.ycomp = y;
2362
+ this.offset = this.cumulativeOffset(element);
2363
+
2364
+ return (y >= this.offset[1] &&
2365
+ y < this.offset[1] + element.offsetHeight &&
2366
+ x >= this.offset[0] &&
2367
+ x < this.offset[0] + element.offsetWidth);
2368
+ },
2369
+
2370
+ withinIncludingScrolloffsets: function(element, x, y) {
2371
+ var offsetcache = this.realOffset(element);
2372
+
2373
+ this.xcomp = x + offsetcache[0] - this.deltaX;
2374
+ this.ycomp = y + offsetcache[1] - this.deltaY;
2375
+ this.offset = this.cumulativeOffset(element);
2376
+
2377
+ return (this.ycomp >= this.offset[1] &&
2378
+ this.ycomp < this.offset[1] + element.offsetHeight &&
2379
+ this.xcomp >= this.offset[0] &&
2380
+ this.xcomp < this.offset[0] + element.offsetWidth);
2381
+ },
2382
+
2383
+ // within must be called directly before
2384
+ overlap: function(mode, element) {
2385
+ if (!mode) return 0;
2386
+ if (mode == 'vertical')
2387
+ return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
2388
+ element.offsetHeight;
2389
+ if (mode == 'horizontal')
2390
+ return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
2391
+ element.offsetWidth;
2392
+ },
2393
+
2394
+ page: function(forElement) {
2395
+ var valueT = 0, valueL = 0;
2396
+
2397
+ var element = forElement;
2398
+ do {
2399
+ valueT += element.offsetTop || 0;
2400
+ valueL += element.offsetLeft || 0;
2401
+
2402
+ // Safari fix
2403
+ if (element.offsetParent==document.body)
2404
+ if (Element.getStyle(element,'position')=='absolute') break;
2405
+
2406
+ } while (element = element.offsetParent);
2407
+
2408
+ element = forElement;
2409
+ do {
2410
+ if (!window.opera || element.tagName=='BODY') {
2411
+ valueT -= element.scrollTop || 0;
2412
+ valueL -= element.scrollLeft || 0;
2413
+ }
2414
+ } while (element = element.parentNode);
2415
+
2416
+ return [valueL, valueT];
2417
+ },
2418
+
2419
+ clone: function(source, target) {
2420
+ var options = Object.extend({
2421
+ setLeft: true,
2422
+ setTop: true,
2423
+ setWidth: true,
2424
+ setHeight: true,
2425
+ offsetTop: 0,
2426
+ offsetLeft: 0
2427
+ }, arguments[2] || {})
2428
+
2429
+ // find page position of source
2430
+ source = $(source);
2431
+ var p = Position.page(source);
2432
+
2433
+ // find coordinate system to use
2434
+ target = $(target);
2435
+ var delta = [0, 0];
2436
+ var parent = null;
2437
+ // delta [0,0] will do fine with position: fixed elements,
2438
+ // position:absolute needs offsetParent deltas
2439
+ if (Element.getStyle(target,'position') == 'absolute') {
2440
+ parent = Position.offsetParent(target);
2441
+ delta = Position.page(parent);
2442
+ }
2443
+
2444
+ // correct by body offsets (fixes Safari)
2445
+ if (parent == document.body) {
2446
+ delta[0] -= document.body.offsetLeft;
2447
+ delta[1] -= document.body.offsetTop;
2448
+ }
2449
+
2450
+ // set position
2451
+ if(options.setLeft) target.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px';
2452
+ if(options.setTop) target.style.top = (p[1] - delta[1] + options.offsetTop) + 'px';
2453
+ if(options.setWidth) target.style.width = source.offsetWidth + 'px';
2454
+ if(options.setHeight) target.style.height = source.offsetHeight + 'px';
2455
+ },
2456
+
2457
+ absolutize: function(element) {
2458
+ element = $(element);
2459
+ if (element.style.position == 'absolute') return;
2460
+ Position.prepare();
2461
+
2462
+ var offsets = Position.positionedOffset(element);
2463
+ var top = offsets[1];
2464
+ var left = offsets[0];
2465
+ var width = element.clientWidth;
2466
+ var height = element.clientHeight;
2467
+
2468
+ element._originalLeft = left - parseFloat(element.style.left || 0);
2469
+ element._originalTop = top - parseFloat(element.style.top || 0);
2470
+ element._originalWidth = element.style.width;
2471
+ element._originalHeight = element.style.height;
2472
+
2473
+ element.style.position = 'absolute';
2474
+ element.style.top = top + 'px';
2475
+ element.style.left = left + 'px';
2476
+ element.style.width = width + 'px';
2477
+ element.style.height = height + 'px';
2478
+ },
2479
+
2480
+ relativize: function(element) {
2481
+ element = $(element);
2482
+ if (element.style.position == 'relative') return;
2483
+ Position.prepare();
2484
+
2485
+ element.style.position = 'relative';
2486
+ var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
2487
+ var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);
2488
+
2489
+ element.style.top = top + 'px';
2490
+ element.style.left = left + 'px';
2491
+ element.style.height = element._originalHeight;
2492
+ element.style.width = element._originalWidth;
2493
+ }
2494
+ }
2495
+
2496
+ // Safari returns margins on body which is incorrect if the child is absolutely
2497
+ // positioned. For performance reasons, redefine Position.cumulativeOffset for
2498
+ // KHTML/WebKit only.
2499
+ if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
2500
+ Position.cumulativeOffset = function(element) {
2501
+ var valueT = 0, valueL = 0;
2502
+ do {
2503
+ valueT += element.offsetTop || 0;
2504
+ valueL += element.offsetLeft || 0;
2505
+ if (element.offsetParent == document.body)
2506
+ if (Element.getStyle(element, 'position') == 'absolute') break;
2507
+
2508
+ element = element.offsetParent;
2509
+ } while (element);
2510
+
2511
+ return [valueL, valueT];
2512
+ }
2513
+ }
2514
+
2515
+ Element.addMethods();