forge-cli 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1299) hide show
  1. data/README.rdoc +6 -0
  2. data/bin/forge +83 -0
  3. data/forge-cli.rdoc +5 -0
  4. data/lib/forge-cli.rb +16 -0
  5. data/lib/forge-cli/ability_installer.rb +25 -0
  6. data/lib/forge-cli/application_creator.rb +37 -0
  7. data/lib/forge-cli/module_installer.rb +100 -0
  8. data/lib/forge-cli/modules/base/forge_routes.rb +23 -0
  9. data/lib/forge-cli/modules/base/manifest.yml +133 -0
  10. data/lib/forge-cli/modules/base/post_hooks.rb +48 -0
  11. data/lib/forge-cli/modules/base/routes.rb +16 -0
  12. data/lib/forge-cli/modules/ecommerce/_settings_forge_menu.html +7 -0
  13. data/lib/forge-cli/modules/ecommerce/manifest.yml +2 -0
  14. data/lib/forge-cli/post_hooks.rb +13 -0
  15. data/lib/forge-cli/route_installer.rb +42 -0
  16. data/lib/forge-cli/version.rb +3 -0
  17. data/lib/forge/Capfile +8 -0
  18. data/lib/forge/Gemfile +35 -0
  19. data/lib/forge/Gemfile.lock +356 -0
  20. data/lib/forge/Guardfile +30 -0
  21. data/lib/forge/Rakefile +7 -0
  22. data/lib/forge/app/abilities/video_ability.rb +11 -0
  23. data/lib/forge/app/assets/javascripts/app.js +9 -0
  24. data/lib/forge/app/assets/javascripts/application.js +18 -0
  25. data/lib/forge/app/assets/javascripts/controllers/index.js +2 -0
  26. data/lib/forge/app/assets/javascripts/dispatcher.js.coffee +26 -0
  27. data/lib/forge/app/assets/javascripts/features/checkout.js +51 -0
  28. data/lib/forge/app/assets/javascripts/features/mobile.js +36 -0
  29. data/lib/forge/app/assets/javascripts/front.js +11 -0
  30. data/lib/forge/app/assets/javascripts/mobile/jquery.hint.js +44 -0
  31. data/lib/forge/app/assets/javascripts/mobile/mobile.js +25 -0
  32. data/lib/forge/app/assets/stylesheets/application.css.scss +8 -0
  33. data/lib/forge/app/assets/stylesheets/defaults.css.scss +30 -0
  34. data/lib/forge/app/assets/stylesheets/flash_messages.css.scss +9 -0
  35. data/lib/forge/app/assets/stylesheets/mixins.css.scss +100 -0
  36. data/lib/forge/app/assets/stylesheets/mobile.css.scss +130 -0
  37. data/lib/forge/app/assets/stylesheets/naturalize.css.scss +162 -0
  38. data/lib/forge/app/controllers/application_controller.rb +78 -0
  39. data/lib/forge/app/controllers/comments_controller.rb +35 -0
  40. data/lib/forge/app/controllers/contact_controller.rb +30 -0
  41. data/lib/forge/app/controllers/countries_controller.rb +12 -0
  42. data/lib/forge/app/controllers/dispatch_links_controller.rb +7 -0
  43. data/lib/forge/app/controllers/dispatches_controller.rb +18 -0
  44. data/lib/forge/app/controllers/events_controller.rb +47 -0
  45. data/lib/forge/app/controllers/forge/assets_controller.rb +91 -0
  46. data/lib/forge/app/controllers/forge/banners_controller.rb +59 -0
  47. data/lib/forge/app/controllers/forge/comments_controller.rb +58 -0
  48. data/lib/forge/app/controllers/forge/countries_controller.rb +31 -0
  49. data/lib/forge/app/controllers/forge/dispatch_clicks_controller.rb +5 -0
  50. data/lib/forge/app/controllers/forge/dispatches_controller.rb +92 -0
  51. data/lib/forge/app/controllers/forge/events_controller.rb +47 -0
  52. data/lib/forge/app/controllers/forge/galleries_controller.rb +55 -0
  53. data/lib/forge/app/controllers/forge/help_topics_controller.rb +31 -0
  54. data/lib/forge/app/controllers/forge/index_controller.rb +15 -0
  55. data/lib/forge/app/controllers/forge/orders_controller.rb +81 -0
  56. data/lib/forge/app/controllers/forge/pages_controller.rb +83 -0
  57. data/lib/forge/app/controllers/forge/post_categories_controller.rb +53 -0
  58. data/lib/forge/app/controllers/forge/posts_controller.rb +76 -0
  59. data/lib/forge/app/controllers/forge/product_categories_controller.rb +56 -0
  60. data/lib/forge/app/controllers/forge/products_controller.rb +91 -0
  61. data/lib/forge/app/controllers/forge/sales_controller.rb +69 -0
  62. data/lib/forge/app/controllers/forge/settings_controller.rb +26 -0
  63. data/lib/forge/app/controllers/forge/subscriber_groups_controller.rb +51 -0
  64. data/lib/forge/app/controllers/forge/subscribers_controller.rb +67 -0
  65. data/lib/forge/app/controllers/forge/tax_rates_controller.rb +50 -0
  66. data/lib/forge/app/controllers/forge/users_controller.rb +70 -0
  67. data/lib/forge/app/controllers/forge/video_feeds_controller.rb +47 -0
  68. data/lib/forge/app/controllers/forge/videos_controller.rb +83 -0
  69. data/lib/forge/app/controllers/forge_controller.rb +47 -0
  70. data/lib/forge/app/controllers/hosted_payment_controller.rb +25 -0
  71. data/lib/forge/app/controllers/index_controller.rb +22 -0
  72. data/lib/forge/app/controllers/integrated_payment_controller.rb +36 -0
  73. data/lib/forge/app/controllers/orders_controller.rb +134 -0
  74. data/lib/forge/app/controllers/pages_controller.rb +24 -0
  75. data/lib/forge/app/controllers/posts_controller.rb +63 -0
  76. data/lib/forge/app/controllers/product_images_controller.rb +2 -0
  77. data/lib/forge/app/controllers/products_controller.rb +31 -0
  78. data/lib/forge/app/controllers/sessions_controller.rb +35 -0
  79. data/lib/forge/app/controllers/subscribers_controller.rb +44 -0
  80. data/lib/forge/app/form_builders/forge_form_builder.rb +119 -0
  81. data/lib/forge/app/helpers/application_helper.rb +126 -0
  82. data/lib/forge/app/helpers/events_helper.rb +13 -0
  83. data/lib/forge/app/helpers/forge/orders_helper.rb +19 -0
  84. data/lib/forge/app/helpers/forge/tree_helper.rb +87 -0
  85. data/lib/forge/app/helpers/forge/video_feeds_helper.rb +11 -0
  86. data/lib/forge/app/helpers/forge_button_helper.rb +49 -0
  87. data/lib/forge/app/helpers/forge_helper.rb +132 -0
  88. data/lib/forge/app/helpers/form_helper.rb +108 -0
  89. data/lib/forge/app/helpers/mobile_helper.rb +20 -0
  90. data/lib/forge/app/helpers/orders_helper.rb +12 -0
  91. data/lib/forge/app/helpers/routes_helper.rb +14 -0
  92. data/lib/forge/app/mailers/comment_mailer.rb +10 -0
  93. data/lib/forge/app/mailers/contact_mailer.rb +9 -0
  94. data/lib/forge/app/mailers/dispatch_mailer.rb +9 -0
  95. data/lib/forge/app/mailers/receipt_mailer.rb +16 -0
  96. data/lib/forge/app/mailers/user_mailer.rb +9 -0
  97. data/lib/forge/app/models/ability.rb +26 -0
  98. data/lib/forge/app/models/address.rb +21 -0
  99. data/lib/forge/app/models/asset.rb +75 -0
  100. data/lib/forge/app/models/banner.rb +11 -0
  101. data/lib/forge/app/models/comment.rb +64 -0
  102. data/lib/forge/app/models/comment_observer.rb +9 -0
  103. data/lib/forge/app/models/comment_subscriber.rb +9 -0
  104. data/lib/forge/app/models/contact.rb +21 -0
  105. data/lib/forge/app/models/country.rb +37 -0
  106. data/lib/forge/app/models/dispatch.rb +68 -0
  107. data/lib/forge/app/models/dispatch_bounce.rb +2 -0
  108. data/lib/forge/app/models/dispatch_link.rb +12 -0
  109. data/lib/forge/app/models/dispatch_link_click.rb +3 -0
  110. data/lib/forge/app/models/dispatch_open.rb +3 -0
  111. data/lib/forge/app/models/dispatch_unsubscribe.rb +5 -0
  112. data/lib/forge/app/models/event.rb +54 -0
  113. data/lib/forge/app/models/gallery.rb +12 -0
  114. data/lib/forge/app/models/help_topic.rb +14 -0
  115. data/lib/forge/app/models/i18n_lookup.rb +13 -0
  116. data/lib/forge/app/models/line_item.rb +33 -0
  117. data/lib/forge/app/models/my_settings.rb +5 -0
  118. data/lib/forge/app/models/order.rb +279 -0
  119. data/lib/forge/app/models/order_transaction.rb +50 -0
  120. data/lib/forge/app/models/page.rb +126 -0
  121. data/lib/forge/app/models/photo.rb +6 -0
  122. data/lib/forge/app/models/post.rb +55 -0
  123. data/lib/forge/app/models/post_category.rb +4 -0
  124. data/lib/forge/app/models/product.rb +60 -0
  125. data/lib/forge/app/models/product_category.rb +28 -0
  126. data/lib/forge/app/models/product_image.rb +7 -0
  127. data/lib/forge/app/models/province.rb +25 -0
  128. data/lib/forge/app/models/queued_dispatch.rb +36 -0
  129. data/lib/forge/app/models/role.rb +3 -0
  130. data/lib/forge/app/models/s3_direct_upload.rb +72 -0
  131. data/lib/forge/app/models/sale.rb +41 -0
  132. data/lib/forge/app/models/subscriber.rb +5 -0
  133. data/lib/forge/app/models/subscriber_group.rb +6 -0
  134. data/lib/forge/app/models/subscriber_group_member.rb +4 -0
  135. data/lib/forge/app/models/tax_rate.rb +26 -0
  136. data/lib/forge/app/models/user.rb +45 -0
  137. data/lib/forge/app/models/video.rb +97 -0
  138. data/lib/forge/app/models/video_feed.rb +86 -0
  139. data/lib/forge/app/sweepers/page_sweeper.rb +11 -0
  140. data/lib/forge/app/views/comment_mailer/comment_notification.html.haml +7 -0
  141. data/lib/forge/app/views/comments/_comment.html.haml +12 -0
  142. data/lib/forge/app/views/comments/_form.html.haml +38 -0
  143. data/lib/forge/app/views/contact/_form.html.haml +23 -0
  144. data/lib/forge/app/views/contact/contact.html.haml +4 -0
  145. data/lib/forge/app/views/contact_mailer/contact.html.haml +17 -0
  146. data/lib/forge/app/views/devise/confirmations/new.html.erb +12 -0
  147. data/lib/forge/app/views/devise/confirmations/new.html.haml +0 -0
  148. data/lib/forge/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  149. data/lib/forge/app/views/devise/mailer/confirmation_instructions.html.haml +0 -0
  150. data/lib/forge/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  151. data/lib/forge/app/views/devise/mailer/reset_password_instructions.html.haml +0 -0
  152. data/lib/forge/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  153. data/lib/forge/app/views/devise/mailer/unlock_instructions.html.haml +0 -0
  154. data/lib/forge/app/views/devise/passwords/edit.html.erb +16 -0
  155. data/lib/forge/app/views/devise/passwords/edit.html.haml +0 -0
  156. data/lib/forge/app/views/devise/passwords/new.html.haml +15 -0
  157. data/lib/forge/app/views/devise/registrations/edit.html.haml +0 -0
  158. data/lib/forge/app/views/devise/registrations/new.html.haml +22 -0
  159. data/lib/forge/app/views/devise/sessions/new.html.haml +26 -0
  160. data/lib/forge/app/views/devise/shared/_links.erb +19 -0
  161. data/lib/forge/app/views/devise/shared/_links.haml +0 -0
  162. data/lib/forge/app/views/devise/unlocks/new.html.erb +12 -0
  163. data/lib/forge/app/views/devise/unlocks/new.html.haml +0 -0
  164. data/lib/forge/app/views/dispatch_mailer/dispatch.html.haml +4 -0
  165. data/lib/forge/app/views/events/index_calendar.html.haml +16 -0
  166. data/lib/forge/app/views/events/index_list.html.haml +9 -0
  167. data/lib/forge/app/views/events/show.html.haml +16 -0
  168. data/lib/forge/app/views/forge/assets/_asset.html.haml +12 -0
  169. data/lib/forge/app/views/forge/assets/_drawer_asset.html.haml +11 -0
  170. data/lib/forge/app/views/forge/assets/_play_video.html.haml +4 -0
  171. data/lib/forge/app/views/forge/assets/_upload_progress.html.haml +11 -0
  172. data/lib/forge/app/views/forge/assets/edit.html.haml +5 -0
  173. data/lib/forge/app/views/forge/assets/index.html.haml +21 -0
  174. data/lib/forge/app/views/forge/assets/new.html.haml +15 -0
  175. data/lib/forge/app/views/forge/assets/place.html.haml +1 -0
  176. data/lib/forge/app/views/forge/assets/prepare.html.haml +34 -0
  177. data/lib/forge/app/views/forge/banners/_banner.html.haml +7 -0
  178. data/lib/forge/app/views/forge/banners/_form.html.haml +36 -0
  179. data/lib/forge/app/views/forge/banners/edit.html.haml +2 -0
  180. data/lib/forge/app/views/forge/banners/index.html.haml +16 -0
  181. data/lib/forge/app/views/forge/banners/new.html.haml +2 -0
  182. data/lib/forge/app/views/forge/comments/_comment.html.haml +38 -0
  183. data/lib/forge/app/views/forge/comments/index.html.haml +19 -0
  184. data/lib/forge/app/views/forge/countries/_active_countries.html.haml +6 -0
  185. data/lib/forge/app/views/forge/countries/_country_list.html.haml +3 -0
  186. data/lib/forge/app/views/forge/countries/index.html.haml +62 -0
  187. data/lib/forge/app/views/forge/dispatch_clicks/index.html.erb +2 -0
  188. data/lib/forge/app/views/forge/dispatches/_dispatch.html.haml +16 -0
  189. data/lib/forge/app/views/forge/dispatches/_form.html.haml +27 -0
  190. data/lib/forge/app/views/forge/dispatches/_header.html.haml +7 -0
  191. data/lib/forge/app/views/forge/dispatches/_show_nav.html.haml +7 -0
  192. data/lib/forge/app/views/forge/dispatches/clicks.html.haml +23 -0
  193. data/lib/forge/app/views/forge/dispatches/edit.html.haml +2 -0
  194. data/lib/forge/app/views/forge/dispatches/index.html.haml +14 -0
  195. data/lib/forge/app/views/forge/dispatches/new.html.haml +2 -0
  196. data/lib/forge/app/views/forge/dispatches/opens.html.haml +22 -0
  197. data/lib/forge/app/views/forge/dispatches/queue.html.haml +44 -0
  198. data/lib/forge/app/views/forge/dispatches/show.html.haml +92 -0
  199. data/lib/forge/app/views/forge/dispatches/unsubscribes.html.haml +23 -0
  200. data/lib/forge/app/views/forge/events/_event.html.haml +10 -0
  201. data/lib/forge/app/views/forge/events/_form.html.haml +56 -0
  202. data/lib/forge/app/views/forge/events/edit.html.haml +4 -0
  203. data/lib/forge/app/views/forge/events/index.html.haml +14 -0
  204. data/lib/forge/app/views/forge/events/new.html.haml +5 -0
  205. data/lib/forge/app/views/forge/galleries/_form.html.haml +31 -0
  206. data/lib/forge/app/views/forge/galleries/_gallery.html.haml +10 -0
  207. data/lib/forge/app/views/forge/galleries/_photo.html.haml +3 -0
  208. data/lib/forge/app/views/forge/galleries/edit.html.haml +4 -0
  209. data/lib/forge/app/views/forge/galleries/index.html.haml +17 -0
  210. data/lib/forge/app/views/forge/galleries/new.html.haml +4 -0
  211. data/lib/forge/app/views/forge/help/index.html.haml +0 -0
  212. data/lib/forge/app/views/forge/help_topics/_help_nav.html.haml +10 -0
  213. data/lib/forge/app/views/forge/help_topics/index.html.haml +6 -0
  214. data/lib/forge/app/views/forge/help_topics/search.html.haml +10 -0
  215. data/lib/forge/app/views/forge/help_topics/show.html.haml +17 -0
  216. data/lib/forge/app/views/forge/index/index.html.haml +25 -0
  217. data/lib/forge/app/views/forge/orders/_addresses.html.haml +18 -0
  218. data/lib/forge/app/views/forge/orders/_cart.html.haml +42 -0
  219. data/lib/forge/app/views/forge/orders/_form.html.haml +41 -0
  220. data/lib/forge/app/views/forge/orders/_order.html.haml +27 -0
  221. data/lib/forge/app/views/forge/orders/edit.html.haml +2 -0
  222. data/lib/forge/app/views/forge/orders/index.html.haml +21 -0
  223. data/lib/forge/app/views/forge/orders/new.html.haml +2 -0
  224. data/lib/forge/app/views/forge/orders/show.html.haml +21 -0
  225. data/lib/forge/app/views/forge/pages/_form.html.haml +47 -0
  226. data/lib/forge/app/views/forge/pages/_page.html.haml +10 -0
  227. data/lib/forge/app/views/forge/pages/_subpage.html.haml +9 -0
  228. data/lib/forge/app/views/forge/pages/edit.html.haml +4 -0
  229. data/lib/forge/app/views/forge/pages/index.html.haml +26 -0
  230. data/lib/forge/app/views/forge/pages/new.html.haml +4 -0
  231. data/lib/forge/app/views/forge/post_categories/_form.html.haml +7 -0
  232. data/lib/forge/app/views/forge/post_categories/_post_category.html.haml +8 -0
  233. data/lib/forge/app/views/forge/post_categories/edit.html.haml +3 -0
  234. data/lib/forge/app/views/forge/post_categories/index.html.haml +28 -0
  235. data/lib/forge/app/views/forge/posts/_form.html.haml +58 -0
  236. data/lib/forge/app/views/forge/posts/_post.html.haml +17 -0
  237. data/lib/forge/app/views/forge/posts/edit.html.haml +5 -0
  238. data/lib/forge/app/views/forge/posts/index.html.haml +14 -0
  239. data/lib/forge/app/views/forge/posts/new.html.haml +5 -0
  240. data/lib/forge/app/views/forge/product_categories/_form.html.haml +7 -0
  241. data/lib/forge/app/views/forge/product_categories/_product_category.html.haml +8 -0
  242. data/lib/forge/app/views/forge/product_categories/edit.html.haml +2 -0
  243. data/lib/forge/app/views/forge/product_categories/index.html.haml +32 -0
  244. data/lib/forge/app/views/forge/products/_form.html.haml +37 -0
  245. data/lib/forge/app/views/forge/products/_product.html.haml +10 -0
  246. data/lib/forge/app/views/forge/products/_product_list.html.haml +1 -0
  247. data/lib/forge/app/views/forge/products/_product_selector.html.haml +11 -0
  248. data/lib/forge/app/views/forge/products/edit.html.haml +6 -0
  249. data/lib/forge/app/views/forge/products/index.html.haml +22 -0
  250. data/lib/forge/app/views/forge/products/modules/_details.html.haml +28 -0
  251. data/lib/forge/app/views/forge/products/modules/_image.html.haml +3 -0
  252. data/lib/forge/app/views/forge/products/modules/_images.html.haml +14 -0
  253. data/lib/forge/app/views/forge/products/modules/_taxes_shipping.html.haml +33 -0
  254. data/lib/forge/app/views/forge/products/new.html.haml +4 -0
  255. data/lib/forge/app/views/forge/sales/_form.html.haml +35 -0
  256. data/lib/forge/app/views/forge/sales/_product.html.haml +2 -0
  257. data/lib/forge/app/views/forge/sales/_products.html.haml +1 -0
  258. data/lib/forge/app/views/forge/sales/_sale.html.haml +14 -0
  259. data/lib/forge/app/views/forge/sales/edit.html.haml +4 -0
  260. data/lib/forge/app/views/forge/sales/index.html.haml +14 -0
  261. data/lib/forge/app/views/forge/sales/modules/_details.html.haml +31 -0
  262. data/lib/forge/app/views/forge/sales/modules/_products.html.haml +62 -0
  263. data/lib/forge/app/views/forge/sales/new.html.haml +4 -0
  264. data/lib/forge/app/views/forge/settings/_ecommerce.html.haml +37 -0
  265. data/lib/forge/app/views/forge/settings/_general.html.haml +39 -0
  266. data/lib/forge/app/views/forge/settings/_mobile.html.haml +28 -0
  267. data/lib/forge/app/views/forge/settings/_video_feed.html.haml +37 -0
  268. data/lib/forge/app/views/forge/settings/show.html.haml +46 -0
  269. data/lib/forge/app/views/forge/shared/_asset_drawer.html.haml +24 -0
  270. data/lib/forge/app/views/forge/shared/_menu.html.haml +4 -0
  271. data/lib/forge/app/views/forge/shared/_new_model_asset.html.haml +12 -0
  272. data/lib/forge/app/views/forge/shared/_new_model_asset_swfupload.html.haml +2 -0
  273. data/lib/forge/app/views/forge/shared/_section_footer.html.haml +9 -0
  274. data/lib/forge/app/views/forge/shared/_section_header.html.haml +16 -0
  275. data/lib/forge/app/views/forge/shared/_seo_fields.html.haml +21 -0
  276. data/lib/forge/app/views/forge/shared/_settings_nav.html.haml +6 -0
  277. data/lib/forge/app/views/forge/shared/menu_items/_assets.html.haml +3 -0
  278. data/lib/forge/app/views/forge/shared/menu_items/_banners.html.haml +6 -0
  279. data/lib/forge/app/views/forge/shared/menu_items/_comments.html.haml +2 -0
  280. data/lib/forge/app/views/forge/shared/menu_items/_dispatches.html.haml +9 -0
  281. data/lib/forge/app/views/forge/shared/menu_items/_events.html.haml +6 -0
  282. data/lib/forge/app/views/forge/shared/menu_items/_galleries.html.haml +6 -0
  283. data/lib/forge/app/views/forge/shared/menu_items/_pages.html.haml +6 -0
  284. data/lib/forge/app/views/forge/shared/menu_items/_posts.html.haml +7 -0
  285. data/lib/forge/app/views/forge/shared/menu_items/_products.html.haml +8 -0
  286. data/lib/forge/app/views/forge/shared/menu_items/_settings.html.haml +2 -0
  287. data/lib/forge/app/views/forge/shared/menu_items/_users.html.haml +2 -0
  288. data/lib/forge/app/views/forge/shared/menu_items/_video_feeds.html.haml +5 -0
  289. data/lib/forge/app/views/forge/shared/menu_items/_videos.html.haml +6 -0
  290. data/lib/forge/app/views/forge/subscriber_groups/_form.html.haml +6 -0
  291. data/lib/forge/app/views/forge/subscriber_groups/_subscriber_group.html.haml +12 -0
  292. data/lib/forge/app/views/forge/subscriber_groups/edit.html.haml +1 -0
  293. data/lib/forge/app/views/forge/subscriber_groups/index.html.haml +25 -0
  294. data/lib/forge/app/views/forge/subscriber_groups/new.html.haml +2 -0
  295. data/lib/forge/app/views/forge/subscribers/_form.html.haml +22 -0
  296. data/lib/forge/app/views/forge/subscribers/_subscriber.html.haml +12 -0
  297. data/lib/forge/app/views/forge/subscribers/edit.html.haml +19 -0
  298. data/lib/forge/app/views/forge/subscribers/index.html.haml +48 -0
  299. data/lib/forge/app/views/forge/subscribers/new.html.haml +2 -0
  300. data/lib/forge/app/views/forge/tax_rates/_form.html.haml +25 -0
  301. data/lib/forge/app/views/forge/tax_rates/_tax_rate.html.haml +12 -0
  302. data/lib/forge/app/views/forge/tax_rates/edit.html.haml +1 -0
  303. data/lib/forge/app/views/forge/tax_rates/index.html.haml +34 -0
  304. data/lib/forge/app/views/forge/users/_form.html.haml +49 -0
  305. data/lib/forge/app/views/forge/users/_user.html.haml +21 -0
  306. data/lib/forge/app/views/forge/users/edit.html.haml +2 -0
  307. data/lib/forge/app/views/forge/users/index.html.haml +21 -0
  308. data/lib/forge/app/views/forge/users/new.html.haml +2 -0
  309. data/lib/forge/app/views/forge/video_feeds/_form.html.haml +36 -0
  310. data/lib/forge/app/views/forge/video_feeds/_video.html.haml +9 -0
  311. data/lib/forge/app/views/forge/video_feeds/edit.html.haml +2 -0
  312. data/lib/forge/app/views/forge/video_feeds/index.html.haml +15 -0
  313. data/lib/forge/app/views/forge/video_feeds/new.html.haml +2 -0
  314. data/lib/forge/app/views/forge/videos/_form.html.haml +43 -0
  315. data/lib/forge/app/views/forge/videos/_play.html.haml +4 -0
  316. data/lib/forge/app/views/forge/videos/_video.html.haml +30 -0
  317. data/lib/forge/app/views/forge/videos/edit.html.haml +2 -0
  318. data/lib/forge/app/views/forge/videos/index.html.haml +14 -0
  319. data/lib/forge/app/views/forge/videos/new.html.haml +2 -0
  320. data/lib/forge/app/views/hosted_payment/_paypal.html.haml +34 -0
  321. data/lib/forge/app/views/hosted_payment/billing.html.haml +11 -0
  322. data/lib/forge/app/views/index/index.html.haml +167 -0
  323. data/lib/forge/app/views/index/sitemap.html.haml +5 -0
  324. data/lib/forge/app/views/index/sitemap.xml.haml +25 -0
  325. data/lib/forge/app/views/integrated_payment/_credit_card_form.html.haml +45 -0
  326. data/lib/forge/app/views/integrated_payment/billing.html.haml +32 -0
  327. data/lib/forge/app/views/layouts/application.html.haml +26 -0
  328. data/lib/forge/app/views/layouts/application.mobile.haml +52 -0
  329. data/lib/forge/app/views/layouts/forge.html.haml +71 -0
  330. data/lib/forge/app/views/layouts/forge_login.html.haml +18 -0
  331. data/lib/forge/app/views/mobile/_comment.mobile.haml +10 -0
  332. data/lib/forge/app/views/mobile/_comment_form.mobile.haml +26 -0
  333. data/lib/forge/app/views/mobile/_navigation.mobile.haml +12 -0
  334. data/lib/forge/app/views/mobile/contact.mobile.haml +13 -0
  335. data/lib/forge/app/views/mobile/index.mobile.haml +3 -0
  336. data/lib/forge/app/views/mobile/page.mobile.haml +7 -0
  337. data/lib/forge/app/views/mobile/post.mobile.haml +24 -0
  338. data/lib/forge/app/views/mobile/posts.mobile.haml +12 -0
  339. data/lib/forge/app/views/orders/_address_form.html.haml +17 -0
  340. data/lib/forge/app/views/orders/_cart.html.haml +26 -0
  341. data/lib/forge/app/views/orders/_cart_items.html.haml +20 -0
  342. data/lib/forge/app/views/orders/_cart_wrapper.html.haml +5 -0
  343. data/lib/forge/app/views/orders/_coupon.html.haml +6 -0
  344. data/lib/forge/app/views/orders/_display_address.html.haml +13 -0
  345. data/lib/forge/app/views/orders/_order_details.html.haml +8 -0
  346. data/lib/forge/app/views/orders/_summary.html.haml +13 -0
  347. data/lib/forge/app/views/orders/cancel.html.haml +2 -0
  348. data/lib/forge/app/views/orders/checkout.html.haml +94 -0
  349. data/lib/forge/app/views/orders/edit_cart.html.haml +59 -0
  350. data/lib/forge/app/views/orders/paid.html.haml +14 -0
  351. data/lib/forge/app/views/pages/show.html.haml +4 -0
  352. data/lib/forge/app/views/posts/_archive_months.html.haml +5 -0
  353. data/lib/forge/app/views/posts/_categories.html.haml +6 -0
  354. data/lib/forge/app/views/posts/feed.rss.haml +18 -0
  355. data/lib/forge/app/views/posts/index.html.haml +23 -0
  356. data/lib/forge/app/views/posts/show.html.haml +23 -0
  357. data/lib/forge/app/views/products/_add_form.html.haml +8 -0
  358. data/lib/forge/app/views/products/_products.js.haml +24 -0
  359. data/lib/forge/app/views/products/complete.html.haml +4 -0
  360. data/lib/forge/app/views/products/index.html.haml +11 -0
  361. data/lib/forge/app/views/products/show.html.haml +36 -0
  362. data/lib/forge/app/views/receipt_mailer/receipt.html.haml +18 -0
  363. data/lib/forge/app/views/subscribers/index.html.haml +22 -0
  364. data/lib/forge/app/views/user_mailer/approved.html.haml +3 -0
  365. data/lib/forge/config.ru +4 -0
  366. data/lib/forge/config/application.rb +61 -0
  367. data/lib/forge/config/boot.rb +6 -0
  368. data/lib/forge/config/environment.rb +5 -0
  369. data/lib/forge/config/environments/development.rb +45 -0
  370. data/lib/forge/config/environments/production.rb +62 -0
  371. data/lib/forge/config/environments/test.rb +45 -0
  372. data/lib/forge/config/ferret_server.yml +24 -0
  373. data/lib/forge/config/google_sitemap.yml +7 -0
  374. data/lib/forge/config/i18n_fields.yml +47 -0
  375. data/lib/forge/config/initializers/backtrace_silencers.rb +7 -0
  376. data/lib/forge/config/initializers/can_be_foreign.rb +15 -0
  377. data/lib/forge/config/initializers/can_have_comments.rb +16 -0
  378. data/lib/forge/config/initializers/can_use_asset.rb +50 -0
  379. data/lib/forge/config/initializers/ckeditor.rb +147 -0
  380. data/lib/forge/config/initializers/class_extensions/hash.rb +10 -0
  381. data/lib/forge/config/initializers/devise.rb +146 -0
  382. data/lib/forge/config/initializers/ecommerce.rb +5 -0
  383. data/lib/forge/config/initializers/generators.rb +4 -0
  384. data/lib/forge/config/initializers/inflections.rb +23 -0
  385. data/lib/forge/config/initializers/mime_types.rb +5 -0
  386. data/lib/forge/config/initializers/reorderable.rb +16 -0
  387. data/lib/forge/config/initializers/secret_token.rb +17 -0
  388. data/lib/forge/config/initializers/session_store.rb +8 -0
  389. data/lib/forge/config/initializers/validators.rb +7 -0
  390. data/lib/forge/config/locales/devise.en.yml +40 -0
  391. data/lib/forge/config/locales/en.yml +5 -0
  392. data/lib/forge/config/routes.rb +200 -0
  393. data/lib/forge/config/s3.yml.template +19 -0
  394. data/lib/forge/config/settings.yml +8 -0
  395. data/lib/forge/config/settings.yml.template +88 -0
  396. data/lib/forge/config/sitemap.yml +7 -0
  397. data/lib/forge/db/help/assets_index.help +18 -0
  398. data/lib/forge/db/help/comments_index.help +6 -0
  399. data/lib/forge/db/help/pages_index.help +11 -0
  400. data/lib/forge/db/help/pages_new.help +11 -0
  401. data/lib/forge/db/help/posts_index.help +11 -0
  402. data/lib/forge/db/help/posts_new.help +10 -0
  403. data/lib/forge/db/help/products_new.help +50 -0
  404. data/lib/forge/db/help/visual_editor.help +165 -0
  405. data/lib/forge/db/migrate/20130404140735_create_assets.rb +24 -0
  406. data/lib/forge/db/migrate/20130404141259_create_comments.rb +40 -0
  407. data/lib/forge/db/migrate/20130404142157_create_help_topics.rb +18 -0
  408. data/lib/forge/db/migrate/20130404143601_create_settings.rb +18 -0
  409. data/lib/forge/db/migrate/20130404145209_create_roles.rb +22 -0
  410. data/lib/forge/db/migrate/20130404145329_create_taggings.rb +25 -0
  411. data/lib/forge/db/migrate/20130404151730_create_users.rb +30 -0
  412. data/lib/forge/db/migrate/20130405172022_create_pages.rb +35 -0
  413. data/lib/forge/db/schema.rb +603 -0
  414. data/lib/forge/db/seeds.rb +344 -0
  415. data/lib/forge/doc/README_FOR_APP +2 -0
  416. data/lib/forge/doc/i18n.md +92 -0
  417. data/lib/forge/lib/active_form.rb +12 -0
  418. data/lib/forge/lib/assets/images/forge/ajax-loader-dialog.gif +0 -0
  419. data/lib/forge/lib/assets/images/forge/ajax-loader.gif +0 -0
  420. data/lib/forge/lib/assets/images/forge/asset-icons/audio.jpg +0 -0
  421. data/lib/forge/lib/assets/images/forge/asset-icons/misc.jpg +0 -0
  422. data/lib/forge/lib/assets/images/forge/asset-icons/pdf.jpg +0 -0
  423. data/lib/forge/lib/assets/images/forge/asset-icons/presentation.jpg +0 -0
  424. data/lib/forge/lib/assets/images/forge/asset-icons/spreadsheet.jpg +0 -0
  425. data/lib/forge/lib/assets/images/forge/asset-icons/text.jpg +0 -0
  426. data/lib/forge/lib/assets/images/forge/asset-icons/video.jpg +0 -0
  427. data/lib/forge/lib/assets/images/forge/bg-form-gradient.jpg +0 -0
  428. data/lib/forge/lib/assets/images/forge/bg-pagination-active.jpg +0 -0
  429. data/lib/forge/lib/assets/images/forge/bg-search.jpg +0 -0
  430. data/lib/forge/lib/assets/images/forge/bg-shadow-login.jpg +0 -0
  431. data/lib/forge/lib/assets/images/forge/bg-shadow.jpg +0 -0
  432. data/lib/forge/lib/assets/images/forge/bg-tile.jpg +0 -0
  433. data/lib/forge/lib/assets/images/forge/browse-alt.png +0 -0
  434. data/lib/forge/lib/assets/images/forge/browse.png +0 -0
  435. data/lib/forge/lib/assets/images/forge/button-cancel.gif +0 -0
  436. data/lib/forge/lib/assets/images/forge/buttons/bg-button.png +0 -0
  437. data/lib/forge/lib/assets/images/forge/buttons/forge-menu-arrows.png +0 -0
  438. data/lib/forge/lib/assets/images/forge/buttons/icon-button.png +0 -0
  439. data/lib/forge/lib/assets/images/forge/crumb-arrow.png +0 -0
  440. data/lib/forge/lib/assets/images/forge/down-arrow.jpg +0 -0
  441. data/lib/forge/lib/assets/images/forge/drawer-close.png +0 -0
  442. data/lib/forge/lib/assets/images/forge/drawer-tile.gif +0 -0
  443. data/lib/forge/lib/assets/images/forge/file-processing.gif +0 -0
  444. data/lib/forge/lib/assets/images/forge/forge-loader.gif +0 -0
  445. data/lib/forge/lib/assets/images/forge/help/alignment.png +0 -0
  446. data/lib/forge/lib/assets/images/forge/help/bold_italicize_underline.png +0 -0
  447. data/lib/forge/lib/assets/images/forge/help/bullets.png +0 -0
  448. data/lib/forge/lib/assets/images/forge/help/html.png +0 -0
  449. data/lib/forge/lib/assets/images/forge/help/hyperlinks.png +0 -0
  450. data/lib/forge/lib/assets/images/forge/help/image_size_1.png +0 -0
  451. data/lib/forge/lib/assets/images/forge/help/image_size_2.png +0 -0
  452. data/lib/forge/lib/assets/images/forge/help/image_size_2b.png +0 -0
  453. data/lib/forge/lib/assets/images/forge/help/link_popup.jpg +0 -0
  454. data/lib/forge/lib/assets/images/forge/help/link_slug.jpg +0 -0
  455. data/lib/forge/lib/assets/images/forge/help/media.png +0 -0
  456. data/lib/forge/lib/assets/images/forge/help/prepare.png +0 -0
  457. data/lib/forge/lib/assets/images/forge/help/word.png +0 -0
  458. data/lib/forge/lib/assets/images/forge/hr.jpg +0 -0
  459. data/lib/forge/lib/assets/images/forge/icons/checkmark.png +0 -0
  460. data/lib/forge/lib/assets/images/forge/icons/delete.png +0 -0
  461. data/lib/forge/lib/assets/images/forge/icons/edit.png +0 -0
  462. data/lib/forge/lib/assets/images/forge/icons/gear-alt.png +0 -0
  463. data/lib/forge/lib/assets/images/forge/icons/gear.png +0 -0
  464. data/lib/forge/lib/assets/images/forge/icons/image_new.gif +0 -0
  465. data/lib/forge/lib/assets/images/forge/icons/index-icons.png +0 -0
  466. data/lib/forge/lib/assets/images/forge/icons/laptop.png +0 -0
  467. data/lib/forge/lib/assets/images/forge/icons/left-arrow.png +0 -0
  468. data/lib/forge/lib/assets/images/forge/icons/nay.png +0 -0
  469. data/lib/forge/lib/assets/images/forge/icons/plus.png +0 -0
  470. data/lib/forge/lib/assets/images/forge/icons/right-arrow.png +0 -0
  471. data/lib/forge/lib/assets/images/forge/icons/thumbdown.png +0 -0
  472. data/lib/forge/lib/assets/images/forge/icons/thumbup.png +0 -0
  473. data/lib/forge/lib/assets/images/forge/icons/trash.png +0 -0
  474. data/lib/forge/lib/assets/images/forge/icons/yay.png +0 -0
  475. data/lib/forge/lib/assets/images/forge/image_new.gif +0 -0
  476. data/lib/forge/lib/assets/images/forge/input-overlay.jpg +0 -0
  477. data/lib/forge/lib/assets/images/forge/item-bg.jpg +0 -0
  478. data/lib/forge/lib/assets/images/forge/loader-bar.gif +0 -0
  479. data/lib/forge/lib/assets/images/forge/logo-big.png +0 -0
  480. data/lib/forge/lib/assets/images/forge/logo.png +0 -0
  481. data/lib/forge/lib/assets/images/forge/read-meter-bg.png +0 -0
  482. data/lib/forge/lib/assets/images/forge/scroll-bar-bg.jpg +0 -0
  483. data/lib/forge/lib/assets/images/forge/scroll-drag-bg.jpg +0 -0
  484. data/lib/forge/lib/assets/images/forge/sent-meter-bg.png +0 -0
  485. data/lib/forge/lib/assets/images/forge/separator-sm.jpg +0 -0
  486. data/lib/forge/lib/assets/images/forge/sidebar-bg.jpg +0 -0
  487. data/lib/forge/lib/assets/images/forge/slider-bg.jpg +0 -0
  488. data/lib/forge/lib/assets/images/forge/slider-button.png +0 -0
  489. data/lib/forge/lib/assets/images/forge/slider-left.jpg +0 -0
  490. data/lib/forge/lib/assets/images/forge/slider-right.jpg +0 -0
  491. data/lib/forge/lib/assets/images/forge/submenu-bg.jpg +0 -0
  492. data/lib/forge/lib/assets/images/forge/ui/ui-bg_diagonals-thick_90_eeeeee_40x40.png +0 -0
  493. data/lib/forge/lib/assets/images/forge/ui/ui-bg_flat_15_cd0a0a_40x100.png +0 -0
  494. data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_100_e4f1fb_1x400.png +0 -0
  495. data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_50_3baae3_1x400.png +0 -0
  496. data/lib/forge/lib/assets/images/forge/ui/ui-bg_glass_80_d7ebf9_1x400.png +0 -0
  497. data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-hard_100_f2f5f7_1x100.png +0 -0
  498. data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-hard_70_000000_1x100.png +0 -0
  499. data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-soft_100_deedf7_1x100.png +0 -0
  500. data/lib/forge/lib/assets/images/forge/ui/ui-bg_highlight-soft_25_ffef8f_1x100.png +0 -0
  501. data/lib/forge/lib/assets/images/forge/ui/ui-icons_2694e8_256x240.png +0 -0
  502. data/lib/forge/lib/assets/images/forge/ui/ui-icons_2e83ff_256x240.png +0 -0
  503. data/lib/forge/lib/assets/images/forge/ui/ui-icons_3d80b3_256x240.png +0 -0
  504. data/lib/forge/lib/assets/images/forge/ui/ui-icons_72a7cf_256x240.png +0 -0
  505. data/lib/forge/lib/assets/images/forge/ui/ui-icons_ffffff_256x240.png +0 -0
  506. data/lib/forge/lib/assets/images/forge/vimeo-address-bar.jpg +0 -0
  507. data/lib/forge/lib/assets/images/mobile/arrow-nav.png +0 -0
  508. data/lib/forge/lib/assets/images/mobile/arrow.png +0 -0
  509. data/lib/forge/lib/assets/images/mobile/expand.png +0 -0
  510. data/lib/forge/lib/assets/javascripts/forge/features/asset_dialog.js.erb +89 -0
  511. data/lib/forge/lib/assets/javascripts/forge/features/asset_drawer.js.erb +177 -0
  512. data/lib/forge/lib/assets/javascripts/forge/features/asset_uploads.js.erb +130 -0
  513. data/lib/forge/lib/assets/javascripts/forge/features/assets.js +18 -0
  514. data/lib/forge/lib/assets/javascripts/forge/features/buttons.js.erb +40 -0
  515. data/lib/forge/lib/assets/javascripts/forge/features/comments.js.erb +65 -0
  516. data/lib/forge/lib/assets/javascripts/forge/features/compact_form.js.erb +19 -0
  517. data/lib/forge/lib/assets/javascripts/forge/features/date_format.js +125 -0
  518. data/lib/forge/lib/assets/javascripts/forge/features/dispatch.js +58 -0
  519. data/lib/forge/lib/assets/javascripts/forge/features/file_select_widget.js.erb +39 -0
  520. data/lib/forge/lib/assets/javascripts/forge/features/forms.js.erb +42 -0
  521. data/lib/forge/lib/assets/javascripts/forge/features/help.js.erb +121 -0
  522. data/lib/forge/lib/assets/javascripts/forge/features/home_page.js +10 -0
  523. data/lib/forge/lib/assets/javascripts/forge/features/i18n.js +10 -0
  524. data/lib/forge/lib/assets/javascripts/forge/features/loading.js.erb +7 -0
  525. data/lib/forge/lib/assets/javascripts/forge/features/main_menu.js.erb +46 -0
  526. data/lib/forge/lib/assets/javascripts/forge/features/nested_fields.js +83 -0
  527. data/lib/forge/lib/assets/javascripts/forge/features/nested_lists.js +10 -0
  528. data/lib/forge/lib/assets/javascripts/forge/features/notifications.js +28 -0
  529. data/lib/forge/lib/assets/javascripts/forge/features/pages.js +16 -0
  530. data/lib/forge/lib/assets/javascripts/forge/features/s3_direct_upload.js.coffee +43 -0
  531. data/lib/forge/lib/assets/javascripts/forge/features/settings.js +25 -0
  532. data/lib/forge/lib/assets/javascripts/forge/features/video_feeds.js +8 -0
  533. data/lib/forge/lib/assets/javascripts/forge/features/videos.js.erb +62 -0
  534. data/lib/forge/lib/assets/javascripts/forge/forge.js +51 -0
  535. data/lib/forge/lib/assets/javascripts/forge/forge_manifest.js.erb +22 -0
  536. data/lib/forge/lib/assets/javascripts/forge/login.js.erb +7 -0
  537. data/lib/forge/lib/assets/stylesheets/forge/assets.css.scss +39 -0
  538. data/lib/forge/lib/assets/stylesheets/forge/buttons.css.scss +43 -0
  539. data/lib/forge/lib/assets/stylesheets/forge/countries.css.scss +8 -0
  540. data/lib/forge/lib/assets/stylesheets/forge/defaults.css.scss +21 -0
  541. data/lib/forge/lib/assets/stylesheets/forge/dispatches.css.scss +29 -0
  542. data/lib/forge/lib/assets/stylesheets/forge/flash_messages.css.scss +13 -0
  543. data/lib/forge/lib/assets/stylesheets/forge/fonts.css.scss +7 -0
  544. data/lib/forge/lib/assets/stylesheets/forge/forge.css.scss +42 -0
  545. data/lib/forge/lib/assets/stylesheets/forge/forge.ui.css.scss +384 -0
  546. data/lib/forge/lib/assets/stylesheets/forge/forms.css.scss +92 -0
  547. data/lib/forge/lib/assets/stylesheets/forge/help.css.scss +13 -0
  548. data/lib/forge/lib/assets/stylesheets/forge/i18n.css.scss +7 -0
  549. data/lib/forge/lib/assets/stylesheets/forge/layout.css.scss +45 -0
  550. data/lib/forge/lib/assets/stylesheets/forge/lists.css.scss +137 -0
  551. data/lib/forge/lib/assets/stylesheets/forge/loading.css.scss +6 -0
  552. data/lib/forge/lib/assets/stylesheets/forge/login.css.scss +38 -0
  553. data/lib/forge/lib/assets/stylesheets/forge/main_menu.css.scss +49 -0
  554. data/lib/forge/lib/assets/stylesheets/forge/orders.css.scss +17 -0
  555. data/lib/forge/lib/assets/stylesheets/forge/radio_slider.css.scss +14 -0
  556. data/lib/forge/lib/daemon.rb +74 -0
  557. data/lib/forge/lib/forge.rb +7 -0
  558. data/lib/forge/lib/forge/credit_card_processor.rb +93 -0
  559. data/lib/forge/lib/forge/recipes.rb +6 -0
  560. data/lib/forge/lib/forge/s3_signature.rb +216 -0
  561. data/lib/forge/lib/forge/settings.rb +4 -0
  562. data/lib/forge/lib/generators/forge/i18n_migrations/i18n_migrations_generator.rb +30 -0
  563. data/lib/forge/lib/generators/forge/i18n_migrations/templates/migration.rb +14 -0
  564. data/lib/forge/lib/generators/forge/scaffold/USAGE +8 -0
  565. data/lib/forge/lib/generators/forge/scaffold/scaffold_generator.rb +64 -0
  566. data/lib/forge/lib/generators/forge/scaffold/templates/controller.rb +73 -0
  567. data/lib/forge/lib/generators/forge/scaffold/templates/controller_spec.rb +215 -0
  568. data/lib/forge/lib/generators/forge/scaffold/templates/menu_section.html.haml +6 -0
  569. data/lib/forge/lib/generators/forge/scaffold/templates/view__form.html.haml +43 -0
  570. data/lib/forge/lib/generators/forge/scaffold/templates/view__item.html.haml +7 -0
  571. data/lib/forge/lib/generators/forge/scaffold/templates/view_edit.html.haml +4 -0
  572. data/lib/forge/lib/generators/forge/scaffold/templates/view_index.html.haml +17 -0
  573. data/lib/forge/lib/generators/forge/scaffold/templates/view_new.html.haml +5 -0
  574. data/lib/forge/lib/generators/forge/scaffold_small/scaffold_small_generator.rb +8 -0
  575. data/lib/forge/lib/generators/forge/scaffold_small/templates/controller.rb +80 -0
  576. data/lib/forge/lib/generators/forge/scaffold_small/templates/controller_spec.rb +193 -0
  577. data/lib/forge/lib/generators/forge/scaffold_small/templates/menu_section.html.haml +6 -0
  578. data/lib/forge/lib/generators/forge/scaffold_small/templates/view__form.html.haml +27 -0
  579. data/lib/forge/lib/generators/forge/scaffold_small/templates/view__item.html.haml +8 -0
  580. data/lib/forge/lib/generators/forge/scaffold_small/templates/view_edit.html.haml +1 -0
  581. data/lib/forge/lib/generators/forge/scaffold_small/templates/view_index.html.haml +35 -0
  582. data/lib/forge/lib/generators/forge/scaffold_small/templates/view_new.html.haml +1 -0
  583. data/lib/forge/lib/models/order/payment_methods.rb +85 -0
  584. data/lib/forge/lib/recipes/aaf_recipes.rb +114 -0
  585. data/lib/forge/lib/tasks/forge.rake +147 -0
  586. data/lib/forge/lib/templates/active_record/model/model.rb +41 -0
  587. data/lib/forge/public/404.html +26 -0
  588. data/lib/forge/public/422.html +26 -0
  589. data/lib/forge/public/500.html +25 -0
  590. data/lib/forge/public/favicon.ico +0 -0
  591. data/lib/forge/public/flash/swfupload.swf +0 -0
  592. data/lib/forge/public/images/mastercard.gif +0 -0
  593. data/lib/forge/public/images/visa.gif +0 -0
  594. data/lib/forge/public/javascripts/ckeditor/CHANGES.html +923 -0
  595. data/lib/forge/public/javascripts/ckeditor/INSTALL.html +92 -0
  596. data/lib/forge/public/javascripts/ckeditor/LICENSE.html +1334 -0
  597. data/lib/forge/public/javascripts/ckeditor/_source/adapters/jquery.js +297 -0
  598. data/lib/forge/public/javascripts/ckeditor/_source/core/_bootstrap.js +91 -0
  599. data/lib/forge/public/javascripts/ckeditor/_source/core/ajax.js +143 -0
  600. data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor.js +113 -0
  601. data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor_base.js +193 -0
  602. data/lib/forge/public/javascripts/ckeditor/_source/core/ckeditor_basic.js +242 -0
  603. data/lib/forge/public/javascripts/ckeditor/_source/core/command.js +73 -0
  604. data/lib/forge/public/javascripts/ckeditor/_source/core/commanddefinition.js +102 -0
  605. data/lib/forge/public/javascripts/ckeditor/_source/core/config.js +405 -0
  606. data/lib/forge/public/javascripts/ckeditor/_source/core/dataprocessor.js +66 -0
  607. data/lib/forge/public/javascripts/ckeditor/_source/core/dom.js +21 -0
  608. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
  609. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/document.js +224 -0
  610. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
  611. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/domobject.js +251 -0
  612. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/element.js +1556 -0
  613. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/elementpath.js +116 -0
  614. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/event.js +142 -0
  615. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/node.js +683 -0
  616. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/nodelist.js +23 -0
  617. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/range.js +1880 -0
  618. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/rangelist.js +163 -0
  619. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/text.js +123 -0
  620. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/walker.js +445 -0
  621. data/lib/forge/public/javascripts/ckeditor/_source/core/dom/window.js +96 -0
  622. data/lib/forge/public/javascripts/ckeditor/_source/core/dtd.js +233 -0
  623. data/lib/forge/public/javascripts/ckeditor/_source/core/editor.js +759 -0
  624. data/lib/forge/public/javascripts/ckeditor/_source/core/editor_basic.js +182 -0
  625. data/lib/forge/public/javascripts/ckeditor/_source/core/env.js +229 -0
  626. data/lib/forge/public/javascripts/ckeditor/_source/core/event.js +336 -0
  627. data/lib/forge/public/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
  628. data/lib/forge/public/javascripts/ckeditor/_source/core/focusmanager.js +137 -0
  629. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser.js +218 -0
  630. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  631. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  632. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
  633. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/element.js +240 -0
  634. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
  635. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/fragment.js +497 -0
  636. data/lib/forge/public/javascripts/ckeditor/_source/core/htmlparser/text.js +55 -0
  637. data/lib/forge/public/javascripts/ckeditor/_source/core/imagecacher.js +59 -0
  638. data/lib/forge/public/javascripts/ckeditor/_source/core/lang.js +152 -0
  639. data/lib/forge/public/javascripts/ckeditor/_source/core/loader.js +243 -0
  640. data/lib/forge/public/javascripts/ckeditor/_source/core/plugindefinition.js +66 -0
  641. data/lib/forge/public/javascripts/ckeditor/_source/core/plugins.js +85 -0
  642. data/lib/forge/public/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
  643. data/lib/forge/public/javascripts/ckeditor/_source/core/scriptloader.js +198 -0
  644. data/lib/forge/public/javascripts/ckeditor/_source/core/skins.js +204 -0
  645. data/lib/forge/public/javascripts/ckeditor/_source/core/themes.js +19 -0
  646. data/lib/forge/public/javascripts/ckeditor/_source/core/tools.js +747 -0
  647. data/lib/forge/public/javascripts/ckeditor/_source/core/ui.js +116 -0
  648. data/lib/forge/public/javascripts/ckeditor/_source/core/xml.js +165 -0
  649. data/lib/forge/public/javascripts/ckeditor/_source/lang/_languages.js +83 -0
  650. data/lib/forge/public/javascripts/ckeditor/_source/lang/_translationstatus.txt +60 -0
  651. data/lib/forge/public/javascripts/ckeditor/_source/lang/af.js +758 -0
  652. data/lib/forge/public/javascripts/ckeditor/_source/lang/ar.js +758 -0
  653. data/lib/forge/public/javascripts/ckeditor/_source/lang/bg.js +758 -0
  654. data/lib/forge/public/javascripts/ckeditor/_source/lang/bn.js +758 -0
  655. data/lib/forge/public/javascripts/ckeditor/_source/lang/bs.js +758 -0
  656. data/lib/forge/public/javascripts/ckeditor/_source/lang/ca.js +758 -0
  657. data/lib/forge/public/javascripts/ckeditor/_source/lang/cs.js +758 -0
  658. data/lib/forge/public/javascripts/ckeditor/_source/lang/cy.js +758 -0
  659. data/lib/forge/public/javascripts/ckeditor/_source/lang/da.js +758 -0
  660. data/lib/forge/public/javascripts/ckeditor/_source/lang/de.js +758 -0
  661. data/lib/forge/public/javascripts/ckeditor/_source/lang/el.js +758 -0
  662. data/lib/forge/public/javascripts/ckeditor/_source/lang/en-au.js +758 -0
  663. data/lib/forge/public/javascripts/ckeditor/_source/lang/en-ca.js +758 -0
  664. data/lib/forge/public/javascripts/ckeditor/_source/lang/en-gb.js +758 -0
  665. data/lib/forge/public/javascripts/ckeditor/_source/lang/en.js +758 -0
  666. data/lib/forge/public/javascripts/ckeditor/_source/lang/eo.js +758 -0
  667. data/lib/forge/public/javascripts/ckeditor/_source/lang/es.js +758 -0
  668. data/lib/forge/public/javascripts/ckeditor/_source/lang/et.js +758 -0
  669. data/lib/forge/public/javascripts/ckeditor/_source/lang/eu.js +758 -0
  670. data/lib/forge/public/javascripts/ckeditor/_source/lang/fa.js +758 -0
  671. data/lib/forge/public/javascripts/ckeditor/_source/lang/fi.js +758 -0
  672. data/lib/forge/public/javascripts/ckeditor/_source/lang/fo.js +758 -0
  673. data/lib/forge/public/javascripts/ckeditor/_source/lang/fr-ca.js +758 -0
  674. data/lib/forge/public/javascripts/ckeditor/_source/lang/fr.js +758 -0
  675. data/lib/forge/public/javascripts/ckeditor/_source/lang/gl.js +758 -0
  676. data/lib/forge/public/javascripts/ckeditor/_source/lang/gu.js +758 -0
  677. data/lib/forge/public/javascripts/ckeditor/_source/lang/he.js +758 -0
  678. data/lib/forge/public/javascripts/ckeditor/_source/lang/hi.js +758 -0
  679. data/lib/forge/public/javascripts/ckeditor/_source/lang/hr.js +758 -0
  680. data/lib/forge/public/javascripts/ckeditor/_source/lang/hu.js +758 -0
  681. data/lib/forge/public/javascripts/ckeditor/_source/lang/is.js +758 -0
  682. data/lib/forge/public/javascripts/ckeditor/_source/lang/it.js +758 -0
  683. data/lib/forge/public/javascripts/ckeditor/_source/lang/ja.js +758 -0
  684. data/lib/forge/public/javascripts/ckeditor/_source/lang/km.js +758 -0
  685. data/lib/forge/public/javascripts/ckeditor/_source/lang/ko.js +758 -0
  686. data/lib/forge/public/javascripts/ckeditor/_source/lang/lt.js +758 -0
  687. data/lib/forge/public/javascripts/ckeditor/_source/lang/lv.js +758 -0
  688. data/lib/forge/public/javascripts/ckeditor/_source/lang/mn.js +758 -0
  689. data/lib/forge/public/javascripts/ckeditor/_source/lang/ms.js +758 -0
  690. data/lib/forge/public/javascripts/ckeditor/_source/lang/nb.js +758 -0
  691. data/lib/forge/public/javascripts/ckeditor/_source/lang/nl.js +758 -0
  692. data/lib/forge/public/javascripts/ckeditor/_source/lang/no.js +758 -0
  693. data/lib/forge/public/javascripts/ckeditor/_source/lang/pl.js +758 -0
  694. data/lib/forge/public/javascripts/ckeditor/_source/lang/pt-br.js +757 -0
  695. data/lib/forge/public/javascripts/ckeditor/_source/lang/pt.js +758 -0
  696. data/lib/forge/public/javascripts/ckeditor/_source/lang/ro.js +758 -0
  697. data/lib/forge/public/javascripts/ckeditor/_source/lang/ru.js +758 -0
  698. data/lib/forge/public/javascripts/ckeditor/_source/lang/sk.js +758 -0
  699. data/lib/forge/public/javascripts/ckeditor/_source/lang/sl.js +758 -0
  700. data/lib/forge/public/javascripts/ckeditor/_source/lang/sr-latn.js +758 -0
  701. data/lib/forge/public/javascripts/ckeditor/_source/lang/sr.js +758 -0
  702. data/lib/forge/public/javascripts/ckeditor/_source/lang/sv.js +758 -0
  703. data/lib/forge/public/javascripts/ckeditor/_source/lang/th.js +758 -0
  704. data/lib/forge/public/javascripts/ckeditor/_source/lang/tr.js +757 -0
  705. data/lib/forge/public/javascripts/ckeditor/_source/lang/uk.js +758 -0
  706. data/lib/forge/public/javascripts/ckeditor/_source/lang/vi.js +758 -0
  707. data/lib/forge/public/javascripts/ckeditor/_source/lang/zh-cn.js +758 -0
  708. data/lib/forge/public/javascripts/ckeditor/_source/lang/zh.js +758 -0
  709. data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
  710. data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  711. data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  712. data/lib/forge/public/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
  713. data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
  714. data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  715. data/lib/forge/public/javascripts/ckeditor/_source/plugins/about/plugin.js +23 -0
  716. data/lib/forge/public/javascripts/ckeditor/_source/plugins/ajax_save/plugin.js +43 -0
  717. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
  718. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
  719. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
  720. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
  721. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
  722. data/lib/forge/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js +44 -0
  723. data/lib/forge/public/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +79 -0
  724. data/lib/forge/public/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
  725. data/lib/forge/public/javascripts/ckeditor/_source/plugins/bidi/plugin.js +247 -0
  726. data/lib/forge/public/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
  727. data/lib/forge/public/javascripts/ckeditor/_source/plugins/button/plugin.js +277 -0
  728. data/lib/forge/public/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +205 -0
  729. data/lib/forge/public/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +412 -0
  730. data/lib/forge/public/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +251 -0
  731. data/lib/forge/public/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
  732. data/lib/forge/public/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
  733. data/lib/forge/public/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +276 -0
  734. data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
  735. data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3016 -0
  736. data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +207 -0
  737. data/lib/forge/public/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1522 -0
  738. data/lib/forge/public/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  739. data/lib/forge/public/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
  740. data/lib/forge/public/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +350 -0
  741. data/lib/forge/public/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +230 -0
  742. data/lib/forge/public/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +206 -0
  743. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
  744. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/images/embed.png +0 -0
  745. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/en.js +9 -0
  746. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
  747. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
  748. data/lib/forge/public/javascripts/ckeditor/_source/plugins/embed/plugin.js +43 -0
  749. data/lib/forge/public/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +363 -0
  750. data/lib/forge/public/javascripts/ckeditor/_source/plugins/entities/plugin.js +227 -0
  751. data/lib/forge/public/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +122 -0
  752. data/lib/forge/public/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +491 -0
  753. data/lib/forge/public/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +885 -0
  754. data/lib/forge/public/javascripts/ckeditor/_source/plugins/find/plugin.js +46 -0
  755. data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
  756. data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  757. data/lib/forge/public/javascripts/ckeditor/_source/plugins/flash/plugin.js +174 -0
  758. data/lib/forge/public/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +398 -0
  759. data/lib/forge/public/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
  760. data/lib/forge/public/javascripts/ckeditor/_source/plugins/format/plugin.js +194 -0
  761. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
  762. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +155 -0
  763. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  764. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +98 -0
  765. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  766. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
  767. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  768. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  769. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  770. data/lib/forge/public/javascripts/ckeditor/_source/plugins/forms/plugin.js +281 -0
  771. data/lib/forge/public/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  772. data/lib/forge/public/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +494 -0
  773. data/lib/forge/public/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
  774. data/lib/forge/public/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
  775. data/lib/forge/public/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1396 -0
  776. data/lib/forge/public/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
  777. data/lib/forge/public/javascripts/ckeditor/_source/plugins/indent/plugin.js +447 -0
  778. data/lib/forge/public/javascripts/ckeditor/_source/plugins/justify/plugin.js +190 -0
  779. data/lib/forge/public/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
  780. data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
  781. data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1420 -0
  782. data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  783. data/lib/forge/public/javascripts/ckeditor/_source/plugins/link/plugin.js +238 -0
  784. data/lib/forge/public/javascripts/ckeditor/_source/plugins/list/plugin.js +683 -0
  785. data/lib/forge/public/javascripts/ckeditor/_source/plugins/listblock/plugin.js +257 -0
  786. data/lib/forge/public/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +203 -0
  787. data/lib/forge/public/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  788. data/lib/forge/public/javascripts/ckeditor/_source/plugins/maximize/plugin.js +343 -0
  789. data/lib/forge/public/javascripts/ckeditor/_source/plugins/menu/plugin.js +409 -0
  790. data/lib/forge/public/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
  791. data/lib/forge/public/javascripts/ckeditor/_source/plugins/newpage/plugin.js +54 -0
  792. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  793. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +121 -0
  794. data/lib/forge/public/javascripts/ckeditor/_source/plugins/panel/plugin.js +398 -0
  795. data/lib/forge/public/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
  796. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1170 -0
  797. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +122 -0
  798. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +70 -0
  799. data/lib/forge/public/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +145 -0
  800. data/lib/forge/public/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
  801. data/lib/forge/public/javascripts/ckeditor/_source/plugins/preview/plugin.js +108 -0
  802. data/lib/forge/public/javascripts/ckeditor/_source/plugins/print/plugin.js +41 -0
  803. data/lib/forge/public/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +184 -0
  804. data/lib/forge/public/javascripts/ckeditor/_source/plugins/resize/plugin.js +157 -0
  805. data/lib/forge/public/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
  806. data/lib/forge/public/javascripts/ckeditor/_source/plugins/save/plugin.js +55 -0
  807. data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
  808. data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  809. data/lib/forge/public/javascripts/ckeditor/_source/plugins/scayt/plugin.js +943 -0
  810. data/lib/forge/public/javascripts/ckeditor/_source/plugins/selection/plugin.js +1367 -0
  811. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  812. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  813. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  814. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  815. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  816. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  817. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  818. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  819. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  820. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  821. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  822. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +156 -0
  823. data/lib/forge/public/javascripts/ckeditor/_source/plugins/showborders/plugin.js +201 -0
  824. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +216 -0
  825. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  826. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  827. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  828. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  829. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  830. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  831. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  832. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  833. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  834. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  835. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  836. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  837. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  838. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  839. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  840. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  841. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  842. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  843. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  844. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  845. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  846. data/lib/forge/public/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  847. data/lib/forge/public/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +207 -0
  848. data/lib/forge/public/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +409 -0
  849. data/lib/forge/public/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
  850. data/lib/forge/public/javascripts/ckeditor/_source/plugins/styles/plugin.js +1445 -0
  851. data/lib/forge/public/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  852. data/lib/forge/public/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +207 -0
  853. data/lib/forge/public/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
  854. data/lib/forge/public/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +673 -0
  855. data/lib/forge/public/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
  856. data/lib/forge/public/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
  857. data/lib/forge/public/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +533 -0
  858. data/lib/forge/public/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1120 -0
  859. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +231 -0
  860. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/plugin.js +100 -0
  861. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  862. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  863. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  864. data/lib/forge/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  865. data/lib/forge/public/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +481 -0
  866. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  867. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  868. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  869. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  870. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  871. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  872. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  873. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  874. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  875. data/lib/forge/public/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  876. data/lib/forge/public/javascripts/ckeditor/_source/plugins/undo/plugin.js +555 -0
  877. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  878. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  879. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  880. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
  881. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  882. data/lib/forge/public/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1126 -0
  883. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/dialog.css +856 -0
  884. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
  885. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
  886. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons.css +357 -0
  887. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
  888. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  889. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  890. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  891. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  892. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  893. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  894. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  895. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  896. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  897. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/mainui.css +195 -0
  898. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/menu.css +202 -0
  899. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
  900. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
  901. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/reset.css +84 -0
  902. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/richcombo.css +277 -0
  903. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/skin.js +268 -0
  904. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
  905. data/lib/forge/public/javascripts/ckeditor/_source/skins/kama/toolbar.css +409 -0
  906. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/dialog.css +765 -0
  907. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
  908. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  909. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons.css +354 -0
  910. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
  911. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  912. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  913. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  914. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  915. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  916. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  917. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  918. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  919. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/mainui.css +145 -0
  920. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/menu.css +199 -0
  921. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
  922. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
  923. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/reset.css +84 -0
  924. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/richcombo.css +297 -0
  925. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/skin.js +81 -0
  926. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
  927. data/lib/forge/public/javascripts/ckeditor/_source/skins/office2003/toolbar.css +470 -0
  928. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/dialog.css +780 -0
  929. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
  930. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
  931. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons.css +354 -0
  932. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
  933. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  934. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  935. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  936. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  937. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  938. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  939. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  940. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  941. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  942. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/mainui.css +154 -0
  943. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/menu.css +201 -0
  944. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
  945. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
  946. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/reset.css +84 -0
  947. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/richcombo.css +297 -0
  948. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/skin.js +77 -0
  949. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
  950. data/lib/forge/public/javascripts/ckeditor/_source/skins/v2/toolbar.css +423 -0
  951. data/lib/forge/public/javascripts/ckeditor/_source/themes/default/theme.js +356 -0
  952. data/lib/forge/public/javascripts/ckeditor/adapters/jquery.js +6 -0
  953. data/lib/forge/public/javascripts/ckeditor/ckeditor.js +135 -0
  954. data/lib/forge/public/javascripts/ckeditor/ckeditor.pack +211 -0
  955. data/lib/forge/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
  956. data/lib/forge/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
  957. data/lib/forge/public/javascripts/ckeditor/ckeditor_source.js +25 -0
  958. data/lib/forge/public/javascripts/ckeditor/config.js +45 -0
  959. data/lib/forge/public/javascripts/ckeditor/contents.css +35 -0
  960. data/lib/forge/public/javascripts/ckeditor/css/ckfinder.css +299 -0
  961. data/lib/forge/public/javascripts/ckeditor/css/fck_dialog.css +119 -0
  962. data/lib/forge/public/javascripts/ckeditor/css/fck_editor.css +448 -0
  963. data/lib/forge/public/javascripts/ckeditor/css/swfupload.css +94 -0
  964. data/lib/forge/public/javascripts/ckeditor/images/add.gif +0 -0
  965. data/lib/forge/public/javascripts/ckeditor/images/cancelbutton.gif +0 -0
  966. data/lib/forge/public/javascripts/ckeditor/images/ckfnothumb.gif +0 -0
  967. data/lib/forge/public/javascripts/ckeditor/images/doc.gif +0 -0
  968. data/lib/forge/public/javascripts/ckeditor/images/image_new.gif +0 -0
  969. data/lib/forge/public/javascripts/ckeditor/images/mp3.gif +0 -0
  970. data/lib/forge/public/javascripts/ckeditor/images/pdf.gif +0 -0
  971. data/lib/forge/public/javascripts/ckeditor/images/rar.gif +0 -0
  972. data/lib/forge/public/javascripts/ckeditor/images/refresh.gif +0 -0
  973. data/lib/forge/public/javascripts/ckeditor/images/select_files.png +0 -0
  974. data/lib/forge/public/javascripts/ckeditor/images/spacer.gif +0 -0
  975. data/lib/forge/public/javascripts/ckeditor/images/swf.gif +0 -0
  976. data/lib/forge/public/javascripts/ckeditor/images/toolbar.start.gif +0 -0
  977. data/lib/forge/public/javascripts/ckeditor/images/xls.gif +0 -0
  978. data/lib/forge/public/javascripts/ckeditor/lang/_languages.js +6 -0
  979. data/lib/forge/public/javascripts/ckeditor/lang/_translationstatus.txt +60 -0
  980. data/lib/forge/public/javascripts/ckeditor/lang/af.js +6 -0
  981. data/lib/forge/public/javascripts/ckeditor/lang/ar.js +6 -0
  982. data/lib/forge/public/javascripts/ckeditor/lang/bg.js +6 -0
  983. data/lib/forge/public/javascripts/ckeditor/lang/bn.js +6 -0
  984. data/lib/forge/public/javascripts/ckeditor/lang/bs.js +6 -0
  985. data/lib/forge/public/javascripts/ckeditor/lang/ca.js +6 -0
  986. data/lib/forge/public/javascripts/ckeditor/lang/cs.js +6 -0
  987. data/lib/forge/public/javascripts/ckeditor/lang/cy.js +6 -0
  988. data/lib/forge/public/javascripts/ckeditor/lang/da.js +6 -0
  989. data/lib/forge/public/javascripts/ckeditor/lang/de.js +6 -0
  990. data/lib/forge/public/javascripts/ckeditor/lang/el.js +6 -0
  991. data/lib/forge/public/javascripts/ckeditor/lang/en-au.js +6 -0
  992. data/lib/forge/public/javascripts/ckeditor/lang/en-ca.js +6 -0
  993. data/lib/forge/public/javascripts/ckeditor/lang/en-gb.js +6 -0
  994. data/lib/forge/public/javascripts/ckeditor/lang/en.js +6 -0
  995. data/lib/forge/public/javascripts/ckeditor/lang/eo.js +6 -0
  996. data/lib/forge/public/javascripts/ckeditor/lang/es.js +6 -0
  997. data/lib/forge/public/javascripts/ckeditor/lang/et.js +6 -0
  998. data/lib/forge/public/javascripts/ckeditor/lang/eu.js +6 -0
  999. data/lib/forge/public/javascripts/ckeditor/lang/fa.js +6 -0
  1000. data/lib/forge/public/javascripts/ckeditor/lang/fi.js +6 -0
  1001. data/lib/forge/public/javascripts/ckeditor/lang/fo.js +6 -0
  1002. data/lib/forge/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
  1003. data/lib/forge/public/javascripts/ckeditor/lang/fr.js +6 -0
  1004. data/lib/forge/public/javascripts/ckeditor/lang/gl.js +6 -0
  1005. data/lib/forge/public/javascripts/ckeditor/lang/gu.js +6 -0
  1006. data/lib/forge/public/javascripts/ckeditor/lang/he.js +6 -0
  1007. data/lib/forge/public/javascripts/ckeditor/lang/hi.js +6 -0
  1008. data/lib/forge/public/javascripts/ckeditor/lang/hr.js +6 -0
  1009. data/lib/forge/public/javascripts/ckeditor/lang/hu.js +6 -0
  1010. data/lib/forge/public/javascripts/ckeditor/lang/is.js +6 -0
  1011. data/lib/forge/public/javascripts/ckeditor/lang/it.js +6 -0
  1012. data/lib/forge/public/javascripts/ckeditor/lang/ja.js +6 -0
  1013. data/lib/forge/public/javascripts/ckeditor/lang/km.js +6 -0
  1014. data/lib/forge/public/javascripts/ckeditor/lang/ko.js +6 -0
  1015. data/lib/forge/public/javascripts/ckeditor/lang/lt.js +6 -0
  1016. data/lib/forge/public/javascripts/ckeditor/lang/lv.js +6 -0
  1017. data/lib/forge/public/javascripts/ckeditor/lang/mn.js +6 -0
  1018. data/lib/forge/public/javascripts/ckeditor/lang/ms.js +6 -0
  1019. data/lib/forge/public/javascripts/ckeditor/lang/nb.js +6 -0
  1020. data/lib/forge/public/javascripts/ckeditor/lang/nl.js +6 -0
  1021. data/lib/forge/public/javascripts/ckeditor/lang/no.js +6 -0
  1022. data/lib/forge/public/javascripts/ckeditor/lang/pl.js +6 -0
  1023. data/lib/forge/public/javascripts/ckeditor/lang/pt-br.js +6 -0
  1024. data/lib/forge/public/javascripts/ckeditor/lang/pt.js +6 -0
  1025. data/lib/forge/public/javascripts/ckeditor/lang/ro.js +6 -0
  1026. data/lib/forge/public/javascripts/ckeditor/lang/ru.js +6 -0
  1027. data/lib/forge/public/javascripts/ckeditor/lang/sk.js +6 -0
  1028. data/lib/forge/public/javascripts/ckeditor/lang/sl.js +6 -0
  1029. data/lib/forge/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
  1030. data/lib/forge/public/javascripts/ckeditor/lang/sr.js +6 -0
  1031. data/lib/forge/public/javascripts/ckeditor/lang/sv.js +6 -0
  1032. data/lib/forge/public/javascripts/ckeditor/lang/th.js +6 -0
  1033. data/lib/forge/public/javascripts/ckeditor/lang/tr.js +6 -0
  1034. data/lib/forge/public/javascripts/ckeditor/lang/uk.js +6 -0
  1035. data/lib/forge/public/javascripts/ckeditor/lang/vi.js +6 -0
  1036. data/lib/forge/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
  1037. data/lib/forge/public/javascripts/ckeditor/lang/zh.js +6 -0
  1038. data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  1039. data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  1040. data/lib/forge/public/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  1041. data/lib/forge/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
  1042. data/lib/forge/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  1043. data/lib/forge/public/javascripts/ckeditor/plugins/ajax_save/plugin.js +1 -0
  1044. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  1045. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/images/attachment.png +0 -0
  1046. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/en.js +10 -0
  1047. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/ru.js +10 -0
  1048. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/lang/uk.js +10 -0
  1049. data/lib/forge/public/javascripts/ckeditor/plugins/attachment/plugin.js +1 -0
  1050. data/lib/forge/public/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
  1051. data/lib/forge/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  1052. data/lib/forge/public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  1053. data/lib/forge/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  1054. data/lib/forge/public/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
  1055. data/lib/forge/public/javascripts/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  1056. data/lib/forge/public/javascripts/ckeditor/plugins/embed/images/embed.png +0 -0
  1057. data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/en.js +9 -0
  1058. data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/ru.js +9 -0
  1059. data/lib/forge/public/javascripts/ckeditor/plugins/embed/lang/uk.js +9 -0
  1060. data/lib/forge/public/javascripts/ckeditor/plugins/embed/plugin.js +1 -0
  1061. data/lib/forge/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
  1062. data/lib/forge/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  1063. data/lib/forge/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  1064. data/lib/forge/public/javascripts/ckeditor/plugins/forge_assets/plugin.js +10 -0
  1065. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
  1066. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  1067. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
  1068. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  1069. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  1070. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
  1071. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  1072. data/lib/forge/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +7 -0
  1073. data/lib/forge/public/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  1074. data/lib/forge/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
  1075. data/lib/forge/public/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
  1076. data/lib/forge/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  1077. data/lib/forge/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
  1078. data/lib/forge/public/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
  1079. data/lib/forge/public/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
  1080. data/lib/forge/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  1081. data/lib/forge/public/javascripts/ckeditor/plugins/pastefromword/filter/default.js +10 -0
  1082. data/lib/forge/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  1083. data/lib/forge/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  1084. data/lib/forge/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  1085. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  1086. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  1087. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  1088. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  1089. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  1090. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  1091. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  1092. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  1093. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  1094. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  1095. data/lib/forge/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  1096. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  1097. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  1098. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  1099. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  1100. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  1101. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  1102. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  1103. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  1104. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  1105. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  1106. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  1107. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  1108. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  1109. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  1110. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  1111. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  1112. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  1113. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  1114. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  1115. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  1116. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  1117. data/lib/forge/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  1118. data/lib/forge/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  1119. data/lib/forge/public/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
  1120. data/lib/forge/public/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
  1121. data/lib/forge/public/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
  1122. data/lib/forge/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  1123. data/lib/forge/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  1124. data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
  1125. data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  1126. data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  1127. data/lib/forge/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  1128. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  1129. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
  1130. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
  1131. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  1132. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  1133. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  1134. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  1135. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  1136. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  1137. data/lib/forge/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  1138. data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  1139. data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  1140. data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  1141. data/lib/forge/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  1142. data/lib/forge/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
  1143. data/lib/forge/public/javascripts/ckeditor/skins/kama/editor.css +12 -0
  1144. data/lib/forge/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
  1145. data/lib/forge/public/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
  1146. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  1147. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  1148. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  1149. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
  1150. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
  1151. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
  1152. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  1153. data/lib/forge/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  1154. data/lib/forge/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
  1155. data/lib/forge/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
  1156. data/lib/forge/public/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
  1157. data/lib/forge/public/javascripts/ckeditor/skins/office2003/editor.css +13 -0
  1158. data/lib/forge/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
  1159. data/lib/forge/public/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
  1160. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  1161. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  1162. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  1163. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
  1164. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
  1165. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
  1166. data/lib/forge/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  1167. data/lib/forge/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
  1168. data/lib/forge/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
  1169. data/lib/forge/public/javascripts/ckeditor/skins/v2/dialog.css +8 -0
  1170. data/lib/forge/public/javascripts/ckeditor/skins/v2/editor.css +12 -0
  1171. data/lib/forge/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
  1172. data/lib/forge/public/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
  1173. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  1174. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  1175. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  1176. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
  1177. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
  1178. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
  1179. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  1180. data/lib/forge/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  1181. data/lib/forge/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
  1182. data/lib/forge/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
  1183. data/lib/forge/public/javascripts/ckeditor/swfupload/fileprogress.js +275 -0
  1184. data/lib/forge/public/javascripts/ckeditor/swfupload/handlers.js +170 -0
  1185. data/lib/forge/public/javascripts/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
  1186. data/lib/forge/public/javascripts/ckeditor/swfupload/querystring.js +40 -0
  1187. data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.js +1 -0
  1188. data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.queue.js +1 -0
  1189. data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.swf +0 -0
  1190. data/lib/forge/public/javascripts/ckeditor/swfupload/swfupload.swfobject.js +111 -0
  1191. data/lib/forge/public/javascripts/ckeditor/themes/default/theme.js +8 -0
  1192. data/lib/forge/public/pixel.gif +0 -0
  1193. data/lib/forge/public/robots.txt +5 -0
  1194. data/lib/forge/script/delayed_job +5 -0
  1195. data/lib/forge/script/ferret_server +78 -0
  1196. data/lib/forge/script/rails +6 -0
  1197. data/lib/forge/spec/controllers/contact_controller_spec.rb +5 -0
  1198. data/lib/forge/spec/controllers/dispatch_links_controller_spec.rb +24 -0
  1199. data/lib/forge/spec/controllers/dispatches_controller_spec.rb +38 -0
  1200. data/lib/forge/spec/controllers/forge/banners_controller_spec.rb +212 -0
  1201. data/lib/forge/spec/controllers/forge/dispatches_controller_spec.rb +205 -0
  1202. data/lib/forge/spec/controllers/forge/events_controller_spec.rb +203 -0
  1203. data/lib/forge/spec/controllers/forge/galleries_controller_spec.rb +212 -0
  1204. data/lib/forge/spec/controllers/forge/orders_controller_spec.rb +203 -0
  1205. data/lib/forge/spec/controllers/forge/pages_controller_spec.rb +211 -0
  1206. data/lib/forge/spec/controllers/forge/post_categories_controller_spec.rb +183 -0
  1207. data/lib/forge/spec/controllers/forge/posts_controller_spec.rb +203 -0
  1208. data/lib/forge/spec/controllers/forge/product_categories_controller_spec.rb +191 -0
  1209. data/lib/forge/spec/controllers/forge/products_controller_spec.rb +216 -0
  1210. data/lib/forge/spec/controllers/forge/sales_controller_spec.rb +203 -0
  1211. data/lib/forge/spec/controllers/forge/subscriber_groups_controller_spec.rb +203 -0
  1212. data/lib/forge/spec/controllers/forge/subscribers_controller_spec.rb +190 -0
  1213. data/lib/forge/spec/controllers/forge/tax_rates_controller_spec.rb +184 -0
  1214. data/lib/forge/spec/controllers/forge/users_controller_spec.rb +273 -0
  1215. data/lib/forge/spec/controllers/forge/videos_controller_spec.rb +244 -0
  1216. data/lib/forge/spec/controllers/sessions_controller_spec.rb +5 -0
  1217. data/lib/forge/spec/delayed_job_spec_helper.rb +8 -0
  1218. data/lib/forge/spec/fixtures/addresses.yml +37 -0
  1219. data/lib/forge/spec/fixtures/assets.yml +7 -0
  1220. data/lib/forge/spec/fixtures/countries.yml +9 -0
  1221. data/lib/forge/spec/fixtures/dispatch_links.yml +4 -0
  1222. data/lib/forge/spec/fixtures/dispatches.yml +8 -0
  1223. data/lib/forge/spec/fixtures/line_items.yml +12 -0
  1224. data/lib/forge/spec/fixtures/orders.yml +9 -0
  1225. data/lib/forge/spec/fixtures/pages.yml +8 -0
  1226. data/lib/forge/spec/fixtures/posts.yml +7 -0
  1227. data/lib/forge/spec/fixtures/product_categories.yml +9 -0
  1228. data/lib/forge/spec/fixtures/product_images.yml +4 -0
  1229. data/lib/forge/spec/fixtures/products.yml +69 -0
  1230. data/lib/forge/spec/fixtures/provinces.yml +11 -0
  1231. data/lib/forge/spec/fixtures/roles.yml +8 -0
  1232. data/lib/forge/spec/fixtures/sample_file.png +0 -0
  1233. data/lib/forge/spec/fixtures/sample_file.txt +11 -0
  1234. data/lib/forge/spec/fixtures/subscribers.yml +7 -0
  1235. data/lib/forge/spec/fixtures/tax_rates.yml +21 -0
  1236. data/lib/forge/spec/fixtures/users.yml +15 -0
  1237. data/lib/forge/spec/integration/pages_spec.rb +21 -0
  1238. data/lib/forge/spec/integration/posts_spec.rb +21 -0
  1239. data/lib/forge/spec/integration/products_spec.rb +24 -0
  1240. data/lib/forge/spec/integration/shopping_spec.rb +135 -0
  1241. data/lib/forge/spec/mailers/comment_mailer_spec.rb +5 -0
  1242. data/lib/forge/spec/mailers/contact_mailer_spec.rb +5 -0
  1243. data/lib/forge/spec/mailers/user_mailer_spec.rb +5 -0
  1244. data/lib/forge/spec/models/comment_spec.rb +29 -0
  1245. data/lib/forge/spec/models/credit_card_processor_spec.rb +67 -0
  1246. data/lib/forge/spec/models/dispatch_link_click_spec.rb +12 -0
  1247. data/lib/forge/spec/models/dispatch_spec.rb +83 -0
  1248. data/lib/forge/spec/models/event_spec.rb +105 -0
  1249. data/lib/forge/spec/models/help_topic_spec.rb +54 -0
  1250. data/lib/forge/spec/models/line_item_spec.rb +55 -0
  1251. data/lib/forge/spec/models/order_spec.rb +126 -0
  1252. data/lib/forge/spec/models/post_spec.rb +35 -0
  1253. data/lib/forge/spec/models/product_image_spec.rb +16 -0
  1254. data/lib/forge/spec/models/product_spec.rb +85 -0
  1255. data/lib/forge/spec/models/reorderable_spec.rb +25 -0
  1256. data/lib/forge/spec/models/tax_rate_spec.rb +35 -0
  1257. data/lib/forge/spec/models/video_spec.rb +5 -0
  1258. data/lib/forge/spec/spec_helper.rb +37 -0
  1259. data/lib/forge/spec/support/integration_example_group.rb +33 -0
  1260. data/lib/forge/spec/views/forge/dispatch_clicks/index.html.erb_spec.rb +5 -0
  1261. data/lib/forge/vendor/assets/images/fancybox/blank.gif +0 -0
  1262. data/lib/forge/vendor/assets/images/fancybox/fancy_close.png +0 -0
  1263. data/lib/forge/vendor/assets/images/fancybox/fancy_loading.png +0 -0
  1264. data/lib/forge/vendor/assets/images/fancybox/fancy_nav_left.png +0 -0
  1265. data/lib/forge/vendor/assets/images/fancybox/fancy_nav_right.png +0 -0
  1266. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_e.png +0 -0
  1267. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_n.png +0 -0
  1268. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_ne.png +0 -0
  1269. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_nw.png +0 -0
  1270. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_s.png +0 -0
  1271. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_se.png +0 -0
  1272. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_sw.png +0 -0
  1273. data/lib/forge/vendor/assets/images/fancybox/fancy_shadow_w.png +0 -0
  1274. data/lib/forge/vendor/assets/images/fancybox/fancy_title_left.png +0 -0
  1275. data/lib/forge/vendor/assets/images/fancybox/fancy_title_main.png +0 -0
  1276. data/lib/forge/vendor/assets/images/fancybox/fancy_title_over.png +0 -0
  1277. data/lib/forge/vendor/assets/images/fancybox/fancy_title_right.png +0 -0
  1278. data/lib/forge/vendor/assets/images/fancybox/fancybox-x.png +0 -0
  1279. data/lib/forge/vendor/assets/images/fancybox/fancybox-y.png +0 -0
  1280. data/lib/forge/vendor/assets/images/fancybox/fancybox.png +0 -0
  1281. data/lib/forge/vendor/assets/javascripts/cufon/Aller_400.font.js +7 -0
  1282. data/lib/forge/vendor/assets/javascripts/cufon/Aller_700.font.js +7 -0
  1283. data/lib/forge/vendor/assets/javascripts/cufon/cufon.js +7 -0
  1284. data/lib/forge/vendor/assets/javascripts/jquery.corner.js +249 -0
  1285. data/lib/forge/vendor/assets/javascripts/jquery.debounce.js +9 -0
  1286. data/lib/forge/vendor/assets/javascripts/jquery.equalHeights.js +52 -0
  1287. data/lib/forge/vendor/assets/javascripts/jquery.fancybox.js +44 -0
  1288. data/lib/forge/vendor/assets/javascripts/jquery.form.js +911 -0
  1289. data/lib/forge/vendor/assets/javascripts/jquery.mousewheel.js +78 -0
  1290. data/lib/forge/vendor/assets/javascripts/jquery.quickSearch.js.erb +79 -0
  1291. data/lib/forge/vendor/assets/javascripts/jquery.radioSlider.js +55 -0
  1292. data/lib/forge/vendor/assets/javascripts/jquery.swfupload.js +64 -0
  1293. data/lib/forge/vendor/assets/javascripts/jquery.twoLevelSort.js +62 -0
  1294. data/lib/forge/vendor/assets/javascripts/jscrollpane.js +1435 -0
  1295. data/lib/forge/vendor/assets/javascripts/swfupload.js +980 -0
  1296. data/lib/forge/vendor/assets/stylesheets/fancybox.css.scss +363 -0
  1297. data/lib/forge/vendor/assets/stylesheets/jscrollpane.css.scss +20 -0
  1298. data/lib/modules.yml +127 -0
  1299. metadata +1431 -0
