pupu 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (567) hide show
  1. data/CHANGELOG +1 -0
  2. data/LICENSE +20 -0
  3. data/README.textile +160 -0
  4. data/Rakefile +61 -0
  5. data/TODO.txt +21 -0
  6. data/bin/pupu +73 -0
  7. data/deps.rip +6 -0
  8. data/examples/blog/Rakefile +4 -0
  9. data/examples/blog/Thorfile +9 -0
  10. data/examples/blog/bin/pupu +4 -0
  11. data/examples/blog/config.ru +22 -0
  12. data/examples/blog/config/pupu.rb +4 -0
  13. data/examples/blog/init.rb +18 -0
  14. data/examples/blog/media/javascripts/initializers/lighter.js +16 -0
  15. data/examples/blog/media/pupu/autocompleter/CHANGELOG +1 -0
  16. data/examples/blog/media/pupu/autocompleter/LICENSE +20 -0
  17. data/examples/blog/media/pupu/autocompleter/README.textile +26 -0
  18. data/examples/blog/media/pupu/autocompleter/Rakefile +29 -0
  19. data/examples/blog/media/pupu/autocompleter/TODO +1 -0
  20. data/examples/blog/media/pupu/autocompleter/config.rb +12 -0
  21. data/examples/blog/media/pupu/autocompleter/images/spinner.gif +0 -0
  22. data/examples/blog/media/pupu/autocompleter/javascripts/autocompleter.js +442 -0
  23. data/examples/blog/media/pupu/autocompleter/javascripts/autocompleter.local.js +31 -0
  24. data/examples/blog/media/pupu/autocompleter/javascripts/autocompleter.request.js +109 -0
  25. data/examples/blog/media/pupu/autocompleter/javascripts/initializers/autocompleter.js +26 -0
  26. data/examples/blog/media/pupu/autocompleter/javascripts/observer.js +69 -0
  27. data/examples/blog/media/pupu/autocompleter/metadata.yml +5 -0
  28. data/examples/blog/media/pupu/autocompleter/stylesheets/autocompleter.css +68 -0
  29. data/examples/blog/media/pupu/blueprint/CHANGELOG +1 -0
  30. data/examples/blog/media/pupu/blueprint/LICENSE +20 -0
  31. data/examples/blog/media/pupu/blueprint/README.textile +22 -0
  32. data/examples/blog/media/pupu/blueprint/Rakefile +29 -0
  33. data/examples/blog/media/pupu/blueprint/TODO +3 -0
  34. data/examples/blog/media/pupu/blueprint/config.rb +18 -0
  35. data/examples/blog/media/pupu/blueprint/metadata.yml +5 -0
  36. data/examples/blog/media/pupu/blueprint/stylesheets/ie.css +26 -0
  37. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/buttons/icons/cross.png +0 -0
  38. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/buttons/icons/key.png +0 -0
  39. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/buttons/icons/tick.png +0 -0
  40. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/buttons/readme.txt +32 -0
  41. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/buttons/screen.css +97 -0
  42. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/fancy-type/readme.txt +14 -0
  43. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/fancy-type/screen.css +71 -0
  44. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/doc.png +0 -0
  45. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/email.png +0 -0
  46. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/external.png +0 -0
  47. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/feed.png +0 -0
  48. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/im.png +0 -0
  49. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/pdf.png +0 -0
  50. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/visited.png +0 -0
  51. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/icons/xls.png +0 -0
  52. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/readme.txt +18 -0
  53. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/link-icons/screen.css +40 -0
  54. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/rtl/readme.txt +10 -0
  55. data/examples/blog/media/pupu/blueprint/stylesheets/plugins/rtl/screen.css +109 -0
  56. data/examples/blog/media/pupu/blueprint/stylesheets/print.css +30 -0
  57. data/examples/blog/media/pupu/blueprint/stylesheets/screen.css +251 -0
  58. data/examples/blog/media/pupu/blueprint/stylesheets/src/forms.css +49 -0
  59. data/examples/blog/media/pupu/blueprint/stylesheets/src/grid.css +212 -0
  60. data/examples/blog/media/pupu/blueprint/stylesheets/src/grid.png +0 -0
  61. data/examples/blog/media/pupu/blueprint/stylesheets/src/ie.css +59 -0
  62. data/examples/blog/media/pupu/blueprint/stylesheets/src/print.css +85 -0
  63. data/examples/blog/media/pupu/blueprint/stylesheets/src/reset.css +38 -0
  64. data/examples/blog/media/pupu/blueprint/stylesheets/src/typography.css +105 -0
  65. data/examples/blog/media/pupu/flash/CHANGELOG +1 -0
  66. data/examples/blog/media/pupu/flash/LICENSE +20 -0
  67. data/examples/blog/media/pupu/flash/README.textile +22 -0
  68. data/examples/blog/media/pupu/flash/Rakefile +37 -0
  69. data/examples/blog/media/pupu/flash/TODO +1 -0
  70. data/examples/blog/media/pupu/flash/config.rb +11 -0
  71. data/examples/blog/media/pupu/flash/javascripts/flash.js +63 -0
  72. data/examples/blog/media/pupu/flash/javascripts/initializers/flash.js +12 -0
  73. data/examples/blog/media/pupu/flash/metadata.yml +5 -0
  74. data/examples/blog/media/pupu/flash/stylesheets/initializers/flash.css +21 -0
  75. data/examples/blog/media/pupu/lighter/CHANGELOG +2 -0
  76. data/examples/blog/media/pupu/lighter/LICENSE +20 -0
  77. data/examples/blog/media/pupu/lighter/README.textile +19 -0
  78. data/examples/blog/media/pupu/lighter/TODO.txt +4 -0
  79. data/examples/blog/media/pupu/lighter/config.rb +20 -0
  80. data/examples/blog/media/pupu/lighter/initializers/lighter.js +11 -0
  81. data/examples/blog/media/pupu/lighter/javascripts/Fuel.css.js +1 -0
  82. data/examples/blog/media/pupu/lighter/javascripts/Fuel.html.js +1 -0
  83. data/examples/blog/media/pupu/lighter/javascripts/Fuel.js.js +1 -0
  84. data/examples/blog/media/pupu/lighter/javascripts/Fuel.md.js +1 -0
  85. data/examples/blog/media/pupu/lighter/javascripts/Fuel.php.js +1 -0
  86. data/examples/blog/media/pupu/lighter/javascripts/Fuel.ruby.js +1 -0
  87. data/examples/blog/media/pupu/lighter/javascripts/Fuel.shell.js +1 -0
  88. data/examples/blog/media/pupu/lighter/javascripts/Fuel.sql.js +1 -0
  89. data/examples/blog/media/pupu/lighter/javascripts/Fuel.template.js +45 -0
  90. data/examples/blog/media/pupu/lighter/javascripts/ZeroClipboard.js +1 -0
  91. data/examples/blog/media/pupu/lighter/javascripts/lighter.js +1 -0
  92. data/examples/blog/media/pupu/lighter/media/ZeroClipboard.swf +0 -0
  93. data/examples/blog/media/pupu/lighter/metadata.yml +5 -0
  94. data/examples/blog/media/pupu/lighter/stylesheets/Flame.git.css +1 -0
  95. data/examples/blog/media/pupu/lighter/stylesheets/Flame.mocha.css +1 -0
  96. data/examples/blog/media/pupu/lighter/stylesheets/Flame.panic.css +1 -0
  97. data/examples/blog/media/pupu/lighter/stylesheets/Flame.standard.css +1 -0
  98. data/examples/blog/media/pupu/lighter/stylesheets/Flame.template.css +101 -0
  99. data/examples/blog/media/pupu/lighter/stylesheets/Flame.tutti.css +1 -0
  100. data/examples/blog/media/pupu/lighter/stylesheets/Flame.twilight.css +1 -0
  101. data/examples/blog/media/pupu/mootools/CHANGELOG +2 -0
  102. data/examples/blog/media/pupu/mootools/LICENSE +20 -0
  103. data/examples/blog/media/pupu/mootools/README.textile +19 -0
  104. data/examples/blog/media/pupu/mootools/Rakefile +29 -0
  105. data/examples/blog/media/pupu/mootools/TODO +1 -0
  106. data/examples/blog/media/pupu/mootools/config.rb +8 -0
  107. data/examples/blog/media/pupu/mootools/javascripts/mootools-1.2-core.js +350 -0
  108. data/examples/blog/media/pupu/mootools/javascripts/mootools-1.2-more.js +154 -0
  109. data/examples/blog/media/pupu/mootools/metadata.yml +5 -0
  110. data/examples/blog/templates/base.html.haml +10 -0
  111. data/examples/blog/templates/examples/arguments.html.haml +7 -0
  112. data/examples/blog/templates/examples/base.html.haml +15 -0
  113. data/examples/blog/templates/examples/dependencies.html.haml +5 -0
  114. data/examples/blog/templates/examples/simple.html.haml +5 -0
  115. data/examples/blog/templates/index.html.haml +11 -0
  116. data/lib/pupu.rb +7 -0
  117. data/lib/pupu/adapters/merb.rb +14 -0
  118. data/lib/pupu/adapters/rails.rb +0 -0
  119. data/lib/pupu/adapters/rango.rb +11 -0
  120. data/lib/pupu/cli.rb +161 -0
  121. data/lib/pupu/dsl.rb +95 -0
  122. data/lib/pupu/exceptions.rb +21 -0
  123. data/lib/pupu/github.rb +121 -0
  124. data/lib/pupu/helpers.rb +13 -0
  125. data/lib/pupu/metadata.rb +15 -0
  126. data/lib/pupu/parser.rb +47 -0
  127. data/lib/pupu/pupu.rb +142 -0
  128. data/lib/pupu/tasks/pupu.rake +42 -0
  129. data/lib/pupu/tasks/pupu.thor +48 -0
  130. data/pupu.gemspec +44 -0
  131. data/script/spec +12 -0
  132. data/simple-templater.scope +6 -0
  133. data/spec/data/public/pupu/autocompleter/CHANGELOG +1 -0
  134. data/spec/data/public/pupu/autocompleter/LICENSE +20 -0
  135. data/spec/data/public/pupu/autocompleter/README.textile +26 -0
  136. data/spec/data/public/pupu/autocompleter/Rakefile +29 -0
  137. data/spec/data/public/pupu/autocompleter/TODO +1 -0
  138. data/spec/data/public/pupu/autocompleter/config.rb +12 -0
  139. data/spec/data/public/pupu/autocompleter/images/spinner.gif +0 -0
  140. data/spec/data/public/pupu/autocompleter/initializers/autocompleter.js +26 -0
  141. data/spec/data/public/pupu/autocompleter/javascripts/autocompleter.js +442 -0
  142. data/spec/data/public/pupu/autocompleter/javascripts/autocompleter.local.js +31 -0
  143. data/spec/data/public/pupu/autocompleter/javascripts/autocompleter.request.js +109 -0
  144. data/spec/data/public/pupu/autocompleter/javascripts/observer.js +69 -0
  145. data/spec/data/public/pupu/autocompleter/stylesheets/autocompleter.css +68 -0
  146. data/spec/pupu/adapters/merb_spec.rb +0 -0
  147. data/spec/pupu/adapters/rango_spec.rb +0 -0
  148. data/spec/pupu/cli_spec.rb +21 -0
  149. data/spec/pupu/dsl_spec.rb +62 -0
  150. data/spec/pupu/exceptions_spec.rb +14 -0
  151. data/spec/pupu/github_spec.rb +19 -0
  152. data/spec/pupu/helpers_spec.rb +18 -0
  153. data/spec/pupu/metadata_spec.rb +21 -0
  154. data/spec/pupu/parser_spec.rb +19 -0
  155. data/spec/pupu/pupu_spec.rb +125 -0
  156. data/spec/spec.opts +5 -0
  157. data/spec/spec_helper.rb +10 -0
  158. data/stubs/pupu/content/CHANGELOG +2 -0
  159. data/stubs/pupu/content/LICENSE.rbt +20 -0
  160. data/stubs/pupu/content/README.textile.rbt +19 -0
  161. data/stubs/pupu/content/TODO.txt +4 -0
  162. data/stubs/pupu/content/config.rb.rbt +20 -0
  163. data/stubs/pupu/content/initializers/%name%.css +0 -0
  164. data/stubs/pupu/content/initializers/%name%.js +3 -0
  165. data/stubs/pupu/content/javascripts/%javascript%.js +0 -0
  166. data/stubs/pupu/content/stylesheets/%stylesheet%.css +0 -0
  167. data/stubs/pupu/metadata.yml +3 -0
  168. data/stubs/pupu/postprocess.rb +11 -0
  169. data/stubs/pupu/setup.rb +25 -0
  170. data/url.rb +20 -0
  171. data/url_spec.rb +35 -0
  172. data/vendor/media-path/CHANGELOG +3 -0
  173. data/vendor/media-path/LICENSE +20 -0
  174. data/vendor/media-path/README.textile +40 -0
  175. data/vendor/media-path/Rakefile +61 -0
  176. data/vendor/media-path/TODO.txt +6 -0
  177. data/vendor/media-path/deps.rip +5 -0
  178. data/vendor/media-path/lib/media-path.rb +269 -0
  179. data/vendor/media-path/media-path.gemspec +38 -0
  180. data/vendor/media-path/script/spec +14 -0
  181. data/vendor/media-path/spec/media-path_spec.rb +158 -0
  182. data/vendor/media-path/spec/spec.opts +5 -0
  183. data/vendor/media-path/spec/stubs/blog/public/js/moo.js +0 -0
  184. data/vendor/rspec/History.rdoc +1510 -0
  185. data/vendor/rspec/License.txt +22 -0
  186. data/vendor/rspec/Manifest.txt +383 -0
  187. data/vendor/rspec/README.rdoc +55 -0
  188. data/vendor/rspec/Rakefile +145 -0
  189. data/vendor/rspec/Ruby1.9.rdoc +31 -0
  190. data/vendor/rspec/TODO.txt +17 -0
  191. data/vendor/rspec/Upgrade.rdoc +199 -0
  192. data/vendor/rspec/bin/autospec +4 -0
  193. data/vendor/rspec/bin/spec +5 -0
  194. data/vendor/rspec/cucumber.yml +5 -0
  195. data/vendor/rspec/examples/failing/README.txt +11 -0
  196. data/vendor/rspec/examples/failing/diffing_spec.rb +36 -0
  197. data/vendor/rspec/examples/failing/failing_implicit_docstrings_example.rb +17 -0
  198. data/vendor/rspec/examples/failing/failure_in_after.rb +10 -0
  199. data/vendor/rspec/examples/failing/failure_in_before.rb +10 -0
  200. data/vendor/rspec/examples/failing/mocking_example.rb +38 -0
  201. data/vendor/rspec/examples/failing/mocking_with_flexmock.rb +26 -0
  202. data/vendor/rspec/examples/failing/mocking_with_mocha.rb +25 -0
  203. data/vendor/rspec/examples/failing/mocking_with_rr.rb +27 -0
  204. data/vendor/rspec/examples/failing/partial_mock_example.rb +18 -0
  205. data/vendor/rspec/examples/failing/pending_example.rb +7 -0
  206. data/vendor/rspec/examples/failing/predicate_example.rb +32 -0
  207. data/vendor/rspec/examples/failing/raising_example.rb +47 -0
  208. data/vendor/rspec/examples/failing/syntax_error_example.rb +7 -0
  209. data/vendor/rspec/examples/failing/team_spec.rb +41 -0
  210. data/vendor/rspec/examples/failing/timeout_behaviour.rb +5 -0
  211. data/vendor/rspec/examples/passing/custom_formatter.rb +11 -0
  212. data/vendor/rspec/examples/passing/custom_matchers.rb +54 -0
  213. data/vendor/rspec/examples/passing/dynamic_spec.rb +7 -0
  214. data/vendor/rspec/examples/passing/file_accessor.rb +18 -0
  215. data/vendor/rspec/examples/passing/file_accessor_spec.rb +37 -0
  216. data/vendor/rspec/examples/passing/filtered_formatter.rb +17 -0
  217. data/vendor/rspec/examples/passing/filtered_formatter_example.rb +31 -0
  218. data/vendor/rspec/examples/passing/greeter_spec.rb +30 -0
  219. data/vendor/rspec/examples/passing/helper_method_example.rb +12 -0
  220. data/vendor/rspec/examples/passing/implicit_docstrings_example.rb +16 -0
  221. data/vendor/rspec/examples/passing/io_processor.rb +8 -0
  222. data/vendor/rspec/examples/passing/io_processor_spec.rb +20 -0
  223. data/vendor/rspec/examples/passing/mocking_example.rb +25 -0
  224. data/vendor/rspec/examples/passing/multi_threaded_example_group_runner.rb +26 -0
  225. data/vendor/rspec/examples/passing/nested_classes_example.rb +35 -0
  226. data/vendor/rspec/examples/passing/options_example.rb +29 -0
  227. data/vendor/rspec/examples/passing/options_formatter.rb +20 -0
  228. data/vendor/rspec/examples/passing/partial_mock_example.rb +27 -0
  229. data/vendor/rspec/examples/passing/pending_example.rb +18 -0
  230. data/vendor/rspec/examples/passing/predicate_example.rb +25 -0
  231. data/vendor/rspec/examples/passing/shared_example_group_example.rb +79 -0
  232. data/vendor/rspec/examples/passing/shared_stack_examples.rb +36 -0
  233. data/vendor/rspec/examples/passing/simple_matcher_example.rb +29 -0
  234. data/vendor/rspec/examples/passing/stack.rb +36 -0
  235. data/vendor/rspec/examples/passing/stack_spec.rb +63 -0
  236. data/vendor/rspec/examples/passing/stack_spec_with_nested_example_groups.rb +66 -0
  237. data/vendor/rspec/examples/passing/stubbing_example.rb +67 -0
  238. data/vendor/rspec/examples/passing/yielding_example.rb +31 -0
  239. data/vendor/rspec/examples/ruby1.9.compatibility/access_to_constants_spec.rb +85 -0
  240. data/vendor/rspec/features-pending/cli/conditional_exclusion.feature +39 -0
  241. data/vendor/rspec/features-pending/heckle/heckle.feature +56 -0
  242. data/vendor/rspec/features/before_and_after_blocks/before_and_after_blocks.feature +167 -0
  243. data/vendor/rspec/features/command_line/line_number_option.feature +56 -0
  244. data/vendor/rspec/features/command_line/line_number_option_with_example_with_no_name.feature +22 -0
  245. data/vendor/rspec/features/example_groups/define_example_attribute.feature +41 -0
  246. data/vendor/rspec/features/example_groups/example_group_with_should_methods.feature +29 -0
  247. data/vendor/rspec/features/example_groups/implicit_docstrings.feature +59 -0
  248. data/vendor/rspec/features/example_groups/nested_groups.feature +32 -0
  249. data/vendor/rspec/features/expectations/customized_message.feature +54 -0
  250. data/vendor/rspec/features/expectations/expect_change.feature +65 -0
  251. data/vendor/rspec/features/expectations/expect_error.feature +44 -0
  252. data/vendor/rspec/features/extensions/custom_example_group.feature +19 -0
  253. data/vendor/rspec/features/formatters/custom_formatter.feature +30 -0
  254. data/vendor/rspec/features/interop/examples_and_tests_together.feature +84 -0
  255. data/vendor/rspec/features/interop/rspec_output.feature +25 -0
  256. data/vendor/rspec/features/interop/test_but_not_test_unit.feature +26 -0
  257. data/vendor/rspec/features/interop/test_case_with_should_methods.feature +46 -0
  258. data/vendor/rspec/features/load_paths/add_lib_to_load_path.feature +20 -0
  259. data/vendor/rspec/features/load_paths/add_spec_to_load_path.feature +20 -0
  260. data/vendor/rspec/features/matchers/define_diffable_matcher.feature +26 -0
  261. data/vendor/rspec/features/matchers/define_matcher.feature +179 -0
  262. data/vendor/rspec/features/matchers/define_matcher_outside_rspec.feature +38 -0
  263. data/vendor/rspec/features/matchers/define_matcher_with_fluent_interface.feature +27 -0
  264. data/vendor/rspec/features/matchers/define_wrapped_matcher.feature +29 -0
  265. data/vendor/rspec/features/matchers/match_unless_raises.feature +60 -0
  266. data/vendor/rspec/features/matchers/match_unless_raises_unexpected_error.feature +39 -0
  267. data/vendor/rspec/features/mock_framework_integration/use_flexmock.feature +27 -0
  268. data/vendor/rspec/features/mock_framework_integration/use_mocha.feature +27 -0
  269. data/vendor/rspec/features/mock_framework_integration/use_rr.feature +27 -0
  270. data/vendor/rspec/features/mocks/block_local_expectations.feature +62 -0
  271. data/vendor/rspec/features/mocks/mix_stubs_and_mocks.feature +22 -0
  272. data/vendor/rspec/features/mocks/stub_implementation.feature +26 -0
  273. data/vendor/rspec/features/pending/pending_examples.feature +81 -0
  274. data/vendor/rspec/features/runner/specify_line_number.feature +32 -0
  275. data/vendor/rspec/features/spec_helper/spec_helper.feature +25 -0
  276. data/vendor/rspec/features/step_definitions/running_rspec_steps.rb +43 -0
  277. data/vendor/rspec/features/subject/explicit_subject.feature +31 -0
  278. data/vendor/rspec/features/subject/implicit_subject.feature +43 -0
  279. data/vendor/rspec/features/support/env.rb +82 -0
  280. data/vendor/rspec/features/support/matchers/smart_match.rb +12 -0
  281. data/vendor/rspec/geminstaller.yml +28 -0
  282. data/vendor/rspec/init.rb +9 -0
  283. data/vendor/rspec/lib/autotest/discover.rb +3 -0
  284. data/vendor/rspec/lib/autotest/rspec.rb +54 -0
  285. data/vendor/rspec/lib/spec.rb +8 -0
  286. data/vendor/rspec/lib/spec/adapters/mock_frameworks/flexmock.rb +24 -0
  287. data/vendor/rspec/lib/spec/adapters/mock_frameworks/mocha.rb +25 -0
  288. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rr.rb +22 -0
  289. data/vendor/rspec/lib/spec/adapters/mock_frameworks/rspec.rb +21 -0
  290. data/vendor/rspec/lib/spec/autorun.rb +3 -0
  291. data/vendor/rspec/lib/spec/deprecation.rb +40 -0
  292. data/vendor/rspec/lib/spec/dsl.rb +1 -0
  293. data/vendor/rspec/lib/spec/dsl/main.rb +92 -0
  294. data/vendor/rspec/lib/spec/example.rb +164 -0
  295. data/vendor/rspec/lib/spec/example/args_and_options.rb +27 -0
  296. data/vendor/rspec/lib/spec/example/before_and_after_hooks.rb +93 -0
  297. data/vendor/rspec/lib/spec/example/errors.rb +25 -0
  298. data/vendor/rspec/lib/spec/example/example_group.rb +10 -0
  299. data/vendor/rspec/lib/spec/example/example_group_factory.rb +82 -0
  300. data/vendor/rspec/lib/spec/example/example_group_hierarchy.rb +53 -0
  301. data/vendor/rspec/lib/spec/example/example_group_methods.rb +282 -0
  302. data/vendor/rspec/lib/spec/example/example_group_proxy.rb +61 -0
  303. data/vendor/rspec/lib/spec/example/example_matcher.rb +43 -0
  304. data/vendor/rspec/lib/spec/example/example_methods.rb +148 -0
  305. data/vendor/rspec/lib/spec/example/example_proxy.rb +41 -0
  306. data/vendor/rspec/lib/spec/example/module_reopening_fix.rb +43 -0
  307. data/vendor/rspec/lib/spec/example/pending.rb +18 -0
  308. data/vendor/rspec/lib/spec/example/predicate_matchers.rb +46 -0
  309. data/vendor/rspec/lib/spec/example/shared_example_group.rb +59 -0
  310. data/vendor/rspec/lib/spec/example/subject.rb +108 -0
  311. data/vendor/rspec/lib/spec/expectations.rb +35 -0
  312. data/vendor/rspec/lib/spec/expectations/errors.rb +12 -0
  313. data/vendor/rspec/lib/spec/expectations/extensions.rb +1 -0
  314. data/vendor/rspec/lib/spec/expectations/extensions/kernel.rb +52 -0
  315. data/vendor/rspec/lib/spec/expectations/fail_with.rb +45 -0
  316. data/vendor/rspec/lib/spec/expectations/handler.rb +50 -0
  317. data/vendor/rspec/lib/spec/extensions/instance_exec.rb +31 -0
  318. data/vendor/rspec/lib/spec/interop/test.rb +44 -0
  319. data/vendor/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
  320. data/vendor/rspec/lib/spec/interop/test/unit/testcase.rb +56 -0
  321. data/vendor/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
  322. data/vendor/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  323. data/vendor/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  324. data/vendor/rspec/lib/spec/matchers.rb +195 -0
  325. data/vendor/rspec/lib/spec/matchers/be.rb +211 -0
  326. data/vendor/rspec/lib/spec/matchers/be_close.rb +32 -0
  327. data/vendor/rspec/lib/spec/matchers/be_instance_of.rb +26 -0
  328. data/vendor/rspec/lib/spec/matchers/be_kind_of.rb +26 -0
  329. data/vendor/rspec/lib/spec/matchers/change.rb +151 -0
  330. data/vendor/rspec/lib/spec/matchers/compatibility.rb +14 -0
  331. data/vendor/rspec/lib/spec/matchers/dsl.rb +20 -0
  332. data/vendor/rspec/lib/spec/matchers/eql.rb +42 -0
  333. data/vendor/rspec/lib/spec/matchers/equal.rb +53 -0
  334. data/vendor/rspec/lib/spec/matchers/errors.rb +5 -0
  335. data/vendor/rspec/lib/spec/matchers/exist.rb +16 -0
  336. data/vendor/rspec/lib/spec/matchers/generated_descriptions.rb +36 -0
  337. data/vendor/rspec/lib/spec/matchers/has.rb +35 -0
  338. data/vendor/rspec/lib/spec/matchers/have.rb +152 -0
  339. data/vendor/rspec/lib/spec/matchers/include.rb +44 -0
  340. data/vendor/rspec/lib/spec/matchers/match.rb +21 -0
  341. data/vendor/rspec/lib/spec/matchers/match_array.rb +71 -0
  342. data/vendor/rspec/lib/spec/matchers/matcher.rb +102 -0
  343. data/vendor/rspec/lib/spec/matchers/method_missing.rb +9 -0
  344. data/vendor/rspec/lib/spec/matchers/operator_matcher.rb +78 -0
  345. data/vendor/rspec/lib/spec/matchers/pretty.rb +37 -0
  346. data/vendor/rspec/lib/spec/matchers/raise_error.rb +129 -0
  347. data/vendor/rspec/lib/spec/matchers/respond_to.rb +71 -0
  348. data/vendor/rspec/lib/spec/matchers/satisfy.rb +47 -0
  349. data/vendor/rspec/lib/spec/matchers/simple_matcher.rb +133 -0
  350. data/vendor/rspec/lib/spec/matchers/throw_symbol.rb +104 -0
  351. data/vendor/rspec/lib/spec/matchers/wrap_expectation.rb +55 -0
  352. data/vendor/rspec/lib/spec/mocks.rb +200 -0
  353. data/vendor/rspec/lib/spec/mocks/argument_expectation.rb +51 -0
  354. data/vendor/rspec/lib/spec/mocks/argument_matchers.rb +237 -0
  355. data/vendor/rspec/lib/spec/mocks/error_generator.rb +92 -0
  356. data/vendor/rspec/lib/spec/mocks/errors.rb +10 -0
  357. data/vendor/rspec/lib/spec/mocks/example_methods.rb +69 -0
  358. data/vendor/rspec/lib/spec/mocks/extensions.rb +1 -0
  359. data/vendor/rspec/lib/spec/mocks/extensions/object.rb +3 -0
  360. data/vendor/rspec/lib/spec/mocks/framework.rb +15 -0
  361. data/vendor/rspec/lib/spec/mocks/message_expectation.rb +343 -0
  362. data/vendor/rspec/lib/spec/mocks/methods.rb +89 -0
  363. data/vendor/rspec/lib/spec/mocks/mock.rb +71 -0
  364. data/vendor/rspec/lib/spec/mocks/order_group.rb +29 -0
  365. data/vendor/rspec/lib/spec/mocks/proxy.rb +245 -0
  366. data/vendor/rspec/lib/spec/mocks/space.rb +28 -0
  367. data/vendor/rspec/lib/spec/rake/spectask.rb +230 -0
  368. data/vendor/rspec/lib/spec/rake/verify_rcov.rb +52 -0
  369. data/vendor/rspec/lib/spec/ruby.rb +9 -0
  370. data/vendor/rspec/lib/spec/runner.rb +66 -0
  371. data/vendor/rspec/lib/spec/runner/backtrace_tweaker.rb +77 -0
  372. data/vendor/rspec/lib/spec/runner/class_and_arguments_parser.rb +14 -0
  373. data/vendor/rspec/lib/spec/runner/command_line.rb +15 -0
  374. data/vendor/rspec/lib/spec/runner/configuration.rb +194 -0
  375. data/vendor/rspec/lib/spec/runner/differs/default.rb +93 -0
  376. data/vendor/rspec/lib/spec/runner/differs/load-diff-lcs.rb +12 -0
  377. data/vendor/rspec/lib/spec/runner/drb_command_line.rb +26 -0
  378. data/vendor/rspec/lib/spec/runner/example_group_runner.rb +59 -0
  379. data/vendor/rspec/lib/spec/runner/extensions/kernel.rb +9 -0
  380. data/vendor/rspec/lib/spec/runner/formatter/base_formatter.rb +139 -0
  381. data/vendor/rspec/lib/spec/runner/formatter/base_text_formatter.rb +142 -0
  382. data/vendor/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +25 -0
  383. data/vendor/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  384. data/vendor/rspec/lib/spec/runner/formatter/html_formatter.rb +338 -0
  385. data/vendor/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +47 -0
  386. data/vendor/rspec/lib/spec/runner/formatter/no_op_method_missing.rb +21 -0
  387. data/vendor/rspec/lib/spec/runner/formatter/profile_formatter.rb +47 -0
  388. data/vendor/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +33 -0
  389. data/vendor/rspec/lib/spec/runner/formatter/silent_formatter.rb +10 -0
  390. data/vendor/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  391. data/vendor/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +33 -0
  392. data/vendor/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  393. data/vendor/rspec/lib/spec/runner/heckle_runner.rb +72 -0
  394. data/vendor/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  395. data/vendor/rspec/lib/spec/runner/line_number_query.rb +78 -0
  396. data/vendor/rspec/lib/spec/runner/option_parser.rb +223 -0
  397. data/vendor/rspec/lib/spec/runner/options.rb +400 -0
  398. data/vendor/rspec/lib/spec/runner/reporter.rb +171 -0
  399. data/vendor/rspec/lib/spec/stubs/cucumber.rb +5 -0
  400. data/vendor/rspec/lib/spec/test/unit.rb +10 -0
  401. data/vendor/rspec/lib/spec/version.rb +14 -0
  402. data/vendor/rspec/resources/helpers/cmdline.rb +8 -0
  403. data/vendor/rspec/resources/rake/examples.rake +7 -0
  404. data/vendor/rspec/resources/rake/examples_with_rcov.rake +9 -0
  405. data/vendor/rspec/resources/rake/failing_examples_with_html.rake +9 -0
  406. data/vendor/rspec/resources/rake/verify_rcov.rake +7 -0
  407. data/vendor/rspec/spec/README.jruby +15 -0
  408. data/vendor/rspec/spec/autotest/autotest_helper.rb +8 -0
  409. data/vendor/rspec/spec/autotest/autotest_matchers.rb +38 -0
  410. data/vendor/rspec/spec/autotest/discover_spec.rb +8 -0
  411. data/vendor/rspec/spec/autotest/failed_results_re_spec.rb +31 -0
  412. data/vendor/rspec/spec/autotest/rspec_spec.rb +126 -0
  413. data/vendor/rspec/spec/ruby_forker.rb +13 -0
  414. data/vendor/rspec/spec/spec.opts +6 -0
  415. data/vendor/rspec/spec/spec/dsl/main_spec.rb +95 -0
  416. data/vendor/rspec/spec/spec/example/example_group_class_definition_spec.rb +51 -0
  417. data/vendor/rspec/spec/spec/example/example_group_factory_spec.rb +180 -0
  418. data/vendor/rspec/spec/spec/example/example_group_methods_spec.rb +759 -0
  419. data/vendor/rspec/spec/spec/example/example_group_proxy_spec.rb +107 -0
  420. data/vendor/rspec/spec/spec/example/example_group_spec.rb +643 -0
  421. data/vendor/rspec/spec/spec/example/example_matcher_spec.rb +86 -0
  422. data/vendor/rspec/spec/spec/example/example_methods_spec.rb +162 -0
  423. data/vendor/rspec/spec/spec/example/example_proxy_spec.rb +57 -0
  424. data/vendor/rspec/spec/spec/example/helper_method_spec.rb +24 -0
  425. data/vendor/rspec/spec/spec/example/nested_example_group_spec.rb +71 -0
  426. data/vendor/rspec/spec/spec/example/pending_module_spec.rb +58 -0
  427. data/vendor/rspec/spec/spec/example/predicate_matcher_spec.rb +41 -0
  428. data/vendor/rspec/spec/spec/example/shared_example_group_spec.rb +257 -0
  429. data/vendor/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  430. data/vendor/rspec/spec/spec/example/subject_spec.rb +103 -0
  431. data/vendor/rspec/spec/spec/expectations/differs/default_spec.rb +194 -0
  432. data/vendor/rspec/spec/spec/expectations/extensions/kernel_spec.rb +45 -0
  433. data/vendor/rspec/spec/spec/expectations/fail_with_spec.rb +96 -0
  434. data/vendor/rspec/spec/spec/expectations/handler_spec.rb +206 -0
  435. data/vendor/rspec/spec/spec/expectations/wrap_expectation_spec.rb +30 -0
  436. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  437. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  438. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  439. data/vendor/rspec/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +13 -0
  440. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  441. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  442. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  443. data/vendor/rspec/spec/spec/interop/test/unit/resources/test_case_with_various_names.rb +22 -0
  444. data/vendor/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  445. data/vendor/rspec/spec/spec/interop/test/unit/spec_spec.rb +48 -0
  446. data/vendor/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +18 -0
  447. data/vendor/rspec/spec/spec/interop/test/unit/testcase_spec.rb +50 -0
  448. data/vendor/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  449. data/vendor/rspec/spec/spec/matchers/be_close_spec.rb +50 -0
  450. data/vendor/rspec/spec/spec/matchers/be_instance_of_spec.rb +36 -0
  451. data/vendor/rspec/spec/spec/matchers/be_kind_of_spec.rb +33 -0
  452. data/vendor/rspec/spec/spec/matchers/be_spec.rb +419 -0
  453. data/vendor/rspec/spec/spec/matchers/change_spec.rb +349 -0
  454. data/vendor/rspec/spec/spec/matchers/compatibility_spec.rb +28 -0
  455. data/vendor/rspec/spec/spec/matchers/description_generation_spec.rb +160 -0
  456. data/vendor/rspec/spec/spec/matchers/dsl_spec.rb +34 -0
  457. data/vendor/rspec/spec/spec/matchers/eql_spec.rb +33 -0
  458. data/vendor/rspec/spec/spec/matchers/equal_spec.rb +57 -0
  459. data/vendor/rspec/spec/spec/matchers/exist_spec.rb +65 -0
  460. data/vendor/rspec/spec/spec/matchers/has_spec.rb +190 -0
  461. data/vendor/rspec/spec/spec/matchers/have_spec.rb +396 -0
  462. data/vendor/rspec/spec/spec/matchers/include_spec.rb +88 -0
  463. data/vendor/rspec/spec/spec/matchers/match_array_spec.rb +108 -0
  464. data/vendor/rspec/spec/spec/matchers/match_spec.rb +57 -0
  465. data/vendor/rspec/spec/spec/matchers/matcher_methods_spec.rb +63 -0
  466. data/vendor/rspec/spec/spec/matchers/matcher_spec.rb +273 -0
  467. data/vendor/rspec/spec/spec/matchers/matchers_spec.rb +2 -0
  468. data/vendor/rspec/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  469. data/vendor/rspec/spec/spec/matchers/raise_error_spec.rb +333 -0
  470. data/vendor/rspec/spec/spec/matchers/respond_to_spec.rb +116 -0
  471. data/vendor/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
  472. data/vendor/rspec/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  473. data/vendor/rspec/spec/spec/matchers/throw_symbol_spec.rb +96 -0
  474. data/vendor/rspec/spec/spec/mocks/and_yield_spec.rb +117 -0
  475. data/vendor/rspec/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  476. data/vendor/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  477. data/vendor/rspec/spec/spec/mocks/argument_matchers_spec.rb +19 -0
  478. data/vendor/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
  479. data/vendor/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
  480. data/vendor/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  481. data/vendor/rspec/spec/spec/mocks/bug_report_10263_spec.rb +27 -0
  482. data/vendor/rspec/spec/spec/mocks/bug_report_11545_spec.rb +32 -0
  483. data/vendor/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  484. data/vendor/rspec/spec/spec/mocks/bug_report_496_spec.rb +19 -0
  485. data/vendor/rspec/spec/spec/mocks/bug_report_600_spec.rb +22 -0
  486. data/vendor/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  487. data/vendor/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  488. data/vendor/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  489. data/vendor/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  490. data/vendor/rspec/spec/spec/mocks/bug_report_830_spec.rb +21 -0
  491. data/vendor/rspec/spec/spec/mocks/double_spec.rb +12 -0
  492. data/vendor/rspec/spec/spec/mocks/failing_argument_matchers_spec.rb +95 -0
  493. data/vendor/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +90 -0
  494. data/vendor/rspec/spec/spec/mocks/hash_not_including_matcher_spec.rb +67 -0
  495. data/vendor/rspec/spec/spec/mocks/mock_ordering_spec.rb +94 -0
  496. data/vendor/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
  497. data/vendor/rspec/spec/spec/mocks/mock_spec.rb +594 -0
  498. data/vendor/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  499. data/vendor/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +53 -0
  500. data/vendor/rspec/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  501. data/vendor/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
  502. data/vendor/rspec/spec/spec/mocks/options_hash_spec.rb +35 -0
  503. data/vendor/rspec/spec/spec/mocks/partial_mock_spec.rb +164 -0
  504. data/vendor/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  505. data/vendor/rspec/spec/spec/mocks/passing_argument_matchers_spec.rb +145 -0
  506. data/vendor/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
  507. data/vendor/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
  508. data/vendor/rspec/spec/spec/mocks/stub_chain_spec.rb +42 -0
  509. data/vendor/rspec/spec/spec/mocks/stub_implementation_spec.rb +31 -0
  510. data/vendor/rspec/spec/spec/mocks/stub_spec.rb +203 -0
  511. data/vendor/rspec/spec/spec/mocks/stubbed_message_expectations_spec.rb +26 -0
  512. data/vendor/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
  513. data/vendor/rspec/spec/spec/mocks/unstub_spec.rb +127 -0
  514. data/vendor/rspec/spec/spec/package/bin_spec_spec.rb +16 -0
  515. data/vendor/rspec/spec/spec/rake/spectask_spec.rb +150 -0
  516. data/vendor/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  517. data/vendor/rspec/spec/spec/runner/command_line_spec.rb +141 -0
  518. data/vendor/rspec/spec/spec/runner/configuration_spec.rb +320 -0
  519. data/vendor/rspec/spec/spec/runner/drb_command_line_spec.rb +107 -0
  520. data/vendor/rspec/spec/spec/runner/empty_file.txt +0 -0
  521. data/vendor/rspec/spec/spec/runner/example_group_runner_spec.rb +26 -0
  522. data/vendor/rspec/spec/spec/runner/examples.txt +2 -0
  523. data/vendor/rspec/spec/spec/runner/failed.txt +3 -0
  524. data/vendor/rspec/spec/spec/runner/formatter/base_formatter_spec.rb +30 -0
  525. data/vendor/rspec/spec/spec/runner/formatter/base_text_formatter_spec.rb +113 -0
  526. data/vendor/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  527. data/vendor/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  528. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +377 -0
  529. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +377 -0
  530. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.8.7.html +377 -0
  531. data/vendor/rspec/spec/spec/runner/formatter/html_formatted-1.9.1.html +377 -0
  532. data/vendor/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +118 -0
  533. data/vendor/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +305 -0
  534. data/vendor/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +70 -0
  535. data/vendor/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +149 -0
  536. data/vendor/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  537. data/vendor/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +159 -0
  538. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6-jruby.html +371 -0
  539. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +371 -0
  540. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.7.html +371 -0
  541. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatted-1.9.1.html +371 -0
  542. data/vendor/rspec/spec/spec/runner/formatter/text_mate_formatter_spec.rb +106 -0
  543. data/vendor/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
  544. data/vendor/rspec/spec/spec/runner/heckler_spec.rb +20 -0
  545. data/vendor/rspec/spec/spec/runner/line_number_query/line_number_query_fixture.rb +70 -0
  546. data/vendor/rspec/spec/spec/runner/line_number_query_spec.rb +129 -0
  547. data/vendor/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +51 -0
  548. data/vendor/rspec/spec/spec/runner/option_parser_spec.rb +545 -0
  549. data/vendor/rspec/spec/spec/runner/options_spec.rb +547 -0
  550. data/vendor/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
  551. data/vendor/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +7 -0
  552. data/vendor/rspec/spec/spec/runner/output_one_time_spec.rb +15 -0
  553. data/vendor/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +123 -0
  554. data/vendor/rspec/spec/spec/runner/reporter_spec.rb +244 -0
  555. data/vendor/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  556. data/vendor/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  557. data/vendor/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
  558. data/vendor/rspec/spec/spec/runner/resources/custom_example_group_runner.rb +14 -0
  559. data/vendor/rspec/spec/spec/runner/resources/utf8_encoded.rb +8 -0
  560. data/vendor/rspec/spec/spec/runner/spec.opts +2 -0
  561. data/vendor/rspec/spec/spec/runner/spec_drb.opts +2 -0
  562. data/vendor/rspec/spec/spec/runner/spec_spaced.opts +2 -0
  563. data/vendor/rspec/spec/spec/runner_spec.rb +13 -0
  564. data/vendor/rspec/spec/spec_helper.rb +112 -0
  565. data/vendor/rspec/spec/support/macros.rb +29 -0
  566. data/vendor/rspec/spec/support/spec_classes.rb +133 -0
  567. metadata +639 -0
