refinerycms 0.9.6.19 → 0.9.6.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (385) hide show
  1. data/.gems +0 -8
  2. data/.gitignore +3 -1
  3. data/Rakefile +1 -5
  4. data/VERSION +1 -1
  5. data/bin/refinery-update-core +11 -2
  6. data/config/application.rb +6 -1
  7. data/config/environments/development.rb +10 -6
  8. data/config/settings.rb +3 -0
  9. data/db/migrate/20100305023036_change_users_columns_for_authlogic.rb +46 -0
  10. data/db/migrate/20100305023037_remove_unused_users_columns.rb +16 -0
  11. data/db/migrate/20100312155331_make_user_perishable_token_nullable.rb +13 -0
  12. data/db/migrate/20100312160327_make_user_persistence_token_nullable.rb +13 -0
  13. data/db/migrate/20100315203301_remove_state_from_users.rb +9 -0
  14. data/db/schema.rb +8 -21
  15. data/db/seeds.rb +5 -19
  16. data/lib/refinery/tasks/refinery.rb +1 -1
  17. data/public/javascripts/admin.js +6 -2
  18. data/public/javascripts/jquery-ui-1.8.min.js +374 -0
  19. data/public/javascripts/jquery.js +606 -444
  20. data/public/javascripts/refinery/admin.js +30 -9
  21. data/public/javascripts/refinery/boot_wym.js +4 -0
  22. data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +3 -4
  23. data/public/stylesheets/refinery/refinery.css +11 -0
  24. data/public/stylesheets/wymeditor/skins/refinery/skin.css +3 -1
  25. data/public/stylesheets/wymeditor/skins/refinery/wymiframe.css +5 -5
  26. data/readme.md +13 -10
  27. data/test/fixtures/users.yml +5 -5
  28. data/test/functional/dashboard_controller_test.rb +0 -4
  29. data/test/functional/images_controller_test.rb +0 -3
  30. data/test/test_helper.rb +7 -3
  31. data/themes/hemingway/views/layouts/application.html.erb +1 -12
  32. data/vendor/plugins/authentication/app/controllers/admin/users_controller.rb +1 -3
  33. data/vendor/plugins/authentication/app/controllers/sessions_controller.rb +3 -14
  34. data/vendor/plugins/authentication/app/controllers/users_controller.rb +26 -37
  35. data/vendor/plugins/authentication/app/models/user.rb +29 -112
  36. data/vendor/plugins/authentication/app/models/user_mailer.rb +8 -5
  37. data/vendor/plugins/authentication/app/models/user_session.rb +9 -0
  38. data/vendor/plugins/authentication/app/views/admin/users/index.html.erb +1 -1
  39. data/vendor/plugins/authentication/app/views/sessions/new.html.erb +5 -4
  40. data/vendor/plugins/authentication/lib/authenticated_system.rb +40 -30
  41. data/vendor/plugins/authentication/rails/init.rb +9 -0
  42. data/vendor/plugins/authlogic/CHANGELOG.rdoc +345 -0
  43. data/vendor/plugins/authlogic/LICENSE +20 -0
  44. data/vendor/plugins/authlogic/README.rdoc +246 -0
  45. data/vendor/plugins/authlogic/Rakefile +42 -0
  46. data/vendor/plugins/authlogic/VERSION.yml +5 -0
  47. data/vendor/plugins/authlogic/authlogic.gemspec +217 -0
  48. data/vendor/plugins/authlogic/generators/session/session_generator.rb +9 -0
  49. data/vendor/plugins/authlogic/generators/session/templates/session.rb +2 -0
  50. data/vendor/plugins/authlogic/init.rb +1 -0
  51. data/vendor/plugins/authlogic/lib/authlogic.rb +64 -0
  52. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/base.rb +107 -0
  53. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/email.rb +110 -0
  54. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/logged_in_status.rb +60 -0
  55. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/login.rb +141 -0
  56. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/magic_columns.rb +24 -0
  57. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/password.rb +355 -0
  58. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/perishable_token.rb +105 -0
  59. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/persistence_token.rb +68 -0
  60. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/restful_authentication.rb +61 -0
  61. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/session_maintenance.rb +139 -0
  62. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/single_access_token.rb +65 -0
  63. data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/validations_scope.rb +32 -0
  64. data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/association.rb +42 -0
  65. data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/base.rb +55 -0
  66. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/abstract_adapter.rb +67 -0
  67. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/merb_adapter.rb +30 -0
  68. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/rails_adapter.rb +48 -0
  69. data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/sinatra_adapter.rb +61 -0
  70. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/aes256.rb +43 -0
  71. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/bcrypt.rb +90 -0
  72. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/md5.rb +34 -0
  73. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha1.rb +35 -0
  74. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha256.rb +50 -0
  75. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha512.rb +50 -0
  76. data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/wordpress.rb +43 -0
  77. data/vendor/plugins/authlogic/lib/authlogic/i18n.rb +83 -0
  78. data/vendor/plugins/authlogic/lib/authlogic/i18n/translator.rb +15 -0
  79. data/vendor/plugins/authlogic/lib/authlogic/random.rb +33 -0
  80. data/vendor/plugins/authlogic/lib/authlogic/regex.rb +25 -0
  81. data/vendor/plugins/authlogic/lib/authlogic/session/activation.rb +58 -0
  82. data/vendor/plugins/authlogic/lib/authlogic/session/active_record_trickery.rb +64 -0
  83. data/vendor/plugins/authlogic/lib/authlogic/session/base.rb +37 -0
  84. data/vendor/plugins/authlogic/lib/authlogic/session/brute_force_protection.rb +96 -0
  85. data/vendor/plugins/authlogic/lib/authlogic/session/callbacks.rb +99 -0
  86. data/vendor/plugins/authlogic/lib/authlogic/session/cookies.rb +130 -0
  87. data/vendor/plugins/authlogic/lib/authlogic/session/existence.rb +93 -0
  88. data/vendor/plugins/authlogic/lib/authlogic/session/foundation.rb +63 -0
  89. data/vendor/plugins/authlogic/lib/authlogic/session/http_auth.rb +58 -0
  90. data/vendor/plugins/authlogic/lib/authlogic/session/id.rb +41 -0
  91. data/vendor/plugins/authlogic/lib/authlogic/session/klass.rb +78 -0
  92. data/vendor/plugins/authlogic/lib/authlogic/session/magic_columns.rb +95 -0
  93. data/vendor/plugins/authlogic/lib/authlogic/session/magic_states.rb +59 -0
  94. data/vendor/plugins/authlogic/lib/authlogic/session/params.rb +101 -0
  95. data/vendor/plugins/authlogic/lib/authlogic/session/password.rb +240 -0
  96. data/vendor/plugins/authlogic/lib/authlogic/session/perishable_token.rb +18 -0
  97. data/vendor/plugins/authlogic/lib/authlogic/session/persistence.rb +70 -0
  98. data/vendor/plugins/authlogic/lib/authlogic/session/priority_record.rb +34 -0
  99. data/vendor/plugins/authlogic/lib/authlogic/session/scopes.rb +101 -0
  100. data/vendor/plugins/authlogic/lib/authlogic/session/session.rb +62 -0
  101. data/vendor/plugins/authlogic/lib/authlogic/session/timeout.rb +82 -0
  102. data/vendor/plugins/authlogic/lib/authlogic/session/unauthorized_record.rb +50 -0
  103. data/vendor/plugins/authlogic/lib/authlogic/session/validation.rb +82 -0
  104. data/vendor/plugins/authlogic/lib/authlogic/test_case.rb +120 -0
  105. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_controller.rb +45 -0
  106. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_cookie_jar.rb +14 -0
  107. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_logger.rb +10 -0
  108. data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_request.rb +19 -0
  109. data/vendor/plugins/authlogic/lib/authlogic/test_case/rails_request_adapter.rb +30 -0
  110. data/vendor/plugins/authlogic/rails/init.rb +1 -0
  111. data/vendor/plugins/authlogic/shoulda_macros/authlogic.rb +69 -0
  112. data/vendor/plugins/authlogic/test/acts_as_authentic_test/base_test.rb +18 -0
  113. data/vendor/plugins/authlogic/test/acts_as_authentic_test/email_test.rb +97 -0
  114. data/vendor/plugins/authlogic/test/acts_as_authentic_test/logged_in_status_test.rb +36 -0
  115. data/vendor/plugins/authlogic/test/acts_as_authentic_test/login_test.rb +109 -0
  116. data/vendor/plugins/authlogic/test/acts_as_authentic_test/magic_columns_test.rb +27 -0
  117. data/vendor/plugins/authlogic/test/acts_as_authentic_test/password_test.rb +236 -0
  118. data/vendor/plugins/authlogic/test/acts_as_authentic_test/perishable_token_test.rb +90 -0
  119. data/vendor/plugins/authlogic/test/acts_as_authentic_test/persistence_token_test.rb +55 -0
  120. data/vendor/plugins/authlogic/test/acts_as_authentic_test/restful_authentication_test.rb +40 -0
  121. data/vendor/plugins/authlogic/test/acts_as_authentic_test/session_maintenance_test.rb +84 -0
  122. data/vendor/plugins/authlogic/test/acts_as_authentic_test/single_access_test.rb +44 -0
  123. data/vendor/plugins/authlogic/test/authenticates_many_test.rb +16 -0
  124. data/vendor/plugins/authlogic/test/crypto_provider_test/aes256_test.rb +14 -0
  125. data/vendor/plugins/authlogic/test/crypto_provider_test/bcrypt_test.rb +14 -0
  126. data/vendor/plugins/authlogic/test/crypto_provider_test/sha1_test.rb +23 -0
  127. data/vendor/plugins/authlogic/test/crypto_provider_test/sha256_test.rb +14 -0
  128. data/vendor/plugins/authlogic/test/crypto_provider_test/sha512_test.rb +14 -0
  129. data/vendor/plugins/authlogic/test/fixtures/companies.yml +5 -0
  130. data/vendor/plugins/authlogic/test/fixtures/employees.yml +17 -0
  131. data/vendor/plugins/authlogic/test/fixtures/projects.yml +3 -0
  132. data/vendor/plugins/authlogic/test/fixtures/users.yml +24 -0
  133. data/vendor/plugins/authlogic/test/i18n_test.rb +33 -0
  134. data/vendor/plugins/authlogic/test/libs/affiliate.rb +7 -0
  135. data/vendor/plugins/authlogic/test/libs/company.rb +6 -0
  136. data/vendor/plugins/authlogic/test/libs/employee.rb +7 -0
  137. data/vendor/plugins/authlogic/test/libs/employee_session.rb +2 -0
  138. data/vendor/plugins/authlogic/test/libs/ldaper.rb +3 -0
  139. data/vendor/plugins/authlogic/test/libs/ordered_hash.rb +9 -0
  140. data/vendor/plugins/authlogic/test/libs/project.rb +3 -0
  141. data/vendor/plugins/authlogic/test/libs/user.rb +5 -0
  142. data/vendor/plugins/authlogic/test/libs/user_session.rb +6 -0
  143. data/vendor/plugins/authlogic/test/random_test.rb +49 -0
  144. data/vendor/plugins/authlogic/test/session_test/activation_test.rb +43 -0
  145. data/vendor/plugins/authlogic/test/session_test/active_record_trickery_test.rb +36 -0
  146. data/vendor/plugins/authlogic/test/session_test/brute_force_protection_test.rb +101 -0
  147. data/vendor/plugins/authlogic/test/session_test/callbacks_test.rb +6 -0
  148. data/vendor/plugins/authlogic/test/session_test/cookies_test.rb +112 -0
  149. data/vendor/plugins/authlogic/test/session_test/credentials_test.rb +0 -0
  150. data/vendor/plugins/authlogic/test/session_test/existence_test.rb +64 -0
  151. data/vendor/plugins/authlogic/test/session_test/http_auth_test.rb +28 -0
  152. data/vendor/plugins/authlogic/test/session_test/id_test.rb +17 -0
  153. data/vendor/plugins/authlogic/test/session_test/klass_test.rb +40 -0
  154. data/vendor/plugins/authlogic/test/session_test/magic_columns_test.rb +62 -0
  155. data/vendor/plugins/authlogic/test/session_test/magic_states_test.rb +60 -0
  156. data/vendor/plugins/authlogic/test/session_test/params_test.rb +53 -0
  157. data/vendor/plugins/authlogic/test/session_test/password_test.rb +106 -0
  158. data/vendor/plugins/authlogic/test/session_test/perishability_test.rb +15 -0
  159. data/vendor/plugins/authlogic/test/session_test/persistence_test.rb +21 -0
  160. data/vendor/plugins/authlogic/test/session_test/scopes_test.rb +60 -0
  161. data/vendor/plugins/authlogic/test/session_test/session_test.rb +59 -0
  162. data/vendor/plugins/authlogic/test/session_test/timeout_test.rb +52 -0
  163. data/vendor/plugins/authlogic/test/session_test/unauthorized_record_test.rb +13 -0
  164. data/vendor/plugins/authlogic/test/session_test/validation_test.rb +23 -0
  165. data/vendor/plugins/authlogic/test/test_helper.rb +182 -0
  166. data/vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb +1 -1
  167. data/vendor/plugins/friendly_id/Changelog.md +243 -0
  168. data/vendor/plugins/friendly_id/Contributors.md +30 -0
  169. data/vendor/plugins/friendly_id/Gemfile +2 -0
  170. data/vendor/plugins/friendly_id/Guide.md +509 -0
  171. data/vendor/plugins/friendly_id/LICENSE +19 -0
  172. data/vendor/plugins/friendly_id/README.md +76 -0
  173. data/vendor/plugins/friendly_id/Rakefile +68 -0
  174. data/vendor/plugins/friendly_id/extras/README.txt +3 -0
  175. data/vendor/plugins/friendly_id/extras/bench.rb +59 -0
  176. data/vendor/plugins/friendly_id/extras/extras.rb +31 -0
  177. data/vendor/plugins/friendly_id/extras/prof.rb +14 -0
  178. data/vendor/plugins/friendly_id/extras/template-gem.rb +26 -0
  179. data/vendor/plugins/friendly_id/extras/template-plugin.rb +28 -0
  180. data/vendor/plugins/friendly_id/friendly_id.gemspec +40 -0
  181. data/vendor/plugins/friendly_id/generators/friendly_id/friendly_id_generator.rb +28 -0
  182. data/vendor/plugins/friendly_id/generators/friendly_id/templates/create_slugs.rb +18 -0
  183. data/vendor/plugins/friendly_id/lib/friendly_id.rb +67 -0
  184. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2.rb +47 -0
  185. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/configuration.rb +66 -0
  186. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/finders.rb +140 -0
  187. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/simple_model.rb +162 -0
  188. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/slug.rb +111 -0
  189. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/slugged_model.rb +323 -0
  190. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/tasks.rb +66 -0
  191. data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/tasks/friendly_id.rake +19 -0
  192. data/vendor/plugins/friendly_id/lib/friendly_id/configuration.rb +132 -0
  193. data/vendor/plugins/friendly_id/lib/friendly_id/finders.rb +106 -0
  194. data/vendor/plugins/friendly_id/lib/friendly_id/slug_string.rb +292 -0
  195. data/vendor/plugins/friendly_id/lib/friendly_id/slugged.rb +91 -0
  196. data/vendor/plugins/friendly_id/lib/friendly_id/status.rb +35 -0
  197. data/vendor/plugins/friendly_id/lib/friendly_id/test.rb +175 -0
  198. data/vendor/plugins/friendly_id/lib/friendly_id/version.rb +8 -0
  199. data/vendor/plugins/friendly_id/rails/init.rb +2 -0
  200. data/vendor/plugins/friendly_id/test/active_record2/basic_slugged_model_test.rb +14 -0
  201. data/vendor/plugins/friendly_id/test/active_record2/cached_slug_test.rb +61 -0
  202. data/vendor/plugins/friendly_id/test/active_record2/core.rb +93 -0
  203. data/vendor/plugins/friendly_id/test/active_record2/custom_normalizer_test.rb +20 -0
  204. data/vendor/plugins/friendly_id/test/active_record2/custom_table_name_test.rb +22 -0
  205. data/vendor/plugins/friendly_id/test/active_record2/deprecated_test.rb +23 -0
  206. data/vendor/plugins/friendly_id/test/active_record2/scoped_model_test.rb +111 -0
  207. data/vendor/plugins/friendly_id/test/active_record2/simple_test.rb +59 -0
  208. data/vendor/plugins/friendly_id/test/active_record2/slug_test.rb +34 -0
  209. data/vendor/plugins/friendly_id/test/active_record2/slugged.rb +30 -0
  210. data/vendor/plugins/friendly_id/test/active_record2/slugged_status_test.rb +61 -0
  211. data/vendor/plugins/friendly_id/test/active_record2/sti_test.rb +22 -0
  212. data/vendor/plugins/friendly_id/test/active_record2/support/database.mysql.yml +4 -0
  213. data/vendor/plugins/friendly_id/test/active_record2/support/database.postgres.yml +6 -0
  214. data/vendor/plugins/friendly_id/test/active_record2/support/database.sqlite3.yml +2 -0
  215. data/vendor/plugins/friendly_id/test/active_record2/support/models.rb +78 -0
  216. data/vendor/plugins/friendly_id/test/active_record2/tasks_test.rb +82 -0
  217. data/vendor/plugins/friendly_id/test/active_record2/test_helper.rb +114 -0
  218. data/vendor/plugins/friendly_id/test/friendly_id_test.rb +60 -0
  219. data/vendor/plugins/friendly_id/test/slug_string_test.rb +78 -0
  220. data/vendor/plugins/friendly_id/test/test_helper.rb +9 -0
  221. data/vendor/plugins/hpricot/CHANGELOG +88 -0
  222. data/vendor/plugins/hpricot/COPYING +18 -0
  223. data/vendor/plugins/hpricot/README +275 -0
  224. data/vendor/plugins/hpricot/Rakefile +272 -0
  225. data/vendor/plugins/hpricot/ext/fast_xs/FastXsService.java +1030 -0
  226. data/vendor/plugins/hpricot/ext/fast_xs/extconf.rb +4 -0
  227. data/vendor/plugins/hpricot/ext/fast_xs/fast_xs.c +201 -0
  228. data/vendor/plugins/hpricot/ext/hpricot_scan/HpricotCss.java +831 -0
  229. data/vendor/plugins/hpricot/ext/hpricot_scan/HpricotScanService.java +2086 -0
  230. data/vendor/plugins/hpricot/ext/hpricot_scan/MANIFEST +0 -0
  231. data/vendor/plugins/hpricot/ext/hpricot_scan/extconf.rb +6 -0
  232. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_common.rl +76 -0
  233. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.c +3503 -0
  234. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.java.rl +155 -0
  235. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.rl +115 -0
  236. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.c +6927 -0
  237. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.h +79 -0
  238. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.java.rl +1152 -0
  239. data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.rl +788 -0
  240. data/vendor/plugins/hpricot/extras/mingw-rbconfig.rb +176 -0
  241. data/vendor/plugins/hpricot/hpricot.gemspec +17 -0
  242. data/vendor/plugins/hpricot/lib/hpricot.rb +26 -0
  243. data/vendor/plugins/hpricot/lib/hpricot/blankslate.rb +63 -0
  244. data/vendor/plugins/hpricot/lib/hpricot/builder.rb +216 -0
  245. data/vendor/plugins/hpricot/lib/hpricot/elements.rb +510 -0
  246. data/vendor/plugins/hpricot/lib/hpricot/htmlinfo.rb +691 -0
  247. data/vendor/plugins/hpricot/lib/hpricot/inspect.rb +103 -0
  248. data/vendor/plugins/hpricot/lib/hpricot/modules.rb +40 -0
  249. data/vendor/plugins/hpricot/lib/hpricot/parse.rb +38 -0
  250. data/vendor/plugins/hpricot/lib/hpricot/tag.rb +219 -0
  251. data/vendor/plugins/hpricot/lib/hpricot/tags.rb +164 -0
  252. data/vendor/plugins/hpricot/lib/hpricot/traverse.rb +839 -0
  253. data/vendor/plugins/hpricot/lib/hpricot/xchar.rb +94 -0
  254. data/vendor/plugins/hpricot/setup.rb +1585 -0
  255. data/vendor/plugins/hpricot/test/files/basic.xhtml +17 -0
  256. data/vendor/plugins/hpricot/test/files/boingboing.html +2266 -0
  257. data/vendor/plugins/hpricot/test/files/cy0.html +3653 -0
  258. data/vendor/plugins/hpricot/test/files/immob.html +400 -0
  259. data/vendor/plugins/hpricot/test/files/pace_application.html +1320 -0
  260. data/vendor/plugins/hpricot/test/files/tenderlove.html +16 -0
  261. data/vendor/plugins/hpricot/test/files/uswebgen.html +220 -0
  262. data/vendor/plugins/hpricot/test/files/utf8.html +1054 -0
  263. data/vendor/plugins/hpricot/test/files/week9.html +1723 -0
  264. data/vendor/plugins/hpricot/test/files/why.xml +19 -0
  265. data/vendor/plugins/hpricot/test/load_files.rb +7 -0
  266. data/vendor/plugins/hpricot/test/nokogiri-bench.rb +64 -0
  267. data/vendor/plugins/hpricot/test/test_alter.rb +96 -0
  268. data/vendor/plugins/hpricot/test/test_builder.rb +37 -0
  269. data/vendor/plugins/hpricot/test/test_parser.rb +428 -0
  270. data/vendor/plugins/hpricot/test/test_paths.rb +25 -0
  271. data/vendor/plugins/hpricot/test/test_preserved.rb +88 -0
  272. data/vendor/plugins/hpricot/test/test_xml.rb +28 -0
  273. data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +1 -6
  274. data/vendor/plugins/inquiries/app/helpers/inquiries_helper.rb +0 -11
  275. data/vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb +10 -6
  276. data/vendor/plugins/inquiries/app/views/inquiry_mailer/confirmation.html.erb +1 -1
  277. data/vendor/plugins/inquiries/config/routes.rb +1 -1
  278. data/vendor/plugins/pages/app/controllers/admin/pages_controller.rb +16 -3
  279. data/vendor/plugins/pages/app/models/page_part.rb +9 -0
  280. data/vendor/plugins/rails_indexes/lib/indexer.rb +0 -2
  281. data/vendor/plugins/refinery/app/views/admin/_head.html.erb +2 -1
  282. data/vendor/plugins/refinery/app/views/shared/_head.html.erb +0 -1
  283. data/vendor/plugins/refinery/app/views/shared/_ie6check.html.erb +23 -11
  284. data/vendor/plugins/refinery/app/views/welcome.html.erb +1 -1
  285. data/vendor/plugins/refinery/app/views/wymiframe.html.erb +2 -1
  286. data/vendor/plugins/refinery/lib/generators/refinery/USAGE +1 -1
  287. data/vendor/plugins/refinery/lib/generators/refinery/templates/migration.rb +2 -2
  288. data/vendor/plugins/refinery/lib/generators/refinery/templates/model.rb +4 -0
  289. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_form.html.erb +6 -0
  290. data/vendor/plugins/refinery/lib/generators/refinery/templates/views/show.html.erb +5 -3
  291. data/vendor/plugins/refinery/lib/refinery/application_helper.rb +2 -2
  292. data/vendor/plugins/refinery/lib/refinery/initializer.rb +4 -41
  293. data/vendor/plugins/refinery_settings/app/models/refinery_setting.rb +7 -3
  294. data/vendor/plugins/slim_scrooge/README.textile +112 -0
  295. data/vendor/plugins/slim_scrooge/Rakefile +29 -0
  296. data/vendor/plugins/slim_scrooge/VERSION.yml +5 -0
  297. data/vendor/plugins/slim_scrooge/ext/Rakefile +42 -0
  298. data/vendor/plugins/slim_scrooge/ext/extconf.rb +5 -0
  299. data/vendor/plugins/slim_scrooge/lib/slim_scrooge.rb +16 -0
  300. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/callsite.rb +96 -0
  301. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/callsites.rb +70 -0
  302. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/monitored_hash.rb +103 -0
  303. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/result_set.rb +38 -0
  304. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/simple_set.rb +34 -0
  305. data/vendor/plugins/slim_scrooge/lib/slim_scrooge/slim_scrooge.rb +46 -0
  306. data/vendor/plugins/slim_scrooge/rails/init.rb +8 -0
  307. data/vendor/plugins/slim_scrooge/slim_scrooge.gemspec +62 -0
  308. data/vendor/plugins/slim_scrooge/slim_scrooge_windows.gemspec +59 -0
  309. data/vendor/plugins/slim_scrooge/test/active_record_setup.rb +3 -0
  310. data/vendor/plugins/slim_scrooge/test/helper.rb +91 -0
  311. data/vendor/plugins/slim_scrooge/test/models/course.rb +2 -0
  312. data/vendor/plugins/slim_scrooge/test/schema/schema.rb +5 -0
  313. data/vendor/plugins/slim_scrooge/test/setup.rb +5 -0
  314. data/vendor/plugins/themes/app/models/theme.rb +7 -0
  315. data/vendor/plugins/themes/lib/theme_server.rb +3 -1
  316. data/vendor/plugins/themes/rails/init.rb +16 -13
  317. data/vendor/plugins/will_paginate/.manifest +43 -0
  318. data/vendor/plugins/will_paginate/CHANGELOG.rdoc +139 -0
  319. data/vendor/plugins/will_paginate/LICENSE +18 -0
  320. data/vendor/plugins/will_paginate/README.rdoc +107 -0
  321. data/vendor/plugins/will_paginate/Rakefile +53 -0
  322. data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
  323. data/vendor/plugins/will_paginate/examples/index.haml +69 -0
  324. data/vendor/plugins/will_paginate/examples/index.html +92 -0
  325. data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
  326. data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
  327. data/vendor/plugins/will_paginate/init.rb +1 -0
  328. data/vendor/plugins/will_paginate/lib/will_paginate.rb +90 -0
  329. data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
  330. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
  331. data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +43 -0
  332. data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +264 -0
  333. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +170 -0
  334. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +37 -0
  335. data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
  336. data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +408 -0
  337. data/vendor/plugins/will_paginate/test/boot.rb +21 -0
  338. data/vendor/plugins/will_paginate/test/collection_test.rb +143 -0
  339. data/vendor/plugins/will_paginate/test/console +8 -0
  340. data/vendor/plugins/will_paginate/test/database.yml +22 -0
  341. data/vendor/plugins/will_paginate/test/finder_test.rb +473 -0
  342. data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
  343. data/vendor/plugins/will_paginate/test/fixtures/developer.rb +14 -0
  344. data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
  345. data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
  346. data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
  347. data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
  348. data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
  349. data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
  350. data/vendor/plugins/will_paginate/test/fixtures/topic.rb +10 -0
  351. data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
  352. data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
  353. data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
  354. data/vendor/plugins/will_paginate/test/helper.rb +37 -0
  355. data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +43 -0
  356. data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +75 -0
  357. data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
  358. data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +179 -0
  359. data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
  360. data/vendor/plugins/will_paginate/test/view_test.rb +373 -0
  361. data/vendor/plugins/will_paginate/will_paginate.gemspec +19 -0
  362. metadata +308 -27
  363. data/db/migrate/20091029034951_remove_blurb_from_news_items.rb +0 -9
  364. data/public/javascripts/jquery-ui-1.8rc1.min.js +0 -375
  365. data/test/fixtures/news_items.yml +0 -14
  366. data/test/unit/news_items_test.rb +0 -33
  367. data/vendor/plugins/authentication/test/fixtures/users.yml +0 -19
  368. data/vendor/plugins/authentication/test/functional/sessions_controller_test.rb +0 -85
  369. data/vendor/plugins/authentication/test/functional/users_controller_test.rb +0 -99
  370. data/vendor/plugins/authentication/test/unit/user_test.rb +0 -164
  371. data/vendor/plugins/news/app/controllers/admin/news_items_controller.rb +0 -5
  372. data/vendor/plugins/news/app/controllers/news_items_controller.rb +0 -20
  373. data/vendor/plugins/news/app/models/news_item.rb +0 -24
  374. data/vendor/plugins/news/app/views/admin/news_items/_form.html.erb +0 -19
  375. data/vendor/plugins/news/app/views/admin/news_items/_news_item.html.erb +0 -15
  376. data/vendor/plugins/news/app/views/admin/news_items/edit.html.erb +0 -1
  377. data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +0 -31
  378. data/vendor/plugins/news/app/views/admin/news_items/new.html.erb +0 -1
  379. data/vendor/plugins/news/app/views/news_items/_recent_posts.html.erb +0 -8
  380. data/vendor/plugins/news/app/views/news_items/index.html.erb +0 -17
  381. data/vendor/plugins/news/app/views/news_items/index.rss.builder +0 -26
  382. data/vendor/plugins/news/app/views/news_items/show.html.erb +0 -13
  383. data/vendor/plugins/news/config/routes.rb +0 -7
  384. data/vendor/plugins/news/news.md +0 -20
  385. data/vendor/plugins/news/rails/init.rb +0 -11