@@ -0,0 +1,78 @@
1
+ /*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
2
+ * Licensed under the MIT License (LICENSE.txt).
3
+ *
4
+ * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
5
+ * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
6
+ * Thanks to: Seamus Leahy for adding deltaX and deltaY
7
+ *
8
+ * Version: 3.0.4
9
+ *
10
+ * Requires: 1.2.2+
11
+ */
12
+
13
+ (function($) {
14
+
15
+ var types = ['DOMMouseScroll', 'mousewheel'];
16
+
17
+ $.event.special.mousewheel = {
18
+ setup: function() {
19
+ if ( this.addEventListener ) {
20
+ for ( var i=types.length; i; ) {
21
+ this.addEventListener( types[--i], handler, false );
22
+ }
23
+ } else {
24
+ this.onmousewheel = handler;
25
+ }
26
+ },
27
+
28
+ teardown: function() {
29
+ if ( this.removeEventListener ) {
30
+ for ( var i=types.length; i; ) {
31
+ this.removeEventListener( types[--i], handler, false );
32
+ }
33
+ } else {
34
+ this.onmousewheel = null;
35
+ }
36
+ }
37
+ };
38
+
39
+ $.fn.extend({
40
+ mousewheel: function(fn) {
41
+ return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
42
+ },
43
+
44
+ unmousewheel: function(fn) {
45
+ return this.unbind("mousewheel", fn);
46
+ }
47
+ });
48
+
49
+
50
+ function handler(event) {
51
+ var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
52
+ event = $.event.fix(orgEvent);
53
+ event.type = "mousewheel";
54
+
55
+ // Old school scrollwheel delta
56
+ if ( event.wheelDelta ) { delta = event.wheelDelta/120; }
57
+ if ( event.detail ) { delta = -event.detail/3; }
58
+
59
+ // New school multidimensional scroll (touchpads) deltas
60
+ deltaY = delta;
61
+
62
+ // Gecko
63
+ if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
64
+ deltaY = 0;
65
+ deltaX = -1*delta;
66
+ }
67
+
68
+ // Webkit
69
+ if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
70
+ if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
71
+
72
+ // Add event and delta to the front of the arguments
73
+ args.unshift(event, delta, deltaX, deltaY);
74
+
75
+ return $.event.handle.apply(this, args);
76
+ }
77
+
78
+ })(jQuery);
@@ -0,0 +1,79 @@
1
+ (function($) {
2
+
3
+ $.fn.quickSearch = function(options) {
4
+ var settings = {
5
+ url: '/',
6
+ delay: 600,
7
+ holder: $('#item-list'),
8
+ loader: '<%= asset_path 'forge/ajax-loader.gif' %>'
9
+ };
10
+ if ( options )
11
+ $.extend( settings, options );
12
+
13
+ var previousValue = "";
14
+
15
+ this.each(function() {
16
+ $(this).keyup($.debounce(settings.delay, runUpdate));
17
+ });
18
+
19
+ function runUpdate() {
20
+ var currentValue = $(this).attr('value');
21
+
22
+ // Do nothing if the search hasn't changed
23
+ if (currentValue == previousValue) {
24
+ return;
25
+ }
26
+
27
+ // Hide the default content if this is the first time the search is entered
28
+ if (previousValue == '') {
29
+ hideDefaultContent();
30
+ }
31
+
32
+ previousValue = currentValue;
33
+
34
+ // Restore the old content if search is cleared
35
+ if (currentValue == '') {
36
+ restoreDefaultContent();
37
+ return;
38
+ }
39
+
40
+ // Show a loader
41
+ var loader = $('<li />').css('text-align', 'center').html($('<img />').attr('src', settings.loader))
42
+ settings.holder.html(loader);
43
+
44
+ // Run the query
45
+ $.ajax({
46
+ url: settings.url,
47
+ data: {q: currentValue},
48
+ dataType: 'HTML',
49
+ success: function(data) {
50
+ if ($.trim(data) == '') {
51
+ var noResult = $('<li />').html("Sorry, we couldn't find anything for <strong>" + currentValue + "</strong>.<br /><small>Why don't you try a broader search term, we'll do our best to find what you're looking for!</small>")
52
+ settings.holder.html(noResult);
53
+ } else {
54
+ settings.holder.html(data);
55
+ }
56
+ if(typeof searchTrigger == 'function') {
57
+ searchTrigger();
58
+ }
59
+ }
60
+ })
61
+ }
62
+
63
+ function hideDefaultContent() {
64
+ $('<div id="hidden-quick-search-content"/>').html(settings.holder.html()).css('display', 'none').appendTo('body');
65
+ $('#item-list-bottom div.regular').fadeOut('fast', function() {
66
+ $('#item-list-bottom div.search-results').fadeIn('fast');
67
+ });
68
+ }
69
+
70
+ function restoreDefaultContent() {
71
+ settings.holder.html($('#hidden-quick-search-content').html());
72
+ $('#item-list-bottom div.search-results').fadeOut('fast', function() {
73
+ $('#item-list-bottom div.regular').fadeIn('fast');
74
+ });
75
+ }
76
+
77
+
78
+ }
79
+ })(jQuery);
@@ -0,0 +1,55 @@
1
+ (function($) {
2
+
3
+ $.fn.radioSlider = function(options) {
4
+ var settings = {
5
+ 'sliderImage' : '/images/forge/slider-button.png',
6
+ 'activeClass' : 'slider-active',
7
+ 'leftOffset' : 0,
8
+ 'rightOffset' : 19
9
+ };
10
+
11
+ if ( options ) { $.extend( settings, options ); }
12
+
13
+ this.each(function() {
14
+ var $this = this;
15
+ var buttons = $('input:radio', this);
16
+ var slideWidget = $('<div />').addClass('slider-widget').append($('<img />').attr('src', settings.sliderImage));
17
+
18
+ //insert the widget
19
+ $('label:first', this).after(slideWidget);
20
+
21
+ // Set up the buttons
22
+ buttons
23
+ .css({ position: 'absolute', left: -9999 })
24
+ .focus(function () {
25
+ slideWidget.find('img').addClass('focus');
26
+ })
27
+ .blur(function () {
28
+ slideWidget.find('img').removeClass('focus');
29
+ });
30
+
31
+ //charge the events
32
+ buttons.bind('change.radioSlider', function() { updateSlider($this); });
33
+ $('div.slider-widget', this).bind('click.radioSlider', function() { swapActive($this); });
34
+ updateSlider(this);
35
+ });
36
+
37
+ function updateSlider(holder) {
38
+ holder = $(holder);
39
+ var checked = $('input[type=radio]:checked', holder);
40
+ var slider = $('div.slider-widget img', holder);
41
+ if (checked.index($('input[type=radio]', holder)) === 0) {
42
+ slider.animate({left: settings.leftOffset}, 100);
43
+ } else {
44
+ slider.animate({left: settings.rightOffset}, 100);
45
+ }
46
+ $('label', holder).removeClass(settings.activeClass);
47
+ $('input[type=radio]:checked', holder).closest('label').addClass(settings.activeClass);
48
+ }
49
+
50
+ function swapActive(holder) {
51
+ $(holder).find('input[type=radio]').not(':checked').click().change();
52
+ }
53
+
54
+ };
55
+ })(jQuery);
@@ -0,0 +1,64 @@
1
+ /*
2
+ * SWFUpload jQuery Plugin v1.0.0
3
+ *
4
+ * Copyright (c) 2009 Adam Royle
5
+ * Licensed under the MIT license.
6
+ *
7
+ */
8
+
9
+ (function($){
10
+
11
+ var defaultHandlers = ['swfupload_loaded_handler','file_queued_handler','file_queue_error_handler','file_dialog_start_handler','file_dialog_complete_handler','upload_start_handler','upload_progress_handler','upload_error_handler','upload_success_handler','upload_complete_handler','queue_complete_handler'];
12
+ var additionalHandlers = [];
13
+
14
+ $.fn.swfupload = function(){
15
+ var args = $.makeArray(arguments);
16
+ return this.each(function(){
17
+ var swfu;
18
+ if (args.length == 1 && typeof(args[0]) == 'object') {
19
+ swfu = $(this).data('__swfu');
20
+ if (!swfu) {
21
+ var settings = args[0];
22
+ var $magicUploadControl = $(this);
23
+ var handlers = [];
24
+ $.merge(handlers, defaultHandlers);
25
+ $.merge(handlers, additionalHandlers);
26
+ $.each(handlers, function(i, v){
27
+ var eventName = v.replace(/_handler$/, '').replace(/_([a-z])/g, function(){ return arguments[1].toUpperCase(); });
28
+ settings[v] = function() {
29
+ var event = $.Event(eventName);
30
+ $magicUploadControl.trigger(event, $.makeArray(arguments));
31
+ return !event.isDefaultPrevented();
32
+ };
33
+ });
34
+ $(this).data('__swfu', new SWFUpload(settings));
35
+ }
36
+ } else if (args.length > 0 && typeof(args[0]) == 'string') {
37
+ var methodName = args.shift();
38
+ swfu = $(this).data('__swfu');
39
+ if (swfu && swfu[methodName]) {
40
+ swfu[methodName].apply(swfu, args);
41
+ }
42
+ }
43
+ });
44
+ };
45
+
46
+ $.swfupload = {
47
+ additionalHandlers: function() {
48
+ if (arguments.length === 0) {
49
+ return additionalHandlers.slice();
50
+ } else {
51
+ $(arguments).each(function(i, v){
52
+ $.merge(additionalHandlers, $.makeArray(v));
53
+ });
54
+ }
55
+ },
56
+ defaultHandlers: function() {
57
+ return defaultHandlers.slice();
58
+ },
59
+ getInstance: function(el) {
60
+ return $(el).data('__swfu');
61
+ }
62
+ };
63
+
64
+ })(jQuery);
@@ -0,0 +1,62 @@
1
+ (function($){
2
+ $.fn.forgeTwoLevelSort = function(options) {
3
+
4
+ var defaults = {
5
+ subSelector: '.subpages',
6
+ topSelector: 'li.top',
7
+ topClass: 'top',
8
+ subClass: 'subpage',
9
+ promoteSelector: '.promote',
10
+ itemArray: 'page_list[]'
11
+ };
12
+
13
+ var options = $.extend(defaults, options);
14
+
15
+ return this.each(function() {
16
+ var obj = $(this);
17
+ obj.sortable({ items: options.topSelector, update: function(event, ui) { updateTopOrder(this); } });
18
+ $('ul', obj).sortable({ connectWith: options.subSelector, update: function(event, ui) { updateSubpageOrder(this); } });
19
+
20
+
21
+ $(options.promoteSelector, obj).click(function(e) {
22
+ e.preventDefault();
23
+ page = $(this).closest('li');
24
+ page.remove().appendTo(obj).addClass(options.topClass).removeClass(options.subClass);
25
+ var ul = $('<ul />').addClass(options.subSelector).append("<li class='placeholder'></li>");
26
+ page.append(ul);
27
+ $(this).parent().remove();
28
+
29
+ updateTopOrder(obj);
30
+ });
31
+
32
+
33
+ function showValues(object) {
34
+ var arr = new Array;
35
+ $(object).children().each(function() {
36
+ arr.push($(this).attr('id'));
37
+ });
38
+ return arr;
39
+ }
40
+
41
+ function updateTopOrder(object) {
42
+ var data = {};
43
+ data[options.itemArray] = showValues(object);
44
+ $.ajax({type: "POST", url: options.callbackPath, data: data});
45
+ }
46
+
47
+ function alternateRows() {
48
+ $('li', obj).removeClass('alternate').removeClass('normal');
49
+ $('li:odd[class!=placeholder]', obj).addClass('alternate');
50
+ $('li:even[class!=placeholder]', obj).addClass('normal');
51
+ }
52
+
53
+ function updateSubpageOrder(object) {
54
+ FORGE.features.nestedLists.setSubpageTitleSize();
55
+ var data = {parent_id: $(object).closest('li').attr('id')};
56
+ data[options.itemArray] = showValues(object);
57
+ $.ajax({type: "POST", url: options.callbackPath, data: data});
58
+ }
59
+
60
+ });
61
+ };
62
+ })(jQuery);
@@ -0,0 +1,1435 @@
1
+ /*!
2
+ * jScrollPane - v2.0.0beta12 - 2012-09-27
3
+ * http://jscrollpane.kelvinluck.com/
4
+ *
5
+ * Copyright (c) 2010 Kelvin Luck
6
+ * Dual licensed under the MIT or GPL licenses.
7
+ */
8
+
9
+ // Script: jScrollPane - cross browser customisable scrollbars
10
+ //
11
+ // *Version: 2.0.0beta12, Last updated: 2012-09-27*
12
+ //
13
+ // Project Home - http://jscrollpane.kelvinluck.com/
14
+ // GitHub - http://github.com/vitch/jScrollPane
15
+ // Source - http://github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.js
16
+ // (Minified) - http://github.com/vitch/jScrollPane/raw/master/script/jquery.jscrollpane.min.js
17
+ //
18
+ // About: License
19
+ //
20
+ // Copyright (c) 2012 Kelvin Luck
21
+ // Dual licensed under the MIT or GPL Version 2 licenses.
22
+ // http://jscrollpane.kelvinluck.com/MIT-LICENSE.txt
23
+ // http://jscrollpane.kelvinluck.com/GPL-LICENSE.txt
24
+ //
25
+ // About: Examples
26
+ //
27
+ // All examples and demos are available through the jScrollPane example site at:
28
+ // http://jscrollpane.kelvinluck.com/
29
+ //
30
+ // About: Support and Testing
31
+ //
32
+ // This plugin is tested on the browsers below and has been found to work reliably on them. If you run
33
+ // into a problem on one of the supported browsers then please visit the support section on the jScrollPane
34
+ // website (http://jscrollpane.kelvinluck.com/) for more information on getting support. You are also
35
+ // welcome to fork the project on GitHub if you can contribute a fix for a given issue.
36
+ //
37
+ // jQuery Versions - tested in 1.4.2+ - reported to work in 1.3.x
38
+ // Browsers Tested - Firefox 3.6.8, Safari 5, Opera 10.6, Chrome 5.0, IE 6, 7, 8
39
+ //
40
+ // About: Release History
41
+ //
42
+ // 2.0.0beta12 - (2012-09-27) fix for jQuery 1.8+
43
+ // 2.0.0beta11 - (2012-05-14)
44
+ // 2.0.0beta10 - (2011-04-17) cleaner required size calculation, improved keyboard support, stickToBottom/Left, other small fixes
45
+ // 2.0.0beta9 - (2011-01-31) new API methods, bug fixes and correct keyboard support for FF/OSX
46
+ // 2.0.0beta8 - (2011-01-29) touchscreen support, improved keyboard support
47
+ // 2.0.0beta7 - (2011-01-23) scroll speed consistent (thanks Aivo Paas)
48
+ // 2.0.0beta6 - (2010-12-07) scrollToElement horizontal support
49
+ // 2.0.0beta5 - (2010-10-18) jQuery 1.4.3 support, various bug fixes
50
+ // 2.0.0beta4 - (2010-09-17) clickOnTrack support, bug fixes
51
+ // 2.0.0beta3 - (2010-08-27) Horizontal mousewheel, mwheelIntent, keyboard support, bug fixes
52
+ // 2.0.0beta2 - (2010-08-21) Bug fixes
53
+ // 2.0.0beta1 - (2010-08-17) Rewrite to follow modern best practices and enable horizontal scrolling, initially hidden
54
+ // elements and dynamically sized elements.
55
+ // 1.x - (2006-12-31 - 2010-07-31) Initial version, hosted at googlecode, deprecated
56
+
57
+ (function($,window,undefined){
58
+
59
+ $.fn.jScrollPane = function(settings)
60
+ {
61
+ // JScrollPane "class" - public methods are available through $('selector').data('jsp')
62
+ function JScrollPane(elem, s)
63
+ {
64
+ var settings, jsp = this, pane, paneWidth, paneHeight, container, contentWidth, contentHeight,
65
+ percentInViewH, percentInViewV, isScrollableV, isScrollableH, verticalDrag, dragMaxY,
66
+ verticalDragPosition, horizontalDrag, dragMaxX, horizontalDragPosition,
67
+ verticalBar, verticalTrack, scrollbarWidth, verticalTrackHeight, verticalDragHeight, arrowUp, arrowDown,
68
+ horizontalBar, horizontalTrack, horizontalTrackWidth, horizontalDragWidth, arrowLeft, arrowRight,
69
+ reinitialiseInterval, originalPadding, originalPaddingTotalWidth, previousContentWidth,
70
+ wasAtTop = true, wasAtLeft = true, wasAtBottom = false, wasAtRight = false,
71
+ originalElement = elem.clone(false, false).empty(),
72
+ mwEvent = $.fn.mwheelIntent ? 'mwheelIntent.jsp' : 'mousewheel.jsp';
73
+
74
+ originalPadding = elem.css('paddingTop') + ' ' +
75
+ elem.css('paddingRight') + ' ' +
76
+ elem.css('paddingBottom') + ' ' +
77
+ elem.css('paddingLeft');
78
+ originalPaddingTotalWidth = (parseInt(elem.css('paddingLeft'), 10) || 0) +
79
+ (parseInt(elem.css('paddingRight'), 10) || 0);
80
+
81
+ function initialise(s)
82
+ {
83
+
84
+ var /*firstChild, lastChild, */isMaintainingPositon, lastContentX, lastContentY,
85
+ hasContainingSpaceChanged, originalScrollTop, originalScrollLeft,
86
+ maintainAtBottom = false, maintainAtRight = false;
87
+
88
+ settings = s;
89
+
90
+ if (pane === undefined) {
91
+ originalScrollTop = elem.scrollTop();
92
+ originalScrollLeft = elem.scrollLeft();
93
+
94
+ elem.css(
95
+ {
96
+ overflow: 'hidden',
97
+ padding: 0
98
+ }
99
+ );
100
+ // TODO: Deal with where width/ height is 0 as it probably means the element is hidden and we should
101
+ // come back to it later and check once it is unhidden...
102
+ paneWidth = elem.innerWidth() + originalPaddingTotalWidth;
103
+ paneHeight = elem.innerHeight();
104
+
105
+ elem.width(paneWidth);
106
+
107
+ pane = $('<div class="jspPane" />').css('padding', originalPadding).append(elem.children());
108
+ container = $('<div class="jspContainer" />')
109
+ .css({
110
+ 'width': paneWidth + 'px',
111
+ 'height': paneHeight + 'px'
112
+ }
113
+ ).append(pane).appendTo(elem);
114
+
115
+ /*
116
+ // Move any margins from the first and last children up to the container so they can still
117
+ // collapse with neighbouring elements as they would before jScrollPane
118
+ firstChild = pane.find(':first-child');
119
+ lastChild = pane.find(':last-child');
120
+ elem.css(
121
+ {
122
+ 'margin-top': firstChild.css('margin-top'),
123
+ 'margin-bottom': lastChild.css('margin-bottom')
124
+ }
125
+ );
126
+ firstChild.css('margin-top', 0);
127
+ lastChild.css('margin-bottom', 0);
128
+ */
129
+ } else {
130
+ elem.css('width', '');
131
+
132
+ maintainAtBottom = settings.stickToBottom && isCloseToBottom();
133
+ maintainAtRight = settings.stickToRight && isCloseToRight();
134
+
135
+ hasContainingSpaceChanged = elem.innerWidth() + originalPaddingTotalWidth != paneWidth || elem.outerHeight() != paneHeight;
136
+
137
+ if (hasContainingSpaceChanged) {
138
+ paneWidth = elem.innerWidth() + originalPaddingTotalWidth;
139
+ paneHeight = elem.innerHeight();
140
+ container.css({
141
+ width: paneWidth + 'px',
142
+ height: paneHeight + 'px'
143
+ });
144
+ }
145
+
146
+ // If nothing changed since last check...
147
+ if (!hasContainingSpaceChanged && previousContentWidth == contentWidth && pane.outerHeight() == contentHeight) {
148
+ elem.width(paneWidth);
149
+ return;
150
+ }
151
+ previousContentWidth = contentWidth;
152
+
153
+ pane.css('width', '');
154
+ elem.width(paneWidth);
155
+
156
+ container.find('>.jspVerticalBar,>.jspHorizontalBar').remove().end();
157
+ }
158
+
159
+ pane.css('overflow', 'auto');
160
+ if (s.contentWidth) {
161
+ contentWidth = s.contentWidth;
162
+ } else {
163
+ contentWidth = pane[0].scrollWidth;
164
+ }
165
+ contentHeight = pane[0].scrollHeight;
166
+ pane.css('overflow', '');
167
+
168
+ percentInViewH = contentWidth / paneWidth;
169
+ percentInViewV = contentHeight / paneHeight;
170
+ isScrollableV = percentInViewV > 1;
171
+
172
+ isScrollableH = percentInViewH > 1;
173
+
174
+ //console.log(paneWidth, paneHeight, contentWidth, contentHeight, percentInViewH, percentInViewV, isScrollableH, isScrollableV);
175
+
176
+ if (!(isScrollableH || isScrollableV)) {
177
+ elem.removeClass('jspScrollable');
178
+ pane.css({
179
+ top: 0,
180
+ width: container.width() - originalPaddingTotalWidth
181
+ });
182
+ removeMousewheel();
183
+ removeFocusHandler();
184
+ removeKeyboardNav();
185
+ removeClickOnTrack();
186
+ } else {
187
+ elem.addClass('jspScrollable');
188
+
189
+ isMaintainingPositon = settings.maintainPosition && (verticalDragPosition || horizontalDragPosition);
190
+ if (isMaintainingPositon) {
191
+ lastContentX = contentPositionX();
192
+ lastContentY = contentPositionY();
193
+ }
194
+
195
+ initialiseVerticalScroll();
196
+ initialiseHorizontalScroll();
197
+ resizeScrollbars();
198
+
199
+ if (isMaintainingPositon) {
200
+ scrollToX(maintainAtRight ? (contentWidth - paneWidth ) : lastContentX, false);
201
+ scrollToY(maintainAtBottom ? (contentHeight - paneHeight) : lastContentY, false);
202
+ }
203
+
204
+ initFocusHandler();
205
+ initMousewheel();
206
+ initTouch();
207
+
208
+ if (settings.enableKeyboardNavigation) {
209
+ initKeyboardNav();
210
+ }
211
+ if (settings.clickOnTrack) {
212
+ initClickOnTrack();
213
+ }
214
+
215
+ observeHash();
216
+ if (settings.hijackInternalLinks) {
217
+ hijackInternalLinks();
218
+ }
219
+ }
220
+
221
+ if (settings.autoReinitialise && !reinitialiseInterval) {
222
+ reinitialiseInterval = setInterval(
223
+ function()
224
+ {
225
+ initialise(settings);
226
+ },
227
+ settings.autoReinitialiseDelay
228
+ );
229
+ } else if (!settings.autoReinitialise && reinitialiseInterval) {
230
+ clearInterval(reinitialiseInterval);
231
+ }
232
+
233
+ originalScrollTop && elem.scrollTop(0) && scrollToY(originalScrollTop, false);
234
+ originalScrollLeft && elem.scrollLeft(0) && scrollToX(originalScrollLeft, false);
235
+
236
+ elem.trigger('jsp-initialised', [isScrollableH || isScrollableV]);
237
+ }
238
+
239
+ function initialiseVerticalScroll()
240
+ {
241
+ if (isScrollableV) {
242
+
243
+ container.append(
244
+ $('<div class="jspVerticalBar" />').append(
245
+ $('<div class="jspCap jspCapTop" />'),
246
+ $('<div class="jspTrack" />').append(
247
+ $('<div class="jspDrag" />').append(
248
+ $('<div class="jspDragTop" />'),
249
+ $('<div class="jspDragBottom" />')
250
+ )
251
+ ),
252
+ $('<div class="jspCap jspCapBottom" />')
253
+ )
254
+ );
255
+
256
+ verticalBar = container.find('>.jspVerticalBar');
257
+ verticalTrack = verticalBar.find('>.jspTrack');
258
+ verticalDrag = verticalTrack.find('>.jspDrag');
259
+
260
+ if (settings.showArrows) {
261
+ arrowUp = $('<a class="jspArrow jspArrowUp" />').bind(
262
+ 'mousedown.jsp', getArrowScroll(0, -1)
263
+ ).bind('click.jsp', nil);
264
+ arrowDown = $('<a class="jspArrow jspArrowDown" />').bind(
265
+ 'mousedown.jsp', getArrowScroll(0, 1)
266
+ ).bind('click.jsp', nil);
267
+ if (settings.arrowScrollOnHover) {
268
+ arrowUp.bind('mouseover.jsp', getArrowScroll(0, -1, arrowUp));
269
+ arrowDown.bind('mouseover.jsp', getArrowScroll(0, 1, arrowDown));
270
+ }
271
+
272
+ appendArrows(verticalTrack, settings.verticalArrowPositions, arrowUp, arrowDown);
273
+ }
274
+
275
+ verticalTrackHeight = paneHeight;
276
+ container.find('>.jspVerticalBar>.jspCap:visible,>.jspVerticalBar>.jspArrow').each(
277
+ function()
278
+ {
279
+ verticalTrackHeight -= $(this).outerHeight();
280
+ }
281
+ );
282
+
283
+
284
+ verticalDrag.hover(
285
+ function()
286
+ {
287
+ verticalDrag.addClass('jspHover');
288
+ },
289
+ function()
290
+ {
291
+ verticalDrag.removeClass('jspHover');
292
+ }
293
+ ).bind(
294
+ 'mousedown.jsp',
295
+ function(e)
296
+ {
297
+ // Stop IE from allowing text selection
298
+ $('html').bind('dragstart.jsp selectstart.jsp', nil);
299
+
300
+ verticalDrag.addClass('jspActive');
301
+
302
+ var startY = e.pageY - verticalDrag.position().top;
303
+
304
+ $('html').bind(
305
+ 'mousemove.jsp',
306
+ function(e)
307
+ {
308
+ positionDragY(e.pageY - startY, false);
309
+ }
310
+ ).bind('mouseup.jsp mouseleave.jsp', cancelDrag);
311
+ return false;
312
+ }
313
+ );
314
+ sizeVerticalScrollbar();
315
+ }
316
+ }
317
+
318
+ function sizeVerticalScrollbar()
319
+ {
320
+ verticalTrack.height(verticalTrackHeight + 'px');
321
+ verticalDragPosition = 0;
322
+ scrollbarWidth = settings.verticalGutter + verticalTrack.outerWidth();
323
+
324
+ // Make the pane thinner to allow for the vertical scrollbar
325
+ pane.width(paneWidth - scrollbarWidth - originalPaddingTotalWidth);
326
+
327
+ // Add margin to the left of the pane if scrollbars are on that side (to position
328
+ // the scrollbar on the left or right set it's left or right property in CSS)
329
+ try {
330
+ if (verticalBar.position().left === 0) {
331
+ pane.css('margin-left', scrollbarWidth + 'px');
332
+ }
333
+ } catch (err) {
334
+ }
335
+ }
336
+
337
+ function initialiseHorizontalScroll()
338
+ {
339
+ if (isScrollableH) {
340
+
341
+ container.append(
342
+ $('<div class="jspHorizontalBar" />').append(
343
+ $('<div class="jspCap jspCapLeft" />'),
344
+ $('<div class="jspTrack" />').append(
345
+ $('<div class="jspDrag" />').append(
346
+ $('<div class="jspDragLeft" />'),
347
+ $('<div class="jspDragRight" />')
348
+ )
349
+ ),
350
+ $('<div class="jspCap jspCapRight" />')
351
+ )
352
+ );
353
+
354
+ horizontalBar = container.find('>.jspHorizontalBar');
355
+ horizontalTrack = horizontalBar.find('>.jspTrack');
356
+ horizontalDrag = horizontalTrack.find('>.jspDrag');
357
+
358
+ if (settings.showArrows) {
359
+ arrowLeft = $('<a class="jspArrow jspArrowLeft" />').bind(
360
+ 'mousedown.jsp', getArrowScroll(-1, 0)
361
+ ).bind('click.jsp', nil);
362
+ arrowRight = $('<a class="jspArrow jspArrowRight" />').bind(
363
+ 'mousedown.jsp', getArrowScroll(1, 0)
364
+ ).bind('click.jsp', nil);
365
+ if (settings.arrowScrollOnHover) {
366
+ arrowLeft.bind('mouseover.jsp', getArrowScroll(-1, 0, arrowLeft));
367
+ arrowRight.bind('mouseover.jsp', getArrowScroll(1, 0, arrowRight));
368
+ }
369
+ appendArrows(horizontalTrack, settings.horizontalArrowPositions, arrowLeft, arrowRight);
370
+ }
371
+
372
+ horizontalDrag.hover(
373
+ function()
374
+ {
375
+ horizontalDrag.addClass('jspHover');
376
+ },
377
+ function()
378
+ {
379
+ horizontalDrag.removeClass('jspHover');
380
+ }
381
+ ).bind(
382
+ 'mousedown.jsp',
383
+ function(e)
384
+ {
385
+ // Stop IE from allowing text selection
386
+ $('html').bind('dragstart.jsp selectstart.jsp', nil);
387
+
388
+ horizontalDrag.addClass('jspActive');
389
+
390
+ var startX = e.pageX - horizontalDrag.position().left;
391
+
392
+ $('html').bind(
393
+ 'mousemove.jsp',
394
+ function(e)
395
+ {
396
+ positionDragX(e.pageX - startX, false);
397
+ }
398
+ ).bind('mouseup.jsp mouseleave.jsp', cancelDrag);
399
+ return false;
400
+ }
401
+ );
402
+ horizontalTrackWidth = container.innerWidth();
403
+ sizeHorizontalScrollbar();
404
+ }
405
+ }
406
+
407
+ function sizeHorizontalScrollbar()
408
+ {
409
+ container.find('>.jspHorizontalBar>.jspCap:visible,>.jspHorizontalBar>.jspArrow').each(
410
+ function()
411
+ {
412
+ horizontalTrackWidth -= $(this).outerWidth();
413
+ }
414
+ );
415
+
416
+ horizontalTrack.width(horizontalTrackWidth + 'px');
417
+ horizontalDragPosition = 0;
418
+ }
419
+
420
+ function resizeScrollbars()
421
+ {
422
+ if (isScrollableH && isScrollableV) {
423
+ var horizontalTrackHeight = horizontalTrack.outerHeight(),
424
+ verticalTrackWidth = verticalTrack.outerWidth();
425
+ verticalTrackHeight -= horizontalTrackHeight;
426
+ $(horizontalBar).find('>.jspCap:visible,>.jspArrow').each(
427
+ function()
428
+ {
429
+ horizontalTrackWidth += $(this).outerWidth();
430
+ }
431
+ );
432
+ horizontalTrackWidth -= verticalTrackWidth;
433
+ paneHeight -= verticalTrackWidth;
434
+ paneWidth -= horizontalTrackHeight;
435
+ horizontalTrack.parent().append(
436
+ $('<div class="jspCorner" />').css('width', horizontalTrackHeight + 'px')
437
+ );
438
+ sizeVerticalScrollbar();
439
+ sizeHorizontalScrollbar();
440
+ }
441
+ // reflow content
442
+ if (isScrollableH) {
443
+ pane.width((container.outerWidth() - originalPaddingTotalWidth) + 'px');
444
+ }
445
+ contentHeight = pane.outerHeight();
446
+ percentInViewV = contentHeight / paneHeight;
447
+
448
+ if (isScrollableH) {
449
+ horizontalDragWidth = Math.ceil(1 / percentInViewH * horizontalTrackWidth);
450
+ if (horizontalDragWidth > settings.horizontalDragMaxWidth) {
451
+ horizontalDragWidth = settings.horizontalDragMaxWidth;
452
+ } else if (horizontalDragWidth < settings.horizontalDragMinWidth) {
453
+ horizontalDragWidth = settings.horizontalDragMinWidth;
454
+ }
455
+ horizontalDrag.width(horizontalDragWidth + 'px');
456
+ dragMaxX = horizontalTrackWidth - horizontalDragWidth;
457
+ _positionDragX(horizontalDragPosition); // To update the state for the arrow buttons
458
+ }
459
+ if (isScrollableV) {
460
+ verticalDragHeight = Math.ceil(1 / percentInViewV * verticalTrackHeight);
461
+ if (verticalDragHeight > settings.verticalDragMaxHeight) {
462
+ verticalDragHeight = settings.verticalDragMaxHeight;
463
+ } else if (verticalDragHeight < settings.verticalDragMinHeight) {
464
+ verticalDragHeight = settings.verticalDragMinHeight;
465
+ }
466
+ verticalDrag.height(verticalDragHeight + 'px');
467
+ dragMaxY = verticalTrackHeight - verticalDragHeight;
468
+ _positionDragY(verticalDragPosition); // To update the state for the arrow buttons
469
+ }
470
+ }
471
+
472
+ function appendArrows(ele, p, a1, a2)
473
+ {
474
+ var p1 = "before", p2 = "after", aTemp;
475
+
476
+ // Sniff for mac... Is there a better way to determine whether the arrows would naturally appear
477
+ // at the top or the bottom of the bar?
478
+ if (p == "os") {
479
+ p = /Mac/.test(navigator.platform) ? "after" : "split";
480
+ }
481
+ if (p == p1) {
482
+ p2 = p;
483
+ } else if (p == p2) {
484
+ p1 = p;
485
+ aTemp = a1;
486
+ a1 = a2;
487
+ a2 = aTemp;
488
+ }
489
+
490
+ ele[p1](a1)[p2](a2);
491
+ }
492
+
493
+ function getArrowScroll(dirX, dirY, ele)
494
+ {
495
+ return function()
496
+ {
497
+ arrowScroll(dirX, dirY, this, ele);
498
+ this.blur();
499
+ return false;
500
+ };
501
+ }
502
+
503
+ function arrowScroll(dirX, dirY, arrow, ele)
504
+ {
505
+ arrow = $(arrow).addClass('jspActive');
506
+
507
+ var eve,
508
+ scrollTimeout,
509
+ isFirst = true,
510
+ doScroll = function()
511
+ {
512
+ if (dirX !== 0) {
513
+ jsp.scrollByX(dirX * settings.arrowButtonSpeed);
514
+ }
515
+ if (dirY !== 0) {
516
+ jsp.scrollByY(dirY * settings.arrowButtonSpeed);
517
+ }
518
+ scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.arrowRepeatFreq);
519
+ isFirst = false;
520
+ };
521
+
522
+ doScroll();
523
+
524
+ eve = ele ? 'mouseout.jsp' : 'mouseup.jsp';
525
+ ele = ele || $('html');
526
+ ele.bind(
527
+ eve,
528
+ function()
529
+ {
530
+ arrow.removeClass('jspActive');
531
+ scrollTimeout && clearTimeout(scrollTimeout);
532
+ scrollTimeout = null;
533
+ ele.unbind(eve);
534
+ }
535
+ );
536
+ }
537
+
538
+ function initClickOnTrack()
539
+ {
540
+ removeClickOnTrack();
541
+ if (isScrollableV) {
542
+ verticalTrack.bind(
543
+ 'mousedown.jsp',
544
+ function(e)
545
+ {
546
+ if (e.originalTarget === undefined || e.originalTarget == e.currentTarget) {
547
+ var clickedTrack = $(this),
548
+ offset = clickedTrack.offset(),
549
+ direction = e.pageY - offset.top - verticalDragPosition,
550
+ scrollTimeout,
551
+ isFirst = true,
552
+ doScroll = function()
553
+ {
554
+ var offset = clickedTrack.offset(),
555
+ pos = e.pageY - offset.top - verticalDragHeight / 2,
556
+ contentDragY = paneHeight * settings.scrollPagePercent,
557
+ dragY = dragMaxY * contentDragY / (contentHeight - paneHeight);
558
+ if (direction < 0) {
559
+ if (verticalDragPosition - dragY > pos) {
560
+ jsp.scrollByY(-contentDragY);
561
+ } else {
562
+ positionDragY(pos);
563
+ }
564
+ } else if (direction > 0) {
565
+ if (verticalDragPosition + dragY < pos) {
566
+ jsp.scrollByY(contentDragY);
567
+ } else {
568
+ positionDragY(pos);
569
+ }
570
+ } else {
571
+ cancelClick();
572
+ return;
573
+ }
574
+ scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.trackClickRepeatFreq);
575
+ isFirst = false;
576
+ },
577
+ cancelClick = function()
578
+ {
579
+ scrollTimeout && clearTimeout(scrollTimeout);
580
+ scrollTimeout = null;
581
+ $(document).unbind('mouseup.jsp', cancelClick);
582
+ };
583
+ doScroll();
584
+ $(document).bind('mouseup.jsp', cancelClick);
585
+ return false;
586
+ }
587
+ }
588
+ );
589
+ }
590
+
591
+ if (isScrollableH) {
592
+ horizontalTrack.bind(
593
+ 'mousedown.jsp',
594
+ function(e)
595
+ {
596
+ if (e.originalTarget === undefined || e.originalTarget == e.currentTarget) {
597
+ var clickedTrack = $(this),
598
+ offset = clickedTrack.offset(),
599
+ direction = e.pageX - offset.left - horizontalDragPosition,
600
+ scrollTimeout,
601
+ isFirst = true,
602
+ doScroll = function()
603
+ {
604
+ var offset = clickedTrack.offset(),
605
+ pos = e.pageX - offset.left - horizontalDragWidth / 2,
606
+ contentDragX = paneWidth * settings.scrollPagePercent,
607
+ dragX = dragMaxX * contentDragX / (contentWidth - paneWidth);
608
+ if (direction < 0) {
609
+ if (horizontalDragPosition - dragX > pos) {
610
+ jsp.scrollByX(-contentDragX);
611
+ } else {
612
+ positionDragX(pos);
613
+ }
614
+ } else if (direction > 0) {
615
+ if (horizontalDragPosition + dragX < pos) {
616
+ jsp.scrollByX(contentDragX);
617
+ } else {
618
+ positionDragX(pos);
619
+ }
620
+ } else {
621
+ cancelClick();
622
+ return;
623
+ }
624
+ scrollTimeout = setTimeout(doScroll, isFirst ? settings.initialDelay : settings.trackClickRepeatFreq);
625
+ isFirst = false;
626
+ },
627
+ cancelClick = function()
628
+ {
629
+ scrollTimeout && clearTimeout(scrollTimeout);
630
+ scrollTimeout = null;
631
+ $(document).unbind('mouseup.jsp', cancelClick);
632
+ };
633
+ doScroll();
634
+ $(document).bind('mouseup.jsp', cancelClick);
635
+ return false;
636
+ }
637
+ }
638
+ );
639
+ }
640
+ }
641
+
642
+ function removeClickOnTrack()
643
+ {
644
+ if (horizontalTrack) {
645
+ horizontalTrack.unbind('mousedown.jsp');
646
+ }
647
+ if (verticalTrack) {
648
+ verticalTrack.unbind('mousedown.jsp');
649
+ }
650
+ }
651
+
652
+ function cancelDrag()
653
+ {
654
+ $('html').unbind('dragstart.jsp selectstart.jsp mousemove.jsp mouseup.jsp mouseleave.jsp');
655
+
656
+ if (verticalDrag) {
657
+ verticalDrag.removeClass('jspActive');
658
+ }
659
+ if (horizontalDrag) {
660
+ horizontalDrag.removeClass('jspActive');
661
+ }
662
+ }
663
+
664
+ function positionDragY(destY, animate)
665
+ {
666
+ if (!isScrollableV) {
667
+ return;
668
+ }
669
+ if (destY < 0) {
670
+ destY = 0;
671
+ } else if (destY > dragMaxY) {
672
+ destY = dragMaxY;
673
+ }
674
+
675
+ // can't just check if(animate) because false is a valid value that could be passed in...
676
+ if (animate === undefined) {
677
+ animate = settings.animateScroll;
678
+ }
679
+ if (animate) {
680
+ jsp.animate(verticalDrag, 'top', destY, _positionDragY);
681
+ } else {
682
+ verticalDrag.css('top', destY);
683
+ _positionDragY(destY);
684
+ }
685
+
686
+ }
687
+
688
+ function _positionDragY(destY)
689
+ {
690
+ if (destY === undefined) {
691
+ destY = verticalDrag.position().top;
692
+ }
693
+
694
+ container.scrollTop(0);
695
+ verticalDragPosition = destY;
696
+
697
+ var isAtTop = verticalDragPosition === 0,
698
+ isAtBottom = verticalDragPosition == dragMaxY,
699
+ percentScrolled = destY/ dragMaxY,
700
+ destTop = -percentScrolled * (contentHeight - paneHeight);
701
+
702
+ if (wasAtTop != isAtTop || wasAtBottom != isAtBottom) {
703
+ wasAtTop = isAtTop;
704
+ wasAtBottom = isAtBottom;
705
+ elem.trigger('jsp-arrow-change', [wasAtTop, wasAtBottom, wasAtLeft, wasAtRight]);
706
+ }
707
+
708
+ updateVerticalArrows(isAtTop, isAtBottom);
709
+ pane.css('top', destTop);
710
+ elem.trigger('jsp-scroll-y', [-destTop, isAtTop, isAtBottom]).trigger('scroll');
711
+ }
712
+
713
+ function positionDragX(destX, animate)
714
+ {
715
+ if (!isScrollableH) {
716
+ return;
717
+ }
718
+ if (destX < 0) {
719
+ destX = 0;
720
+ } else if (destX > dragMaxX) {
721
+ destX = dragMaxX;
722
+ }
723
+
724
+ if (animate === undefined) {
725
+ animate = settings.animateScroll;
726
+ }
727
+ if (animate) {
728
+ jsp.animate(horizontalDrag, 'left', destX, _positionDragX);
729
+ } else {
730
+ horizontalDrag.css('left', destX);
731
+ _positionDragX(destX);
732
+ }
733
+ }
734
+
735
+ function _positionDragX(destX)
736
+ {
737
+ if (destX === undefined) {
738
+ destX = horizontalDrag.position().left;
739
+ }
740
+
741
+ container.scrollTop(0);
742
+ horizontalDragPosition = destX;
743
+
744
+ var isAtLeft = horizontalDragPosition === 0,
745
+ isAtRight = horizontalDragPosition == dragMaxX,
746
+ percentScrolled = destX / dragMaxX,
747
+ destLeft = -percentScrolled * (contentWidth - paneWidth);
748
+
749
+ if (wasAtLeft != isAtLeft || wasAtRight != isAtRight) {
750
+ wasAtLeft = isAtLeft;
751
+ wasAtRight = isAtRight;
752
+ elem.trigger('jsp-arrow-change', [wasAtTop, wasAtBottom, wasAtLeft, wasAtRight]);
753
+ }
754
+
755
+ updateHorizontalArrows(isAtLeft, isAtRight);
756
+ pane.css('left', destLeft);
757
+ elem.trigger('jsp-scroll-x', [-destLeft, isAtLeft, isAtRight]).trigger('scroll');
758
+ }
759
+
760
+ function updateVerticalArrows(isAtTop, isAtBottom)
761
+ {
762
+ if (settings.showArrows) {
763
+ arrowUp[isAtTop ? 'addClass' : 'removeClass']('jspDisabled');
764
+ arrowDown[isAtBottom ? 'addClass' : 'removeClass']('jspDisabled');
765
+ }
766
+ }
767
+
768
+ function updateHorizontalArrows(isAtLeft, isAtRight)
769
+ {
770
+ if (settings.showArrows) {
771
+ arrowLeft[isAtLeft ? 'addClass' : 'removeClass']('jspDisabled');
772
+ arrowRight[isAtRight ? 'addClass' : 'removeClass']('jspDisabled');
773
+ }
774
+ }
775
+
776
+ function scrollToY(destY, animate)
777
+ {
778
+ var percentScrolled = destY / (contentHeight - paneHeight);
779
+ positionDragY(percentScrolled * dragMaxY, animate);
780
+ }
781
+
782
+ function scrollToX(destX, animate)
783
+ {
784
+ var percentScrolled = destX / (contentWidth - paneWidth);
785
+ positionDragX(percentScrolled * dragMaxX, animate);
786
+ }
787
+
788
+ function scrollToElement(ele, stickToTop, animate)
789
+ {
790
+ var e, eleHeight, eleWidth, eleTop = 0, eleLeft = 0, viewportTop, viewportLeft, maxVisibleEleTop, maxVisibleEleLeft, destY, destX;
791
+
792
+ // Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
793
+ // errors from the lookup...
794
+ try {
795
+ e = $(ele);
796
+ } catch (err) {
797
+ return;
798
+ }
799
+ eleHeight = e.outerHeight();
800
+ eleWidth= e.outerWidth();
801
+
802
+ container.scrollTop(0);
803
+ container.scrollLeft(0);
804
+
805
+ // loop through parents adding the offset top of any elements that are relatively positioned between
806
+ // the focused element and the jspPane so we can get the true distance from the top
807
+ // of the focused element to the top of the scrollpane...
808
+ while (!e.is('.jspPane')) {
809
+ eleTop += e.position().top;
810
+ eleLeft += e.position().left;
811
+ e = e.offsetParent();
812
+ if (/^body|html$/i.test(e[0].nodeName)) {
813
+ // we ended up too high in the document structure. Quit!
814
+ return;
815
+ }
816
+ }
817
+
818
+ viewportTop = contentPositionY();
819
+ maxVisibleEleTop = viewportTop + paneHeight;
820
+ if (eleTop < viewportTop || stickToTop) { // element is above viewport
821
+ destY = eleTop - settings.verticalGutter;
822
+ } else if (eleTop + eleHeight > maxVisibleEleTop) { // element is below viewport
823
+ destY = eleTop - paneHeight + eleHeight + settings.verticalGutter;
824
+ }
825
+ if (destY) {
826
+ scrollToY(destY, animate);
827
+ }
828
+
829
+ viewportLeft = contentPositionX();
830
+ maxVisibleEleLeft = viewportLeft + paneWidth;
831
+ if (eleLeft < viewportLeft || stickToTop) { // element is to the left of viewport
832
+ destX = eleLeft - settings.horizontalGutter;
833
+ } else if (eleLeft + eleWidth > maxVisibleEleLeft) { // element is to the right viewport
834
+ destX = eleLeft - paneWidth + eleWidth + settings.horizontalGutter;
835
+ }
836
+ if (destX) {
837
+ scrollToX(destX, animate);
838
+ }
839
+
840
+ }
841
+
842
+ function contentPositionX()
843
+ {
844
+ return -pane.position().left;
845
+ }
846
+
847
+ function contentPositionY()
848
+ {
849
+ return -pane.position().top;
850
+ }
851
+
852
+ function isCloseToBottom()
853
+ {
854
+ var scrollableHeight = contentHeight - paneHeight;
855
+ return (scrollableHeight > 20) && (scrollableHeight - contentPositionY() < 10);
856
+ }
857
+
858
+ function isCloseToRight()
859
+ {
860
+ var scrollableWidth = contentWidth - paneWidth;
861
+ return (scrollableWidth > 20) && (scrollableWidth - contentPositionX() < 10);
862
+ }
863
+
864
+ function initMousewheel()
865
+ {
866
+ container.unbind(mwEvent).bind(
867
+ mwEvent,
868
+ function (event, delta, deltaX, deltaY) {
869
+ var dX = horizontalDragPosition, dY = verticalDragPosition;
870
+ jsp.scrollBy(deltaX * settings.mouseWheelSpeed, -deltaY * settings.mouseWheelSpeed, false);
871
+ // return true if there was no movement so rest of screen can scroll
872
+ return dX == horizontalDragPosition && dY == verticalDragPosition;
873
+ }
874
+ );
875
+ }
876
+
877
+ function removeMousewheel()
878
+ {
879
+ container.unbind(mwEvent);
880
+ }
881
+
882
+ function nil()
883
+ {
884
+ return false;
885
+ }
886
+
887
+ function initFocusHandler()
888
+ {
889
+ pane.find(':input,a').unbind('focus.jsp').bind(
890
+ 'focus.jsp',
891
+ function(e)
892
+ {
893
+ scrollToElement(e.target, false);
894
+ }
895
+ );
896
+ }
897
+
898
+ function removeFocusHandler()
899
+ {
900
+ pane.find(':input,a').unbind('focus.jsp');
901
+ }
902
+
903
+ function initKeyboardNav()
904
+ {
905
+ var keyDown, elementHasScrolled, validParents = [];
906
+ isScrollableH && validParents.push(horizontalBar[0]);
907
+ isScrollableV && validParents.push(verticalBar[0]);
908
+
909
+ // IE also focuses elements that don't have tabindex set.
910
+ pane.focus(
911
+ function()
912
+ {
913
+ elem.focus();
914
+ }
915
+ );
916
+
917
+ elem.attr('tabindex', 0)
918
+ .unbind('keydown.jsp keypress.jsp')
919
+ .bind(
920
+ 'keydown.jsp',
921
+ function(e)
922
+ {
923
+ if (e.target !== this && !(validParents.length && $(e.target).closest(validParents).length)){
924
+ return;
925
+ }
926
+ var dX = horizontalDragPosition, dY = verticalDragPosition;
927
+ switch(e.keyCode) {
928
+ case 40: // down
929
+ case 38: // up
930
+ case 34: // page down
931
+ case 32: // space
932
+ case 33: // page up
933
+ case 39: // right
934
+ case 37: // left
935
+ keyDown = e.keyCode;
936
+ keyDownHandler();
937
+ break;
938
+ case 35: // end
939
+ scrollToY(contentHeight - paneHeight);
940
+ keyDown = null;
941
+ break;
942
+ case 36: // home
943
+ scrollToY(0);
944
+ keyDown = null;
945
+ break;
946
+ }
947
+
948
+ elementHasScrolled = e.keyCode == keyDown && dX != horizontalDragPosition || dY != verticalDragPosition;
949
+ return !elementHasScrolled;
950
+ }
951
+ ).bind(
952
+ 'keypress.jsp', // For FF/ OSX so that we can cancel the repeat key presses if the JSP scrolls...
953
+ function(e)
954
+ {
955
+ if (e.keyCode == keyDown) {
956
+ keyDownHandler();
957
+ }
958
+ return !elementHasScrolled;
959
+ }
960
+ );
961
+
962
+ if (settings.hideFocus) {
963
+ elem.css('outline', 'none');
964
+ if ('hideFocus' in container[0]){
965
+ elem.attr('hideFocus', true);
966
+ }
967
+ } else {
968
+ elem.css('outline', '');
969
+ if ('hideFocus' in container[0]){
970
+ elem.attr('hideFocus', false);
971
+ }
972
+ }
973
+
974
+ function keyDownHandler()
975
+ {
976
+ var dX = horizontalDragPosition, dY = verticalDragPosition;
977
+ switch(keyDown) {
978
+ case 40: // down
979
+ jsp.scrollByY(settings.keyboardSpeed, false);
980
+ break;
981
+ case 38: // up
982
+ jsp.scrollByY(-settings.keyboardSpeed, false);
983
+ break;
984
+ case 34: // page down
985
+ case 32: // space
986
+ jsp.scrollByY(paneHeight * settings.scrollPagePercent, false);
987
+ break;
988
+ case 33: // page up
989
+ jsp.scrollByY(-paneHeight * settings.scrollPagePercent, false);
990
+ break;
991
+ case 39: // right
992
+ jsp.scrollByX(settings.keyboardSpeed, false);
993
+ break;
994
+ case 37: // left
995
+ jsp.scrollByX(-settings.keyboardSpeed, false);
996
+ break;
997
+ }
998
+
999
+ elementHasScrolled = dX != horizontalDragPosition || dY != verticalDragPosition;
1000
+ return elementHasScrolled;
1001
+ }
1002
+ }
1003
+
1004
+ function removeKeyboardNav()
1005
+ {
1006
+ elem.attr('tabindex', '-1')
1007
+ .removeAttr('tabindex')
1008
+ .unbind('keydown.jsp keypress.jsp');
1009
+ }
1010
+
1011
+ function observeHash()
1012
+ {
1013
+ if (location.hash && location.hash.length > 1) {
1014
+ var e,
1015
+ retryInt,
1016
+ hash = escape(location.hash.substr(1)) // hash must be escaped to prevent XSS
1017
+ ;
1018
+ try {
1019
+ e = $('#' + hash + ', a[name="' + hash + '"]');
1020
+ } catch (err) {
1021
+ return;
1022
+ }
1023
+
1024
+ if (e.length && pane.find(hash)) {
1025
+ // nasty workaround but it appears to take a little while before the hash has done its thing
1026
+ // to the rendered page so we just wait until the container's scrollTop has been messed up.
1027
+ if (container.scrollTop() === 0) {
1028
+ retryInt = setInterval(
1029
+ function()
1030
+ {
1031
+ if (container.scrollTop() > 0) {
1032
+ scrollToElement(e, true);
1033
+ $(document).scrollTop(container.position().top);
1034
+ clearInterval(retryInt);
1035
+ }
1036
+ },
1037
+ 50
1038
+ );
1039
+ } else {
1040
+ scrollToElement(e, true);
1041
+ $(document).scrollTop(container.position().top);
1042
+ }
1043
+ }
1044
+ }
1045
+ }
1046
+
1047
+ function hijackInternalLinks()
1048
+ {
1049
+ // only register the link handler once
1050
+ if ($(document.body).data('jspHijack')) {
1051
+ return;
1052
+ }
1053
+
1054
+ // remember that the handler was bound
1055
+ $(document.body).data('jspHijack', true);
1056
+
1057
+ // use live handler to also capture newly created links
1058
+ $(document.body).delegate('a[href*=#]', 'click', function(event) {
1059
+ // does the link point to the same page?
1060
+ // this also takes care of cases with a <base>-Tag or Links not starting with the hash #
1061
+ // e.g. <a href="index.html#test"> when the current url already is index.html
1062
+ var href = this.href.substr(0, this.href.indexOf('#')),
1063
+ locationHref = location.href,
1064
+ hash,
1065
+ element,
1066
+ container,
1067
+ jsp,
1068
+ scrollTop,
1069
+ elementTop;
1070
+ if (location.href.indexOf('#') !== -1) {
1071
+ locationHref = location.href.substr(0, location.href.indexOf('#'));
1072
+ }
1073
+ if (href !== locationHref) {
1074
+ // the link points to another page
1075
+ return;
1076
+ }
1077
+
1078
+ // check if jScrollPane should handle this click event
1079
+ hash = escape(this.href.substr(this.href.indexOf('#') + 1));
1080
+
1081
+ // find the element on the page
1082
+ element;
1083
+ try {
1084
+ element = $('#' + hash + ', a[name="' + hash + '"]');
1085
+ } catch (e) {
1086
+ // hash is not a valid jQuery identifier
1087
+ return;
1088
+ }
1089
+
1090
+ if (!element.length) {
1091
+ // this link does not point to an element on this page
1092
+ return;
1093
+ }
1094
+
1095
+ container = element.closest('.jspScrollable');
1096
+ jsp = container.data('jsp');
1097
+
1098
+ // jsp might be another jsp instance than the one, that bound this event
1099
+ // remember: this event is only bound once for all instances.
1100
+ jsp.scrollToElement(element, true);
1101
+
1102
+ if (container[0].scrollIntoView) {
1103
+ // also scroll to the top of the container (if it is not visible)
1104
+ scrollTop = $(window).scrollTop();
1105
+ elementTop = element.offset().top;
1106
+ if (elementTop < scrollTop || elementTop > scrollTop + $(window).height()) {
1107
+ container[0].scrollIntoView();
1108
+ }
1109
+ }
1110
+
1111
+ // jsp handled this event, prevent the browser default (scrolling :P)
1112
+ event.preventDefault();
1113
+ });
1114
+ }
1115
+
1116
+ // Init touch on iPad, iPhone, iPod, Android
1117
+ function initTouch()
1118
+ {
1119
+ var startX,
1120
+ startY,
1121
+ touchStartX,
1122
+ touchStartY,
1123
+ moved,
1124
+ moving = false;
1125
+
1126
+ container.unbind('touchstart.jsp touchmove.jsp touchend.jsp click.jsp-touchclick').bind(
1127
+ 'touchstart.jsp',
1128
+ function(e)
1129
+ {
1130
+ var touch = e.originalEvent.touches[0];
1131
+ startX = contentPositionX();
1132
+ startY = contentPositionY();
1133
+ touchStartX = touch.pageX;
1134
+ touchStartY = touch.pageY;
1135
+ moved = false;
1136
+ moving = true;
1137
+ }
1138
+ ).bind(
1139
+ 'touchmove.jsp',
1140
+ function(ev)
1141
+ {
1142
+ if(!moving) {
1143
+ return;
1144
+ }
1145
+
1146
+ var touchPos = ev.originalEvent.touches[0],
1147
+ dX = horizontalDragPosition, dY = verticalDragPosition;
1148
+
1149
+ jsp.scrollTo(startX + touchStartX - touchPos.pageX, startY + touchStartY - touchPos.pageY);
1150
+
1151
+ moved = moved || Math.abs(touchStartX - touchPos.pageX) > 5 || Math.abs(touchStartY - touchPos.pageY) > 5;
1152
+
1153
+ // return true if there was no movement so rest of screen can scroll
1154
+ return dX == horizontalDragPosition && dY == verticalDragPosition;
1155
+ }
1156
+ ).bind(
1157
+ 'touchend.jsp',
1158
+ function(e)
1159
+ {
1160
+ moving = false;
1161
+ /*if(moved) {
1162
+ return false;
1163
+ }*/
1164
+ }
1165
+ ).bind(
1166
+ 'click.jsp-touchclick',
1167
+ function(e)
1168
+ {
1169
+ if(moved) {
1170
+ moved = false;
1171
+ return false;
1172
+ }
1173
+ }
1174
+ );
1175
+ }
1176
+
1177
+ function destroy(){
1178
+ var currentY = contentPositionY(),
1179
+ currentX = contentPositionX();
1180
+ elem.removeClass('jspScrollable').unbind('.jsp');
1181
+ elem.replaceWith(originalElement.append(pane.children()));
1182
+ originalElement.scrollTop(currentY);
1183
+ originalElement.scrollLeft(currentX);
1184
+
1185
+ // clear reinitialize timer if active
1186
+ if (reinitialiseInterval) {
1187
+ clearInterval(reinitialiseInterval);
1188
+ }
1189
+ }
1190
+
1191
+ // Public API
1192
+ $.extend(
1193
+ jsp,
1194
+ {
1195
+ // Reinitialises the scroll pane (if it's internal dimensions have changed since the last time it
1196
+ // was initialised). The settings object which is passed in will override any settings from the
1197
+ // previous time it was initialised - if you don't pass any settings then the ones from the previous
1198
+ // initialisation will be used.
1199
+ reinitialise: function(s)
1200
+ {
1201
+ s = $.extend({}, settings, s);
1202
+ initialise(s);
1203
+ },
1204
+ // Scrolls the specified element (a jQuery object, DOM node or jQuery selector string) into view so
1205
+ // that it can be seen within the viewport. If stickToTop is true then the element will appear at
1206
+ // the top of the viewport, if it is false then the viewport will scroll as little as possible to
1207
+ // show the element. You can also specify if you want animation to occur. If you don't provide this
1208
+ // argument then the animateScroll value from the settings object is used instead.
1209
+ scrollToElement: function(ele, stickToTop, animate)
1210
+ {
1211
+ scrollToElement(ele, stickToTop, animate);
1212
+ },
1213
+ // Scrolls the pane so that the specified co-ordinates within the content are at the top left
1214
+ // of the viewport. animate is optional and if not passed then the value of animateScroll from
1215
+ // the settings object this jScrollPane was initialised with is used.
1216
+ scrollTo: function(destX, destY, animate)
1217
+ {
1218
+ scrollToX(destX, animate);
1219
+ scrollToY(destY, animate);
1220
+ },
1221
+ // Scrolls the pane so that the specified co-ordinate within the content is at the left of the
1222
+ // viewport. animate is optional and if not passed then the value of animateScroll from the settings
1223
+ // object this jScrollPane was initialised with is used.
1224
+ scrollToX: function(destX, animate)
1225
+ {
1226
+ scrollToX(destX, animate);
1227
+ },
1228
+ // Scrolls the pane so that the specified co-ordinate within the content is at the top of the
1229
+ // viewport. animate is optional and if not passed then the value of animateScroll from the settings
1230
+ // object this jScrollPane was initialised with is used.
1231
+ scrollToY: function(destY, animate)
1232
+ {
1233
+ scrollToY(destY, animate);
1234
+ },
1235
+ // Scrolls the pane to the specified percentage of its maximum horizontal scroll position. animate
1236
+ // is optional and if not passed then the value of animateScroll from the settings object this
1237
+ // jScrollPane was initialised with is used.
1238
+ scrollToPercentX: function(destPercentX, animate)
1239
+ {
1240
+ scrollToX(destPercentX * (contentWidth - paneWidth), animate);
1241
+ },
1242
+ // Scrolls the pane to the specified percentage of its maximum vertical scroll position. animate
1243
+ // is optional and if not passed then the value of animateScroll from the settings object this
1244
+ // jScrollPane was initialised with is used.
1245
+ scrollToPercentY: function(destPercentY, animate)
1246
+ {
1247
+ scrollToY(destPercentY * (contentHeight - paneHeight), animate);
1248
+ },
1249
+ // Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
1250
+ // the value of animateScroll from the settings object this jScrollPane was initialised with is used.
1251
+ scrollBy: function(deltaX, deltaY, animate)
1252
+ {
1253
+ jsp.scrollByX(deltaX, animate);
1254
+ jsp.scrollByY(deltaY, animate);
1255
+ },
1256
+ // Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
1257
+ // the value of animateScroll from the settings object this jScrollPane was initialised with is used.
1258
+ scrollByX: function(deltaX, animate)
1259
+ {
1260
+ var destX = contentPositionX() + Math[deltaX<0 ? 'floor' : 'ceil'](deltaX),
1261
+ percentScrolled = destX / (contentWidth - paneWidth);
1262
+ positionDragX(percentScrolled * dragMaxX, animate);
1263
+ },
1264
+ // Scrolls the pane by the specified amount of pixels. animate is optional and if not passed then
1265
+ // the value of animateScroll from the settings object this jScrollPane was initialised with is used.
1266
+ scrollByY: function(deltaY, animate)
1267
+ {
1268
+ var destY = contentPositionY() + Math[deltaY<0 ? 'floor' : 'ceil'](deltaY),
1269
+ percentScrolled = destY / (contentHeight - paneHeight);
1270
+ positionDragY(percentScrolled * dragMaxY, animate);
1271
+ },
1272
+ // Positions the horizontal drag at the specified x position (and updates the viewport to reflect
1273
+ // this). animate is optional and if not passed then the value of animateScroll from the settings
1274
+ // object this jScrollPane was initialised with is used.
1275
+ positionDragX: function(x, animate)
1276
+ {
1277
+ positionDragX(x, animate);
1278
+ },
1279
+ // Positions the vertical drag at the specified y position (and updates the viewport to reflect
1280
+ // this). animate is optional and if not passed then the value of animateScroll from the settings
1281
+ // object this jScrollPane was initialised with is used.
1282
+ positionDragY: function(y, animate)
1283
+ {
1284
+ positionDragY(y, animate);
1285
+ },
1286
+ // This method is called when jScrollPane is trying to animate to a new position. You can override
1287
+ // it if you want to provide advanced animation functionality. It is passed the following arguments:
1288
+ // * ele - the element whose position is being animated
1289
+ // * prop - the property that is being animated
1290
+ // * value - the value it's being animated to
1291
+ // * stepCallback - a function that you must execute each time you update the value of the property
1292
+ // You can use the default implementation (below) as a starting point for your own implementation.
1293
+ animate: function(ele, prop, value, stepCallback)
1294
+ {
1295
+ var params = {};
1296
+ params[prop] = value;
1297
+ ele.animate(
1298
+ params,
1299
+ {
1300
+ 'duration' : settings.animateDuration,
1301
+ 'easing' : settings.animateEase,
1302
+ 'queue' : false,
1303
+ 'step' : stepCallback
1304
+ }
1305
+ );
1306
+ },
1307
+ // Returns the current x position of the viewport with regards to the content pane.
1308
+ getContentPositionX: function()
1309
+ {
1310
+ return contentPositionX();
1311
+ },
1312
+ // Returns the current y position of the viewport with regards to the content pane.
1313
+ getContentPositionY: function()
1314
+ {
1315
+ return contentPositionY();
1316
+ },
1317
+ // Returns the width of the content within the scroll pane.
1318
+ getContentWidth: function()
1319
+ {
1320
+ return contentWidth;
1321
+ },
1322
+ // Returns the height of the content within the scroll pane.
1323
+ getContentHeight: function()
1324
+ {
1325
+ return contentHeight;
1326
+ },
1327
+ // Returns the horizontal position of the viewport within the pane content.
1328
+ getPercentScrolledX: function()
1329
+ {
1330
+ return contentPositionX() / (contentWidth - paneWidth);
1331
+ },
1332
+ // Returns the vertical position of the viewport within the pane content.
1333
+ getPercentScrolledY: function()
1334
+ {
1335
+ return contentPositionY() / (contentHeight - paneHeight);
1336
+ },
1337
+ // Returns whether or not this scrollpane has a horizontal scrollbar.
1338
+ getIsScrollableH: function()
1339
+ {
1340
+ return isScrollableH;
1341
+ },
1342
+ // Returns whether or not this scrollpane has a vertical scrollbar.
1343
+ getIsScrollableV: function()
1344
+ {
1345
+ return isScrollableV;
1346
+ },
1347
+ // Gets a reference to the content pane. It is important that you use this method if you want to
1348
+ // edit the content of your jScrollPane as if you access the element directly then you may have some
1349
+ // problems (as your original element has had additional elements for the scrollbars etc added into
1350
+ // it).
1351
+ getContentPane: function()
1352
+ {
1353
+ return pane;
1354
+ },
1355
+ // Scrolls this jScrollPane down as far as it can currently scroll. If animate isn't passed then the
1356
+ // animateScroll value from settings is used instead.
1357
+ scrollToBottom: function(animate)
1358
+ {
1359
+ positionDragY(dragMaxY, animate);
1360
+ },
1361
+ // Hijacks the links on the page which link to content inside the scrollpane. If you have changed
1362
+ // the content of your page (e.g. via AJAX) and want to make sure any new anchor links to the
1363
+ // contents of your scroll pane will work then call this function.
1364
+ hijackInternalLinks: $.noop,
1365
+ // Removes the jScrollPane and returns the page to the state it was in before jScrollPane was
1366
+ // initialised.
1367
+ destroy: function()
1368
+ {
1369
+ destroy();
1370
+ }
1371
+ }
1372
+ );
1373
+
1374
+ initialise(s);
1375
+ }
1376
+
1377
+ // Pluginifying code...
1378
+ settings = $.extend({}, $.fn.jScrollPane.defaults, settings);
1379
+
1380
+ // Apply default speed
1381
+ $.each(['mouseWheelSpeed', 'arrowButtonSpeed', 'trackClickSpeed', 'keyboardSpeed'], function() {
1382
+ settings[this] = settings[this] || settings.speed;
1383
+ });
1384
+
1385
+ return this.each(
1386
+ function()
1387
+ {
1388
+ var elem = $(this), jspApi = elem.data('jsp');
1389
+ if (jspApi) {
1390
+ jspApi.reinitialise(settings);
1391
+ } else {
1392
+ $("script",elem).filter('[type="text/javascript"],:not([type])').remove();
1393
+ jspApi = new JScrollPane(elem, settings);
1394
+ elem.data('jsp', jspApi);
1395
+ }
1396
+ }
1397
+ );
1398
+ };
1399
+
1400
+ $.fn.jScrollPane.defaults = {
1401
+ showArrows : false,
1402
+ maintainPosition : true,
1403
+ stickToBottom : false,
1404
+ stickToRight : false,
1405
+ clickOnTrack : true,
1406
+ autoReinitialise : false,
1407
+ autoReinitialiseDelay : 500,
1408
+ verticalDragMinHeight : 0,
1409
+ verticalDragMaxHeight : 99999,
1410
+ horizontalDragMinWidth : 0,
1411
+ horizontalDragMaxWidth : 99999,
1412
+ contentWidth : undefined,
1413
+ animateScroll : false,
1414
+ animateDuration : 300,
1415
+ animateEase : 'linear',
1416
+ hijackInternalLinks : false,
1417
+ verticalGutter : 4,
1418
+ horizontalGutter : 4,
1419
+ mouseWheelSpeed : 0,
1420
+ arrowButtonSpeed : 0,
1421
+ arrowRepeatFreq : 50,
1422
+ arrowScrollOnHover : false,
1423
+ trackClickSpeed : 0,
1424
+ trackClickRepeatFreq : 70,
1425
+ verticalArrowPositions : 'split',
1426
+ horizontalArrowPositions : 'split',
1427
+ enableKeyboardNavigation : true,
1428
+ hideFocus : false,
1429
+ keyboardSpeed : 0,
1430
+ initialDelay : 300, // Delay before starting repeating
1431
+ speed : 30, // Default speed when others falsey
1432
+ scrollPagePercent : .8 // Percent of visible area scrolled when pageUp/Down or track area pressed
1433
+ };
1434
+
1435
+ })(jQuery,this);