@@ -0,0 +1,12 @@
1
+ window.addEvent("domready", function() {
2
+ // msg-error, msg-notice, msg-success
3
+ var flash = new Flash("msg");
4
+ // With title
5
+ // flash.error("Error", "Application failed");
6
+ // flash.notice("Notice", "Order was sent");
7
+ // success
8
+
9
+ // Without title
10
+ // flash.error("Application failed");
11
+ // flash.notice("Order was sent");
12
+ })
@@ -0,0 +1,5 @@
1
+ ---
2
+ :revision: bc43e37af109661e94aa7eeac846c8f6f36a4882
3
+ :repozitory: git://github.com/botanicus/pupu-flash.git
4
+ :dependencies: []
5
+
@@ -0,0 +1,21 @@
1
+ /* blueprint-based solution */
2
+ /*.success, .error, .notice { display: none; }*/
3
+
4
+ /* without blueprint */
5
+ #msg-notice {
6
+ background-color: yellow;
7
+ color: white;
8
+ display: none;
9
+ }
10
+
11
+ #msg-error {
12
+ background-color: red;
13
+ color: white;
14
+ display: none;
15
+ }
16
+
17
+ #msg-success {
18
+ background-color: darkgreen;
19
+ color: white;
20
+ display: none;
21
+ }
@@ -0,0 +1,2 @@
1
+ = Version 0.0.1
2
+ *
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Jakub Stastny
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,19 @@
1
+ h1. About lighter
2
+
3
+ # TODO: write what your pupu is all about
4
+
5
+ h1. About Pupu
6
+
7
+ Pupu is a plugin system for media stuff like JS & CSS frameworks, plugins for the JS & CSS frameworks, icon sets etc. It knows dependencies and it has CLI interface, so it's really easy to bundle such plugins into your app. Please see "Pupu homepage":http://github.com/botanicus/pupu for more informations.
8
+
9
+ h1. Installation
10
+
11
+ * Run @pupu install lighter@ inside of your application
12
+
13
+ h1. Usage
14
+
15
+ # TODO: write how to use your library
16
+
17
+ h1. Links
18
+
19
+ * "Source Code":http://github.com/botanicus/pupu-lighter
@@ -0,0 +1,4 @@
1
+ === Version 0.1 ===
2
+ - put the plugin files into correct directories
3
+ - write config.rb
4
+ - write README
@@ -0,0 +1,20 @@
1
+ # dependencies of the pupu
2
+ dependency :mootools
3
+
4
+ # load javascripts
5
+ javascript "Lighter"
6
+
7
+ # parameters of plugin
8
+ root = File.expand_path(File.join(File.dirname(__FILE__), "..")) # TODO: DSL should have API for similar things
9
+ themes = Dir["#{root}/stylesheets/Flame.*.css"].map { |theme| File.basename(theme).split(".")[1] }
10
+ syntaxes = Dir["#{root}/javascripts/Fuel.*.js"].map { |theme| File.basename(theme).split(".")[1] }
11
+
12
+ # pupu :lighter, theme: "mocha"
13
+ parameter :theme, :optional => themes do |theme|
14
+ stylesheet "Flame.#{theme}"
15
+ end
16
+
17
+ # pupu :lighter, syntax: "ruby"
18
+ parameter :syntax, :optional => syntaxes do |syntax|
19
+ javascript "Fuel.#{syntax}"
20
+ end
@@ -0,0 +1,11 @@
1
+ // See http://pradador.com/code/lighterjs
2
+ window.addEvent("domready", function() {
3
+ // Syntax highlight using Fuel.js.js and default theme
4
+ // <pre id="code" class="js">var myClass = new Class({})</pre>
5
+
6
+ // Syntax highlight using Fuel.ruby.js and theme from Flame.twilight.js
7
+ // <pre id="code" class="ruby:twilight">puts "hi"</pre>
8
+
9
+ // Highlight all "pre" elements with "code" class
10
+ $$('pre.code').light({ altLines: 'hover' });
11
+ })
@@ -0,0 +1 @@
1
+ Fuel.css=new Class({Extends:Fuel,language:"css",initialize:function(b,a){this.keywords=new Hash({css1:{csv:"background-attachment, background-color, background-image, background-position, background-repeat, background, border-bottom, border-bottom-width, border-color, border-left, border-left-width, border-right, border-right-width, border-style, border-top, border-top-width, border-width, border, clear, color, display, float, font-family, font-size, font-style, font-variant, font-weight, font, height, letter-spacing, line-height, list-style-image, list-style-position, list-style-type, list-style, margin-bottom, margin-left, margin-right, margin-top, margin, padding-bottom, padding-left, padding-right, padding-top, padding, text-align, text-decoration, text-indent, text-transform, vertical-align, white-space, width, word-spacing",alias:"kw1"},css2:{csv:"azimuth, border-bottom-color, border-bottom-style, border-collapse, border-left-color, border-left-style, border-right-color, border-right-style, border-spacing, border-top-color, border-top-style, bottom, caption-side, clip, content, counter-increment, counter-reset, cue, cue-after, cue-before, cursor, direction, elevation, empty-cells, left, max-height, max-width, min-height, min-width, orphans, outline, outline-color, outline-style, outline-width, overflow, page-break-after, page-break-before, page-break-inside, pause, pause-after, pause-before, pitch, pitch-range, play-during, position, quotes, richness, right, speak, speak-header, speak-numeral, speak-punctuation, speech-rate, stress, table-layout, top, unicode-bidi, visibility, voice-family, volume, widows, z-index",alias:"kw1"},css3:{csv:"alignment-adjust, alignment-baseline, appearance, background-break, background-clip, background-origin, background-size, baseline-shift, binding, bookmark-label, bookmark-level, bookmark-target, border-bottom-left-radius, border-bottom-right-radius, border-break, border-image, border-length, border-radius, border-top-left-radius, border-top-right-radius, box-align, box-direction, box-flex, box-flex-group, box-lines, box-orient, box-pack, box-shadow, box-sizing, color-profile, column-break-after, column-break-before, column-count, column-fill, column-gap, column-rule, column-rule-color, column-rule-style, column-rule-width, column-span, column-width, columns, crop, display-model, display-role, dominant-baseline, drop-initial-after-adjust, drop-initial-after-align, drop-initial-before-adjust, drop-initial-before-align, drop-initial-size, drop-initial-value, fit, fit-position, float-offset, font-effect, font-emphasize, font-emphasize-position, font-emphasize-style, font-size-adjust, font-smooth, font-stretch, grid-columns, grid-rows, hanging-punctuation, hyphenate-after, hyphenate-before, hyphenate-character, hyphenate-lines, hyphenate-resource, hyphens, icon, image-orientation, image-resolution, inline-box-align, line-stacking, line-stacking-ruby, line-stacking-shift, line-stacking-strategy, mark, mark-after, mark-before, marker-offset, marks, marquee-direction, marquee-play-count, marquee-speed, marquee-style, move-to, nav-down, nav-index, nav-left, nav-right, nav-up, opacity, outline-offset, overflow-style, overflow-x, overflow-y, page, page-policy, phonemes, presentation-level, punctuation-trim, rendering-intent, resize, rest, rest-after, rest-before, rotation, rotation-point, ruby-align, ruby-overhang, ruby-position, ruby-span, size, string-set, tab-side, target, target-name, target-new, target-position, text-align-last, text-emphasis, text-height, text-justify, text-outline, text-replace, text-shadow, text-wrap, voice-balance, voice-duration, voice-pitch, voice-pitch-range, voice-rate, voice-stress, voice-volume, white-space-collapse, word-break, word-wrap",alias:"kw2"},values:{csv:"100, 200, 300, 400, 500, 600, 700, 800, 900, above, absolute, always, aqua, armenian, auto, avoid, baseline, below, bidi-override, black, blink, block, blue, bold, bolder, both, bottom, break-all, break-strict, break-word, break, capitalize, caption, center, circle, cjk-ideographic, close-quote, collapse, compact, condensed, crop, cross, crosshair, dashed, decimal-leading-zero, decimal, default, disc, dotted, double, e-resize, embed, expanded, extra-condensed, extra-expanded, fixed, fuchsia, georgian, gray, green, groove, hand, hebrew, help, hidden, hide, higher, hiragana-iroha, hiragana, icon, inherit, inline-table, inline, inset, inside, invert, italic, justify, katakana-iroha, katakana, keep-all, konq-center, landscape, large, larger, left, level, light, lighter, lime, line-through, list-item, loose, loud, lower-alpha, lower-greek, lower-latin, lower-roman, lowercase, lower, ltr, marker, maroon, medium, menu, message-box, middle, mix, move, n-resize, narrower, navy, ne-resize, never, no-close-quote, no-open-quote, no-repeat, none, normal, nowrap, nw-resize, oblique, olive, open-quote, outset, outside, overline, pointer, portrait, pre-wrap, pre, purple, red, relative, repeat, repeat-x, repeat-y, ridge, right, rtl, run-in, s-resize, scroll, se-resize, semi-condensed, semi-expanded, separate, show, silver, small-caps, small-caption, smaller, small, solid, square, static-position, static, status-bar, sub, super, sw-resize, table-caption, table-cell, table-column-group, table-column, table-footer-group, table-header-group, table-row, table-row-group, table, teal, text-bottom, text-top, text, thick, thin, top, transparent, ultra-condensed, ultra-expanded, underline, upper-alpha, upper-latin, upper-roman, uppercase, visible, w-resize, wait, white, wider, x-large, x-small, xx-large, xx-small, yellow",alias:"kw3"}});this.patterns=new Hash({multiComments:{pattern:this.common.multiComments,alias:"co1"},strings:{pattern:this.common.strings,alias:"st0"},selectors:{pattern:/([^\}\n]+)\{/gi,alias:"se0"},uri:{pattern:/url\s*\([^\)]*\)/gi,alias:"kw4"},units:{pattern:/\b(\d+[\.\d+]?\s*(px|pt|em|ex|cm|in|mm|pc|%)?)/gi,alias:"nu0"},hexColors:{pattern:/(#[A-F0-9]{3}([A-F0-9]{3})?)\b/gi,alias:"kw3"},rgbColors:{pattern:/(rgb\s*\(([1-2]?[0-9]{2}(\,\s*)?){3}\))/g,alias:"kw3"}});this.delimiters=new Hash({start:this.strictRegExp('<style type="text/css">'),end:this.strictRegExp("</style>")});this.parent(b,a)}});
@@ -0,0 +1 @@
1
+ Fuel.html=new Class({Extends:Fuel,language:"html",initialize:function(g,d){d.matchType="lazy";this.patterns=new Hash({comments:{pattern:/(?:\&lt;|<)!--[\s\S]*?--(?:\&gt;|>)/gim,alias:"co1"},cdata:{pattern:/(?:\&lt;|<)!\[CDATA\[[\s\S]*?\]\](?:\&gt;|>)/gim,alias:"st1"},closingTags:{pattern:/(?:\&lt;|<)\/[A-Z][A-Z0-9]*?(?:\&gt;|>)/gi,alias:"kw1"},doctype:{pattern:/(?:\&lt;|<)!DOCTYPE[\s\S]+?(?:\&gt;|>)/gim,alias:"st2"}});var e=/((?:\&lt;|<)[A-Z][A-Z0-9]*)(.*?)(\/?(?:\&gt;|>))/gi,f=/\b([\w-]+)([ \t]*)(=)([ \t]*)(['"][^'"]+['"]|[^'" \t]+)/gi,h=[],c=null,a=null,b=0;while((c=e.exec(g))!=null){h.push(new Wick(c[1],"kw1",c.index));while((a=f.exec(c[2]))!=null){b=c.index+c[1].length+a.index;h.push(new Wick(a[1],"kw2",b));b+=a[1].length+a[2].length;h.push(new Wick(a[3],"kw1",b));b+=a[3].length+a[4].length;h.push(new Wick(a[5],"kw3",b))}h.push(new Wick(c[3],"kw1",c.index+c[1].length+c[2].length))}this.parent(g,d,h)}});
@@ -0,0 +1 @@
1
+ Fuel.js=new Class({Extends:Fuel,language:"js",initialize:function(b,a){this.keywords=new Hash({commonKeywords:{csv:"as, break, case, catch, continue, delete, do, else, eval, finally, for, if, in, is, item, instanceof, return, switch, this, throw, try, typeof, void, while, write, with",alias:"kw1"},langKeywords:{csv:"class, const, default, debugger, export, extends, false, function, import, namespace, new, null, package, private, protected, public, super, true, use, var",alias:"kw2"},windowKeywords:{csv:"alert, back, blur, close, confirm, focus, forward, home, navigate, onblur, onerror, onfocus, onload, onmove, onresize, onunload, open, print, prompt, scroll, status, stop",alias:"kw3"}});this.patterns=new Hash({slashComments:{pattern:this.common.slashComments,alias:"co1"},multiComments:{pattern:this.common.multiComments,alias:"co2"},strings:{pattern:this.common.strings,alias:"st0"},methodCalls:{pattern:this.common.properties,alias:"me0"},brackets:{pattern:this.common.brackets,alias:"br0"},numbers:{pattern:/\b((([0-9]+)?\.)?[0-9_]+([e][-+]?[0-9]+)?|0x[A-F0-9]+)\b/gi,alias:"nu0"},regex:{pattern:this.delimToRegExp("/","\\","/","g","[gimy]*"),alias:"re0"},symbols:{pattern:/\+|-|\*|\/|%|!|@|&|\||\^|\<|\>|=|,|\.|;|\?|:/g,alias:"sy0"}});this.delimiters=new Hash({start:this.strictRegExp('<script type="text/javascript">','<script language="javascript">'),end:this.strictRegExp("<\/script>")});this.parent(b,a)}});
@@ -0,0 +1 @@
1
+ Fuel.md=new Class({Extends:Fuel,language:"md",initialize:function(b,a){this.patterns=new Hash({header1:{pattern:/^(.+)\n=+\n/gim,alias:"st1"},header2:{pattern:/^(.+)\n-+\n/gim,alias:"st2"},header3:{pattern:/[#]{1,6}.*/gim,alias:"st0"},ul:{pattern:/^\*\s*.*/gim,alias:"kw1"},ol:{pattern:/^\d+\..*/gim,alias:"kw1"},italics:{pattern:/\*.*?\*/g,alias:"kw3"},bold:{pattern:/\*\*.*?\*\*/g,alias:"kw3"},url:{pattern:/\[[^\]]*\]\([^\)]*\)/g,alias:"kw4"}});this.parent(b,a)}});
@@ -0,0 +1 @@
1
+ Fuel.php=new Class({Extends:Fuel,language:"php",initialize:function(c,b,a){this.keywords=new Hash({keywords:{csv:"abstract, and, as, break, case, catch, cfunction, class, clone, const, continue, declare, default, do, else, elseif, enddeclare, endfor, endforeach, endif, endswitch, endwhile, extends, final, for, foreach, function, global, goto, if, implements, interface, instanceof, namespace, new, old_function, or, private, protected, public, static, switch, throw, try, use, var, while, xor",alias:"kw1"},langConstants:{csv:"__CLASS__, __DIR__, __FILE__, __FUNCTION__, __METHOD__, __NAMESPACE__, DEFAULT_INCLUDE_PATH, E_ALL, E_COMPILE_ERROR, E_COMPILE_WARNING, E_CORE_ERROR, E_CORE_WARNING, E_ERROR, E_NOTICE, E_PARSE, E_STRICT, E_USER_ERROR, E_USER_NOTICE, E_USER_WARNING, E_WARNING, PEAR_EXTENSION_DIR, PEAR_INSTALL_DIR, PHP_BINDIR, PHP_CONFIG_FILE_PATH, PHP_DATADIR, PHP_EXTENSION_DIR, PHP_LIBDIR, PHP_LOCALSTATEDIR, PHP_OS, PHP_OUTPUT_HANDLER_CONT, PHP_OUTPUT_HANDLER_END, PHP_OUTPUT_HANDLER_START, PHP_SYSCONFDIR, PHP_VERSION",alias:"kw1"},constructs:{csv:"array, die, echo, empty, exit, eval, include, include_once, isset, list, require, require_once, return, print, unset",alias:"kw1"},commonFuncs:{csv:"abs, addcslashes, addslashes, aggregate, apache_child_terminate, apache_get_version, apache_lookup_uri, apache_note, apache_request_headers, apache_response_headers, apache_setenv, array_change_key_case, array_chunk, array_count_values, array_diff, array_diff_assoc, array_fill, array_filter, array_flip, array_intersect, array_intersect_assoc, array_key_exists, array_keys, array_map, array_merge, array_merge_recursive, array_multisort, array_pad, array_pop, array_push, array_rand, array_reduce, array_reverse, array_search, array_shift, array_slice, array_splice, array_sum, array_unique, array_unshift, array_values, array_walk, arsort, asort, assert, assert_options, base64_decode, base64_encode, base_convert, basename, bin2hex, bindec, ceil, chdir, checkdate, chop, chown, chunk_split, clearstatcache, closedir, compact, connection_aborted, connection_status, constant, copy, count, count_chars, crc32, crypt, ctype_alnum, ctype_alpha, ctype_cntrl, ctype_digit, ctype_graph, ctype_lower, ctype_print, ctype_punct, ctype_space, ctype_upper, ctype_xdigit, current, date, debug_backtrace, debug_zval_dump, decbin, dechex, decoct, define, defined, dir, dirname, dl, doubleval, each, end, ereg, ereg_replace, eregi, eregi_replace, error_log, error_reporting, escapeshellarg, escapeshellcmd, exec, explode, extension_loaded, extract, fclose, feof, fflush, fgetc, fgetcsv, fgets, fgetss, file, file_exists, file_get_contents, fileatime, filectime, filegroup, fileinode, filemtime, fileowner, fileperms, filesize, filetype, floatval, flock, floor, flush, fmod, fnmatch, fopen, fpassthru, fputs, fread, fscanf, fseek, fsockopen, fstat, ftell, ftok, ftruncate, func_get_arg, func_get_args, func_num_args, fwrite, get_browser, get_cfg_var, get_declared_classes, get_extension_funcs, get_include_path, get_loaded_extensions, get_magic_quotes_gpc, get_magic_quotes_runtime, get_meta_tags, getallheaders, getcwd, getdate, getenv, getimagesize, getopt, getrandmax, getrusage, gettimeofday, gettype, glob, global, gmdate, gmmktime, gmstrftime, header, headers_sent, hebrev, hebrevc, hexdec, highlight_file, highlight_string, html_entity_decode, htmlentities, htmlspecialchars, ignore_user_abort, image_type_to_mime_type, implode, import_request_variables, in_array, ini_alter, ini_get, ini_get_all, ini_restore, ini_set, intval, ip2long, is_array, is_bool, is_dir, is_double, is_executable, is_file, is_finite, is_float, is_infinite, is_int, is_integer, is_link, is_long, is_nan, is_null, is_numeric, is_object, is_readable, is_real, is_resource, is_scalar, is_string, is_uploaded_file, is_writable, is_writeable, join, key, key_exists, krsort, ksort, link, linkinfo, localeconv, localtime, long2ip, lstat, ltrim, magic_quotes_runtime, mail, max, md5, md5_file, memory_get_usage, microtime, min, mkdir, mktime, move_uploaded_file, mt_getrandmax, mt_rand, mt_srand, natcasesort, natsort, next, nl2br, number_format, ob_clean, ob_end_clean, ob_end_flush, ob_flush, ob_get_clean, ob_get_contents, ob_get_flush, ob_get_length, ob_get_level, ob_get_status, ob_implicit_flush, ob_list_handlers, ob_start, octdec, opendir, overload, pack, parse_ini_file, parse_str, parse_url, passthru, pathinfo, pclose, pfsockopen, pg_affected_rows, pg_cancel_query, pg_client_encoding, pg_close, pg_cmdtuples, pg_connect, pg_connection_busy, pg_connection_reset, pg_connection_status, pg_convert, pg_copy_from, pg_copy_to, pg_dbname, pg_delete, pg_end_copy, pg_errormessage, pg_escape_bytea, pg_escape_string, pg_exec, pg_fetch_all, pg_fetch_array, pg_fetch_assoc, pg_fetch_object, pg_fetch_result, pg_fetch_row, pg_field_is_null, pg_field_name, pg_field_num, pg_field_prtlen, pg_field_size, pg_field_type, pg_fieldisnull, pg_fieldname, pg_fieldnum, pg_fieldprtlen, pg_fieldsize, pg_fieldtype, pg_free_result, pg_freeresult, pg_get_notify, pg_get_pid, pg_get_result, pg_getlastoid, pg_host, pg_insert, pg_last_error, pg_last_notice, pg_last_oid, pg_lo_close, pg_lo_create, pg_lo_export, pg_lo_import, pg_lo_open, pg_lo_read, pg_lo_read_all, pg_lo_seek, pg_lo_tell, pg_lo_unlink, pg_lo_write, pg_loclose, pg_locreate, pg_loexport, pg_loimport, pg_loopen, pg_loread, pg_loreadall, pg_lounlink, pg_lowrite, pg_meta_data, pg_num_fields, pg_num_rows, pg_numfields, pg_numrows, pg_options, pg_pconnect, pg_ping, pg_port, pg_put_line, pg_query, pg_result, pg_result_error, pg_result_seek, pg_result_status, pg_select, pg_send_query, pg_set_client_encoding, pg_trace, pg_tty, pg_unescape_bytea, pg_untrace, pg_update, phpcredits, phpinfo, phpversion, popen, pos, preg_grep, preg_match, preg_match_all, preg_quote, preg_replace, preg_replace_callback, preg_split, prev, print_r, printf, proc_close, proc_open, putenv, quoted_printable_decode, quotemeta, rand, range, rawurldecode, rawurlencode, readdir, readfile, readlink, realpath, rename, reset, restore_error_handler, restore_include_path, rewind, rewinddir, rmdir, round, rsort, rtrim, serialize, session_cache_expire, session_cache_limiter, session_decode, session_destroy, session_encode, session_get_cookie_params, session_id, session_is_registered, session_module_name, session_name, session_regenerate_id, session_register, session_save_path, session_set_cookie_params, session_set_save_handler, session_start, session_unregister, session_unset, session_write_close, set_error_handler, set_file_buffer, set_include_path, set_magic_quotes_runtime, set_socket_blocking, set_time_limit, setcookie, setlocale, settype, shell_exec, show_source, shuffle, similar_text, sizeof, sleep, socket_get_status, socket_set_blocking, socket_set_timeout, sort, split, spliti, sprintf, sql_regcase, srand, sscanf, stat, static, str_pad, str_repeat, str_replace, str_rot13, str_shuffle, str_word_count, strcasecmp, strchr, strcmp, strcoll, strcspn, stream_context_create, stream_context_get_options, stream_context_set_option, stream_context_set_params, stream_filter_append, stream_filter_prepend, stream_get_meta_data, stream_register_wrapper, stream_select, stream_set_blocking, stream_set_timeout, stream_set_write_buffer, stream_wrapper_register, strftime, strip_tags, stripcslashes, stripslashes, stristr, strlen, strnatcasecmp, strnatcmp, strncasecmp, strncmp, strpos, strrchr, strrev, strrpos, strspn, strstr, strtok, strtolower, strtotime, strtoupper, strtr, strval, substr, substr_count, substr_replace, system, tempnam, time, tmpfile, touch, trigger_error, trim, uasort, ucfirst, ucwords, uksort, umask, uniqid, unlink, unpack, unserialize, urldecode, urlencode, user_error, usleep, usort, var_dump, var_export, version_compare, virtual, vprintf, vsprintf, wordwrap",alias:"kw2"},database:{csv:"mysql, mysql_affected_rows, mysql_client_encoding, mysql_close, mysql_connect, mysql_create_db, mysql_createdb, mysql_data_seek, mysql_db_name, mysql_db_query, mysql_dbname, mysql_drop_db, mysql_dropdb, mysql_errno, mysql_error, mysql_escape_string, mysql_fetch_array, mysql_fetch_assoc, mysql_fetch_field, mysql_fetch_lengths, mysql_fetch_object, mysql_fetch_row, mysql_field_flags, mysql_field_len, mysql_field_name, mysql_field_seek, mysql_field_table, mysql_field_type, mysql_fieldflags, mysql_fieldlen, mysql_fieldname, mysql_fieldtable, mysql_fieldtype, mysql_free_result, mysql_freeresult, mysql_get_client_info, mysql_get_host_info, mysql_get_proto_info, mysql_get_server_info, mysql_info, mysql_insert_id, mysql_list_dbs, mysql_list_fields, mysql_list_processes, mysql_list_tables, mysql_listdbs, mysql_listfields, mysql_listtables, mysql_num_fields, mysql_num_rows, mysql_numfields, mysql_numrows, mysql_pconnect, mysql_query, mysql_real_escape_string, mysql_result, mysql_select_db, mysql_selectdb, mysql_stat, mysql_table_name, mysql_tablename, mysql_thread_id, mysql_unbuffered_query, mysqli, mysqli_affected_rows, mysqli_autocommit, mysqli_bind_param, mysqli_bind_result, mysqli_change_user, mysqli_character_set_name, mysqli_client_encoding, mysqli_close, mysqli_commit, mysqli_connect, mysqli_data_seek, mysqli_debug, mysqli_disable_reads_from_master, mysqli_disable_rpl_parse, mysqli_dump_debug_info, mysqli_enable_reads_from_master, mysqli_enable_rpl_parse, mysqli_errno, mysqli_error, mysqli_escape_string, mysqli_execute, mysqli_fetch, mysqli_fetch_array, mysqli_fetch_assoc, mysqli_fetch_field, mysqli_fetch_field_direct, mysqli_fetch_fields, mysqli_fetch_lengths, mysqli_fetch_object, mysqli_fetch_row, mysqli_field_count, mysqli_field_seek, mysqli_field_tell, mysqli_free_result, mysqli_get_client_info, mysqli_get_host_info, mysqli_get_proto_info, mysqli_get_server_info, mysqli_get_server_version, mysqli_info, mysqli_init, mysqli_insert_id, mysqli_kill, mysqli_master_query, mysqli_num_fields, mysqli_num_rows, mysqli_options, mysqli_param_count, mysqli_ping, mysqli_prepare, mysqli_prepare_result, mysqli_profiler, mysqli_query, mysqli_read_query_result, mysqli_real_connect, mysqli_real_escape_string, mysqli_real_query, mysqli_reload, mysqli_rollback, mysqli_rpl_parse_enabled, mysqli_rpl_probe, mysqli_rpl_query_type, mysqli_select_db, mysqli_send_long_data, mysqli_send_query, mysqli_set_opt, mysqli_slave_query, mysqli_ssl_set, mysqli_stat, mysqli_stmt_affected_rows, mysqli_stmt_close, mysqli_stmt_errno, mysqli_stmt_error, mysqli_stmt_store_result, mysqli_store_result, mysqli_thread_id, mysqli_thread_safe, mysqli_use_result, mysqli_warning_count",alias:"kw2"}});this.patterns=new Hash({slashComments:{pattern:this.common.slashComments,alias:"co1"},multiComments:{pattern:this.common.multiComments,alias:"co2"},strings:{pattern:this.common.strings,alias:"st0"},heredocs:{pattern:/(<<<\s*?(\'?)([A-Z0-9]+)\2[^\n]*?\n[\s\S]*?\n\3(?![A-Z0-9\s]))/gim,alias:"st1"},numbers:{pattern:/\b((([0-9]+)?\.)?[0-9_]+([e][\-+]?[0-9]+)?|0x[A-F0-9]+)\b/gi,alias:"nu0"},variables:{pattern:/[\$]{1,2}[A-Z_][\w]*/gim,alias:"kw3"},functions:{pattern:this.common.functionCalls,alias:"me1"},constants:{pattern:/\b[A-Za-z_][\w]*\b/g,alias:"kw4"},methods:{pattern:/->([\w]+)/gim,alias:"kw3"},brackets:{pattern:this.common.brackets,alias:"br0"}});this.delimiters=new Hash({start:this.strictRegExp("<?php","<?=","<%",'<script language="php">'),end:this.strictRegExp("?>","%>","<\/script>")});this.parent(c,b,a)}});
@@ -0,0 +1 @@
1
+ Fuel.ruby=new Class({Extends:Fuel,language:"ruby",initialize:function(b,a){this.keywords=new Hash({reserved:{csv:"__FILE__, __LINE__, alias, and, BEGIN, begin, break, case, class, def, defined, do, else, elsif, END, end, ensure, false, for, if, in, module, next, nil, not, or, redo, rescue, retry, return, self, super, then, true, undef, unless, until, when, while, yield",alias:"kw1"},functions:{csv:"abort, at_exit, autoload, binding, block_given, callcc, caller, catch, chomp, chop, eval, exec, exit, exit!, fail, fork, format, gets, global_variables, gsub, lambda, proc, load, local_variables, loop, open, p, print, proc, putc, puts, raise, fail, rand, readline, readlines, require, scan, select, set_trace_func, sleep, split, sprintf, format, srand, syscall, system, sub, test, throw, trace_var, trap, untrace_var",alias:"kw2"},classes:{csv:"Abbrev, ArgumentError, Array, Base64, Benchmark, Benchmark::Tms, Bignum, Binding, CGI, Cookie, HtmlExtension, QueryExtension, Session, FileStore, MemoryStore, Class, Comparable, Complex, ConditionVariable, Continuation, Data, Date, DateTime, Dir, EOFError, Enumerable, Errno, Exception, FalseClass, File, Constants, Stat, FileTest, FileUtils, CopyContext_, DryRun, NoWrite, Verbose, Find, Fixnum, Float, FloatDomainError, GC, Generator, Hash, IO, IOError, Iconv, Failure, IllegalSequence, InvalidCharacter, OutOfRange, IndexError, Integer, Interrupt, Kernel, LoadError, LocalJumpError, Logger, Application, LogDevice, Severity, ShiftingError, Marshal, MatchData, Math, Matrix, Method, Module, Mutex, NameError, NilClass, NoMemoryError, NoMethodError, NotImplementedError, Numeric, Object, ObjectSpace, Observable, Pathname, Precision, Proc, Process, GID, Status, Sys, UID, Queue, Range, RangeError, Regexp, RegexpError, RuntimeError, ScriptError, SecurityError, Set, Shellwords, Signal, SignalException, Singleton, SingletonClassMethods, SizedQueue, SortedSet, StandardError, String, StringScanner, StringScanner::Error, Struct, Symbol, SyncEnumerator, SyntaxError, SystemCallError, SystemExit, SystemStackError, Tempfile, Test, Unit, Thread, ThreadError, ThreadGroup, ThreadsWait, Time, TrueClass, TypeError, UnboundMethod, Vector, YAML, ZeroDivisionError, Zlib, BufError, DataError, Deflate, Error, GzipFile, CRCError, Error, LengthError, NoFooter, GzipReader, GzipWriter, Inflate, MemError, NeedDict, StreamEnd, StreamError, VersionError, ZStream, fatal",alias:"kw2"}}),this.patterns=new Hash({poundComments:{pattern:this.common.poundComments,alias:"co1"},multiComments:{pattern:/^=begin[\s\S]*?^=end/gm,alias:"co2"},strings:{pattern:this.common.strings,alias:"st0"},tickStrings:{pattern:this.delimToRegExp("`","\\","`","gm"),alias:"st0"},delimString:{pattern:/(%[q|Q|x]?(\W)[^\2\\\n]*(?:\\.[^\2\\]*)*(\2|\)|\]|\}))/gm,alias:"st1"},heredoc:{pattern:/(<<(\'?)([A-Z0-9]+)\2[^\n]*?\n[\s\S]*\n\3(?![\w]))/gim,alias:"st2"},variables:{pattern:/(@[A-Za-z_][\w]*|@@[A-Za-z_][\w]*|\$(?:\-[\S]|[\w]+)|\b[A-Z][\w]*)/g,alias:"kw3"},rubySymbols:{pattern:/[^:](:[\w]+)/g,alias:"kw4"},constants:{pattern:/\b[A-Z][\w]*/g,alias:"kw3"},numbers:{pattern:/\b((([0-9]+)?\.)?[0-9_]+([e][-+]?[0-9]+)?|0x[A-F0-9]+|0b[0-1_]+)\b/gim,alias:"nu0"},properties:{pattern:this.common.properties,alias:"me0"},brackets:{pattern:this.common.brackets,alias:"br0"},delimRegex:{pattern:/(%r(\W)[^\2\\\n]*(?:\\.[^\2\\\n]*?)*(\2|\)|\]|\})[iomx]*)/gm,alias:"re0"},literalRegex:{pattern:this.delimToRegExp("/","\\","/","g","[iomx]*"),alias:"re0"}});this.parent(b,a)}});
@@ -0,0 +1 @@
1
+ Fuel.shell=new Class({Extends:Fuel,language:"shell",initialize:function(a,b){this.keywords=new Hash({keywords:{csv:"if, fi, then, elif, else, for, do, done, until, while, break, continue, case, function, return, in, eq, ne, gt, lt, ge, le",alias:"kw0"},commands:{csv:"alias, apropos, awk, bash, bc, bg, builtin, bzip2, cal, cat, cd, cfdisk, chgrp, chmod, chown, chrootcksum, clear, cmp, comm, command, cp, cron, crontab, csplit, cut, date, dc, dd, ddrescue, declare, df, diff, diff3, dig, dir, dircolors, dirname, dirs, du, echo, egrep, eject, enable, env, ethtool, eval, exec, exit, expand, export, expr, false, fdformat, fdisk, fg, fgrep, file, find, fmt, fold, format, free, fsck, ftp, gawk, getopts, grep, groups, gzip, hash, head, history, hostname, id, ifconfig, import, install, join, kill, less, let, ln, local, locate, logname, logout, look, lpc, lpr, lprint, lprintd, lprintq, lprm, ls, lsof, make, man, mkdir, mkfifo, mkisofs, mknod, more, mount, mtools, mv, netstat, nice, nl, nohup, nslookup, open, op, passwd, paste, pathchk, ping, popd, pr, printcap, printenv, printf, ps, pushd, pwd, quota, quotacheck, quotactl, ram, rcp, read, readonly, renice, remsync, rm, rmdir, rsync, screen, scp, sdiff, sed, select, seq, set, sftp, shift, shopt, shutdown, sleep, sort, source, split, ssh, strace, su, sudo, sum, symlink, sync, tail, tar, tee, test, time, times, touch, top, traceroute, trap, tr, true, tsort, tty, type, ulimit, umask, umount, unalias, uname, unexpand, uniq, units, unset, unshar, useradd, usermod, users, uuencode, uudecode, v, vdir, vi, watch, wc, whereis, which, who, whoami, wget, xargs, yes",alias:"kw1"}}),this.patterns=new Hash({poundComments:{pattern:this.common.poundComments,alias:"co0"},strings:{pattern:this.common.strings,alias:"st0"}});this.parent(a,b)}});
@@ -0,0 +1 @@
1
+ Fuel.sql=new Class({Extends:Fuel,language:"sql",initialize:function(a,b){this.keywords=new Hash({keywords:{csv:"absolute, action, add, after, alter, as, asc, at, authorization, begin, bigint, binary, bit, by, cascade, char, character, check, checkpoint, close, collate, column, commit, committed, connect, connection, constraint, contains, continue, create, cube, current, current_date, current_time, cursor, database, date, deallocate, dec, decimal, declare, default, delete, desc, distinct, double, drop, dynamic, else, end, end-exec, escape, except, exec, execute, false, fetch, first, float, for, force, foreign, forward, free, from, full, function, global, goto, grant, group, grouping, having, hour, ignore, index, inner, insensitive, insert, instead, int, integer, intersect, into, is, isolation, key, last, level, load, local, max, min, minute, modify, move, name, national, nchar, next, no, numeric, of, off, on, only, open, option, order, out, output, partial, password, precision, prepare, primary, prior, privileges, procedure, public, read, real, references, relative, repeatable, restrict, return, returns, revoke, rollback, rollup, rows, rule, schema, scroll, second, section, select, sequence, serializable, set, size, smallint, static, statistics, table, temp, temporary, then, time, timestamp, to, top, transaction, translation, trigger, true, truncate, uncommitted, union, unique, update, values, varchar, varying, view, when, where, with, work",alias:"kw1",mod:"gi"},functions:{csv:"abs, avg, case, cast, coalesce, convert, count, current_timestamp, current_user, day, isnull, left, lower, month, nullif, replace, right, session_user, space, substring, sum, system_user, upper, user, year",alias:"kw2",mod:"gi"},operators:{csv:"all, and, any, between, cross, in, join, like, not, null, or, outer, some",alias:"kw3",mod:"gi"}}),this.patterns=new Hash({singleLineComments:{pattern:/--(.*)$/gm,alias:"co0"},multiLineComments:{pattern:this.common.multiComments,alias:"co1"},multiLineStrings:{pattern:this.common.multiLineStrings,alias:"st0"}});this.parent(a,b)}});
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Script:
3
+ * Fuel.template.js - Template to build custom Fuel for Lighter.js.
4
+ *
5
+ * License:
6
+ * MIT-style license.
7
+ *
8
+ * Author:
9
+ * Jose Prado
10
+ *
11
+ * Copyright:
12
+ * Copyright (©) 2009 [Jose Prado](http://pradador.com/).
13
+ *
14
+ */
15
+ Fuel.myFuel = new Class ({
16
+
17
+ Extends: Fuel,
18
+ language: '',
19
+
20
+ initialize: function(lighter, options) {
21
+
22
+ /** Set of keywords in CSV form. Add multiple keyword hashes for differentiate keyword sets. */
23
+ this.keywords = new Hash({
24
+ /*keywords: {
25
+ csv: "keyword1, keyword2, keyword3",
26
+ alias: 'keywords'
27
+ },*/
28
+ }),
29
+
30
+ /** Set of RegEx patterns to match */
31
+ this.patterns = new Hash({
32
+ //'slashComments': {pattern: this.common.slashComments, alias: 'comments'},
33
+ });
34
+
35
+ /** Script Delimiters. Remove or set to null if not applicable. */
36
+ this.delimiters = new Hash({
37
+ start: this.strictRegExp('startTag1', 'startTag2'),
38
+ end: this.strictRegExp('endTag1')
39
+ });
40
+
41
+ // Call parent constructor AFTER instance variables are set.
42
+ this.parent(lighter, options);
43
+ }
44
+
45
+ });
@@ -0,0 +1 @@
1
+ var ZeroClipboard={Implements:[Options,Events],options:{version:"1.0.4",clients:{},moviePath:"ZeroClipboard.swf",nextId:1},initialize:function(b,a){this.setOptions(a);this.handlers={};this.id=this.options.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;this.register(this.id,this);if(b){this.glue(b)}},dispatch:function(d,b,c){var a=this.options.clients[d];if(a){a.receiveEvent(b,c)}},register:function(b,a){this.options.clients[b]=a}};ZeroClipboard.Client=new Class({id:0,ready:false,movie:null,clipText:"",handCursorEnabled:true,cssEffects:true,handlers:null,path:"./",initialize:function(a){this.handlers={};this.id=ZeroClipboard.options.nextId++;this.movieId="ZeroClipboardMovie_"+this.id;ZeroClipboard.register(this.id,this);if(a){this.glue(a)}},setPath:function(a){this.path=a},glue:function(d){this.domElement=d;var f=99;if(this.domElement.style.zIndex){f=parseInt(this.domElement.style.zIndex)+1}var c=this.domElement.getSize();var e=this.domElement.getPosition();this.div=new Element("div",{title:"Click to copy to clipboard"});var b=this.div.style;b.position="absolute";b.left=""+e.x+"px";b.top=""+e.y+"px";b.width=""+c.x+"px";b.height=""+c.y+"px";b.zIndex=f;var a=document.getElementsByTagName("body")[0];a.appendChild(this.div);this.div.innerHTML=this.getHTML(c.x,c.y)},getHTML:function(d,a){var c="";var b="id="+this.id+"&width="+d+"&height="+a;if(navigator.userAgent.match(/MSIE/)){var e=location.href.match(/^https/i)?"https://":"http://";c+='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+e+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+d+'" height="'+a+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+this.path+ZeroClipboard.options.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+b+'"/><param name="wmode" value="transparent"/></object>'}else{c+='<embed id="'+this.movieId+'" src="'+this.path+ZeroClipboard.options.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+d+'" height="'+a+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+b+'" wmode="transparent" />'}return c},hide:function(){if(this.div){this.div.style.left="-2000px"}},show:function(){this.reposition()},destroy:function(){if(this.domElement&&this.div){this.hide();this.div.innerHTML="";var a=document.getElementsByTagName("body")[0];try{a.removeChild(this.div)}catch(b){}this.domElement=null;this.div=null}},reposition:function(b){if(b){this.domElement=b;if(!this.domElement){this.hide()}}if(this.domElement&&this.div){var c=this.domElement.getPosition();var a=this.div.style;a.left=""+c.x+"px";a.top=""+c.y+"px"}},setText:function(a){this.clipText=a;if(this.ready){this.movie.setText(a)}},addEventListener:function(a,b){a=a.toString().toLowerCase().replace(/^on/,"");if(!this.handlers[a]){this.handlers[a]=[]}this.handlers[a].push(b)},setHandCursor:function(a){this.handCursorEnabled=a;if(this.ready){this.movie.setHandCursor(a)}},setCSSEffects:function(a){this.cssEffects=!!a},receiveEvent:function(d,e){d=d.toString().toLowerCase().replace(/^on/,"");switch(d){case"load":this.movie=$(this.movieId);if(!this.movie){var c=this;setTimeout(function(){c.receiveEvent("load",null)},1);return}if(!this.ready&&navigator.userAgent.match(/Firefox/)&&navigator.userAgent.match(/Windows/)){var c=this;setTimeout(function(){c.receiveEvent("load",null)},100);this.ready=true;return}this.ready=true;this.movie.setText(this.clipText);this.movie.setHandCursor(this.handCursorEnabled);break;case"mouseover":if(this.domElement&&this.cssEffects){this.domElement.addClass("hover");if(this.recoverActive){this.domElement.addClass("active")}}break;case"mouseout":if(this.domElement&&this.cssEffects){this.recoverActive=false;if(this.domElement.hasClass("active")){this.domElement.removeClass("active");this.recoverActive=true}this.domElement.removeClass("hover")}break;case"mousedown":if(this.domElement&&this.cssEffects){this.domElement.addClass("active")}break;case"mouseup":if(this.domElement&&this.cssEffects){this.domElement.removeClass("active");this.recoverActive=false}break}if(this.handlers[d]){for(var b=0,a=this.handlers[d].length;b<a;b++){var f=this.handlers[d][b];if(typeof(f)=="function"){f(this,e)}else{if((typeof(f)=="object")&&(f.length==2)){f[0][f[1]](this,e)}else{if(typeof(f)=="string"){window[f](this,e)}}}}}}});
@@ -0,0 +1 @@
1
+ (function(){Lighter=new Class({Implements:[Options],name:"Lighter",options:{altLines:"",clipboard:null,container:null,editable:false,flame:"standard",fuel:"standard",id:null,indent:-1,matchType:"standard",mode:"pre",path:null,strict:false},initialize:function(d,c){this.setOptions(c);this.id=this.options.id||this.name+"_"+$time();this.codeblock=$(d);this.container=$(this.options.container);this.code=a(this.codeblock.get("html")).replace(/&lt;/gim,"<").replace(/&gt;/gim,">").replace(/&amp;/gim,"&");if(this.options.indent>-1){this.code=b(this.code,this.options.indent)}this.getPath();this.getClass();this.builder=new Hash({inline:this.createLighter.pass("code",this),pre:this.createLighter.pass("pre",this),ol:this.createLighterWithLines.pass([["ol"],["li"]],this),div:this.createLighterWithLines.pass([["div"],["div","span"],true,"span"],this),table:this.createLighterWithLines.pass([["table","tbody"],["tr","td"],true,"td"],this)});Lighter.scripts=Lighter.scripts||{};Lighter.stylesheets=Lighter.stylesheets||{};this.loadStylesheet(this.options.flame,"Flame."+this.options.flame+".css");this.loadFuel()},loadFuel:function(){try{this.fuel=new Fuel[this.options.fuel](this.code,{matchType:this.options.matchType,strict:this.options.strict});this.light()}catch(c){this.loadScript(this.options.fuel,"Fuel."+this.options.fuel+".js",{load:this.loadFuel.bind(this),error:function(){this.options.fuel="standard";this.loadFuel()}.bind(this)})}},light:function(){this.element=this.toElement();if(this.container){this.container.empty();this.element.inject(this.container)}else{this.codeblock.setStyle("display","none");this.element.inject(this.codeblock,"after");if(this.options.clipboard){this.loadClipboard()}}},unlight:function(){$(this).setStyle("display","none");this.codeblock.setStyle("display","inherit")},loadClipboard:function(){try{var c=new ZeroClipboard.Client();c.setPath(this.options.path);c.glue($(this.options.clipboard));c.setText(this.code);c.addEventListener("complete",function(e,f){alert("Copied text to clipboard:\n"+f)})}catch(d){this.loadScript("clipboard","ZeroClipboard.js",{load:this.loadClipboard.bind(this),error:$empty});return false}},getPath:function(){if(!$chk(Lighter.path)){$$("head script").each(function(d){var c=d.src.split("?",1),e=/Lighter(\.full|\.lite)?\.js$/gi;if(c[0].match(e)){Lighter.path=c[0].replace(e,"")}})}if(!this.options.path){this.options.path=Lighter.path}},getClass:function(){var d=this.codeblock.get("class").split(" "),c=[null,null];switch(d.length){case 0:break;case 1:c=d[0].split(":");break;default:c=d[0].split(":")}if(c[0]){this.options.fuel=c[0]}if(c[1]){this.options.flame=c[1]}},loadScript:function(d,e,c){if($chk(Lighter.scripts[d])){Lighter.scripts[d].addEvents({load:c.load,error:c.error,readystatechange:function(){if(["loaded","complete"].contains(this.readyState)){c.load()}}})}else{Lighter.scripts[d]=new Element("script",{src:this.options.path+e+"?"+$time(),type:"text/javascript",events:{load:c.load,error:c.error,readystatechange:function(){if(["loaded","complete"].contains(this.readyState)){c.load()}}}}).inject(document.head)}},loadStylesheet:function(c,d){if(!$chk(Lighter.stylesheets[c])){Lighter.stylesheets[c]=new Element("link",{rel:"stylesheet",type:"text/css",media:"screen",href:this.options.path+d+"?"+$time()}).inject(document.head)}},createLighter:function(d){var c=new Element(d,{"class":this.options.flame+this.name}),e=0;if(!$defined(this.fuel.wicks[0])){c.appendText(this.code)}else{this.fuel.wicks.each(function(f){c.appendText(this.code.substring(e,f.index));this.insertAndKeepEl(c,f.text,f.type);e=f.index+f.text.length},this);if(e<this.code.length){c.appendText(this.code.substring(e,this.code.length))}}return c},createLighterWithLines:function(k,d,f,e){var m=new Element(k[0],{"class":this.options.flame+this.name,id:this.id}),j=new Element(d[0]),h=1,c=0,l=null;if(k[0]=="table"){m.set("cellpadding",0).set("cellspacing",0).set("border",0)}if(k[1]){m=new Element(k[1]).inject(m)}if(d[1]){j=new Element(d[1]).inject(j)}j.addClass(this.options.flame+"line");if(f){h=this.insertLineNum(j,h,e)}this.fuel.wicks.each(function(n){if(c!=n.index){l=this.code.substring(c,n.index).split("\n");for(var o=0;o<l.length;o++){if(o<l.length-1){if(l[o]===""){l[o]=" "}j=this.insertAndMakeEl(j,m,l[o],d);if(f){h=this.insertLineNum(j,h,e)}}else{this.insertAndKeepEl(j,l[o])}}}l=n.text.split("\n");for(var o=0;o<l.length;o++){if(o<l.length-1){j=this.insertAndMakeEl(j,m,l[o],d,n.type);if(f){h=this.insertLineNum(j,h,e)}}else{this.insertAndKeepEl(j,l[o],n.type)}}c=n.end},this);if(c<=this.code.length){l=this.code.substring(c,this.code.length).split("\n");for(var g=0;g<l.length;g++){j=this.insertAndMakeEl(j,m,l[g],d);if(f){h=this.insertLineNum(j,h,e)}}}if(this.options.altLines!==""){if(this.options.altLines=="hover"){m.getElements("."+this.options.flame+"line").addEvents({mouseover:function(){this.toggleClass("alt")},mouseout:function(){this.toggleClass("alt")}})}else{if(d[1]){m.getChildren(":"+this.options.altLines).getElement("."+this.options.flame+"line").addClass("alt")}else{m.getChildren(":"+this.options.altLines).addClass("alt")}}}if(d[1]){m.getFirst().getChildren().addClass(this.options.flame+"first");m.getLast().getChildren().addClass(this.options.flame+"last")}else{m.getFirst().addClass(this.options.flame+"first");m.getLast().addClass(this.options.flame+"last")}if(k[1]){m=m.getParent()}return m},insertAndKeepEl:function(e,f,c){if(f.length>0){var d=new Element("span",{text:f});if(c){d.addClass(this.fuel.aliases[c]||c)}d.inject(e)}},insertAndMakeEl:function(d,e,f,h,c){this.insertAndKeepEl(d,f,c);if(h[1]){d=d.getParent()}d.inject(e);var g=new Element(h[0]);if(h[1]){g=new Element(h[1]).inject(g)}g.addClass(this.options.flame+"line");return g},insertLineNum:function(d,f,c){var e=new Element(c,{text:f++,"class":this.options.flame+"num"});e.inject(d.getParent(),"top");return f},toElement:function(){if(!this.element){this.element=this.builder[this.options.mode]();if(this.options.editable){this.element.set("contenteditable","true")}}return this.element}});Element.implement({light:function(c){return new Lighter(this,c)}});function a(c){return c.replace(/(^\s*\n|\n\s*$)/gi,"")}function b(f,d){for(var e=0,c="";e<d;e++){c+=" "}return f.replace(/\t/g,c)}})();var Fuel=new Class({Implements:[Options],options:{matchType:"standard",strict:false},language:"",patterns:new Hash(),keywords:new Hash(),delimiters:new Hash({start:null,end:null}),common:{slashComments:/(?:^|[^\\])\/\/.*$/gm,poundComments:/#.*$/gm,multiComments:/\/\*[\s\S]*?\*\//gm,aposStrings:/'[^'\\]*(?:\\.[^'\\]*)*'/gm,quotedStrings:/"[^"\\]*(?:\\.[^"\\]*)*"/gm,multiLineSingleQuotedStrings:/'[^'\\]*(?:\\.[^'\\]*)*'/gm,multiLineDoubleQuotedStrings:/"[^"\\]*(?:\\.[^"\\]*)*"/gm,multiLineStrings:/'[^'\\]*(?:\\.[^'\\]*)*'|"[^"\\]*(?:\\.[^"\\]*)*"/gm,singleQuotedString:/'[^'\\\r\n]*(?:\\.[^'\\\r\n]*)*'/gm,doubleQuotedString:/"[^"\\\r\n]*(?:\\.[^"\\\r\n]*)*"/gm,strings:/'[^'\\\r\n]*(?:\\.[^'\\\r\n]*)*'|"[^"\\\r\n]*(?:\\.[^"\\\r\n]*)*"/gm,properties:/\.([\w]+)\s*/gi,methodCalls:/\.([\w]+)\s*\(/gm,functionCalls:/\b([\w]+)\s*\(/gm,brackets:/\{|\}|\(|\)|\[|\]/g,numbers:/\b((?:(\d+)?\.)?[0-9]+|0x[0-9A-F]+)\b/gi},initialize:function(a,j,i){this.setOptions(j);this.wicks=i||[];this.code=a;this.aliases=$H();this.rules=$H();this.builder=new Hash({standard:this.findMatches,lazy:this.findMatchesLazy});if(!j.strict){if(this.delimiters.start){this.addFuel("delimBeg",this.delimiters.start,"de1")}if(this.delimiters.end){this.addFuel("delimEnd",this.delimiters.end,"de2")}}this.keywords.each(function(l,k){if(l.csv!=""){this.addFuel(k,this.csvToRegExp(l.csv,l.mod||"g"),l.alias)}},this);this.patterns.each(function(k,l){this.addFuel(l,k.pattern,k.alias)},this);var h=0,b=this.code.length,d="",c=this.delimiters,g=[],f=null,e=null;if(!j.strict){g.extend(this.builder[j.matchType].pass(this.code,this)())}else{if(c.start&&c.end){while((f=c.start.exec(this.code))!=null){c.end.lastIndex=c.start.lastIndex;if((e=c.end.exec(this.code))!=null){g.push(new Wick(f[0],"de1",f.index));h=c.start.lastIndex;b=e.index-1;d=this.code.substring(h,b);g.extend(this.builder[j.matchType].pass([d,h],this)());g.push(new Wick(e[0],"de2",e.index))}}}}this.wicks=g},addFuel:function(c,a,b){this.rules[c]=a;this.addAlias(c,b)},addAlias:function(b,a){this.aliases[b]=a||b},csvToRegExp:function(a,b){return new RegExp("\\b("+a.replace(/,\s*/g,"|")+")\\b",b)},delimToRegExp:function(d,b,a,e,f){d=d.escapeRegExp();if(b){b=b.escapeRegExp()}a=(a)?a.escapeRegExp():d;var c=(b)?d+"[^"+a+b+"\\n]*(?:"+b+".[^"+a+b+"\\n]*)*"+a:d+"[^"+a+"\\n]*"+a;return new RegExp(c+(f||""),e||"")},strictRegExp:function(){var b="(";for(var a=0;a<arguments.length;a++){b+=arguments[a].escapeRegExp();b+=(a<arguments.length-1)?"|":""}b+=")";return new RegExp(b,"gim")},findMatches:function(d,f){var b=[],e=0,a=d.length;insertIndex=0,match=null,type=null,newWick=null,rule=null,rules={},currentMatch=null,futureMatch=null;f=f||0;this.rules.each(function(g,h){rules[h]={pattern:g,nextIndex:0}},this);while(e<d.length){a=d.length;match=null;for(rule in rules){rules[rule].pattern.lastIndex=e;currentMatch=rules[rule].pattern.exec(d);if(currentMatch===null){delete rules[rule]}else{if(currentMatch.index<a||(currentMatch.index==a&&match[0].length<currentMatch[0].length)){match=currentMatch;type=rule;a=currentMatch.index}rules[rule].nextIndex=rules[rule].pattern.lastIndex-currentMatch[0].length}}if(match!=null){index=(match[1]&&match[0].contains(match[1]))?match.index+match[0].indexOf(match[1]):match.index;newWick=new Wick(match[1]||match[0],type,index+f);b.push(newWick);futureMatch=rules[type].pattern.exec(d);if(!futureMatch){rules[type].nextIndex=d.length}else{rules[type].nextIndex=rules[type].pattern.lastIndex-futureMatch[0].length}var c=d.length;for(rule in rules){if(rules[rule].nextIndex<c){c=rules[rule].nextIndex}}e=Math.max(c,newWick.end-f)}else{break}}return b},findMatchesLazy:function(c,d){var a=this.wicks,b=null;index=0;d=d||0;this.rules.each(function(e,f){while((b=e.exec(c))!=null){index=(b[1]&&b[0].contains(b[1]))?b.index+b[0].indexOf(b[1]):b.index;a.push(new Wick(b[1]||b[0],f,index+d))}},this);return this.purgeWicks(a)},purgeWicks:function(a){a=a.sort(this.compareWicks);for(var c=0,b=0;c<a.length;c++){if(a[c]==null){continue}for(b=c+1;b<a.length&&a[c]!=null;b++){if(a[b]==null){continue}else{if(a[b].isBeyond(a[c])){break}else{if(a[b].overlaps(a[c])){a[c]=null}else{if(a[c].contains(a[b])){a[b]=null}}}}}}return a.clean()},compareWicks:function(b,a){return b.index-a.index}});Fuel.standard=new Class({Extends:Fuel,initialize:function(c,b,a){this.parent(c,b,a)}});var Wick=new Class({initialize:function(b,c,a){this.text=b;this.type=c;this.index=a;this.length=this.text.length;this.end=this.index+this.length},contains:function(a){return(a.index>=this.index&&a.index<this.end)},isBeyond:function(a){return(this.index>=a.end)},overlaps:function(a){return(this.index==a.index&&this.length>a.length)},toString:function(){return this.index+" - "+this.text+" - "+this.end}});
@@ -0,0 +1,5 @@
1
+ ---
2
+ :revision: 165c77f72b33a9ba1de45f176bfe1cb77c423fa8
3
+ :repozitory: git://github.com/botanicus/pupu-lighter.git
4
+ :dependencies: []
5
+
@@ -0,0 +1 @@
1
+ .gitLighter{border-bottom:1px solid #eee;border-top:1px solid #eee;color:#939393;font-family:Courier,monospace;line-height:1.6em;font-size:12px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.gitLighter span{font-size:12px;color:#000;}.gitLighter .gitnum{background-color:#f2f2f2;color:#aaa;font-size:10px;text-align:center;width:30px;}.gitLighter .gitline{background-color:#fff;border-left:1px solid #939393;padding-left:15px;padding-right:5px;}.gitLighter .gitfirst{padding-top:10px;}.gitLighter .gitlast{padding-bottom:10px;}.gitLighter .alt{background-color:#ffc;}code.gitLighter{background-color:#fff;}pre.gitLighter{background-color:#fff;padding-left:15px;padding-right:5px;padding-top:10px;padding-bottom:10px;}ol.gitLighter{color:#aaa;font-size:10px;background-color:#f2f2f2;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.gitLighter li{margin-left:40px;}div.gitLighter .gitnum{display:block;float:left;}div.gitLighter .gitline{display:block;margin-left:30px;min-height:12px;}div.gitLighter div{clear:left;overflow:auto;background-color:#f2f2f2;}.gitLighter .de1{color:#CF6A4C;}.gitLighter .de2{color:#CF6A4C;}.gitLighter .kw1{color:#000;font-weight:bold;}.gitLighter .kw2{color:#0086b3;}.gitLighter .kw3{color:#458;font-weight:bold;}.gitLighter .kw4{color:#990073;}.gitLighter .co1{color:#998;font-style:italic;}.gitLighter .co2{color:#998;font-style:italic;}.gitLighter .st0{color:#d14;}.gitLighter .st1{color:#d14;}.gitLighter .st2{color:#d14;}.gitLighter .nu0{color:#099;}.gitLighter .me0{color:#0086b3;}.gitLighter .me1{color:#0086b3;}.gitLighter .br0{color:#777;}.gitLighter .sy0{color:#777;}.gitLighter .es0{color:#777;}.gitLighter .re0{color:#009926;}
@@ -0,0 +1 @@
1
+ .mochaLighter{color:#f8f8f8;font-family:Monaco,Courier,monospace;font-size:12px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.mochaLighter span{font-size:12px;color:#f8f8f8;}.mochaLighter .mochanum{background-color:#BBCCD5;color:#000;font-size:10px;text-align:center;width:30px;}.mochaLighter .mochaline{border-left:2px solid #939393;background-color:#2D2522;padding-left:15px;padding-right:5px;}.mochaLighter .mochafirst{padding-top:10px;}.mochaLighter .mochalast{padding-bottom:10px;}.mochaLighter .alt{background-color:#423F43;}code.mochaLighter{background-color:#2D2522;}pre.mochaLighter{background-color:#2D2522;padding-left:15px;padding-right:5px;padding-top:10px;padding-bottom:10px;}ol.mochaLighter{background-color:#BBCCD5;color:#000;font-size:10px;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.mochaLighter li{margin-left:40px;}div.mochaLighter .mochanum{display:block;float:left;}div.mochaLighter .mochaline{display:block;margin-left:30px;min-height:16px;}div.mochaLighter div{clear:left;overflow:auto;background-color:#BBCCD5;}.mochaLighter .de1{color:#CF6A4C;}.mochaLighter .de2{color:#CF6A4C;}.mochaLighter .kw1{color:#CDA869;}.mochaLighter .kw2{color:#CACD69;}.mochaLighter .kw3{color:#afc4db;}.mochaLighter .kw4{color:#CF6A4C;}.mochaLighter .co1{color:#5F5A60;font-style:italic;}.mochaLighter .co2{color:#5F5A60;font-style:italic;}.mochaLighter .st0{color:#8F9D6A;}.mochaLighter .st1{color:#8F9D6A;}.mochaLighter .st2{color:#DDF2A4;}.mochaLighter .nu0{color:#5B97B5;}.mochaLighter .me0{color:#C5AF75;}.mochaLighter .me1{color:#C5AF75;}.mochaLighter .br0{color:#777;}.mochaLighter .sy0{color:#777;}.mochaLighter .es0{color:#777;}.mochaLighter .re0{color:#B55B8B;}
@@ -0,0 +1 @@
1
+ .panicLighter{font-family:Monaco,Courier,Monospace;font-size:12px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.panicLighter span{color:black;font-size:12px;}.panicLighter .panicnum{background-color:#f2f2f2;color:#939393;font-size:10px;text-align:center;width:30px;}.panicLighter .panicline{background-color:#fff;border-top:1px solid #fff;border-bottom:1px solid #fff;border-left:1px solid #939393;padding:0 3px 0 10px;padding-left:15px;padding-right:5px;}.panicLighter .panicfirst{padding-top:5px;}.panicLighter .paniclast{padding-bottom:5px;}.panicLighter .alt{border-top:1px solid #eee;border-bottom:1px solid #eee;background-color:#F4F8FC;}pre.panicLighter{background-color:#fff;padding-left:15px;padding-right:5px;padding-top:5px;padding-bottom:5px;}ol.panicLighter{color:#939393;font-size:10px;list-style:decimal-leading-zero;background-color:#f2f2f2;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.panicLighter li{background-color:#fff;margin-left:40px;}div.panicLighter .panicnum{display:block;float:left;}div.panicLighter .panicline{display:block;margin-left:30px;min-height:12px;}div.panicLighter div{clear:left;overflow:auto;background-color:#f2f2f2;}.panicLighter .de1{color:#A00083;}.panicLighter .de2{color:#A00083;}.panicLighter .kw1{color:#9F0050;}.panicLighter .kw2{color:#9F0050;}.panicLighter .kw3{color:#9a6c00;}.panicLighter .kw4{color:#9F0050;}.panicLighter .co1{color:#00721F;font-style:italic;}.panicLighter .co2{color:#00721F;font-style:italic;}.panicLighter .st0{color:#EF7300;}.panicLighter .st1{color:#8A000F;}.panicLighter .st2{color:#8A000F;}.panicLighter .nu0{color:#1600FF;}.panicLighter .me0{color:#00417f;}.panicLighter .me1{color:#00417f;}.panicLighter .br0{color:#000;}.panicLighter .sy0{color:#000;}.panicLighter .es0{color:#000;}.panicLighter .re0{color:#8A000F;}
@@ -0,0 +1 @@
1
+ .standardLighter{font-family:Monaco,Courier,Monospace;font-size:12px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.standardLighter span{color:black;font-size:12px;}.standardLighter .standardnum{background-color:#f2f2f2;color:#939393;font-size:10px;text-align:center;width:30px;}.standardLighter .standardline{background-color:#fff;border-top:1px solid #fff;border-bottom:1px solid #fff;border-left:1px solid #939393;padding:0 3px 0 10px;padding-left:15px;padding-right:5px;}.standardLighter .standardfirst{padding-top:5px;}.standardLighter .standardlast{padding-bottom:5px;}.standardLighter .alt{border-top:1px solid #eee;border-bottom:1px solid #eee;background-color:#F4F8FC;}pre.standardLighter{background-color:#fff;padding-left:15px;padding-right:5px;padding-top:5px;padding-bottom:5px;}ol.standardLighter{color:#939393;font-size:10px;list-style:decimal-leading-zero;background-color:#f2f2f2;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.standardLighter li{margin-left:40px;}div.standardLighter .standardnum{display:block;float:left;}div.standardLighter .standardline{display:block;margin-left:30px;min-height:12px;}div.standardLighter div{clear:left;overflow:auto;background-color:#f2f2f2;}.standardLighter .kw1{color:#1b609a;}.standardLighter .kw2{color:#9a6f1b;}.standardLighter .kw3{color:#784e0c;}.standardLighter .kw4{color:#9a6f1b;}.standardLighter .co1{color:#888;}.standardLighter .co2{color:#888;}.standardLighter .st0{color:#489a1b;}.standardLighter .st1{color:#489a1b;}.standardLighter .st2{color:#489a1b;}.standardLighter .nu0{color:#70483d;}.standardLighter .me0{color:#666;}.standardLighter .me1{color:#666;}.standardLighter .br0{color:#444;}.standardLighter .sy0{color:#444;}.standardLighter .es0{color:#444;}.standardLighter .re0{color:#784e0c;}
@@ -0,0 +1,101 @@
1
+ /**
2
+ * Script:
3
+ * Flame.template.css - Template to build custom Flame for Lighter.js.
4
+ *
5
+ * License:
6
+ * MIT-style license.
7
+ *
8
+ * Author:
9
+ * Jose Prado
10
+ *
11
+ * Copyright:
12
+ * Copyright (©) 2009 [Jose Prado](http://pradador.com/).
13
+ *
14
+ */
15
+ .myLighter {
16
+ font-family: Monaco, Courier, Monospace;
17
+ font-size: 12px;
18
+ overflow: auto;
19
+ white-space: pre-wrap;
20
+ white-space: -moz-pre-wrap;
21
+ white-space: -o-pre-wrap;
22
+ white-space: -pre-wrap;
23
+ word-wrap: break-word;
24
+ }
25
+ .myLighter span {
26
+ color: black;
27
+ font-size: 12px;
28
+ }
29
+ .myLighter .mynum {
30
+ background-color: #f2f2f2;
31
+ color: #939393;
32
+ font-size: 10px;
33
+ text-align: center;
34
+ width: 30px;
35
+ }
36
+ .myLighter .myline {
37
+ background-color: #fff;
38
+ padding: 0 3px 0 10px;
39
+ padding-left: 15px;
40
+ padding-right: 5px;
41
+ }
42
+ .myLighter .myfirst { padding-top: 5px; }
43
+ .myLighter .mylast { padding-bottom: 5px; }
44
+ .myLighter .alt { background-color: #F4F8FC; }
45
+
46
+ /** Pre specific styles */
47
+ pre.myLighter {
48
+ padding-left: 15px;
49
+ padding-right: 5px;
50
+ padding-top: 5px;
51
+ padding-bottom: 5px;
52
+ }
53
+
54
+ /** OL specific styles */
55
+ ol.myLighter {
56
+ font-size: 10px;
57
+ margin-top: 0;
58
+ margin-bottom: 0;
59
+ margin-left: 0;
60
+ padding-left: 0;
61
+ }
62
+ ol.myLighter li { margin-left: 40px; }
63
+
64
+ /** Div specific styles */
65
+ div.myLighter .mynum {
66
+ display: block;
67
+ float: left;
68
+ }
69
+ div.myLighter .myline {
70
+ display: block;
71
+ margin-left: 30px;
72
+ min-height: 12px;
73
+ }
74
+ div.myLighter div {
75
+ clear: left;
76
+ overflow: auto;
77
+ }
78
+
79
+ /** Table specific styles */
80
+ table.myLighter .mynum {}
81
+ table.myLighter .myline {}
82
+
83
+ /** Symbol styles */
84
+ .myLighter .de1 {}
85
+ .myLighter .de2 {}
86
+ .myLighter .kw1 { color: #; }
87
+ .myLighter .kw2 { color: #; }
88
+ .myLighter .kw3 { color: #; }
89
+ .myLighter .kw4 { color: #; }
90
+ .myLighter .co1 { color: #; }
91
+ .myLighter .co2 { color: #; }
92
+ .myLighter .st0 { color: #; }
93
+ .myLighter .st1 { color: #; }
94
+ .myLighter .st2 { color: #; }
95
+ .myLighter .nu0 { color: #; }
96
+ .myLighter .me0 { color: #; }
97
+ .myLighter .me1 { color: #; }
98
+ .myLighter .br0 { color: #; }
99
+ .myLighter .sy0 { color: #; }
100
+ .myLighter .es0 { color: #; }
101
+ .myLighter .re0 { color: #; }
@@ -0,0 +1 @@
1
+ .tuttiLighter{font-family:Monaco,Courier,Monospace;font-size:12px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.tuttiLighter span{color:black;font-size:12px;}.tuttiLighter .tuttinum{background-color:#f2f2f2;color:#939393;font-size:10px;text-align:center;width:30px;}.tuttiLighter .tuttiline{background-color:#fff;border-left:1px solid #f9f9f9;padding:0 3px 0 10px;padding-left:15px;padding-right:5px;}.tuttiLighter .tuttifirst{padding-top:5px;}.tuttiLighter .tuttilast{padding-bottom:5px;}.tuttiLighter .alt{background-color:#F4F8FC;color:#000;}pre.tuttiLighter{padding-left:15px;padding-right:5px;padding-top:5px;padding-bottom:5px;}ol.tuttiLighter{background-color:#fbfbfb;color:#aaa;font-size:10px;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.tuttiLighter li{background-color:#fff;margin-left:40px;}div.tuttiLighter .tuttinum{background-color:#fbfbfb;display:block;float:left;min-height:16px;}div.tuttiLighter .tuttiline{display:block;margin-left:30px;min-height:16px;}div.tuttiLighter div{background-color:#fff;clear:left;overflow:auto;}.tuttiLighter .de1{color:#6eb13f;}.tuttiLighter .de2{color:#6eb13f;}.tuttiLighter .kw1{color:#8600c9;}.tuttiLighter .kw2{color:#3a1d72;font-weight:bold;}.tuttiLighter .kw3{color:#4F9FCF;}.tuttiLighter .kw4{color:#4F9FCF;}.tuttiLighter .co1{color:#bbb;}.tuttiLighter .co2{color:#bbb;}.tuttiLighter .st0{color:#bc670f;background-color:rgba(251,233,173,0.1);}.tuttiLighter .st1{color:#bc670f;background-color:rgba(251,233,173,0.1);}.tuttiLighter .st2{color:#bc670f;background-color:rgba(251,233,173,0.1);}.tuttiLighter .nu0{color:#6700b9;}.tuttiLighter .me0{color:#000;}.tuttiLighter .me1{color:#6eb13f;font-weight:bold;}.tuttiLighter .br0{color:#4f4f4f;}.tuttiLighter .sy0{color:#626fc9;}.tuttiLighter .es0{color:#4f4f4f;}.tuttiLighter .re0{color:#d44950;}
@@ -0,0 +1 @@
1
+ .twilightLighter{border:1px solid #222;color:#f8f8f8;font-family:Monaco,Courier,monospace;font-size:12px;line-height:19px;overflow:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;white-space:-pre-wrap;word-wrap:break-word;}.twilightLighter span{font-size:12px;color:#f8f8f8;}.twilightLighter .twilightline{background-color:#141414;border-left:1px solid #939393;padding-left:15px;padding-right:5px;}.twilightLighter .twilightnum{background-color:#f2f2f2;color:#000;font-size:10px;text-align:center;width:30px;}.twilightLighter .twilightfirst{padding-top:10px;}.twilightLighter .twilightlast{padding-bottom:10px;}.twilightLighter .alt{background-color:#202021;}code.twilightLighter{background-color:#141414;}pre.twilightLighter{background-color:#141414;padding-left:15px;padding-right:5px;padding-top:10px;padding-bottom:10px;}ol.twilightLighter{color:#000;font-size:10px;background-color:#f2f2f2;margin-top:0;margin-bottom:0;margin-left:0;padding-left:0;}ol.twilightLighter li{margin-left:40px;}div.twilightLighter .twilightnum{display:block;float:left;}div.twilightLighter .twilightline{display:block;margin-left:30px;min-height:19px;}div.twilightLighter div{clear:left;overflow:auto;background-color:#f2f2f2;}.twilightLighter .de1{color:#fff;}.twilightLighter .de2{color:#fff;}.twilightLighter .kw1{color:#CDA869;}.twilightLighter .kw2{color:#F9EE98;}.twilightLighter .kw3{color:#6F87A8;}.twilightLighter .kw4{color:#E96546;}.twilightLighter .co1{color:#5F5A60;}.twilightLighter .co2{color:#5F5A60;}.twilightLighter .st0{color:#8F9657;}.twilightLighter .st1{color:#8F9657;}.twilightLighter .st2{color:#8F9657;}.twilightLighter .nu0{color:#CF6745;}.twilightLighter .me0{color:#fff;}.twilightLighter .me1{color:#fff;}.twilightLighter .br0{color:#fff;}.twilightLighter .sy0{color:#fff;}.twilightLighter .es0{color:#fff;}.twilightLighter .re0{color:#E57A27;}
@@ -0,0 +1,2 @@
1
+ [12/2/2008] First public release
2
+ [12/2/2008] Fixed parameter bug
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Jakub Stastny aka Botanicus
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,19 @@
1
+ h1. About merb_pupu
2
+
3
+ Merb_pupu is a plugin system for merb's public stuff like mootools plugins, icon sets etc. It knows dependencies and it has CLI interface, so it's really easy to bundle such plugins into your app. Please see http://github.com/botanicus/merb_pupu for more informations.
4
+
5
+ h1. About mootools
6
+
7
+ "MooTools":http://mootools.net is great JavaScript framework
8
+
9
+ h1. Usage
10
+
11
+ h2. Layout
12
+
13
+ <pre>
14
+ # for basic functionality
15
+ plugin :mootools
16
+
17
+ # for mootools-more
18
+ plugin :mootools, :more => true
19
+ </pre>
@@ -0,0 +1,29 @@
1
+ namespace :git do
2
+ desc "Do the initial import"
3
+ task :init do
4
+ sh "git init"
5
+ sh "git add ."
6
+ sh "git commit -a -m 'Initial import'"
7
+ end
8
+ end
9
+
10
+ namespace :javascripts do
11
+ desc "Compress javascripts"
12
+ task :compress do
13
+ puts "This task isn't ready yet."
14
+ end
15
+ end
16
+
17
+ namespace :stylesheets do
18
+ desc "Compress stylesheets"
19
+ task :compress do
20
+ puts "This task isn't ready yet."
21
+ end
22
+ end
23
+
24
+ namespace :sass do
25
+ desc "Compile Sass templates"
26
+ task :compile do
27
+ puts "This task isn't ready yet."
28
+ end
29
+ end
@@ -0,0 +1,8 @@
1
+ # javascripts for loading
2
+ javascript "mootools-1.2-core"
3
+
4
+ # parameters of plugin
5
+ # pupu :mootools, :more => true
6
+ parameter :more do |boolean|
7
+ javascript "mootools-1.2-more" if boolean
8
+ end
@@ -0,0 +1,350 @@
1
+ // Full version of MooTools Core 1.2.1
2
+ //MooTools, <http://mootools.net>, My Object Oriented (JavaScript) Tools. Copyright (c) 2006-2008 Valerio Proietti, <http://mad4milk.net>, MIT Style License.
3
+
4
+ var MooTools={version:"1.2.1",build:"0d4845aab3d9a4fdee2f0d4a6dd59210e4b697cf"};var Native=function(K){K=K||{};var A=K.name;var I=K.legacy;var B=K.protect;
5
+ var C=K.implement;var H=K.generics;var F=K.initialize;var G=K.afterImplement||function(){};var D=F||I;H=H!==false;D.constructor=Native;D.$family={name:"native"};
6
+ if(I&&F){D.prototype=I.prototype;}D.prototype.constructor=D;if(A){var E=A.toLowerCase();D.prototype.$family={name:E};Native.typize(D,E);}var J=function(N,L,O,M){if(!B||M||!N.prototype[L]){N.prototype[L]=O;
7
+ }if(H){Native.genericize(N,L,B);}G.call(N,L,O);return N;};D.alias=function(N,L,O){if(typeof N=="string"){if((N=this.prototype[N])){return J(this,L,N,O);
8
+ }}for(var M in N){this.alias(M,N[M],L);}return this;};D.implement=function(M,L,O){if(typeof M=="string"){return J(this,M,L,O);}for(var N in M){J(this,N,M[N],L);
9
+ }return this;};if(C){D.implement(C);}return D;};Native.genericize=function(B,C,A){if((!A||!B[C])&&typeof B.prototype[C]=="function"){B[C]=function(){var D=Array.prototype.slice.call(arguments);
10
+ return B.prototype[C].apply(D.shift(),D);};}};Native.implement=function(D,C){for(var B=0,A=D.length;B<A;B++){D[B].implement(C);}};Native.typize=function(A,B){if(!A.type){A.type=function(C){return($type(C)===B);
11
+ };}};(function(){var A={Array:Array,Date:Date,Function:Function,Number:Number,RegExp:RegExp,String:String};for(var G in A){new Native({name:G,initialize:A[G],protect:true});
12
+ }var D={"boolean":Boolean,"native":Native,object:Object};for(var C in D){Native.typize(D[C],C);}var F={Array:["concat","indexOf","join","lastIndexOf","pop","push","reverse","shift","slice","sort","splice","toString","unshift","valueOf"],String:["charAt","charCodeAt","concat","indexOf","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","valueOf"]};
13
+ for(var E in F){for(var B=F[E].length;B--;){Native.genericize(window[E],F[E][B],true);}}})();var Hash=new Native({name:"Hash",initialize:function(A){if($type(A)=="hash"){A=$unlink(A.getClean());
14
+ }for(var B in A){this[B]=A[B];}return this;}});Hash.implement({forEach:function(B,C){for(var A in this){if(this.hasOwnProperty(A)){B.call(C,this[A],A,this);
15
+ }}},getClean:function(){var B={};for(var A in this){if(this.hasOwnProperty(A)){B[A]=this[A];}}return B;},getLength:function(){var B=0;for(var A in this){if(this.hasOwnProperty(A)){B++;
16
+ }}return B;}});Hash.alias("forEach","each");Array.implement({forEach:function(C,D){for(var B=0,A=this.length;B<A;B++){C.call(D,this[B],B,this);}}});Array.alias("forEach","each");
17
+ function $A(C){if(C.item){var D=[];for(var B=0,A=C.length;B<A;B++){D[B]=C[B];}return D;}return Array.prototype.slice.call(C);}function $arguments(A){return function(){return arguments[A];
18
+ };}function $chk(A){return !!(A||A===0);}function $clear(A){clearTimeout(A);clearInterval(A);return null;}function $defined(A){return(A!=undefined);}function $each(C,B,D){var A=$type(C);
19
+ ((A=="arguments"||A=="collection"||A=="array")?Array:Hash).each(C,B,D);}function $empty(){}function $extend(C,A){for(var B in (A||{})){C[B]=A[B];}return C;
20
+ }function $H(A){return new Hash(A);}function $lambda(A){return(typeof A=="function")?A:function(){return A;};}function $merge(){var E={};for(var D=0,A=arguments.length;
21
+ D<A;D++){var B=arguments[D];if($type(B)!="object"){continue;}for(var C in B){var G=B[C],F=E[C];E[C]=(F&&$type(G)=="object"&&$type(F)=="object")?$merge(F,G):$unlink(G);
22
+ }}return E;}function $pick(){for(var B=0,A=arguments.length;B<A;B++){if(arguments[B]!=undefined){return arguments[B];}}return null;}function $random(B,A){return Math.floor(Math.random()*(A-B+1)+B);
23
+ }function $splat(B){var A=$type(B);return(A)?((A!="array"&&A!="arguments")?[B]:B):[];}var $time=Date.now||function(){return +new Date;};function $try(){for(var B=0,A=arguments.length;
24
+ B<A;B++){try{return arguments[B]();}catch(C){}}return null;}function $type(A){if(A==undefined){return false;}if(A.$family){return(A.$family.name=="number"&&!isFinite(A))?false:A.$family.name;
25
+ }if(A.nodeName){switch(A.nodeType){case 1:return"element";case 3:return(/\S/).test(A.nodeValue)?"textnode":"whitespace";}}else{if(typeof A.length=="number"){if(A.callee){return"arguments";
26
+ }else{if(A.item){return"collection";}}}}return typeof A;}function $unlink(C){var B;switch($type(C)){case"object":B={};for(var E in C){B[E]=$unlink(C[E]);
27
+ }break;case"hash":B=new Hash(C);break;case"array":B=[];for(var D=0,A=C.length;D<A;D++){B[D]=$unlink(C[D]);}break;default:return C;}return B;}var Browser=$merge({Engine:{name:"unknown",version:0},Platform:{name:(window.orientation!=undefined)?"ipod":(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase()},Features:{xpath:!!(document.evaluate),air:!!(window.runtime),query:!!(document.querySelector)},Plugins:{},Engines:{presto:function(){return(!window.opera)?false:((arguments.callee.caller)?960:((document.getElementsByClassName)?950:925));
28
+ },trident:function(){return(!window.ActiveXObject)?false:((window.XMLHttpRequest)?5:4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);
29
+ },gecko:function(){return(document.getBoxObjectFor==undefined)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;
30
+ Browser.detect=function(){for(var B in this.Engines){var A=this.Engines[B]();if(A){this.Engine={name:B,version:A};this.Engine[B]=this.Engine[B+A]=true;
31
+ break;}}return{name:B,version:A};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject("MSXML2.XMLHTTP");
32
+ });};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var A=($try(function(){return navigator.plugins["Shockwave Flash"].description;
33
+ },function(){return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version");})||"0 r0").match(/\d+/g);return{version:parseInt(A[0]||0+"."+A[1]||0),build:parseInt(A[2]||0)};
34
+ })();function $exec(B){if(!B){return B;}if(window.execScript){window.execScript(B);}else{var A=document.createElement("script");A.setAttribute("type","text/javascript");
35
+ A[(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerText":"text"]=B;document.head.appendChild(A);document.head.removeChild(A);}return B;}Native.UID=1;
36
+ var $uid=(Browser.Engine.trident)?function(A){return(A.uid||(A.uid=[Native.UID++]))[0];}:function(A){return A.uid||(A.uid=Native.UID++);};var Window=new Native({name:"Window",legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(A){$uid(A);
37
+ if(!A.Element){A.Element=$empty;if(Browser.Engine.webkit){A.document.createElement("iframe");}A.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};
38
+ }A.document.window=A;return $extend(A,Window.Prototype);},afterImplement:function(B,A){window[B]=Window.Prototype[B]=A;}});Window.Prototype={$family:{name:"window"}};
39
+ new Window(window);var Document=new Native({name:"Document",legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(A){$uid(A);A.head=A.getElementsByTagName("head")[0];
40
+ A.html=A.getElementsByTagName("html")[0];if(Browser.Engine.trident&&Browser.Engine.version<=4){$try(function(){A.execCommand("BackgroundImageCache",false,true);
41
+ });}if(Browser.Engine.trident){A.window.attachEvent("onunload",function(){A.window.detachEvent("onunload",arguments.callee);A.head=A.html=A.window=null;
42
+ });}return $extend(A,Document.Prototype);},afterImplement:function(B,A){document[B]=Document.Prototype[B]=A;}});Document.Prototype={$family:{name:"document"}};
43
+ new Document(document);Array.implement({every:function(C,D){for(var B=0,A=this.length;B<A;B++){if(!C.call(D,this[B],B,this)){return false;}}return true;
44
+ },filter:function(D,E){var C=[];for(var B=0,A=this.length;B<A;B++){if(D.call(E,this[B],B,this)){C.push(this[B]);}}return C;},clean:function(){return this.filter($defined);
45
+ },indexOf:function(C,D){var A=this.length;for(var B=(D<0)?Math.max(0,A+D):D||0;B<A;B++){if(this[B]===C){return B;}}return -1;},map:function(D,E){var C=[];
46
+ for(var B=0,A=this.length;B<A;B++){C[B]=D.call(E,this[B],B,this);}return C;},some:function(C,D){for(var B=0,A=this.length;B<A;B++){if(C.call(D,this[B],B,this)){return true;
47
+ }}return false;},associate:function(C){var D={},B=Math.min(this.length,C.length);for(var A=0;A<B;A++){D[C[A]]=this[A];}return D;},link:function(C){var A={};
48
+ for(var E=0,B=this.length;E<B;E++){for(var D in C){if(C[D](this[E])){A[D]=this[E];delete C[D];break;}}}return A;},contains:function(A,B){return this.indexOf(A,B)!=-1;
49
+ },extend:function(C){for(var B=0,A=C.length;B<A;B++){this.push(C[B]);}return this;},getLast:function(){return(this.length)?this[this.length-1]:null;},getRandom:function(){return(this.length)?this[$random(0,this.length-1)]:null;
50
+ },include:function(A){if(!this.contains(A)){this.push(A);}return this;},combine:function(C){for(var B=0,A=C.length;B<A;B++){this.include(C[B]);}return this;
51
+ },erase:function(B){for(var A=this.length;A--;A){if(this[A]===B){this.splice(A,1);}}return this;},empty:function(){this.length=0;return this;},flatten:function(){var D=[];
52
+ for(var B=0,A=this.length;B<A;B++){var C=$type(this[B]);if(!C){continue;}D=D.concat((C=="array"||C=="collection"||C=="arguments")?Array.flatten(this[B]):this[B]);
53
+ }return D;},hexToRgb:function(B){if(this.length!=3){return null;}var A=this.map(function(C){if(C.length==1){C+=C;}return C.toInt(16);});return(B)?A:"rgb("+A+")";
54
+ },rgbToHex:function(D){if(this.length<3){return null;}if(this.length==4&&this[3]==0&&!D){return"transparent";}var B=[];for(var A=0;A<3;A++){var C=(this[A]-0).toString(16);
55
+ B.push((C.length==1)?"0"+C:C);}return(D)?B:"#"+B.join("");}});Function.implement({extend:function(A){for(var B in A){this[B]=A[B];}return this;},create:function(B){var A=this;
56
+ B=B||{};return function(D){var C=B.arguments;C=(C!=undefined)?$splat(C):Array.slice(arguments,(B.event)?1:0);if(B.event){C=[D||window.event].extend(C);
57
+ }var E=function(){return A.apply(B.bind||null,C);};if(B.delay){return setTimeout(E,B.delay);}if(B.periodical){return setInterval(E,B.periodical);}if(B.attempt){return $try(E);
58
+ }return E();};},run:function(A,B){return this.apply(B,$splat(A));},pass:function(A,B){return this.create({bind:B,arguments:A});},bind:function(B,A){return this.create({bind:B,arguments:A});
59
+ },bindWithEvent:function(B,A){return this.create({bind:B,arguments:A,event:true});},attempt:function(A,B){return this.create({bind:B,arguments:A,attempt:true})();
60
+ },delay:function(B,C,A){return this.create({bind:C,arguments:A,delay:B})();},periodical:function(C,B,A){return this.create({bind:B,arguments:A,periodical:C})();
61
+ }});Number.implement({limit:function(B,A){return Math.min(A,Math.max(B,this));},round:function(A){A=Math.pow(10,A||0);return Math.round(this*A)/A;},times:function(B,C){for(var A=0;
62
+ A<this;A++){B.call(C,A,this);}},toFloat:function(){return parseFloat(this);},toInt:function(A){return parseInt(this,A||10);}});Number.alias("times","each");
63
+ (function(B){var A={};B.each(function(C){if(!Number[C]){A[C]=function(){return Math[C].apply(null,[this].concat($A(arguments)));};}});Number.implement(A);
64
+ })(["abs","acos","asin","atan","atan2","ceil","cos","exp","floor","log","max","min","pow","sin","sqrt","tan"]);String.implement({test:function(A,B){return((typeof A=="string")?new RegExp(A,B):A).test(this);
65
+ },contains:function(A,B){return(B)?(B+this+B).indexOf(B+A+B)>-1:this.indexOf(A)>-1;},trim:function(){return this.replace(/^\s+|\s+$/g,"");},clean:function(){return this.replace(/\s+/g," ").trim();
66
+ },camelCase:function(){return this.replace(/-\D/g,function(A){return A.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(A){return("-"+A.charAt(0).toLowerCase());
67
+ });},capitalize:function(){return this.replace(/\b[a-z]/g,function(A){return A.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1");
68
+ },toInt:function(A){return parseInt(this,A||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(B){var A=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);
69
+ return(A)?A.slice(1).hexToRgb(B):null;},rgbToHex:function(B){var A=this.match(/\d{1,3}/g);return(A)?A.rgbToHex(B):null;},stripScripts:function(B){var A="";
70
+ var C=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){A+=arguments[1]+"\n";return"";});if(B===true){$exec(A);}else{if($type(B)=="function"){B(A,C);
71
+ }}return C;},substitute:function(A,B){return this.replace(B||(/\\?\{([^{}]+)\}/g),function(D,C){if(D.charAt(0)=="\\"){return D.slice(1);}return(A[C]!=undefined)?A[C]:"";
72
+ });}});Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(B){for(var A in this){if(this.hasOwnProperty(A)&&this[A]===B){return A;}}return null;
73
+ },hasValue:function(A){return(Hash.keyOf(this,A)!==null);},extend:function(A){Hash.each(A,function(C,B){Hash.set(this,B,C);},this);return this;},combine:function(A){Hash.each(A,function(C,B){Hash.include(this,B,C);
74
+ },this);return this;},erase:function(A){if(this.hasOwnProperty(A)){delete this[A];}return this;},get:function(A){return(this.hasOwnProperty(A))?this[A]:null;
75
+ },set:function(A,B){if(!this[A]||this.hasOwnProperty(A)){this[A]=B;}return this;},empty:function(){Hash.each(this,function(B,A){delete this[A];},this);
76
+ return this;},include:function(B,C){var A=this[B];if(A==undefined){this[B]=C;}return this;},map:function(B,C){var A=new Hash;Hash.each(this,function(E,D){A.set(D,B.call(C,E,D,this));
77
+ },this);return A;},filter:function(B,C){var A=new Hash;Hash.each(this,function(E,D){if(B.call(C,E,D,this)){A.set(D,E);}},this);return A;},every:function(B,C){for(var A in this){if(this.hasOwnProperty(A)&&!B.call(C,this[A],A)){return false;
78
+ }}return true;},some:function(B,C){for(var A in this){if(this.hasOwnProperty(A)&&B.call(C,this[A],A)){return true;}}return false;},getKeys:function(){var A=[];
79
+ Hash.each(this,function(C,B){A.push(B);});return A;},getValues:function(){var A=[];Hash.each(this,function(B){A.push(B);});return A;},toQueryString:function(A){var B=[];
80
+ Hash.each(this,function(F,E){if(A){E=A+"["+E+"]";}var D;switch($type(F)){case"object":D=Hash.toQueryString(F,E);break;case"array":var C={};F.each(function(H,G){C[G]=H;
81
+ });D=Hash.toQueryString(C,E);break;default:D=E+"="+encodeURIComponent(F);}if(F!=undefined){B.push(D);}});return B.join("&");}});Hash.alias({keyOf:"indexOf",hasValue:"contains"});
82
+ var Event=new Native({name:"Event",initialize:function(A,F){F=F||window;var K=F.document;A=A||F.event;if(A.$extended){return A;}this.$extended=true;var J=A.type;
83
+ var G=A.target||A.srcElement;while(G&&G.nodeType==3){G=G.parentNode;}if(J.test(/key/)){var B=A.which||A.keyCode;var M=Event.Keys.keyOf(B);if(J=="keydown"){var D=B-111;
84
+ if(D>0&&D<13){M="f"+D;}}M=M||String.fromCharCode(B).toLowerCase();}else{if(J.match(/(click|mouse|menu)/i)){K=(!K.compatMode||K.compatMode=="CSS1Compat")?K.html:K.body;
85
+ var I={x:A.pageX||A.clientX+K.scrollLeft,y:A.pageY||A.clientY+K.scrollTop};var C={x:(A.pageX)?A.pageX-F.pageXOffset:A.clientX,y:(A.pageY)?A.pageY-F.pageYOffset:A.clientY};
86
+ if(J.match(/DOMMouseScroll|mousewheel/)){var H=(A.wheelDelta)?A.wheelDelta/120:-(A.detail||0)/3;}var E=(A.which==3)||(A.button==2);var L=null;if(J.match(/over|out/)){switch(J){case"mouseover":L=A.relatedTarget||A.fromElement;
87
+ break;case"mouseout":L=A.relatedTarget||A.toElement;}if(!(function(){while(L&&L.nodeType==3){L=L.parentNode;}return true;}).create({attempt:Browser.Engine.gecko})()){L=false;
88
+ }}}}return $extend(this,{event:A,type:J,page:I,client:C,rightClick:E,wheel:H,relatedTarget:L,target:G,code:B,key:M,shift:A.shiftKey,control:A.ctrlKey,alt:A.altKey,meta:A.metaKey});
89
+ }});Event.Keys=new Hash({enter:13,up:38,down:40,left:37,right:39,esc:27,space:32,backspace:8,tab:9,"delete":46});Event.implement({stop:function(){return this.stopPropagation().preventDefault();
90
+ },stopPropagation:function(){if(this.event.stopPropagation){this.event.stopPropagation();}else{this.event.cancelBubble=true;}return this;},preventDefault:function(){if(this.event.preventDefault){this.event.preventDefault();
91
+ }else{this.event.returnValue=false;}return this;}});var Class=new Native({name:"Class",initialize:function(B){B=B||{};var A=function(){for(var E in this){if($type(this[E])!="function"){this[E]=$unlink(this[E]);
92
+ }}this.constructor=A;if(Class.prototyping){return this;}var D=(this.initialize)?this.initialize.apply(this,arguments):this;if(this.options&&this.options.initialize){this.options.initialize.call(this);
93
+ }return D;};for(var C in Class.Mutators){if(!B[C]){continue;}B=Class.Mutators[C](B,B[C]);delete B[C];}$extend(A,this);A.constructor=Class;A.prototype=B;
94
+ return A;}});Class.Mutators={Extends:function(C,A){Class.prototyping=A.prototype;var B=new A;delete B.parent;B=Class.inherit(B,C);delete Class.prototyping;
95
+ return B;},Implements:function(A,B){$splat(B).each(function(C){Class.prototying=C;$extend(A,($type(C)=="class")?new C:C);delete Class.prototyping;});return A;
96
+ }};Class.extend({inherit:function(B,E){var A=arguments.callee.caller;for(var D in E){var C=E[D];var G=B[D];var F=$type(C);if(G&&F=="function"){if(C!=G){if(A){C.__parent=G;
97
+ B[D]=C;}else{Class.override(B,D,C);}}}else{if(F=="object"){B[D]=$merge(G,C);}else{B[D]=C;}}}if(A){B.parent=function(){return arguments.callee.caller.__parent.apply(this,arguments);
98
+ };}return B;},override:function(B,A,E){var D=Class.prototyping;if(D&&B[A]!=D[A]){D=null;}var C=function(){var F=this.parent;this.parent=D?D[A]:B[A];var G=E.apply(this,arguments);
99
+ this.parent=F;return G;};B[A]=C;}});Class.implement({implement:function(){var A=this.prototype;$each(arguments,function(B){Class.inherit(A,B);});return this;
100
+ }});var Chain=new Class({$chain:[],chain:function(){this.$chain.extend(Array.flatten(arguments));return this;},callChain:function(){return(this.$chain.length)?this.$chain.shift().apply(this,arguments):false;
101
+ },clearChain:function(){this.$chain.empty();return this;}});var Events=new Class({$events:{},addEvent:function(C,B,A){C=Events.removeOn(C);if(B!=$empty){this.$events[C]=this.$events[C]||[];
102
+ this.$events[C].include(B);if(A){B.internal=true;}}return this;},addEvents:function(A){for(var B in A){this.addEvent(B,A[B]);}return this;},fireEvent:function(C,B,A){C=Events.removeOn(C);
103
+ if(!this.$events||!this.$events[C]){return this;}this.$events[C].each(function(D){D.create({bind:this,delay:A,"arguments":B})();},this);return this;},removeEvent:function(B,A){B=Events.removeOn(B);
104
+ if(!this.$events[B]){return this;}if(!A.internal){this.$events[B].erase(A);}return this;},removeEvents:function(C){if($type(C)=="object"){for(var D in C){this.removeEvent(D,C[D]);
105
+ }return this;}if(C){C=Events.removeOn(C);}for(var D in this.$events){if(C&&C!=D){continue;}var B=this.$events[D];for(var A=B.length;A--;A){this.removeEvent(D,B[A]);
106
+ }}return this;}});Events.removeOn=function(A){return A.replace(/^on([A-Z])/,function(B,C){return C.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));
107
+ if(!this.addEvent){return this;}for(var A in this.options){if($type(this.options[A])!="function"||!(/^on[A-Z]/).test(A)){continue;}this.addEvent(A,this.options[A]);
108
+ delete this.options[A];}return this;}});var Element=new Native({name:"Element",legacy:window.Element,initialize:function(A,B){var C=Element.Constructors.get(A);
109
+ if(C){return C(B);}if(typeof A=="string"){return document.newElement(A,B);}return $(A).set(B);},afterImplement:function(A,B){Element.Prototype[A]=B;if(Array[A]){return ;
110
+ }Elements.implement(A,function(){var C=[],G=true;for(var E=0,D=this.length;E<D;E++){var F=this[E][A].apply(this[E],arguments);C.push(F);if(G){G=($type(F)=="element");
111
+ }}return(G)?new Elements(C):C;});}});Element.Prototype={$family:{name:"element"}};Element.Constructors=new Hash;var IFrame=new Native({name:"IFrame",generics:false,initialize:function(){var E=Array.link(arguments,{properties:Object.type,iframe:$defined});
112
+ var C=E.properties||{};var B=$(E.iframe)||false;var D=C.onload||$empty;delete C.onload;C.id=C.name=$pick(C.id,C.name,B.id,B.name,"IFrame_"+$time());B=new Element(B||"iframe",C);
113
+ var A=function(){var F=$try(function(){return B.contentWindow.location.host;});if(F&&F==window.location.host){var G=new Window(B.contentWindow);new Document(B.contentWindow.document);
114
+ $extend(G.Element.prototype,Element.Prototype);}D.call(B.contentWindow,B.contentWindow.document);};(window.frames[C.id])?A():B.addListener("load",A);return B;
115
+ }});var Elements=new Native({initialize:function(F,B){B=$extend({ddup:true,cash:true},B);F=F||[];if(B.ddup||B.cash){var G={},E=[];for(var C=0,A=F.length;
116
+ C<A;C++){var D=$.element(F[C],!B.cash);if(B.ddup){if(G[D.uid]){continue;}G[D.uid]=true;}E.push(D);}F=E;}return(B.cash)?$extend(F,this):F;}});Elements.implement({filter:function(A,B){if(!A){return this;
117
+ }return new Elements(Array.filter(this,(typeof A=="string")?function(C){return C.match(A);}:A,B));}});Document.implement({newElement:function(A,B){if(Browser.Engine.trident&&B){["name","type","checked"].each(function(C){if(!B[C]){return ;
118
+ }A+=" "+C+'="'+B[C]+'"';if(C!="checked"){delete B[C];}});A="<"+A+">";}return $.element(this.createElement(A)).set(B);},newTextNode:function(A){return this.createTextNode(A);
119
+ },getDocument:function(){return this;},getWindow:function(){return this.window;}});Window.implement({$:function(B,C){if(B&&B.$family&&B.uid){return B;}var A=$type(B);
120
+ return($[A])?$[A](B,C,this.document):null;},$$:function(A){if(arguments.length==1&&typeof A=="string"){return this.document.getElements(A);}var F=[];var C=Array.flatten(arguments);
121
+ for(var D=0,B=C.length;D<B;D++){var E=C[D];switch($type(E)){case"element":F.push(E);break;case"string":F.extend(this.document.getElements(E,true));}}return new Elements(F);
122
+ },getDocument:function(){return this.document;},getWindow:function(){return this;}});$.string=function(C,B,A){C=A.getElementById(C);return(C)?$.element(C,B):null;
123
+ };$.element=function(A,D){$uid(A);if(!D&&!A.$family&&!(/^object|embed$/i).test(A.tagName)){var B=Element.Prototype;for(var C in B){A[C]=B[C];}}return A;
124
+ };$.object=function(B,C,A){if(B.toElement){return $.element(B.toElement(A),C);}return null;};$.textnode=$.whitespace=$.window=$.document=$arguments(0);
125
+ Native.implement([Element,Document],{getElement:function(A,B){return $(this.getElements(A,true)[0]||null,B);},getElements:function(A,D){A=A.split(",");
126
+ var C=[];var B=(A.length>1);A.each(function(E){var F=this.getElementsByTagName(E.trim());(B)?C.extend(F):C=F;},this);return new Elements(C,{ddup:B,cash:!D});
127
+ }});(function(){var H={},F={};var I={input:"checked",option:"selected",textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerHTML":"value"};
128
+ var C=function(L){return(F[L]||(F[L]={}));};var G=function(N,L){if(!N){return ;}var M=N.uid;if(Browser.Engine.trident){if(N.clearAttributes){var P=L&&N.cloneNode(false);
129
+ N.clearAttributes();if(P){N.mergeAttributes(P);}}else{if(N.removeEvents){N.removeEvents();}}if((/object/i).test(N.tagName)){for(var O in N){if(typeof N[O]=="function"){N[O]=$empty;
130
+ }}Element.dispose(N);}}if(!M){return ;}H[M]=F[M]=null;};var D=function(){Hash.each(H,G);if(Browser.Engine.trident){$A(document.getElementsByTagName("object")).each(G);
131
+ }if(window.CollectGarbage){CollectGarbage();}H=F=null;};var J=function(N,L,S,M,P,R){var O=N[S||L];var Q=[];while(O){if(O.nodeType==1&&(!M||Element.match(O,M))){if(!P){return $(O,R);
132
+ }Q.push(O);}O=O[L];}return(P)?new Elements(Q,{ddup:false,cash:!R}):null;};var E={html:"innerHTML","class":"className","for":"htmlFor",text:(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?"innerText":"textContent"};
133
+ var B=["compact","nowrap","ismap","declare","noshade","checked","disabled","readonly","multiple","selected","noresize","defer"];var K=["value","accessKey","cellPadding","cellSpacing","colSpan","frameBorder","maxLength","readOnly","rowSpan","tabIndex","useMap"];
134
+ Hash.extend(E,B.associate(B));Hash.extend(E,K.associate(K.map(String.toLowerCase)));var A={before:function(M,L){if(L.parentNode){L.parentNode.insertBefore(M,L);
135
+ }},after:function(M,L){if(!L.parentNode){return ;}var N=L.nextSibling;(N)?L.parentNode.insertBefore(M,N):L.parentNode.appendChild(M);},bottom:function(M,L){L.appendChild(M);
136
+ },top:function(M,L){var N=L.firstChild;(N)?L.insertBefore(M,N):L.appendChild(M);}};A.inside=A.bottom;Hash.each(A,function(L,M){M=M.capitalize();Element.implement("inject"+M,function(N){L(this,$(N,true));
137
+ return this;});Element.implement("grab"+M,function(N){L($(N,true),this);return this;});});Element.implement({set:function(O,M){switch($type(O)){case"object":for(var N in O){this.set(N,O[N]);
138
+ }break;case"string":var L=Element.Properties.get(O);(L&&L.set)?L.set.apply(this,Array.slice(arguments,1)):this.setProperty(O,M);}return this;},get:function(M){var L=Element.Properties.get(M);
139
+ return(L&&L.get)?L.get.apply(this,Array.slice(arguments,1)):this.getProperty(M);},erase:function(M){var L=Element.Properties.get(M);(L&&L.erase)?L.erase.apply(this):this.removeProperty(M);
140
+ return this;},setProperty:function(M,N){var L=E[M];if(N==undefined){return this.removeProperty(M);}if(L&&B[M]){N=!!N;}(L)?this[L]=N:this.setAttribute(M,""+N);
141
+ return this;},setProperties:function(L){for(var M in L){this.setProperty(M,L[M]);}return this;},getProperty:function(M){var L=E[M];var N=(L)?this[L]:this.getAttribute(M,2);
142
+ return(B[M])?!!N:(L)?N:N||null;},getProperties:function(){var L=$A(arguments);return L.map(this.getProperty,this).associate(L);},removeProperty:function(M){var L=E[M];
143
+ (L)?this[L]=(L&&B[M])?false:"":this.removeAttribute(M);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;
144
+ },hasClass:function(L){return this.className.contains(L," ");},addClass:function(L){if(!this.hasClass(L)){this.className=(this.className+" "+L).clean();
145
+ }return this;},removeClass:function(L){this.className=this.className.replace(new RegExp("(^|\\s)"+L+"(?:\\s|$)"),"$1");return this;},toggleClass:function(L){return this.hasClass(L)?this.removeClass(L):this.addClass(L);
146
+ },adopt:function(){Array.flatten(arguments).each(function(L){L=$(L,true);if(L){this.appendChild(L);}},this);return this;},appendText:function(M,L){return this.grab(this.getDocument().newTextNode(M),L);
147
+ },grab:function(M,L){A[L||"bottom"]($(M,true),this);return this;},inject:function(M,L){A[L||"bottom"](this,$(M,true));return this;},replaces:function(L){L=$(L,true);
148
+ L.parentNode.replaceChild(this,L);return this;},wraps:function(M,L){M=$(M,true);return this.replaces(M).grab(M,L);},getPrevious:function(L,M){return J(this,"previousSibling",null,L,false,M);
149
+ },getAllPrevious:function(L,M){return J(this,"previousSibling",null,L,true,M);},getNext:function(L,M){return J(this,"nextSibling",null,L,false,M);},getAllNext:function(L,M){return J(this,"nextSibling",null,L,true,M);
150
+ },getFirst:function(L,M){return J(this,"nextSibling","firstChild",L,false,M);},getLast:function(L,M){return J(this,"previousSibling","lastChild",L,false,M);
151
+ },getParent:function(L,M){return J(this,"parentNode",null,L,false,M);},getParents:function(L,M){return J(this,"parentNode",null,L,true,M);},getChildren:function(L,M){return J(this,"nextSibling","firstChild",L,true,M);
152
+ },getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;},getElementById:function(O,N){var M=this.ownerDocument.getElementById(O);
153
+ if(!M){return null;}for(var L=M.parentNode;L!=this;L=L.parentNode){if(!L){return null;}}return $.element(M,N);},getSelected:function(){return new Elements($A(this.options).filter(function(L){return L.selected;
154
+ }));},getComputedStyle:function(M){if(this.currentStyle){return this.currentStyle[M.camelCase()];}var L=this.getDocument().defaultView.getComputedStyle(this,null);
155
+ return(L)?L.getPropertyValue([M.hyphenate()]):null;},toQueryString:function(){var L=[];this.getElements("input, select, textarea",true).each(function(M){if(!M.name||M.disabled){return ;
156
+ }var N=(M.tagName.toLowerCase()=="select")?Element.getSelected(M).map(function(O){return O.value;}):((M.type=="radio"||M.type=="checkbox")&&!M.checked)?null:M.value;
157
+ $splat(N).each(function(O){if(typeof O!="undefined"){L.push(M.name+"="+encodeURIComponent(O));}});});return L.join("&");},clone:function(O,L){O=O!==false;
158
+ var R=this.cloneNode(O);var N=function(V,U){if(!L){V.removeAttribute("id");}if(Browser.Engine.trident){V.clearAttributes();V.mergeAttributes(U);V.removeAttribute("uid");
159
+ if(V.options){var W=V.options,S=U.options;for(var T=W.length;T--;){W[T].selected=S[T].selected;}}}var X=I[U.tagName.toLowerCase()];if(X&&U[X]){V[X]=U[X];
160
+ }};if(O){var P=R.getElementsByTagName("*"),Q=this.getElementsByTagName("*");for(var M=P.length;M--;){N(P[M],Q[M]);}}N(R,this);return $(R);},destroy:function(){Element.empty(this);
161
+ Element.dispose(this);G(this,true);return null;},empty:function(){$A(this.childNodes).each(function(L){Element.destroy(L);});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;
162
+ },hasChild:function(L){L=$(L,true);if(!L){return false;}if(Browser.Engine.webkit&&Browser.Engine.version<420){return $A(this.getElementsByTagName(L.tagName)).contains(L);
163
+ }return(this.contains)?(this!=L&&this.contains(L)):!!(this.compareDocumentPosition(L)&16);},match:function(L){return(!L||(L==this)||(Element.get(this,"tag")==L));
164
+ }});Native.implement([Element,Window,Document],{addListener:function(O,N){if(O=="unload"){var L=N,M=this;N=function(){M.removeListener("unload",N);L();
165
+ };}else{H[this.uid]=this;}if(this.addEventListener){this.addEventListener(O,N,false);}else{this.attachEvent("on"+O,N);}return this;},removeListener:function(M,L){if(this.removeEventListener){this.removeEventListener(M,L,false);
166
+ }else{this.detachEvent("on"+M,L);}return this;},retrieve:function(M,L){var O=C(this.uid),N=O[M];if(L!=undefined&&N==undefined){N=O[M]=L;}return $pick(N);
167
+ },store:function(M,L){var N=C(this.uid);N[M]=L;return this;},eliminate:function(L){var M=C(this.uid);delete M[L];return this;}});window.addListener("unload",D);
168
+ })();Element.Properties=new Hash;Element.Properties.style={set:function(A){this.style.cssText=A;},get:function(){return this.style.cssText;},erase:function(){this.style.cssText="";
169
+ }};Element.Properties.tag={get:function(){return this.tagName.toLowerCase();}};Element.Properties.html=(function(){var C=document.createElement("div");
170
+ var A={table:[1,"<table>","</table>"],select:[1,"<select>","</select>"],tbody:[2,"<table><tbody>","</tbody></table>"],tr:[3,"<table><tbody><tr>","</tr></tbody></table>"]};
171
+ A.thead=A.tfoot=A.tbody;var B={set:function(){var E=Array.flatten(arguments).join("");var F=Browser.Engine.trident&&A[this.get("tag")];if(F){var G=C;G.innerHTML=F[1]+E+F[2];
172
+ for(var D=F[0];D--;){G=G.firstChild;}this.empty().adopt(G.childNodes);}else{this.innerHTML=E;}}};B.erase=B.set;return B;})();if(Browser.Engine.webkit&&Browser.Engine.version<420){Element.Properties.text={get:function(){if(this.innerText){return this.innerText;
173
+ }var A=this.ownerDocument.newElement("div",{html:this.innerHTML}).inject(this.ownerDocument.body);var B=A.innerText;A.destroy();return B;}};}Element.Properties.events={set:function(A){this.addEvents(A);
174
+ }};Native.implement([Element,Window,Document],{addEvent:function(E,G){var H=this.retrieve("events",{});H[E]=H[E]||{keys:[],values:[]};if(H[E].keys.contains(G)){return this;
175
+ }H[E].keys.push(G);var F=E,A=Element.Events.get(E),C=G,I=this;if(A){if(A.onAdd){A.onAdd.call(this,G);}if(A.condition){C=function(J){if(A.condition.call(this,J)){return G.call(this,J);
176
+ }return true;};}F=A.base||F;}var D=function(){return G.call(I);};var B=Element.NativeEvents[F];if(B){if(B==2){D=function(J){J=new Event(J,I.getWindow());
177
+ if(C.call(I,J)===false){J.stop();}};}this.addListener(F,D);}H[E].values.push(D);return this;},removeEvent:function(C,B){var A=this.retrieve("events");if(!A||!A[C]){return this;
178
+ }var F=A[C].keys.indexOf(B);if(F==-1){return this;}A[C].keys.splice(F,1);var E=A[C].values.splice(F,1)[0];var D=Element.Events.get(C);if(D){if(D.onRemove){D.onRemove.call(this,B);
179
+ }C=D.base||C;}return(Element.NativeEvents[C])?this.removeListener(C,E):this;},addEvents:function(A){for(var B in A){this.addEvent(B,A[B]);}return this;
180
+ },removeEvents:function(A){if($type(A)=="object"){for(var C in A){this.removeEvent(C,A[C]);}return this;}var B=this.retrieve("events");if(!B){return this;
181
+ }if(!A){for(var C in B){this.removeEvents(C);}this.eliminate("events");}else{if(B[A]){while(B[A].keys[0]){this.removeEvent(A,B[A].keys[0]);}B[A]=null;}}return this;
182
+ },fireEvent:function(D,B,A){var C=this.retrieve("events");if(!C||!C[D]){return this;}C[D].keys.each(function(E){E.create({bind:this,delay:A,"arguments":B})();
183
+ },this);return this;},cloneEvents:function(D,A){D=$(D);var C=D.retrieve("events");if(!C){return this;}if(!A){for(var B in C){this.cloneEvents(D,B);}}else{if(C[A]){C[A].keys.each(function(E){this.addEvent(A,E);
184
+ },this);}}return this;}});Element.NativeEvents={click:2,dblclick:2,mouseup:2,mousedown:2,contextmenu:2,mousewheel:2,DOMMouseScroll:2,mouseover:2,mouseout:2,mousemove:2,selectstart:2,selectend:2,keydown:2,keypress:2,keyup:2,focus:2,blur:2,change:2,reset:2,select:2,submit:2,load:1,unload:1,beforeunload:2,resize:1,move:1,DOMContentLoaded:1,readystatechange:1,error:1,abort:1,scroll:1};
185
+ (function(){var A=function(B){var C=B.relatedTarget;if(C==undefined){return true;}if(C===false){return false;}return($type(this)!="document"&&C!=this&&C.prefix!="xul"&&!this.hasChild(C));
186
+ };Element.Events=new Hash({mouseenter:{base:"mouseover",condition:A},mouseleave:{base:"mouseout",condition:A},mousewheel:{base:(Browser.Engine.gecko)?"DOMMouseScroll":"mousewheel"}});
187
+ })();Element.Properties.styles={set:function(A){this.setStyles(A);}};Element.Properties.opacity={set:function(A,B){if(!B){if(A==0){if(this.style.visibility!="hidden"){this.style.visibility="hidden";
188
+ }}else{if(this.style.visibility!="visible"){this.style.visibility="visible";}}}if(!this.currentStyle||!this.currentStyle.hasLayout){this.style.zoom=1;}if(Browser.Engine.trident){this.style.filter=(A==1)?"":"alpha(opacity="+A*100+")";
189
+ }this.style.opacity=A;this.store("opacity",A);},get:function(){return this.retrieve("opacity",1);}};Element.implement({setOpacity:function(A){return this.set("opacity",A,true);
190
+ },getOpacity:function(){return this.get("opacity");},setStyle:function(B,A){switch(B){case"opacity":return this.set("opacity",parseFloat(A));case"float":B=(Browser.Engine.trident)?"styleFloat":"cssFloat";
191
+ }B=B.camelCase();if($type(A)!="string"){var C=(Element.Styles.get(B)||"@").split(" ");A=$splat(A).map(function(E,D){if(!C[D]){return"";}return($type(E)=="number")?C[D].replace("@",Math.round(E)):E;
192
+ }).join(" ");}else{if(A==String(Number(A))){A=Math.round(A);}}this.style[B]=A;return this;},getStyle:function(G){switch(G){case"opacity":return this.get("opacity");
193
+ case"float":G=(Browser.Engine.trident)?"styleFloat":"cssFloat";}G=G.camelCase();var A=this.style[G];if(!$chk(A)){A=[];for(var F in Element.ShortStyles){if(G!=F){continue;
194
+ }for(var E in Element.ShortStyles[F]){A.push(this.getStyle(E));}return A.join(" ");}A=this.getComputedStyle(G);}if(A){A=String(A);var C=A.match(/rgba?\([\d\s,]+\)/);
195
+ if(C){A=A.replace(C[0],C[0].rgbToHex());}}if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(A)))){if(G.test(/^(height|width)$/)){var B=(G=="width")?["left","right"]:["top","bottom"],D=0;
196
+ B.each(function(H){D+=this.getStyle("border-"+H+"-width").toInt()+this.getStyle("padding-"+H).toInt();},this);return this["offset"+G.capitalize()]-D+"px";
197
+ }if((Browser.Engine.presto)&&String(A).test("px")){return A;}if(G.test(/(border(.+)Width|margin|padding)/)){return"0px";}}return A;},setStyles:function(B){for(var A in B){this.setStyle(A,B[A]);
198
+ }return this;},getStyles:function(){var A={};Array.each(arguments,function(B){A[B]=this.getStyle(B);},this);return A;}});Element.Styles=new Hash({left:"@px",top:"@px",bottom:"@px",right:"@px",width:"@px",height:"@px",maxWidth:"@px",maxHeight:"@px",minWidth:"@px",minHeight:"@px",backgroundColor:"rgb(@, @, @)",backgroundPosition:"@px @px",color:"rgb(@, @, @)",fontSize:"@px",letterSpacing:"@px",lineHeight:"@px",clip:"rect(@px @px @px @px)",margin:"@px @px @px @px",padding:"@px @px @px @px",border:"@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)",borderWidth:"@px @px @px @px",borderStyle:"@ @ @ @",borderColor:"rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)",zIndex:"@",zoom:"@",fontWeight:"@",textIndent:"@px",opacity:"@"});
199
+ Element.ShortStyles={margin:{},padding:{},border:{},borderWidth:{},borderStyle:{},borderColor:{}};["Top","Right","Bottom","Left"].each(function(G){var F=Element.ShortStyles;
200
+ var B=Element.Styles;["margin","padding"].each(function(H){var I=H+G;F[H][I]=B[I]="@px";});var E="border"+G;F.border[E]=B[E]="@px @ rgb(@, @, @)";var D=E+"Width",A=E+"Style",C=E+"Color";
201
+ F[E]={};F.borderWidth[D]=F[E][D]=B[D]="@px";F.borderStyle[A]=F[E][A]=B[A]="@";F.borderColor[C]=F[E][C]=B[C]="rgb(@, @, @)";});(function(){Element.implement({scrollTo:function(H,I){if(B(this)){this.getWindow().scrollTo(H,I);
202
+ }else{this.scrollLeft=H;this.scrollTop=I;}return this;},getSize:function(){if(B(this)){return this.getWindow().getSize();}return{x:this.offsetWidth,y:this.offsetHeight};
203
+ },getScrollSize:function(){if(B(this)){return this.getWindow().getScrollSize();}return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(B(this)){return this.getWindow().getScroll();
204
+ }return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var I=this,H={x:0,y:0};while(I&&!B(I)){H.x+=I.scrollLeft;H.y+=I.scrollTop;I=I.parentNode;
205
+ }return H;},getOffsetParent:function(){var H=this;if(B(H)){return null;}if(!Browser.Engine.trident){return H.offsetParent;}while((H=H.parentNode)&&!B(H)){if(D(H,"position")!="static"){return H;
206
+ }}return null;},getOffsets:function(){if(Browser.Engine.trident){var L=this.getBoundingClientRect(),J=this.getDocument().documentElement;return{x:L.left+J.scrollLeft-J.clientLeft,y:L.top+J.scrollTop-J.clientTop};
207
+ }var I=this,H={x:0,y:0};if(B(this)){return H;}while(I&&!B(I)){H.x+=I.offsetLeft;H.y+=I.offsetTop;if(Browser.Engine.gecko){if(!F(I)){H.x+=C(I);H.y+=G(I);
208
+ }var K=I.parentNode;if(K&&D(K,"overflow")!="visible"){H.x+=C(K);H.y+=G(K);}}else{if(I!=this&&Browser.Engine.webkit){H.x+=C(I);H.y+=G(I);}}I=I.offsetParent;
209
+ }if(Browser.Engine.gecko&&!F(this)){H.x-=C(this);H.y-=G(this);}return H;},getPosition:function(K){if(B(this)){return{x:0,y:0};}var L=this.getOffsets(),I=this.getScrolls();
210
+ var H={x:L.x-I.x,y:L.y-I.y};var J=(K&&(K=$(K)))?K.getPosition():{x:0,y:0};return{x:H.x-J.x,y:H.y-J.y};},getCoordinates:function(J){if(B(this)){return this.getWindow().getCoordinates();
211
+ }var H=this.getPosition(J),I=this.getSize();var K={left:H.x,top:H.y,width:I.x,height:I.y};K.right=K.left+K.width;K.bottom=K.top+K.height;return K;},computePosition:function(H){return{left:H.x-E(this,"margin-left"),top:H.y-E(this,"margin-top")};
212
+ },position:function(H){return this.setStyles(this.computePosition(H));}});Native.implement([Document,Window],{getSize:function(){var I=this.getWindow();
213
+ if(Browser.Engine.presto||Browser.Engine.webkit){return{x:I.innerWidth,y:I.innerHeight};}var H=A(this);return{x:H.clientWidth,y:H.clientHeight};},getScroll:function(){var I=this.getWindow();
214
+ var H=A(this);return{x:I.pageXOffset||H.scrollLeft,y:I.pageYOffset||H.scrollTop};},getScrollSize:function(){var I=A(this);var H=this.getSize();return{x:Math.max(I.scrollWidth,H.x),y:Math.max(I.scrollHeight,H.y)};
215
+ },getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var H=this.getSize();return{top:0,left:0,bottom:H.y,right:H.x,height:H.y,width:H.x};
216
+ }});var D=Element.getComputedStyle;function E(H,I){return D(H,I).toInt()||0;}function F(H){return D(H,"-moz-box-sizing")=="border-box";}function G(H){return E(H,"border-top-width");
217
+ }function C(H){return E(H,"border-left-width");}function B(H){return(/^(?:body|html)$/i).test(H.tagName);}function A(H){var I=H.getDocument();return(!I.compatMode||I.compatMode=="CSS1Compat")?I.html:I.body;
218
+ }})();Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;},getScrollTop:function(){return this.getScroll().y;
219
+ },getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;},getScrollWidth:function(){return this.getScrollSize().x;
220
+ },getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});Native.implement([Document,Element],{getElements:function(H,G){H=H.split(",");
221
+ var C,E={};for(var D=0,B=H.length;D<B;D++){var A=H[D],F=Selectors.Utils.search(this,A,E);if(D!=0&&F.item){F=$A(F);}C=(D==0)?F:(C.item)?$A(C).concat(F):C.concat(F);
222
+ }return new Elements(C,{ddup:(H.length>1),cash:!G});}});Element.implement({match:function(B){if(!B||(B==this)){return true;}var D=Selectors.Utils.parseTagAndID(B);
223
+ var A=D[0],E=D[1];if(!Selectors.Filters.byID(this,E)||!Selectors.Filters.byTag(this,A)){return false;}var C=Selectors.Utils.parseSelector(B);return(C)?Selectors.Utils.filter(this,C,{}):true;
224
+ }});var Selectors={Cache:{nth:{},parsed:{}}};Selectors.RegExps={id:(/#([\w-]+)/),tag:(/^(\w+|\*)/),quick:(/^(\w+|\*)$/),splitter:(/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),combined:(/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)};
225
+ Selectors.Utils={chk:function(B,C){if(!C){return true;}var A=$uid(B);if(!C[A]){return C[A]=true;}return false;},parseNthArgument:function(F){if(Selectors.Cache.nth[F]){return Selectors.Cache.nth[F];
226
+ }var C=F.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!C){return false;}var E=parseInt(C[1]);var B=(E||E===0)?E:1;var D=C[2]||false;var A=parseInt(C[3])||0;
227
+ if(B!=0){A--;while(A<1){A+=B;}while(A>=B){A-=B;}}else{B=A;D="index";}switch(D){case"n":C={a:B,b:A,special:"n"};break;case"odd":C={a:2,b:0,special:"n"};
228
+ break;case"even":C={a:2,b:1,special:"n"};break;case"first":C={a:0,special:"index"};break;case"last":C={special:"last-child"};break;case"only":C={special:"only-child"};
229
+ break;default:C={a:(B-1),special:"index"};}return Selectors.Cache.nth[F]=C;},parseSelector:function(E){if(Selectors.Cache.parsed[E]){return Selectors.Cache.parsed[E];
230
+ }var D,H={classes:[],pseudos:[],attributes:[]};while((D=Selectors.RegExps.combined.exec(E))){var I=D[1],G=D[2],F=D[3],B=D[5],C=D[6],J=D[7];if(I){H.classes.push(I);
231
+ }else{if(C){var A=Selectors.Pseudo.get(C);if(A){H.pseudos.push({parser:A,argument:J});}else{H.attributes.push({name:C,operator:"=",value:J});}}else{if(G){H.attributes.push({name:G,operator:F,value:B});
232
+ }}}}if(!H.classes.length){delete H.classes;}if(!H.attributes.length){delete H.attributes;}if(!H.pseudos.length){delete H.pseudos;}if(!H.classes&&!H.attributes&&!H.pseudos){H=null;
233
+ }return Selectors.Cache.parsed[E]=H;},parseTagAndID:function(B){var A=B.match(Selectors.RegExps.tag);var C=B.match(Selectors.RegExps.id);return[(A)?A[1]:"*",(C)?C[1]:false];
234
+ },filter:function(F,C,E){var D;if(C.classes){for(D=C.classes.length;D--;D){var G=C.classes[D];if(!Selectors.Filters.byClass(F,G)){return false;}}}if(C.attributes){for(D=C.attributes.length;
235
+ D--;D){var B=C.attributes[D];if(!Selectors.Filters.byAttribute(F,B.name,B.operator,B.value)){return false;}}}if(C.pseudos){for(D=C.pseudos.length;D--;D){var A=C.pseudos[D];
236
+ if(!Selectors.Filters.byPseudo(F,A.parser,A.argument,E)){return false;}}}return true;},getByTagAndID:function(B,A,D){if(D){var C=(B.getElementById)?B.getElementById(D,true):Element.getElementById(B,D,true);
237
+ return(C&&Selectors.Filters.byTag(C,A))?[C]:[];}else{return B.getElementsByTagName(A);}},search:function(I,H,N){var B=[];var C=H.trim().replace(Selectors.RegExps.splitter,function(Y,X,W){B.push(X);
238
+ return":)"+W;}).split(":)");var J,E,U;for(var T=0,P=C.length;T<P;T++){var S=C[T];if(T==0&&Selectors.RegExps.quick.test(S)){J=I.getElementsByTagName(S);
239
+ continue;}var A=B[T-1];var K=Selectors.Utils.parseTagAndID(S);var V=K[0],L=K[1];if(T==0){J=Selectors.Utils.getByTagAndID(I,V,L);}else{var D={},G=[];for(var R=0,Q=J.length;
240
+ R<Q;R++){G=Selectors.Getters[A](G,J[R],V,L,D);}J=G;}var F=Selectors.Utils.parseSelector(S);if(F){E=[];for(var O=0,M=J.length;O<M;O++){U=J[O];if(Selectors.Utils.filter(U,F,N)){E.push(U);
241
+ }}J=E;}}return J;}};Selectors.Getters={" ":function(H,G,I,A,E){var D=Selectors.Utils.getByTagAndID(G,I,A);for(var C=0,B=D.length;C<B;C++){var F=D[C];if(Selectors.Utils.chk(F,E)){H.push(F);
242
+ }}return H;},">":function(H,G,I,A,F){var C=Selectors.Utils.getByTagAndID(G,I,A);for(var E=0,D=C.length;E<D;E++){var B=C[E];if(B.parentNode==G&&Selectors.Utils.chk(B,F)){H.push(B);
243
+ }}return H;},"+":function(C,B,A,E,D){while((B=B.nextSibling)){if(B.nodeType==1){if(Selectors.Utils.chk(B,D)&&Selectors.Filters.byTag(B,A)&&Selectors.Filters.byID(B,E)){C.push(B);
244
+ }break;}}return C;},"~":function(C,B,A,E,D){while((B=B.nextSibling)){if(B.nodeType==1){if(!Selectors.Utils.chk(B,D)){break;}if(Selectors.Filters.byTag(B,A)&&Selectors.Filters.byID(B,E)){C.push(B);
245
+ }}}return C;}};Selectors.Filters={byTag:function(B,A){return(A=="*"||(B.tagName&&B.tagName.toLowerCase()==A));},byID:function(A,B){return(!B||(A.id&&A.id==B));
246
+ },byClass:function(B,A){return(B.className&&B.className.contains(A," "));},byPseudo:function(A,D,C,B){return D.call(A,C,B);},byAttribute:function(C,D,B,E){var A=Element.prototype.getProperty.call(C,D);
247
+ if(!A){return(B=="!=");}if(!B||E==undefined){return true;}switch(B){case"=":return(A==E);case"*=":return(A.contains(E));case"^=":return(A.substr(0,E.length)==E);
248
+ case"$=":return(A.substr(A.length-E.length)==E);case"!=":return(A!=E);case"~=":return A.contains(E," ");case"|=":return A.contains(E,"-");}return false;
249
+ }};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return !(this.innerText||this.textContent||"").length;},not:function(A){return !Element.match(this,A);
250
+ },contains:function(A){return(this.innerText||this.textContent||"").contains(A);},"first-child":function(){return Selectors.Pseudo.index.call(this,0);},"last-child":function(){var A=this;
251
+ while((A=A.nextSibling)){if(A.nodeType==1){return false;}}return true;},"only-child":function(){var B=this;while((B=B.previousSibling)){if(B.nodeType==1){return false;
252
+ }}var A=this;while((A=A.nextSibling)){if(A.nodeType==1){return false;}}return true;},"nth-child":function(G,E){G=(G==undefined)?"n":G;var C=Selectors.Utils.parseNthArgument(G);
253
+ if(C.special!="n"){return Selectors.Pseudo[C.special].call(this,C.a,E);}var F=0;E.positions=E.positions||{};var D=$uid(this);if(!E.positions[D]){var B=this;
254
+ while((B=B.previousSibling)){if(B.nodeType!=1){continue;}F++;var A=E.positions[$uid(B)];if(A!=undefined){F=A+F;break;}}E.positions[D]=F;}return(E.positions[D]%C.a==C.b);
255
+ },index:function(A){var B=this,C=0;while((B=B.previousSibling)){if(B.nodeType==1&&++C>A){return false;}}return(C==A);},even:function(B,A){return Selectors.Pseudo["nth-child"].call(this,"2n+1",A);
256
+ },odd:function(B,A){return Selectors.Pseudo["nth-child"].call(this,"2n",A);}});Element.Events.domready={onAdd:function(A){if(Browser.loaded){A.call(this);
257
+ }}};(function(){var B=function(){if(Browser.loaded){return ;}Browser.loaded=true;window.fireEvent("domready");document.fireEvent("domready");};if(Browser.Engine.trident){var A=document.createElement("div");
258
+ (function(){($try(function(){A.doScroll("left");return $(A).inject(document.body).set("html","temp").dispose();}))?B():arguments.callee.delay(50);})();
259
+ }else{if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(["loaded","complete"].contains(document.readyState))?B():arguments.callee.delay(50);
260
+ })();}else{window.addEvent("load",B);document.addEvent("DOMContentLoaded",B);}}})();var JSON=new Hash({$specialChars:{"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},$replaceChars:function(A){return JSON.$specialChars[A]||"\\u00"+Math.floor(A.charCodeAt()/16).toString(16)+(A.charCodeAt()%16).toString(16);
261
+ },encode:function(B){switch($type(B)){case"string":return'"'+B.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case"array":return"["+String(B.map(JSON.encode).filter($defined))+"]";
262
+ case"object":case"hash":var A=[];Hash.each(B,function(E,D){var C=JSON.encode(E);if(C){A.push(JSON.encode(D)+":"+C);}});return"{"+A+"}";case"number":case"boolean":return String(B);
263
+ case false:return"null";}return null;},decode:function(string,secure){if($type(string)!="string"||!string.length){return null;}if(secure&&!(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"/g,""))){return null;
264
+ }return eval("("+string+")");}});Native.implement([Hash,Array,String,Number],{toJSON:function(){return JSON.encode(this);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(B,A){this.key=B;
265
+ this.setOptions(A);},write:function(B){B=encodeURIComponent(B);if(this.options.domain){B+="; domain="+this.options.domain;}if(this.options.path){B+="; path="+this.options.path;
266
+ }if(this.options.duration){var A=new Date();A.setTime(A.getTime()+this.options.duration*24*60*60*1000);B+="; expires="+A.toGMTString();}if(this.options.secure){B+="; secure";
267
+ }this.options.document.cookie=this.key+"="+B;return this;},read:function(){var A=this.options.document.cookie.match("(?:^|;)\\s*"+this.key.escapeRegExp()+"=([^;]*)");
268
+ return(A)?decodeURIComponent(A[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write("");return this;}});Cookie.write=function(B,C,A){return new Cookie(B,A).write(C);
269
+ };Cookie.read=function(A){return new Cookie(A).read();};Cookie.dispose=function(B,A){return new Cookie(B,A).dispose();};var Swiff=new Class({Implements:[Options],options:{id:null,height:1,width:1,container:null,properties:{},params:{quality:"high",allowScriptAccess:"always",wMode:"transparent",swLiveConnect:true},callBacks:{},vars:{}},toElement:function(){return this.object;
270
+ },initialize:function(L,M){this.instance="Swiff_"+$time();this.setOptions(M);M=this.options;var B=this.id=M.id||this.instance;var A=$(M.container);Swiff.CallBacks[this.instance]={};
271
+ var E=M.params,G=M.vars,F=M.callBacks;var H=$extend({height:M.height,width:M.width},M.properties);var K=this;for(var D in F){Swiff.CallBacks[this.instance][D]=(function(N){return function(){return N.apply(K.object,arguments);
272
+ };})(F[D]);G[D]="Swiff.CallBacks."+this.instance+"."+D;}E.flashVars=Hash.toQueryString(G);if(Browser.Engine.trident){H.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";
273
+ E.movie=L;}else{H.type="application/x-shockwave-flash";H.data=L;}var J='<object id="'+B+'"';for(var I in H){J+=" "+I+'="'+H[I]+'"';}J+=">";for(var C in E){if(E[C]){J+='<param name="'+C+'" value="'+E[C]+'" />';
274
+ }}J+="</object>";this.object=((A)?A.empty():new Element("div")).set("html",J).firstChild;},replaces:function(A){A=$(A,true);A.parentNode.replaceChild(this.toElement(),A);
275
+ return this;},inject:function(A){$(A,true).appendChild(this.toElement());return this;},remote:function(){return Swiff.remote.apply(Swiff,[this.toElement()].extend(arguments));
276
+ }});Swiff.CallBacks={};Swiff.remote=function(obj,fn){var rs=obj.CallFunction('<invoke name="'+fn+'" returntype="javascript">'+__flash__argumentsToXML(arguments,2)+"</invoke>");
277
+ return eval(rs);};var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore"},initialize:function(A){this.subject=this.subject||this;
278
+ this.setOptions(A);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var B=this.options.wait;if(B===false){this.options.link="cancel";
279
+ }},getTransition:function(){return function(A){return -(Math.cos(Math.PI*A)-1)/2;};},step:function(){var A=$time();if(A<this.time+this.options.duration){var B=this.transition((A-this.time)/this.options.duration);
280
+ this.set(this.compute(this.from,this.to,B));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(A){return A;},compute:function(C,B,A){return Fx.compute(C,B,A);
281
+ },check:function(A){if(!this.timer){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(A.bind(this,Array.slice(arguments,1)));
282
+ return false;}return false;},start:function(B,A){if(!this.check(arguments.callee,B,A)){return this;}this.from=B;this.to=A;this.time=0;this.transition=this.getTransition();
283
+ this.startTimer();this.onStart();return this;},complete:function(){if(this.stopTimer()){this.onComplete();}return this;},cancel:function(){if(this.stopTimer()){this.onCancel();
284
+ }return this;},onStart:function(){this.fireEvent("start",this.subject);},onComplete:function(){this.fireEvent("complete",this.subject);if(!this.callChain()){this.fireEvent("chainComplete",this.subject);
285
+ }},onCancel:function(){this.fireEvent("cancel",this.subject).clearChain();},pause:function(){this.stopTimer();return this;},resume:function(){this.startTimer();
286
+ return this;},stopTimer:function(){if(!this.timer){return false;}this.time=$time()-this.time;this.timer=$clear(this.timer);return true;},startTimer:function(){if(this.timer){return false;
287
+ }this.time=$time()-this.time;this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);return true;}});Fx.compute=function(C,B,A){return(B-C)*A+C;
288
+ };Fx.Durations={"short":250,normal:500,"long":1000};Fx.CSS=new Class({Extends:Fx,prepare:function(D,E,B){B=$splat(B);var C=B[1];if(!$chk(C)){B[1]=B[0];
289
+ B[0]=D.getStyle(E);}var A=B.map(this.parse);return{from:A[0],to:A[1]};},parse:function(A){A=$lambda(A)();A=(typeof A=="string")?A.split(" "):$splat(A);
290
+ return A.map(function(C){C=String(C);var B=false;Fx.CSS.Parsers.each(function(F,E){if(B){return ;}var D=F.parse(C);if($chk(D)){B={value:D,parser:F};}});
291
+ B=B||{value:C,parser:Fx.CSS.Parsers.String};return B;});},compute:function(D,C,B){var A=[];(Math.min(D.length,C.length)).times(function(E){A.push({value:D[E].parser.compute(D[E].value,C[E].value,B),parser:D[E].parser});
292
+ });A.$family={name:"fx:css:value"};return A;},serve:function(C,B){if($type(C)!="fx:css:value"){C=this.parse(C);}var A=[];C.each(function(D){A=A.concat(D.parser.serve(D.value,B));
293
+ });return A;},render:function(A,D,C,B){A.setStyle(D,this.serve(C,B));},search:function(A){if(Fx.CSS.Cache[A]){return Fx.CSS.Cache[A];}var B={};Array.each(document.styleSheets,function(E,D){var C=E.href;
294
+ if(C&&C.contains("://")&&!C.contains(document.domain)){return ;}var F=E.rules||E.cssRules;Array.each(F,function(I,G){if(!I.style){return ;}var H=(I.selectorText)?I.selectorText.replace(/^\w+/,function(J){return J.toLowerCase();
295
+ }):null;if(!H||!H.test("^"+A+"$")){return ;}Element.Styles.each(function(K,J){if(!I.style[J]||Element.ShortStyles[J]){return ;}K=String(I.style[J]);B[J]=(K.test(/^rgb/))?K.rgbToHex():K;
296
+ });});});return Fx.CSS.Cache[A]=B;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(A){if(A.match(/^#[0-9a-f]{3,6}$/i)){return A.hexToRgb(true);
297
+ }return((A=A.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[A[1],A[2],A[3]]:false;},compute:function(C,B,A){return C.map(function(E,D){return Math.round(Fx.compute(C[D],B[D],A));
298
+ });},serve:function(A){return A.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(B,A){return(A)?B+A:B;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});
299
+ Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(B,A){this.element=this.subject=$(B);this.parent(A);},set:function(B,A){if(arguments.length==1){A=B;
300
+ B=this.property||this.options.property;}this.render(this.element,B,A,this.options.unit);return this;},start:function(C,E,D){if(!this.check(arguments.callee,C,E,D)){return this;
301
+ }var B=Array.flatten(arguments);this.property=this.options.property||B.shift();var A=this.prepare(this.element,this.property,B);return this.parent(A.from,A.to);
302
+ }});Element.Properties.tween={set:function(A){var B=this.retrieve("tween");if(B){B.cancel();}return this.eliminate("tween").store("tween:options",$extend({link:"cancel"},A));
303
+ },get:function(A){if(A||!this.retrieve("tween")){if(A||!this.retrieve("tween:options")){this.set("tween",A);}this.store("tween",new Fx.Tween(this,this.retrieve("tween:options")));
304
+ }return this.retrieve("tween");}};Element.implement({tween:function(A,C,B){this.get("tween").start(arguments);return this;},fade:function(C){var E=this.get("tween"),D="opacity",A;
305
+ C=$pick(C,"toggle");switch(C){case"in":E.start(D,1);break;case"out":E.start(D,0);break;case"show":E.set(D,1);break;case"hide":E.set(D,0);break;case"toggle":var B=this.retrieve("fade:flag",this.get("opacity")==1);
306
+ E.start(D,(B)?0:1);this.store("fade:flag",!B);A=true;break;default:E.start(D,arguments);}if(!A){this.eliminate("fade:flag");}return this;},highlight:function(C,A){if(!A){A=this.retrieve("highlight:original",this.getStyle("background-color"));
307
+ A=(A=="transparent")?"#fff":A;}var B=this.get("tween");B.start("background-color",C||"#ffff88",A).chain(function(){this.setStyle("background-color",this.retrieve("highlight:original"));
308
+ B.callChain();}.bind(this));return this;}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(B,A){this.element=this.subject=$(B);this.parent(A);},set:function(A){if(typeof A=="string"){A=this.search(A);
309
+ }for(var B in A){this.render(this.element,B,A[B],this.options.unit);}return this;},compute:function(E,D,C){var A={};for(var B in E){A[B]=this.parent(E[B],D[B],C);
310
+ }return A;},start:function(B){if(!this.check(arguments.callee,B)){return this;}if(typeof B=="string"){B=this.search(B);}var E={},D={};for(var C in B){var A=this.prepare(this.element,C,B[C]);
311
+ E[C]=A.from;D[C]=A.to;}return this.parent(E,D);}});Element.Properties.morph={set:function(A){var B=this.retrieve("morph");if(B){B.cancel();}return this.eliminate("morph").store("morph:options",$extend({link:"cancel"},A));
312
+ },get:function(A){if(A||!this.retrieve("morph")){if(A||!this.retrieve("morph:options")){this.set("morph",A);}this.store("morph",new Fx.Morph(this,this.retrieve("morph:options")));
313
+ }return this.retrieve("morph");}};Element.implement({morph:function(A){this.get("morph").start(A);return this;}});Fx.implement({getTransition:function(){var A=this.options.transition||Fx.Transitions.Sine.easeInOut;
314
+ if(typeof A=="string"){var B=A.split(":");A=Fx.Transitions;A=A[B[0]]||A[B[0].capitalize()];if(B[1]){A=A["ease"+B[1].capitalize()+(B[2]?B[2].capitalize():"")];
315
+ }}return A;}});Fx.Transition=function(B,A){A=$splat(A);return $extend(B,{easeIn:function(C){return B(C,A);},easeOut:function(C){return 1-B(1-C,A);},easeInOut:function(C){return(C<=0.5)?B(2*C,A)/2:(2-B(2*(1-C),A))/2;
316
+ }});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(A){for(var B in A){Fx.Transitions[B]=new Fx.Transition(A[B]);}};Fx.Transitions.extend({Pow:function(B,A){return Math.pow(B,A[0]||6);
317
+ },Expo:function(A){return Math.pow(2,8*(A-1));},Circ:function(A){return 1-Math.sin(Math.acos(A));},Sine:function(A){return 1-Math.sin((1-A)*Math.PI/2);
318
+ },Back:function(B,A){A=A[0]||1.618;return Math.pow(B,2)*((A+1)*B-A);},Bounce:function(D){var C;for(var B=0,A=1;1;B+=A,A/=2){if(D>=(7-4*B)/11){C=A*A-Math.pow((11-6*B-11*D)/4,2);
319
+ break;}}return C;},Elastic:function(B,A){return Math.pow(2,10*--B)*Math.cos(20*B*Math.PI*(A[0]||1)/3);}});["Quad","Cubic","Quart","Quint"].each(function(B,A){Fx.Transitions[B]=new Fx.Transition(function(C){return Math.pow(C,[A+2]);
320
+ });});var Request=new Class({Implements:[Chain,Events,Options],options:{url:"",data:"",headers:{"X-Requested-With":"XMLHttpRequest",Accept:"text/javascript, text/html, application/xml, text/xml, */*"},async:true,format:false,method:"post",link:"ignore",isSuccess:null,emulation:true,urlEncoded:true,encoding:"utf-8",evalScripts:false,evalResponse:false},initialize:function(A){this.xhr=new Browser.Request();
321
+ this.setOptions(A);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers=new Hash(this.options.headers);},onStateChange:function(){if(this.xhr.readyState!=4||!this.running){return ;
322
+ }this.running=false;this.status=0;$try(function(){this.status=this.xhr.status;}.bind(this));if(this.options.isSuccess.call(this,this.status)){this.response={text:this.xhr.responseText,xml:this.xhr.responseXML};
323
+ this.success(this.response.text,this.response.xml);}else{this.response={text:null,xml:null};this.failure();}this.xhr.onreadystatechange=$empty;},isSuccess:function(){return((this.status>=200)&&(this.status<300));
324
+ },processScripts:function(A){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader("Content-type"))){return $exec(A);}return A.stripScripts(this.options.evalScripts);
325
+ },success:function(B,A){this.onSuccess(this.processScripts(B),A);},onSuccess:function(){this.fireEvent("complete",arguments).fireEvent("success",arguments).callChain();
326
+ },failure:function(){this.onFailure();},onFailure:function(){this.fireEvent("complete").fireEvent("failure",this.xhr);},setHeader:function(A,B){this.headers.set(A,B);
327
+ return this;},getHeader:function(A){return $try(function(){return this.xhr.getResponseHeader(A);}.bind(this));},check:function(A){if(!this.running){return true;
328
+ }switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(A.bind(this,Array.slice(arguments,1)));return false;}return false;
329
+ },send:function(I){if(!this.check(arguments.callee,I)){return this;}this.running=true;var G=$type(I);if(G=="string"||G=="element"){I={data:I};}var D=this.options;
330
+ I=$extend({data:D.data,url:D.url,method:D.method},I);var E=I.data,B=I.url,A=I.method;switch($type(E)){case"element":E=$(E).toQueryString();break;case"object":case"hash":E=Hash.toQueryString(E);
331
+ }if(this.options.format){var H="format="+this.options.format;E=(E)?H+"&"+E:H;}if(this.options.emulation&&["put","delete"].contains(A)){var F="_method="+A;
332
+ E=(E)?F+"&"+E:F;A="post";}if(this.options.urlEncoded&&A=="post"){var C=(this.options.encoding)?"; charset="+this.options.encoding:"";this.headers.set("Content-type","application/x-www-form-urlencoded"+C);
333
+ }if(E&&A=="get"){B=B+(B.contains("?")?"&":"?")+E;E=null;}this.xhr.open(A.toUpperCase(),B,this.options.async);this.xhr.onreadystatechange=this.onStateChange.bind(this);
334
+ this.headers.each(function(K,J){try{this.xhr.setRequestHeader(J,K);}catch(L){this.fireEvent("exception",[J,K]);}},this);this.fireEvent("request");this.xhr.send(E);
335
+ if(!this.options.async){this.onStateChange();}return this;},cancel:function(){if(!this.running){return this;}this.running=false;this.xhr.abort();this.xhr.onreadystatechange=$empty;
336
+ this.xhr=new Browser.Request();this.fireEvent("cancel");return this;}});(function(){var A={};["get","post","put","delete","GET","POST","PUT","DELETE"].each(function(B){A[B]=function(){var C=Array.link(arguments,{url:String.type,data:$defined});
337
+ return this.send($extend(C,{method:B.toLowerCase()}));};});Request.implement(A);})();Element.Properties.send={set:function(A){var B=this.retrieve("send");
338
+ if(B){B.cancel();}return this.eliminate("send").store("send:options",$extend({data:this,link:"cancel",method:this.get("method")||"post",url:this.get("action")},A));
339
+ },get:function(A){if(A||!this.retrieve("send")){if(A||!this.retrieve("send:options")){this.set("send",A);}this.store("send",new Request(this.retrieve("send:options")));
340
+ }return this.retrieve("send");}};Element.implement({send:function(A){var B=this.get("send");B.send({data:this,url:A||B.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,evalScripts:true,filter:false},processHTML:function(C){var B=C.match(/<body[^>]*>([\s\S]*?)<\/body>/i);
341
+ C=(B)?B[1]:C;var A=new Element("div");return $try(function(){var D="<root>"+C+"</root>",G;if(Browser.Engine.trident){G=new ActiveXObject("Microsoft.XMLDOM");
342
+ G.async=false;G.loadXML(D);}else{G=new DOMParser().parseFromString(D,"text/xml");}D=G.getElementsByTagName("root")[0];for(var F=0,E=D.childNodes.length;
343
+ F<E;F++){var H=Element.clone(D.childNodes[F],true,true);if(H){A.grab(H);}}return A;})||A.set("html",C);},success:function(D){var C=this.options,B=this.response;
344
+ B.html=D.stripScripts(function(E){B.javascript=E;});var A=this.processHTML(B.html);B.tree=A.childNodes;B.elements=A.getElements("*");if(C.filter){B.tree=B.elements.filter(C.filter);
345
+ }if(C.update){$(C.update).empty().set("html",B.html);}if(C.evalScripts){$exec(B.javascript);}this.onSuccess(B.tree,B.elements,B.html,B.javascript);}});
346
+ Element.Properties.load={set:function(A){var B=this.retrieve("load");if(B){B.cancel();}return this.eliminate("load").store("load:options",$extend({data:this,link:"cancel",update:this,method:"get"},A));
347
+ },get:function(A){if(A||!this.retrieve("load")){if(A||!this.retrieve("load:options")){this.set("load",A);}this.store("load",new Request.HTML(this.retrieve("load:options")));
348
+ }return this.retrieve("load");}};Element.implement({load:function(){this.get("load").send(Array.link(arguments,{data:Object.type,url:String.type}));return this;
349
+ }});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(A){this.parent(A);this.headers.extend({Accept:"application/json","X-Request":"JSON"});
350
+ },success:function(A){this.response.json=JSON.decode(A,this.options.secure);this.onSuccess(this.response.json,A);}});