@@ -0,0 +1,839 @@
1
+ require 'hpricot/elements'
2
+ require 'uri'
3
+
4
+ module Hpricot
5
+ module Traverse
6
+ # Is this object the enclosing HTML or XML document?
7
+ def doc?() Doc::Trav === self end
8
+ # Is this object an HTML or XML element?
9
+ def elem?() Elem::Trav === self end
10
+ # Is this object an HTML text node?
11
+ def text?() Text::Trav === self end
12
+ # Is this object an XML declaration?
13
+ def xmldecl?() XMLDecl::Trav === self end
14
+ # Is this object a doctype tag?
15
+ def doctype?() DocType::Trav === self end
16
+ # Is this object an XML processing instruction?
17
+ def procins?() ProcIns::Trav === self end
18
+ # Is this object a comment?
19
+ def comment?() Comment::Trav === self end
20
+ # Is this object a stranded end tag?
21
+ def bogusetag?() BogusETag::Trav === self end
22
+
23
+ # Parses an HTML string, making an HTML fragment based on
24
+ # the options used to create the container document.
25
+ def make(input = nil, &blk)
26
+ if parent and parent.respond_to? :make
27
+ parent.make(input, &blk)
28
+ else
29
+ Hpricot.make(input, &blk).children
30
+ end
31
+ end
32
+
33
+ # Builds an HTML string from this node and its contents.
34
+ # If you need to write to a stream, try calling <tt>output(io)</tt>
35
+ # as a method on this object.
36
+ def to_html
37
+ output("")
38
+ end
39
+ alias_method :to_s, :to_html
40
+
41
+ # Attempts to preserve the original HTML of the document, only
42
+ # outputing new tags for elements which have changed.
43
+ def to_original_html
44
+ output("", :preserve => true)
45
+ end
46
+
47
+ def index(name)
48
+ i = 0
49
+ return i if name == "*"
50
+ children.each do |x|
51
+ return i if (x.respond_to?(:name) and name == x.name) or
52
+ (x.text? and name == "text()")
53
+ i += 1
54
+ end if children
55
+ -1
56
+ end
57
+
58
+ # Puts together an array of neighboring nodes based on their proximity
59
+ # to this node. So, for example, to get the next node, you could use
60
+ # <tt>nodes_at(1). Or, to get the previous node, use <tt>nodes_at(1)</tt>.
61
+ #
62
+ # This method also accepts ranges and sets of numbers.
63
+ #
64
+ # ele.nodes_at(-3..-1, 1..3) # gets three nodes before and three after
65
+ # ele.nodes_at(1, 5, 7) # gets three nodes at offsets below the current node
66
+ # ele.nodes_at(0, 5..6) # the current node and two others
67
+ def nodes_at(*pos)
68
+ sib = parent.children
69
+ i, si = 0, sib.index(self)
70
+ pos.map! do |r|
71
+ if r.is_a?(Range) and r.begin.is_a?(String)
72
+ r = Range.new(parent.index(r.begin)-si, parent.index(r.end)-si, r.exclude_end?)
73
+ end
74
+ r
75
+ end
76
+ p pos
77
+ Elements[*
78
+ sib.select do |x|
79
+ sel =
80
+ case i - si when *pos
81
+ true
82
+ end
83
+ i += 1
84
+ sel
85
+ end
86
+ ]
87
+ end
88
+
89
+ # Returns the node neighboring this node to the south: just below it.
90
+ # This method includes text nodes and comments and such.
91
+ def next
92
+ sib = parent.children
93
+ sib[sib.index(self) + 1] if parent
94
+ end
95
+ alias_method :next_node, :next
96
+
97
+ # Returns to node neighboring this node to the north: just above it.
98
+ # This method includes text nodes and comments and such.
99
+ def previous
100
+ sib = parent.children
101
+ x = sib.index(self) - 1
102
+ sib[x] if sib and x >= 0
103
+ end
104
+ alias_method :previous_node, :previous
105
+
106
+ # Find all preceding nodes.
107
+ def preceding
108
+ sibs = parent.children
109
+ si = sibs.index(self)
110
+ return Elements[*sibs[0...si]]
111
+ end
112
+
113
+ # Find all nodes which follow the current one.
114
+ def following
115
+ sibs = parent.children
116
+ si = sibs.index(self) + 1
117
+ return Elements[*sibs[si...sibs.length]]
118
+ end
119
+
120
+ # Adds elements immediately after this element, contained in the +html+ string.
121
+ def after(html = nil, &blk)
122
+ parent.insert_after(make(html, &blk), self)
123
+ end
124
+
125
+ # Adds elements immediately before this element, contained in the +html+ string.
126
+ def before(html = nil, &blk)
127
+ parent.insert_before(make(html, &blk), self)
128
+ end
129
+
130
+
131
+ # Replace this element and its contents with the nodes contained
132
+ # in the +html+ string.
133
+ def swap(html = nil, &blk)
134
+ parent.altered!
135
+ parent.replace_child(self, make(html, &blk))
136
+ end
137
+
138
+ def get_subnode(*indexes)
139
+ n = self
140
+ indexes.each {|index|
141
+ n = n.get_subnode_internal(index)
142
+ }
143
+ n
144
+ end
145
+
146
+ # Builds a string from the text contained in this node. All
147
+ # HTML elements are removed.
148
+ def to_plain_text
149
+ if respond_to?(:children) and children
150
+ children.map { |x| x.to_plain_text }.join.strip.gsub(/\n{2,}/, "\n\n")
151
+ else
152
+ ""
153
+ end
154
+ end
155
+
156
+ # Builds a string from the text contained in this node. All
157
+ # HTML elements are removed.
158
+ def inner_text
159
+ if respond_to?(:children) and children
160
+ children.map { |x| x.inner_text }.join
161
+ else
162
+ ""
163
+ end
164
+ end
165
+ alias_method :innerText, :inner_text
166
+
167
+ # Builds an HTML string from the contents of this node.
168
+ def html(inner = nil, &blk)
169
+ if inner or blk
170
+ altered!
171
+ case inner
172
+ when Array
173
+ self.children = inner
174
+ else
175
+ self.children = make(inner, &blk)
176
+ end
177
+ reparent self.children
178
+ else
179
+ if respond_to?(:children) and children
180
+ children.map { |x| x.output("") }.join
181
+ else
182
+ ""
183
+ end
184
+ end
185
+ end
186
+ alias_method :inner_html, :html
187
+ alias_method :innerHTML, :inner_html
188
+
189
+ # Inserts new contents into the current node, based on
190
+ # the HTML contained in string +inner+.
191
+ def inner_html=(inner)
192
+ html(inner || [])
193
+ end
194
+ alias_method :innerHTML=, :inner_html=
195
+
196
+ def reparent(nodes)
197
+ return unless nodes
198
+ altered!
199
+ [*nodes].each { |e| e.parent = self }
200
+ end
201
+ private :reparent
202
+
203
+ def clean_path(path)
204
+ path.gsub(/^\s+|\s+$/, '')
205
+ end
206
+
207
+ # Builds a unique XPath string for this node, from the
208
+ # root of the document containing it.
209
+ def xpath
210
+ if elem? and has_attribute? 'id'
211
+ "//#{self.name}[@id='#{get_attribute('id')}']"
212
+ else
213
+ sim, id = 0, 0, 0
214
+ parent.children.each do |e|
215
+ id = sim if e == self
216
+ sim += 1 if e.pathname == self.pathname
217
+ end if parent.children
218
+ p = File.join(parent.xpath, self.pathname)
219
+ p += "[#{id+1}]" if sim >= 2
220
+ p
221
+ end
222
+ end
223
+
224
+ # Builds a unique CSS string for this node, from the
225
+ # root of the document containing it.
226
+ def css_path
227
+ if elem? and has_attribute? 'id'
228
+ "##{get_attribute('id')}"
229
+ else
230
+ sim, i, id = 0, 0, 0
231
+ parent.children.each do |e|
232
+ id = sim if e == self
233
+ sim += 1 if e.pathname == self.pathname
234
+ end if parent.children
235
+ p = parent.css_path
236
+ p = p ? "#{p} > #{self.pathname}" : self.pathname
237
+ p += ":nth(#{id})" if sim >= 2
238
+ p
239
+ end
240
+ end
241
+
242
+ def node_position
243
+ parent.children.index(self)
244
+ end
245
+
246
+ def position
247
+ parent.children_of_type(self.pathname).index(self)
248
+ end
249
+
250
+ # Searches this node for all elements matching
251
+ # the CSS or XPath +expr+. Returns an Elements array
252
+ # containing the matching nodes. If +blk+ is given, it
253
+ # is used to iterate through the matching set.
254
+ def search(expr, &blk)
255
+ if Range === expr
256
+ return Elements.expand(at(expr.begin), at(expr.end), expr.exclude_end?)
257
+ end
258
+ last = nil
259
+ nodes = [self]
260
+ done = []
261
+ expr = expr.to_s
262
+ hist = []
263
+ until expr.empty?
264
+ expr = clean_path(expr)
265
+ expr.gsub!(%r!^//!, '')
266
+
267
+ case expr
268
+ when %r!^/?\.\.!
269
+ last = expr = $'
270
+ nodes.map! { |node| node.parent }
271
+ when %r!^[>/]\s*!
272
+ last = expr = $'
273
+ nodes = Elements[*nodes.map { |node| node.children if node.respond_to? :children }.flatten.compact]
274
+ when %r!^\+!
275
+ last = expr = $'
276
+ nodes.map! do |node|
277
+ siblings = node.parent.children
278
+ siblings[siblings.index(node)+1]
279
+ end
280
+ nodes.compact!
281
+ when %r!^~!
282
+ last = expr = $'
283
+ nodes.map! do |node|
284
+ siblings = node.parent.children
285
+ siblings[(siblings.index(node)+1)..-1]
286
+ end
287
+ nodes.flatten!
288
+ when %r!^[|,]!
289
+ last = expr = " #$'"
290
+ nodes.shift if nodes.first == self
291
+ done += nodes
292
+ nodes = [self]
293
+ else
294
+ m = expr.match(%r!^([#.]?)([a-z0-9\\*_-]*)!i).to_a
295
+ after = $'
296
+ mt = after[%r!:[a-z0-9\\*_-]+!i, 0]
297
+ oop = false
298
+ if mt and not (mt == ":not" or Traverse.method_defined? "filter[#{mt}]")
299
+ after = $'
300
+ m[2] += mt
301
+ expr = after
302
+ end
303
+ if m[1] == '#'
304
+ oid = get_element_by_id(m[2])
305
+ nodes = oid ? [oid] : []
306
+ expr = after
307
+ else
308
+ m[2] = "*" if after =~ /^\(\)/ || m[2] == "" || m[1] == "."
309
+ ret = []
310
+ nodes.each do |node|
311
+ case m[2]
312
+ when '*'
313
+ node.traverse_element { |n| ret << n }
314
+ else
315
+ if node.respond_to? :get_elements_by_tag_name
316
+ ret += [*node.get_elements_by_tag_name(m[2])] - [*(node unless last)]
317
+ end
318
+ end
319
+ end
320
+ nodes = ret
321
+ end
322
+ last = nil
323
+ end
324
+
325
+ hist << expr
326
+ break if hist[-1] == hist[-2]
327
+ nodes, expr = Elements.filter(nodes, expr)
328
+ end
329
+ nodes = done + nodes.flatten.uniq
330
+ if blk
331
+ nodes.each(&blk)
332
+ self
333
+ else
334
+ Elements[*nodes]
335
+ end
336
+ end
337
+ alias_method :/, :search
338
+
339
+ # Find the first matching node for the CSS or XPath
340
+ # +expr+ string.
341
+ def at(expr)
342
+ search(expr).first
343
+ end
344
+ alias_method :%, :at
345
+
346
+ # +traverse_element+ traverses elements in the tree.
347
+ # It yields elements in depth first order.
348
+ #
349
+ # If _names_ are empty, it yields all elements.
350
+ # If non-empty _names_ are given, it should be list of universal names.
351
+ #
352
+ # A nested element is yielded in depth first order as follows.
353
+ #
354
+ # t = Hpricot('<a id=0><b><a id=1 /></b><c id=2 /></a>')
355
+ # t.traverse_element("a", "c") {|e| p e}
356
+ # # =>
357
+ # {elem <a id="0"> {elem <b> {emptyelem <a id="1">} </b>} {emptyelem <c id="2">} </a>}
358
+ # {emptyelem <a id="1">}
359
+ # {emptyelem <c id="2">}
360
+ #
361
+ # Universal names are specified as follows.
362
+ #
363
+ # t = Hpricot(<<'End')
364
+ # <html>
365
+ # <meta name="robots" content="index,nofollow">
366
+ # <meta name="author" content="Who am I?">
367
+ # </html>
368
+ # End
369
+ # t.traverse_element("{http://www.w3.org/1999/xhtml}meta") {|e| p e}
370
+ # # =>
371
+ # {emptyelem <{http://www.w3.org/1999/xhtml}meta name="robots" content="index,nofollow">}
372
+ # {emptyelem <{http://www.w3.org/1999/xhtml}meta name="author" content="Who am I?">}
373
+ #
374
+ def traverse_element(*names, &block) # :yields: element
375
+ if names.empty?
376
+ traverse_all_element(&block)
377
+ else
378
+ name_set = {}
379
+ names.each {|n| name_set[n] = true }
380
+ traverse_some_element(name_set, &block)
381
+ end
382
+ nil
383
+ end
384
+
385
+ # Find children of a given +tag_name+.
386
+ #
387
+ # ele.children_of_type('p')
388
+ # #=> [...array of paragraphs...]
389
+ #
390
+ def children_of_type(tag_name)
391
+ if respond_to? :children
392
+ children.find_all do |x|
393
+ x.respond_to?(:pathname) && x.pathname == tag_name
394
+ end
395
+ end
396
+ end
397
+
398
+ end
399
+
400
+ module Container::Trav
401
+ # Return all children of this node which can contain other
402
+ # nodes. This is a good way to get all HTML elements which
403
+ # aren't text, comment, doctype or processing instruction nodes.
404
+ def containers
405
+ children.grep(Container::Trav)
406
+ end
407
+
408
+ # Returns the container node neighboring this node to the south: just below it.
409
+ # By "container" node, I mean: this method does not find text nodes or comments or cdata or any of that.
410
+ # See Hpricot::Traverse#next_node if you need to hunt out all kinds of nodes.
411
+ def next_sibling
412
+ sib = parent.containers
413
+ sib[sib.index(self) + 1] if parent
414
+ end
415
+
416
+ # Returns the container node neighboring this node to the north: just above it.
417
+ # By "container" node, I mean: this method does not find text nodes or comments or cdata or any of that.
418
+ # See Hpricot::Traverse#previous_node if you need to hunt out all kinds of nodes.
419
+ def previous_sibling
420
+ sib = parent.containers
421
+ x = sib.index(self) - 1
422
+ sib[x] if sib and x >= 0
423
+ end
424
+
425
+ # Find all preceding sibling elements. Like the other "sibling" methods, this weeds
426
+ # out text and comment nodes.
427
+ def preceding_siblings()
428
+ sibs = parent.containers
429
+ si = sibs.index(self)
430
+ return Elements[*sibs[0...si]]
431
+ end
432
+
433
+ # Find sibling elements which follow the current one. Like the other "sibling" methods, this weeds
434
+ # out text and comment nodes.
435
+ def following_siblings()
436
+ sibs = parent.containers
437
+ si = sibs.index(self) + 1
438
+ return Elements[*sibs[si...sibs.length]]
439
+ end
440
+
441
+ # Puts together an array of neighboring sibling elements based on their proximity
442
+ # to this element.
443
+ #
444
+ # This method accepts ranges and sets of numbers.
445
+ #
446
+ # ele.siblings_at(-3..-1, 1..3) # gets three elements before and three after
447
+ # ele.siblings_at(1, 5, 7) # gets three elements at offsets below the current element
448
+ # ele.siblings_at(0, 5..6) # the current element and two others
449
+ #
450
+ # Like the other "sibling" methods, this doesn't find text and comment nodes.
451
+ # Use nodes_at to include those nodes.
452
+ def siblings_at(*pos)
453
+ sib = parent.containers
454
+ i, si = 0, sib.index(self)
455
+ Elements[*
456
+ sib.select do |x|
457
+ sel = case i - si when *pos
458
+ true
459
+ end
460
+ i += 1
461
+ sel
462
+ end
463
+ ]
464
+ end
465
+
466
+ # Replace +old+, a child of the current node, with +new+ node.
467
+ def replace_child(old, new)
468
+ reparent new
469
+ children[children.index(old), 1] = [*new]
470
+ end
471
+
472
+ # Insert +nodes+, an array of HTML elements or a single element,
473
+ # before the node +ele+, a child of the current node.
474
+ def insert_before(nodes, ele)
475
+ case nodes
476
+ when Array
477
+ nodes.each { |n| insert_before(n, ele) }
478
+ else
479
+ reparent nodes
480
+ children[children.index(ele) || 0, 0] = nodes
481
+ end
482
+ end
483
+
484
+ # Insert +nodes+, an array of HTML elements or a single element,
485
+ # after the node +ele+, a child of the current node.
486
+ def insert_after(nodes, ele)
487
+ case nodes
488
+ when Array
489
+ nodes.reverse_each { |n| insert_after(n, ele) }
490
+ else
491
+ reparent nodes
492
+ idx = children.index(ele)
493
+ children[idx ? idx + 1 : children.length, 0] = nodes
494
+ end
495
+ end
496
+
497
+ # +each_child+ iterates over each child.
498
+ def each_child(&block) # :yields: child_node
499
+ children.each(&block) if children
500
+ nil
501
+ end
502
+
503
+ # +each_child_with_index+ iterates over each child.
504
+ def each_child_with_index(&block) # :yields: child_node, index
505
+ children.each_with_index(&block) if children
506
+ nil
507
+ end
508
+
509
+ # +find_element+ searches an element which universal name is specified by
510
+ # the arguments.
511
+ # It returns nil if not found.
512
+ def find_element(*names)
513
+ traverse_element(*names) {|e| return e }
514
+ nil
515
+ end
516
+
517
+ # Returns a list of CSS classes to which this element belongs.
518
+ def classes
519
+ get_attribute('class').to_s.strip.split(/\s+/)
520
+ end
521
+
522
+ def get_element_by_id(id)
523
+ traverse_all_element do |ele|
524
+ if ele.elem? and eid = ele.get_attribute('id')
525
+ return ele if eid.to_s == id
526
+ end
527
+ end
528
+ nil
529
+ end
530
+
531
+ def get_elements_by_tag_name(*a)
532
+ list = Elements[]
533
+ a.delete("*")
534
+ traverse_element(*a.map { |tag| [tag, "{http://www.w3.org/1999/xhtml}#{tag}"] }.flatten) do |e|
535
+ list << e if e.elem?
536
+ end
537
+ list
538
+ end
539
+
540
+ def each_hyperlink_attribute
541
+ traverse_element(
542
+ '{http://www.w3.org/1999/xhtml}a',
543
+ '{http://www.w3.org/1999/xhtml}area',
544
+ '{http://www.w3.org/1999/xhtml}link',
545
+ '{http://www.w3.org/1999/xhtml}img',
546
+ '{http://www.w3.org/1999/xhtml}object',
547
+ '{http://www.w3.org/1999/xhtml}q',
548
+ '{http://www.w3.org/1999/xhtml}blockquote',
549
+ '{http://www.w3.org/1999/xhtml}ins',
550
+ '{http://www.w3.org/1999/xhtml}del',
551
+ '{http://www.w3.org/1999/xhtml}form',
552
+ '{http://www.w3.org/1999/xhtml}input',
553
+ '{http://www.w3.org/1999/xhtml}head',
554
+ '{http://www.w3.org/1999/xhtml}base',
555
+ '{http://www.w3.org/1999/xhtml}script') {|elem|
556
+ case elem.name
557
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:base|a|area|link)\z}i
558
+ attrs = ['href']
559
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:img)\z}i
560
+ attrs = ['src', 'longdesc', 'usemap']
561
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:object)\z}i
562
+ attrs = ['classid', 'codebase', 'data', 'usemap']
563
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:q|blockquote|ins|del)\z}i
564
+ attrs = ['cite']
565
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:form)\z}i
566
+ attrs = ['action']
567
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:input)\z}i
568
+ attrs = ['src', 'usemap']
569
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:head)\z}i
570
+ attrs = ['profile']
571
+ when %r{\{http://www.w3.org/1999/xhtml\}(?:script)\z}i
572
+ attrs = ['src', 'for']
573
+ end
574
+ attrs.each {|attr|
575
+ if hyperlink = elem.get_attribute(attr)
576
+ yield elem, attr, hyperlink
577
+ end
578
+ }
579
+ }
580
+ end
581
+ private :each_hyperlink_attribute
582
+
583
+ # +each_hyperlink_uri+ traverses hyperlinks such as HTML href attribute
584
+ # of A element.
585
+ #
586
+ # It yields Hpricot::Text and URI for each hyperlink.
587
+ #
588
+ # The URI objects are created with a base URI which is given by
589
+ # HTML BASE element or the argument ((|base_uri|)).
590
+ # +each_hyperlink_uri+ doesn't yields href of the BASE element.
591
+ def each_hyperlink_uri(base_uri=nil) # :yields: hyperlink, uri
592
+ base_uri = URI.parse(base_uri) if String === base_uri
593
+ links = []
594
+ each_hyperlink_attribute {|elem, attr, hyperlink|
595
+ if %r{\{http://www.w3.org/1999/xhtml\}(?:base)\z}i =~ elem.name
596
+ base_uri = URI.parse(hyperlink.to_s)
597
+ else
598
+ links << hyperlink
599
+ end
600
+ }
601
+ if base_uri
602
+ links.each {|hyperlink| yield hyperlink, base_uri + hyperlink.to_s }
603
+ else
604
+ links.each {|hyperlink| yield hyperlink, URI.parse(hyperlink.to_s) }
605
+ end
606
+ end
607
+
608
+ # +each_hyperlink+ traverses hyperlinks such as HTML href attribute
609
+ # of A element.
610
+ #
611
+ # It yields Hpricot::Text.
612
+ #
613
+ # Note that +each_hyperlink+ yields HTML href attribute of BASE element.
614
+ def each_hyperlink # :yields: text
615
+ links = []
616
+ each_hyperlink_attribute {|elem, attr, hyperlink|
617
+ yield hyperlink
618
+ }
619
+ end
620
+
621
+ # +each_uri+ traverses hyperlinks such as HTML href attribute
622
+ # of A element.
623
+ #
624
+ # It yields URI for each hyperlink.
625
+ #
626
+ # The URI objects are created with a base URI which is given by
627
+ # HTML BASE element or the argument ((|base_uri|)).
628
+ def each_uri(base_uri=nil) # :yields: URI
629
+ each_hyperlink_uri(base_uri) {|hyperlink, uri| yield uri }
630
+ end
631
+ end
632
+
633
+ # :stopdoc:
634
+ module Doc::Trav
635
+ def traverse_all_element(&block)
636
+ children.each {|c| c.traverse_all_element(&block) } if children
637
+ end
638
+ def xpath
639
+ "/"
640
+ end
641
+ def css_path
642
+ nil
643
+ end
644
+ end
645
+
646
+ module Elem::Trav
647
+ def traverse_all_element(&block)
648
+ yield self
649
+ children.each {|c| c.traverse_all_element(&block) } if children
650
+ end
651
+ end
652
+
653
+ module Leaf::Trav
654
+ def traverse_all_element
655
+ yield self
656
+ end
657
+ end
658
+
659
+ module Doc::Trav
660
+ def traverse_some_element(name_set, &block)
661
+ children.each {|c| c.traverse_some_element(name_set, &block) } if children
662
+ end
663
+ end
664
+
665
+ module Elem::Trav
666
+ def traverse_some_element(name_set, &block)
667
+ yield self if name_set.include? self.name
668
+ children.each {|c| c.traverse_some_element(name_set, &block) } if children
669
+ end
670
+ end
671
+
672
+ module Leaf::Trav
673
+ def traverse_some_element(name_set)
674
+ end
675
+ end
676
+ # :startdoc:
677
+
678
+ module Traverse
679
+ # +traverse_text+ traverses texts in the tree
680
+ def traverse_text(&block) # :yields: text
681
+ traverse_text_internal(&block)
682
+ nil
683
+ end
684
+ end
685
+
686
+ # :stopdoc:
687
+ module Container::Trav
688
+ def traverse_text_internal(&block)
689
+ each_child {|c| c.traverse_text_internal(&block) }
690
+ end
691
+ end
692
+
693
+ module Leaf::Trav
694
+ def traverse_text_internal
695
+ end
696
+ end
697
+
698
+ module Text::Trav
699
+ def traverse_text_internal
700
+ yield self
701
+ end
702
+ end
703
+ # :startdoc:
704
+
705
+ module Container::Trav
706
+ # +filter+ rebuilds the tree without some components.
707
+ #
708
+ # node.filter {|descendant_node| predicate } -> node
709
+ # loc.filter {|descendant_loc| predicate } -> node
710
+ #
711
+ # +filter+ yields each node except top node.
712
+ # If given block returns false, corresponding node is dropped.
713
+ # If given block returns true, corresponding node is retained and
714
+ # inner nodes are examined.
715
+ #
716
+ # +filter+ returns an node.
717
+ # It doesn't return location object even if self is location object.
718
+ #
719
+ def filter(&block)
720
+ subst = {}
721
+ each_child_with_index {|descendant, i|
722
+ if yield descendant
723
+ if descendant.elem?
724
+ subst[i] = descendant.filter(&block)
725
+ else
726
+ subst[i] = descendant
727
+ end
728
+ else
729
+ subst[i] = nil
730
+ end
731
+ }
732
+ to_node.subst_subnode(subst)
733
+ end
734
+ end
735
+
736
+ module Doc::Trav
737
+ # +title+ searches title and return it as a text.
738
+ # It returns nil if not found.
739
+ #
740
+ # +title+ searchs following information.
741
+ #
742
+ # - <title>...</title> in HTML
743
+ # - <title>...</title> in RSS
744
+ def title
745
+ e = find_element('title',
746
+ '{http://www.w3.org/1999/xhtml}title',
747
+ '{http://purl.org/rss/1.0/}title',
748
+ '{http://my.netscape.com/rdf/simple/0.9/}title')
749
+ e && e.extract_text
750
+ end
751
+
752
+ # +author+ searches author and return it as a text.
753
+ # It returns nil if not found.
754
+ #
755
+ # +author+ searchs following information.
756
+ #
757
+ # - <meta name="author" content="author-name"> in HTML
758
+ # - <link rev="made" title="author-name"> in HTML
759
+ # - <dc:creator>author-name</dc:creator> in RSS
760
+ # - <dc:publisher>author-name</dc:publisher> in RSS
761
+ def author
762
+ traverse_element('meta',
763
+ '{http://www.w3.org/1999/xhtml}meta') {|e|
764
+ begin
765
+ next unless e.fetch_attr('name').downcase == 'author'
766
+ author = e.fetch_attribute('content').strip
767
+ return author if !author.empty?
768
+ rescue IndexError
769
+ end
770
+ }
771
+
772
+ traverse_element('link',
773
+ '{http://www.w3.org/1999/xhtml}link') {|e|
774
+ begin
775
+ next unless e.fetch_attr('rev').downcase == 'made'
776
+ author = e.fetch_attribute('title').strip
777
+ return author if !author.empty?
778
+ rescue IndexError
779
+ end
780
+ }
781
+
782
+ if channel = find_element('{http://purl.org/rss/1.0/}channel')
783
+ channel.traverse_element('{http://purl.org/dc/elements/1.1/}creator') {|e|
784
+ begin
785
+ author = e.extract_text.strip
786
+ return author if !author.empty?
787
+ rescue IndexError
788
+ end
789
+ }
790
+ channel.traverse_element('{http://purl.org/dc/elements/1.1/}publisher') {|e|
791
+ begin
792
+ author = e.extract_text.strip
793
+ return author if !author.empty?
794
+ rescue IndexError
795
+ end
796
+ }
797
+ end
798
+
799
+ nil
800
+ end
801
+
802
+ end
803
+
804
+ module Doc::Trav
805
+ def root
806
+ es = []
807
+ children.each {|c| es << c if c.elem? } if children
808
+ raise Hpricot::Error, "no element" if es.empty?
809
+ raise Hpricot::Error, "multiple top elements" if 1 < es.length
810
+ es[0]
811
+ end
812
+ end
813
+
814
+ module Elem::Trav
815
+ def has_attribute?(name)
816
+ self.raw_attributes && self.raw_attributes.has_key?(name.to_s)
817
+ end
818
+ def get_attribute(name)
819
+ a = self.raw_attributes && self.raw_attributes[name.to_s]
820
+ a = Hpricot.uxs(a) if a
821
+ a
822
+ end
823
+ alias_method :[], :get_attribute
824
+ def set_attribute(name, val)
825
+ altered!
826
+ self.raw_attributes ||= {}
827
+ self.raw_attributes[name.to_s] = val.fast_xs
828
+ end
829
+ alias_method :[]=, :set_attribute
830
+ def remove_attribute(name)
831
+ name = name.to_s
832
+ if has_attribute? name
833
+ altered!
834
+ self.raw_attributes.delete(name)
835
+ end
836
+ end
837
+ end
838
+
839
+ end