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,49 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
+ <!--
3
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
4
+ For licensing, see LICENSE.html or http://ckeditor.com/license
5
+ -->
6
+ <html>
7
+ <head>
8
+ <title></title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10
+ <script type="text/javascript">
11
+
12
+ function gup( name )
13
+ {
14
+ name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
15
+ var regexS = '[\\?&]' + name + '=([^&#]*)' ;
16
+ var regex = new RegExp( regexS ) ;
17
+ var results = regex.exec( window.location.href ) ;
18
+
19
+ if ( results )
20
+ return results[ 1 ] ;
21
+ else
22
+ return '' ;
23
+ }
24
+
25
+ var interval;
26
+
27
+ function sendData2Master()
28
+ {
29
+ var destination = window.parent.parent ;
30
+ try
31
+ {
32
+ if ( destination.XDTMaster )
33
+ {
34
+ var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
35
+ window.clearInterval( interval ) ;
36
+ }
37
+ }
38
+ catch (e) {}
39
+ }
40
+
41
+ function onLoad()
42
+ {
43
+ interval = window.setInterval( sendData2Master, 100 );
44
+ }
45
+
46
+ </script>
47
+ </head>
48
+ <body onload="onLoad()"><p></p></body>
49
+ </html>
@@ -0,0 +1,52 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
2
+ <!--
3
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
4
+ For licensing, see LICENSE.html or http://ckeditor.com/license
5
+ -->
6
+ <html>
7
+ <head>
8
+ <title></title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10
+ <script type="text/javascript">
11
+
12
+ function doLoadScript( url )
13
+ {
14
+ if ( !url )
15
+ return false ;
16
+
17
+ var s = document.createElement( "script" ) ;
18
+ s.type = "text/javascript" ;
19
+ s.src = url ;
20
+ document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;
21
+
22
+ return true ;
23
+ }
24
+
25
+ var opener;
26
+ function tryLoad()
27
+ {
28
+ opener = window.parent;
29
+
30
+ // get access to global parameters
31
+ var oParams = window.opener.oldFramesetPageParams;
32
+
33
+ // make frameset rows string prepare
34
+ var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
35
+ document.getElementById( 'itFrameset' ).rows = sFramesetRows ;
36
+
37
+ // dynamic including init frames and crossdomain transport code
38
+ // from config sproxy_js_frameset url
39
+ var addScriptUrl = oParams.sproxy_js_frameset ;
40
+ doLoadScript( addScriptUrl ) ;
41
+ }
42
+
43
+ </script>
44
+ </head>
45
+
46
+ <frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
47
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
48
+ <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
49
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
50
+ <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
51
+ </frameset>
52
+ </html>
@@ -0,0 +1,82 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ html, body
7
+ {
8
+ background-color: transparent;
9
+ margin: 0px;
10
+ padding: 0px;
11
+ }
12
+
13
+ body
14
+ {
15
+ padding: 10px;
16
+ }
17
+
18
+ body, td, input, select, textarea
19
+ {
20
+ font-size: 11px;
21
+ font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
22
+ }
23
+
24
+ .midtext
25
+ {
26
+ padding:0px;
27
+ margin:10px;
28
+ }
29
+
30
+ .midtext p
31
+ {
32
+ padding:0px;
33
+ margin:10px;
34
+ }
35
+
36
+ .Button
37
+ {
38
+ border: #737357 1px solid;
39
+ color: #3b3b1f;
40
+ background-color: #c7c78f;
41
+ }
42
+
43
+ .PopupTabArea
44
+ {
45
+ color: #737357;
46
+ background-color: #e3e3c7;
47
+ }
48
+
49
+ .PopupTitleBorder
50
+ {
51
+ border-bottom: #d5d59d 1px solid;
52
+ }
53
+ .PopupTabEmptyArea
54
+ {
55
+ padding-left: 10px;
56
+ border-bottom: #d5d59d 1px solid;
57
+ }
58
+
59
+ .PopupTab, .PopupTabSelected
60
+ {
61
+ border-right: #d5d59d 1px solid;
62
+ border-top: #d5d59d 1px solid;
63
+ border-left: #d5d59d 1px solid;
64
+ padding: 3px 5px 3px 5px;
65
+ color: #737357;
66
+ }
67
+
68
+ .PopupTab
69
+ {
70
+ margin-top: 1px;
71
+ border-bottom: #d5d59d 1px solid;
72
+ cursor: pointer;
73
+ }
74
+
75
+ .PopupTabSelected
76
+ {
77
+ font-weight: bold;
78
+ cursor: default;
79
+ padding-top: 4px;
80
+ border-bottom: #f1f1e3 1px solid;
81
+ background-color: #f1f1e3;
82
+ }
@@ -0,0 +1,176 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.dialog.add( 'checkspell', function( editor )
7
+ {
8
+ var number = CKEDITOR.tools.getNextNumber(),
9
+ iframeId = 'cke_frame_' + number,
10
+ textareaId = 'cke_data_' + number,
11
+ errorBoxId = 'cke_error_' + number,
12
+ interval,
13
+ protocol = document.location.protocol || 'http:',
14
+ errorMsg = editor.lang.spellCheck.notAvailable;
15
+
16
+ var pasteArea = '<textarea'+
17
+ ' style="display: none"' +
18
+ ' id="' + textareaId + '"' +
19
+ ' rows="10"' +
20
+ ' cols="40">' +
21
+ ' </textarea><div' +
22
+ ' id="' + errorBoxId + '"' +
23
+ ' style="display:none;color:red;font-size:16px;font-weight:bold;padding-top:160px;text-align:center;z-index:11;">' +
24
+ '</div><iframe' +
25
+ ' src=""' +
26
+ ' style="width:485px;background-color:#f1f1e3;height:380px"' +
27
+ ' frameborder="0"' +
28
+ ' name="' + iframeId + '"' +
29
+ ' id="' + iframeId + '"' +
30
+ ' allowtransparency="1">' +
31
+ '</iframe>';
32
+
33
+ var wscCoreUrl = editor.config.wsc_customLoaderScript || ( protocol +
34
+ '//loader.spellchecker.net/sproxy_fck/sproxy.php'
35
+ + '?plugin=fck2'
36
+ + '&customerid=' + editor.config.wsc_customerId
37
+ + '&cmd=script&doc=wsc&schema=22'
38
+ );
39
+
40
+ if ( editor.config.wsc_customLoaderScript )
41
+ errorMsg += '<p style="color:#000;font-size:11px;font-weight: normal;text-align:center;padding-top:10px">' +
42
+ editor.lang.spellCheck.errorLoading.replace( /%s/g, editor.config.wsc_customLoaderScript ) + '</p>';
43
+
44
+ function burnSpelling( dialog, errorMsg )
45
+ {
46
+ var i = 0;
47
+ return function ()
48
+ {
49
+ if ( typeof( window.doSpell ) == 'function' )
50
+ {
51
+ //Call from window.setInteval expected at once.
52
+ if ( typeof( interval ) != 'undefined' )
53
+ window.clearInterval( interval );
54
+
55
+ initAndSpell( dialog );
56
+ }
57
+ else if ( i++ == 180 ) // Timeout: 180 * 250ms = 45s.
58
+ window._cancelOnError( errorMsg );
59
+ };
60
+ }
61
+
62
+ window._cancelOnError = function( m )
63
+ {
64
+ if ( typeof( window.WSC_Error ) == 'undefined' )
65
+ {
66
+ CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'none' );
67
+ var errorBox = CKEDITOR.document.getById( errorBoxId );
68
+ errorBox.setStyle( 'display', 'block' );
69
+ errorBox.setHtml( m || editor.lang.spellCheck.notAvailable );
70
+ }
71
+ };
72
+
73
+ function initAndSpell( dialog )
74
+ {
75
+ var LangComparer = new window._SP_FCK_LangCompare(), // Language abbr standarts comparer.
76
+ pluginPath = CKEDITOR.getUrl( editor.plugins.wsc.path + 'dialogs/' ), // Service paths corecting/preparing.
77
+ framesetPath = pluginPath + 'tmpFrameset.html';
78
+
79
+ // global var is used in FCK specific core
80
+ // change on equal var used in fckplugin.js
81
+ window.gFCKPluginName = 'wsc';
82
+
83
+ LangComparer.setDefaulLangCode( editor.config.defaultLanguage );
84
+
85
+ window.doSpell({
86
+ ctrl : textareaId,
87
+
88
+ lang : editor.config.wsc_lang || LangComparer.getSPLangCode(editor.langCode ),
89
+ intLang: editor.config.wsc_uiLang || LangComparer.getSPLangCode(editor.langCode ),
90
+ winType : iframeId, // If not defined app will run on winpopup.
91
+
92
+ // Callback binding section.
93
+ onCancel : function()
94
+ {
95
+ dialog.hide();
96
+ },
97
+ onFinish : function( dT )
98
+ {
99
+ editor.focus();
100
+ dialog.getParentEditor().setData( dT.value );
101
+ dialog.hide();
102
+ },
103
+
104
+ // Some manipulations with client static pages.
105
+ staticFrame : framesetPath,
106
+ framesetPath : framesetPath,
107
+ iframePath : pluginPath + 'ciframe.html',
108
+
109
+ // Styles defining.
110
+ schemaURI : pluginPath + 'wsc.css',
111
+
112
+ userDictionaryName: editor.config.wsc_userDictionaryName,
113
+ customDictionaryName: editor.config.wsc_customDictionaryIds && editor.config.wsc_customDictionaryIds.split(","),
114
+ domainName: editor.config.wsc_domainName
115
+
116
+ });
117
+
118
+ // Hide user message console (if application was loaded more then after timeout).
119
+ CKEDITOR.document.getById( errorBoxId ).setStyle( 'display', 'none' );
120
+ CKEDITOR.document.getById( iframeId ).setStyle( 'display', 'block' );
121
+ }
122
+
123
+ return {
124
+ title : editor.config.wsc_dialogTitle || editor.lang.spellCheck.title,
125
+ minWidth : 485,
126
+ minHeight : 380,
127
+ buttons : [ CKEDITOR.dialog.cancelButton ],
128
+ onShow : function()
129
+ {
130
+ var contentArea = this.getContentElement( 'general', 'content' ).getElement();
131
+ contentArea.setHtml( pasteArea );
132
+
133
+ if ( typeof( window.doSpell ) != 'function' )
134
+ {
135
+ // Load script.
136
+ CKEDITOR.document.getHead().append(
137
+ CKEDITOR.document.createElement( 'script',
138
+ {
139
+ attributes :
140
+ {
141
+ type : 'text/javascript',
142
+ src : wscCoreUrl
143
+ }
144
+ })
145
+ );
146
+ }
147
+
148
+ var sData = editor.getData(); // Get the data to be checked.
149
+ CKEDITOR.document.getById( textareaId ).setValue( sData );
150
+
151
+ interval = window.setInterval( burnSpelling( this, errorMsg ), 250 );
152
+ },
153
+ onHide : function()
154
+ {
155
+ window.ooo = undefined;
156
+ window.int_framsetLoaded = undefined;
157
+ window.framesetLoaded = undefined;
158
+ window.is_window_opened = false;
159
+ },
160
+ contents : [
161
+ {
162
+ id : 'general',
163
+ label : editor.config.wsc_dialogTitle || editor.lang.spellCheck.title,
164
+ padding : 0,
165
+ elements : [
166
+ {
167
+ type : 'html',
168
+ id : 'content',
169
+ style : 'width:485;height:380px',
170
+ html : '<div></div>'
171
+ }
172
+ ]
173
+ }
174
+ ]
175
+ };
176
+ });
@@ -0,0 +1,33 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @file Spell checker
8
+ */
9
+
10
+ // Register a plugin named "wsc".
11
+ CKEDITOR.plugins.add( 'wsc',
12
+ {
13
+ requires : [ 'dialog' ],
14
+ init : function( editor )
15
+ {
16
+ var commandName = 'checkspell';
17
+
18
+ var command = editor.addCommand( commandName, new CKEDITOR.dialogCommand( commandName ) );
19
+
20
+ // SpellChecker doesn't work in Opera and with custom domain
21
+ command.modes = { wysiwyg : ( !CKEDITOR.env.opera && document.domain == window.location.hostname ) };
22
+
23
+ editor.ui.addButton( 'SpellChecker',
24
+ {
25
+ label : editor.lang.spellCheck.toolbar,
26
+ command : commandName
27
+ });
28
+ CKEDITOR.dialog.add( commandName, this.path + 'dialogs/wsc.js' );
29
+ }
30
+ });
31
+
32
+ CKEDITOR.config.wsc_customerId = CKEDITOR.config.wsc_customerId || '1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk' ;
33
+ CKEDITOR.config.wsc_customLoaderScript = CKEDITOR.config.wsc_customLoaderScript || null;
@@ -0,0 +1,1126 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @fileOverview The "wysiwygarea" plugin. It registers the "wysiwyg" editing
8
+ * mode, which handles the main editing area space.
9
+ */
10
+
11
+ (function()
12
+ {
13
+ // List of elements in which has no way to move editing focus outside.
14
+ var nonExitableElementNames = { table:1,pre:1 };
15
+
16
+ // Matching an empty paragraph at the end of document.
17
+ var emptyParagraphRegexp = /\s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>|&nbsp;|\u00A0|&#160;)?\s*(:?<\/\1>)?(?=\s*$|<\/body>)/gi;
18
+
19
+ var notWhitespaceEval = CKEDITOR.dom.walker.whitespaces( true );
20
+
21
+ function checkReadOnly( selection )
22
+ {
23
+ if ( selection.getType() == CKEDITOR.SELECTION_ELEMENT )
24
+ return selection.getSelectedElement().isReadOnly();
25
+ else
26
+ return selection.getCommonAncestor().isReadOnly();
27
+ }
28
+
29
+ function onInsertHtml( evt )
30
+ {
31
+ if ( this.mode == 'wysiwyg' )
32
+ {
33
+ this.focus();
34
+
35
+ var selection = this.getSelection();
36
+ if ( checkReadOnly( selection ) )
37
+ return;
38
+
39
+ var data = evt.data;
40
+ this.fire( 'saveSnapshot' );
41
+
42
+ if ( this.dataProcessor )
43
+ data = this.dataProcessor.toHtml( data );
44
+
45
+ if ( CKEDITOR.env.ie )
46
+ {
47
+ var selIsLocked = selection.isLocked;
48
+
49
+ if ( selIsLocked )
50
+ selection.unlock();
51
+
52
+ var $sel = selection.getNative();
53
+
54
+ // Delete control selections to avoid IE bugs on pasteHTML.
55
+ if ( $sel.type == 'Control' )
56
+ $sel.clear();
57
+ else if ( selection.getType() == CKEDITOR.SELECTION_TEXT )
58
+ {
59
+ // Due to IE bugs on handling contenteditable=false blocks
60
+ // (#6005), we need to make some checks and eventually
61
+ // delete the selection first.
62
+
63
+ var range = selection.getRanges()[0],
64
+ endContainer = range && range.endContainer;
65
+
66
+ if ( endContainer &&
67
+ endContainer.type == CKEDITOR.NODE_ELEMENT &&
68
+ endContainer.getAttribute( 'contenteditable' ) == 'false' &&
69
+ range.checkBoundaryOfElement( endContainer, CKEDITOR.END ) )
70
+ {
71
+ range.setEndAfter( range.endContainer );
72
+ range.deleteContents();
73
+ }
74
+ }
75
+
76
+ try
77
+ {
78
+ $sel.createRange().pasteHTML( data );
79
+ }
80
+ catch (e) {}
81
+
82
+ if ( selIsLocked )
83
+ this.getSelection().lock();
84
+ }
85
+ else
86
+ this.document.$.execCommand( 'inserthtml', false, data );
87
+
88
+ // Webkit does not scroll to the cursor position after pasting (#5558)
89
+ if ( CKEDITOR.env.webkit )
90
+ {
91
+ this.document.$.execCommand( 'inserthtml', false, '<span id="cke_paste_marker" cke_temp="1"></span>' );
92
+ var marker = this.document.getById( 'cke_paste_marker' );
93
+ marker.scrollIntoView();
94
+ marker.remove();
95
+ }
96
+
97
+ CKEDITOR.tools.setTimeout( function()
98
+ {
99
+ this.fire( 'saveSnapshot' );
100
+ }, 0, this );
101
+ }
102
+ }
103
+
104
+ function onInsertElement( evt )
105
+ {
106
+ if ( this.mode == 'wysiwyg' )
107
+ {
108
+ this.focus();
109
+
110
+ var selection = this.getSelection();
111
+ if ( checkReadOnly( selection ) )
112
+ return;
113
+
114
+ this.fire( 'saveSnapshot' );
115
+
116
+ var ranges = selection.getRanges(),
117
+ element = evt.data,
118
+ elementName = element.getName(),
119
+ isBlock = CKEDITOR.dtd.$block[ elementName ];
120
+
121
+ var selIsLocked = selection.isLocked;
122
+
123
+ if ( selIsLocked )
124
+ selection.unlock();
125
+
126
+ var range, clone, lastElement, bookmark;
127
+
128
+ for ( var i = ranges.length - 1 ; i >= 0 ; i-- )
129
+ {
130
+ range = ranges[ i ];
131
+
132
+ // Remove the original contents.
133
+ range.deleteContents();
134
+
135
+ clone = !i && element || element.clone( true );
136
+
137
+ // If we're inserting a block at dtd-violated position, split
138
+ // the parent blocks until we reach blockLimit.
139
+ var current, dtd;
140
+ if ( isBlock )
141
+ {
142
+ while ( ( current = range.getCommonAncestor( false, true ) )
143
+ && ( dtd = CKEDITOR.dtd[ current.getName() ] )
144
+ && !( dtd && dtd [ elementName ] ) )
145
+ {
146
+ // Split up inline elements.
147
+ if ( current.getName() in CKEDITOR.dtd.span )
148
+ range.splitElement( current );
149
+ // If we're in an empty block which indicate a new paragraph,
150
+ // simply replace it with the inserting block.(#3664)
151
+ else if ( range.checkStartOfBlock()
152
+ && range.checkEndOfBlock() )
153
+ {
154
+ range.setStartBefore( current );
155
+ range.collapse( true );
156
+ current.remove();
157
+ }
158
+ else
159
+ range.splitBlock();
160
+ }
161
+ }
162
+
163
+ // Insert the new node.
164
+ range.insertNode( clone );
165
+
166
+ // Save the last element reference so we can make the
167
+ // selection later.
168
+ if ( !lastElement )
169
+ lastElement = clone;
170
+ }
171
+
172
+ range.moveToPosition( lastElement, CKEDITOR.POSITION_AFTER_END );
173
+
174
+ // If we're inserting a block element immediatelly followed by
175
+ // another block element, the selection must move there. (#3100,#5436)
176
+ if ( isBlock )
177
+ {
178
+ var next = lastElement.getNext( notWhitespaceEval ),
179
+ nextName = next && next.type == CKEDITOR.NODE_ELEMENT && next.getName();
180
+
181
+ // Check if it's a block element that accepts text.
182
+ if ( nextName && CKEDITOR.dtd.$block[ nextName ] && CKEDITOR.dtd[ nextName ]['#'] )
183
+ range.moveToElementEditStart( next );
184
+ }
185
+
186
+ selection.selectRanges( [ range ] );
187
+
188
+ if ( selIsLocked )
189
+ this.getSelection().lock();
190
+
191
+ // Save snaps after the whole execution completed.
192
+ // This's a workaround for make DOM modification's happened after
193
+ // 'insertElement' to be included either, e.g. Form-based dialogs' 'commitContents'
194
+ // call.
195
+ CKEDITOR.tools.setTimeout( function(){
196
+ this.fire( 'saveSnapshot' );
197
+ }, 0, this );
198
+ }
199
+ }
200
+
201
+ // DOM modification here should not bother dirty flag.(#4385)
202
+ function restoreDirty( editor )
203
+ {
204
+ if ( !editor.checkDirty() )
205
+ setTimeout( function(){ editor.resetDirty(); }, 0 );
206
+ }
207
+
208
+ var isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true ),
209
+ isNotBookmark = CKEDITOR.dom.walker.bookmark( false, true );
210
+
211
+ function isNotEmpty( node )
212
+ {
213
+ return isNotWhitespace( node ) && isNotBookmark( node );
214
+ }
215
+
216
+ function isNbsp( node )
217
+ {
218
+ return node.type == CKEDITOR.NODE_TEXT
219
+ && CKEDITOR.tools.trim( node.getText() ).match( /^(?:&nbsp;|\xa0)$/ );
220
+ }
221
+
222
+ function restoreSelection( selection )
223
+ {
224
+ if ( selection.isLocked )
225
+ {
226
+ selection.unlock();
227
+ setTimeout( function() { selection.lock(); }, 0 );
228
+ }
229
+ }
230
+
231
+ function isBlankParagraph( block )
232
+ {
233
+ return block.getOuterHtml().match( emptyParagraphRegexp );
234
+ }
235
+
236
+ isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true );
237
+
238
+ // Gecko need a key event to 'wake up' the editing
239
+ // ability when document is empty.(#3864, #5781)
240
+ function activateEditing( editor )
241
+ {
242
+ var win = editor.window,
243
+ doc = editor.document,
244
+ body = editor.document.getBody(),
245
+ bodyChildsNum = body.getChildren().count();
246
+
247
+ if ( !bodyChildsNum || ( bodyChildsNum == 1&& body.getFirst().hasAttribute( '_moz_editor_bogus_node' ) ) )
248
+ {
249
+ restoreDirty( editor );
250
+
251
+ // Memorize scroll position to restore it later (#4472).
252
+ var hostDocument = editor.element.getDocument();
253
+ var hostDocumentElement = hostDocument.getDocumentElement();
254
+ var scrollTop = hostDocumentElement.$.scrollTop;
255
+ var scrollLeft = hostDocumentElement.$.scrollLeft;
256
+
257
+ // Simulating keyboard character input by dispatching a keydown of white-space text.
258
+ var keyEventSimulate = doc.$.createEvent( "KeyEvents" );
259
+ keyEventSimulate.initKeyEvent( 'keypress', true, true, win.$, false,
260
+ false, false, false, 0, 32 );
261
+ doc.$.dispatchEvent( keyEventSimulate );
262
+
263
+ if ( scrollTop != hostDocumentElement.$.scrollTop || scrollLeft != hostDocumentElement.$.scrollLeft )
264
+ hostDocument.getWindow().$.scrollTo( scrollLeft, scrollTop );
265
+
266
+ // Restore the original document status by placing the cursor before a bogus br created (#5021).
267
+ bodyChildsNum && body.getFirst().remove();
268
+ doc.getBody().appendBogus();
269
+ var nativeRange = new CKEDITOR.dom.range( doc );
270
+ nativeRange.setStartAt( body , CKEDITOR.POSITION_AFTER_START );
271
+ nativeRange.select();
272
+ }
273
+ }
274
+
275
+ /**
276
+ * Auto-fixing block-less content by wrapping paragraph (#3190), prevent
277
+ * non-exitable-block by padding extra br.(#3189)
278
+ */
279
+ function onSelectionChangeFixBody( evt )
280
+ {
281
+ var editor = evt.editor,
282
+ path = evt.data.path,
283
+ blockLimit = path.blockLimit,
284
+ selection = evt.data.selection,
285
+ range = selection.getRanges()[0],
286
+ body = editor.document.getBody(),
287
+ enterMode = editor.config.enterMode;
288
+
289
+ CKEDITOR.env.gecko && activateEditing( editor );
290
+
291
+ // When enterMode set to block, we'll establing new paragraph only if we're
292
+ // selecting inline contents right under body. (#3657)
293
+ if ( enterMode != CKEDITOR.ENTER_BR
294
+ && range.collapsed
295
+ && blockLimit.getName() == 'body'
296
+ && !path.block )
297
+ {
298
+ editor.fire( 'updateSnapshot' );
299
+ restoreDirty( editor );
300
+ CKEDITOR.env.ie && restoreSelection( selection );
301
+
302
+ var fixedBlock = range.fixBlock( true,
303
+ editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
304
+
305
+ // For IE, we should remove any filler node which was introduced before.
306
+ if ( CKEDITOR.env.ie )
307
+ {
308
+ var first = fixedBlock.getFirst( isNotEmpty );
309
+ first && isNbsp( first ) && first.remove();
310
+ }
311
+
312
+ // If the fixed block is actually blank and is already followed by an exitable blank
313
+ // block, we should revert the fix and move into the existed one. (#3684)
314
+ if ( isBlankParagraph( fixedBlock ) )
315
+ {
316
+ var element = fixedBlock.getNext( isNotWhitespace );
317
+ if ( element &&
318
+ element.type == CKEDITOR.NODE_ELEMENT &&
319
+ !nonExitableElementNames[ element.getName() ] )
320
+ {
321
+ range.moveToElementEditStart( element );
322
+ fixedBlock.remove();
323
+ }
324
+ else
325
+ {
326
+ element = fixedBlock.getPrevious( isNotWhitespace );
327
+ if ( element &&
328
+ element.type == CKEDITOR.NODE_ELEMENT &&
329
+ !nonExitableElementNames[ element.getName() ] )
330
+ {
331
+ range.moveToElementEditEnd( element );
332
+ fixedBlock.remove();
333
+ }
334
+ }
335
+ }
336
+
337
+ range.select();
338
+ // Notify non-IE that selection has changed.
339
+ if ( !CKEDITOR.env.ie )
340
+ editor.selectionChange();
341
+ }
342
+
343
+ // All browsers are incapable to moving cursor out of certain non-exitable
344
+ // blocks (e.g. table, list, pre) at the end of document, make this happen by
345
+ // place a bogus node there, which would be later removed by dataprocessor.
346
+ var walkerRange = new CKEDITOR.dom.range( editor.document ),
347
+ walker = new CKEDITOR.dom.walker( walkerRange );
348
+ walkerRange.selectNodeContents( body );
349
+ walker.evaluator = function( node )
350
+ {
351
+ return node.type == CKEDITOR.NODE_ELEMENT && ( node.getName() in nonExitableElementNames );
352
+ };
353
+ walker.guard = function( node, isMoveout )
354
+ {
355
+ return !( ( node.type == CKEDITOR.NODE_TEXT && isNotWhitespace( node ) ) || isMoveout );
356
+ };
357
+
358
+ if ( walker.previous() )
359
+ {
360
+ editor.fire( 'updateSnapshot' );
361
+ restoreDirty( editor );
362
+ CKEDITOR.env.ie && restoreSelection( selection );
363
+
364
+ var paddingBlock;
365
+ if ( enterMode != CKEDITOR.ENTER_BR )
366
+ paddingBlock = body.append( new CKEDITOR.dom.element( enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ) );
367
+ else
368
+ paddingBlock = body;
369
+
370
+ if ( !CKEDITOR.env.ie )
371
+ paddingBlock.appendBogus();
372
+ }
373
+ }
374
+
375
+ CKEDITOR.plugins.add( 'wysiwygarea',
376
+ {
377
+ requires : [ 'editingblock' ],
378
+
379
+ init : function( editor )
380
+ {
381
+ var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
382
+ ? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
383
+
384
+ var frameLabel = editor.lang.editorTitle.replace( '%1', editor.name );
385
+
386
+ var contentDomReadyHandler;
387
+ editor.on( 'editingBlockReady', function()
388
+ {
389
+ var mainElement,
390
+ iframe,
391
+ isLoadingData,
392
+ isPendingFocus,
393
+ frameLoaded,
394
+ fireMode;
395
+
396
+
397
+ // Support for custom document.domain in IE.
398
+ var isCustomDomain = CKEDITOR.env.isCustomDomain();
399
+
400
+ // Creates the iframe that holds the editable document.
401
+ var createIFrame = function( data )
402
+ {
403
+ if ( iframe )
404
+ iframe.remove();
405
+
406
+
407
+ var srcScript =
408
+ 'document.open();' +
409
+
410
+ // The document domain must be set any time we
411
+ // call document.open().
412
+ ( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
413
+
414
+ 'document.close();';
415
+
416
+ iframe = CKEDITOR.dom.element.createFromHtml( '<iframe' +
417
+ ' style="width:100%;height:100%"' +
418
+ ' frameBorder="0"' +
419
+ ' title="' + frameLabel + '"' +
420
+ // With IE, the custom domain has to be taken care at first,
421
+ // for other browers, the 'src' attribute should be left empty to
422
+ // trigger iframe's 'load' event.
423
+ ' src="' + ( CKEDITOR.env.ie ? 'javascript:void(function(){' + encodeURIComponent( srcScript ) + '}())' : '' ) + '"' +
424
+ ' tabIndex="' + ( CKEDITOR.env.webkit? -1 : editor.tabIndex ) + '"' +
425
+ ' allowTransparency="true"' +
426
+ '></iframe>' );
427
+
428
+ // Running inside of Firefox chrome the load event doesn't bubble like in a normal page (#5689)
429
+ if ( document.location.protocol == 'chrome:' )
430
+ CKEDITOR.event.useCapture = true;
431
+
432
+ // With FF, it's better to load the data on iframe.load. (#3894,#4058)
433
+ iframe.on( 'load', function( ev )
434
+ {
435
+ frameLoaded = 1;
436
+ ev.removeListener();
437
+
438
+ var doc = iframe.getFrameDocument().$;
439
+
440
+ // Don't leave any history log in IE. (#5657)
441
+ doc.open( "text/html","replace" );
442
+ doc.write( data );
443
+ doc.close();
444
+ });
445
+
446
+ // Reset adjustment back to default (#5689)
447
+ if ( document.location.protocol == 'chrome:' )
448
+ CKEDITOR.event.useCapture = false;
449
+
450
+ // The container must be visible when creating the iframe in FF (#5956)
451
+ var element = editor.element,
452
+ isHidden = CKEDITOR.env.gecko && !element.isVisible(),
453
+ previousStyles = {};
454
+ if ( isHidden )
455
+ {
456
+ element.show();
457
+ previousStyles = {
458
+ position : element.getStyle( 'position' ),
459
+ top : element.getStyle( 'top' )
460
+ };
461
+ element.setStyles( { position : 'absolute', top : '-3000px' } );
462
+ }
463
+
464
+ mainElement.append( iframe );
465
+
466
+ if ( isHidden )
467
+ {
468
+ setTimeout( function()
469
+ {
470
+ element.hide();
471
+ element.setStyles( previousStyles );
472
+ }, 1000 );
473
+ }
474
+ };
475
+
476
+ // The script that launches the bootstrap logic on 'domReady', so the document
477
+ // is fully editable even before the editing iframe is fully loaded (#4455).
478
+ contentDomReadyHandler = CKEDITOR.tools.addFunction( contentDomReady );
479
+ var activationScript =
480
+ '<script id="cke_actscrpt" type="text/javascript" cke_temp="1">' +
481
+ ( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
482
+ 'window.parent.CKEDITOR.tools.callFunction( ' + contentDomReadyHandler + ', window );' +
483
+ '</script>';
484
+
485
+ // Editing area bootstrap code.
486
+ function contentDomReady( domWindow )
487
+ {
488
+ if ( !frameLoaded )
489
+ return;
490
+ frameLoaded = 0;
491
+
492
+ editor.fire( 'ariaWidget', iframe );
493
+
494
+ var domDocument = domWindow.document,
495
+ body = domDocument.body;
496
+
497
+ // Remove this script from the DOM.
498
+ var script = domDocument.getElementById( "cke_actscrpt" );
499
+ script.parentNode.removeChild( script );
500
+
501
+ body.spellcheck = !editor.config.disableNativeSpellChecker;
502
+
503
+ if ( CKEDITOR.env.ie )
504
+ {
505
+ // Don't display the focus border.
506
+ body.hideFocus = true;
507
+
508
+ // Disable and re-enable the body to avoid IE from
509
+ // taking the editing focus at startup. (#141 / #523)
510
+ body.disabled = true;
511
+ body.contentEditable = true;
512
+ body.removeAttribute( 'disabled' );
513
+ }
514
+ else
515
+ {
516
+ // Avoid opening design mode in a frame window thread,
517
+ // which will cause host page scrolling.(#4397)
518
+ setTimeout( function()
519
+ {
520
+ // Prefer 'contentEditable' instead of 'designMode'. (#3593)
521
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900
522
+ || CKEDITOR.env.opera )
523
+ domDocument.$.body.contentEditable = true;
524
+ else if ( CKEDITOR.env.webkit )
525
+ domDocument.$.body.parentNode.contentEditable = true;
526
+ else
527
+ domDocument.$.designMode = 'on';
528
+ }, 0 );
529
+ }
530
+
531
+ CKEDITOR.env.gecko && CKEDITOR.tools.setTimeout( activateEditing, 0, null, editor );
532
+
533
+ domWindow = editor.window = new CKEDITOR.dom.window( domWindow );
534
+ domDocument = editor.document = new CKEDITOR.dom.document( domDocument );
535
+
536
+ domDocument.on( 'dblclick', function( evt )
537
+ {
538
+ var element = evt.data.getTarget(),
539
+ data = { element : element, dialog : '' };
540
+ editor.fire( 'doubleclick', data );
541
+ data.dialog && editor.openDialog( data.dialog );
542
+ });
543
+
544
+ // Gecko/Webkit need some help when selecting control type elements. (#3448)
545
+ if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera) )
546
+ {
547
+ domDocument.on( 'mousedown', function( ev )
548
+ {
549
+ var control = ev.data.getTarget();
550
+ if ( control.is( 'img', 'hr', 'input', 'textarea', 'select' ) )
551
+ editor.getSelection().selectElement( control );
552
+ } );
553
+ }
554
+
555
+ if ( CKEDITOR.env.gecko )
556
+ {
557
+ domDocument.on( 'mouseup', function( ev )
558
+ {
559
+ if ( ev.data.$.button == 2 )
560
+ {
561
+ var target = ev.data.getTarget();
562
+
563
+ // Prevent right click from selecting an empty block even
564
+ // when selection is anchored inside it. (#5845)
565
+ if ( !target.getOuterHtml().replace( emptyParagraphRegexp, '' ) )
566
+ {
567
+ var range = new CKEDITOR.dom.range( domDocument );
568
+ range.moveToElementEditStart( target );
569
+ range.select( true );
570
+ }
571
+ }
572
+ } );
573
+ }
574
+
575
+ // Prevent the browser opening links in read-only blocks. (#6032)
576
+ domDocument.on( 'click', function( ev )
577
+ {
578
+ ev = ev.data;
579
+ if ( ev.getTarget().is( 'a' ) && ev.$.button != 2 )
580
+ ev.preventDefault();
581
+ });
582
+
583
+ // Webkit: avoid from editing form control elements content.
584
+ if ( CKEDITOR.env.webkit )
585
+ {
586
+ // Prevent from tick checkbox/radiobox/select
587
+ domDocument.on( 'click', function( ev )
588
+ {
589
+ if ( ev.data.getTarget().is( 'input', 'select' ) )
590
+ ev.data.preventDefault();
591
+ } );
592
+
593
+ // Prevent from editig textfield/textarea value.
594
+ domDocument.on( 'mouseup', function( ev )
595
+ {
596
+ if ( ev.data.getTarget().is( 'input', 'textarea' ) )
597
+ ev.data.preventDefault();
598
+ } );
599
+ }
600
+
601
+ // IE standard compliant in editing frame doesn't focus the editor when
602
+ // clicking outside actual content, manually apply the focus. (#1659)
603
+ if ( CKEDITOR.env.ie
604
+ && domDocument.$.compatMode == 'CSS1Compat'
605
+ || CKEDITOR.env.gecko
606
+ || CKEDITOR.env.opera )
607
+ {
608
+ var htmlElement = domDocument.getDocumentElement();
609
+ htmlElement.on( 'mousedown', function( evt )
610
+ {
611
+ // Setting focus directly on editor doesn't work, we
612
+ // have to use here a temporary element to 'redirect'
613
+ // the focus.
614
+ if ( evt.data.getTarget().equals( htmlElement ) )
615
+ {
616
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
617
+ blinkCursor();
618
+ focusGrabber.focus();
619
+ }
620
+ } );
621
+ }
622
+
623
+ domWindow.on( 'blur', function()
624
+ {
625
+ editor.focusManager.blur();
626
+ });
627
+
628
+ domWindow.on( 'focus', function()
629
+ {
630
+ var doc = editor.document;
631
+
632
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
633
+ blinkCursor();
634
+ else if ( CKEDITOR.env.opera )
635
+ doc.getBody().focus();
636
+
637
+ editor.focusManager.focus();
638
+ });
639
+
640
+ var keystrokeHandler = editor.keystrokeHandler;
641
+ if ( keystrokeHandler )
642
+ keystrokeHandler.attach( domDocument );
643
+
644
+ if ( CKEDITOR.env.ie )
645
+ {
646
+ domDocument.getDocumentElement().addClass( domDocument.$.compatMode );
647
+ // Override keystrokes which should have deletion behavior
648
+ // on control types in IE . (#4047)
649
+ domDocument.on( 'keydown', function( evt )
650
+ {
651
+ var keyCode = evt.data.getKeystroke();
652
+
653
+ // Backspace OR Delete.
654
+ if ( keyCode in { 8 : 1, 46 : 1 } )
655
+ {
656
+ var sel = editor.getSelection(),
657
+ control = sel.getSelectedElement();
658
+
659
+ if ( control )
660
+ {
661
+ // Make undo snapshot.
662
+ editor.fire( 'saveSnapshot' );
663
+
664
+ // Delete any element that 'hasLayout' (e.g. hr,table) in IE8 will
665
+ // break up the selection, safely manage it here. (#4795)
666
+ var bookmark = sel.getRanges()[ 0 ].createBookmark();
667
+ // Remove the control manually.
668
+ control.remove();
669
+ sel.selectBookmarks( [ bookmark ] );
670
+
671
+ editor.fire( 'saveSnapshot' );
672
+
673
+ evt.data.preventDefault();
674
+ }
675
+ }
676
+ } );
677
+
678
+ // PageUp/PageDown scrolling is broken in document
679
+ // with standard doctype, manually fix it. (#4736)
680
+ if ( domDocument.$.compatMode == 'CSS1Compat' )
681
+ {
682
+ var pageUpDownKeys = { 33 : 1, 34 : 1 };
683
+ domDocument.on( 'keydown', function( evt )
684
+ {
685
+ if ( evt.data.getKeystroke() in pageUpDownKeys )
686
+ {
687
+ setTimeout( function ()
688
+ {
689
+ editor.getSelection().scrollIntoView();
690
+ }, 0 );
691
+ }
692
+ } );
693
+ }
694
+ }
695
+
696
+ // Adds the document body as a context menu target.
697
+ if ( editor.contextMenu )
698
+ editor.contextMenu.addTarget( domDocument, editor.config.browserContextMenuOnCtrl !== false );
699
+
700
+ setTimeout( function()
701
+ {
702
+ editor.fire( 'contentDom' );
703
+
704
+ if ( fireMode )
705
+ {
706
+ editor.mode = 'wysiwyg';
707
+ editor.fire( 'mode' );
708
+ fireMode = false;
709
+ }
710
+
711
+ isLoadingData = false;
712
+
713
+ if ( isPendingFocus )
714
+ {
715
+ editor.focus();
716
+ isPendingFocus = false;
717
+ }
718
+ setTimeout( function()
719
+ {
720
+ editor.fire( 'dataReady' );
721
+ }, 0 );
722
+
723
+ // IE, Opera and Safari may not support it and throw errors.
724
+ try { editor.document.$.execCommand( 'enableObjectResizing', false, !editor.config.disableObjectResizing ) ; } catch(e) {}
725
+ try { editor.document.$.execCommand( 'enableInlineTableEditing', false, !editor.config.disableNativeTableHandles ) ; } catch(e) {}
726
+
727
+ /*
728
+ * IE BUG: IE might have rendered the iframe with invisible contents.
729
+ * (#3623). Push some inconsequential CSS style changes to force IE to
730
+ * refresh it.
731
+ *
732
+ * Also, for some unknown reasons, short timeouts (e.g. 100ms) do not
733
+ * fix the problem. :(
734
+ */
735
+ if ( CKEDITOR.env.ie )
736
+ {
737
+ setTimeout( function()
738
+ {
739
+ if ( editor.document )
740
+ {
741
+ var $body = editor.document.$.body;
742
+ $body.runtimeStyle.marginBottom = '0px';
743
+ $body.runtimeStyle.marginBottom = '';
744
+ }
745
+ }, 1000 );
746
+ }
747
+ },
748
+ 0 );
749
+ }
750
+
751
+ editor.addMode( 'wysiwyg',
752
+ {
753
+ load : function( holderElement, data, isSnapshot )
754
+ {
755
+ mainElement = holderElement;
756
+
757
+ if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
758
+ holderElement.setStyle( 'position', 'relative' );
759
+
760
+ // The editor data "may be dirty" after this
761
+ // point.
762
+ editor.mayBeDirty = true;
763
+
764
+ fireMode = true;
765
+
766
+ if ( isSnapshot )
767
+ this.loadSnapshotData( data );
768
+ else
769
+ this.loadData( data );
770
+ },
771
+
772
+ loadData : function( data )
773
+ {
774
+ isLoadingData = true;
775
+
776
+ var config = editor.config,
777
+ fullPage = config.fullPage,
778
+ docType = config.docType;
779
+
780
+ // Build the additional stuff to be included into <head>.
781
+ var headExtra =
782
+ '<style type="text/css" cke_temp="1">' +
783
+ editor._.styles.join( '\n' ) +
784
+ '</style>';
785
+
786
+ !fullPage && ( headExtra =
787
+ CKEDITOR.tools.buildStyleHtml( editor.config.contentsCss ) +
788
+ headExtra );
789
+
790
+ var baseTag = config.baseHref ? '<base href="' + config.baseHref + '" cke_temp="1" />' : '';
791
+
792
+ if ( fullPage )
793
+ {
794
+ // Search and sweep out the doctype declaration.
795
+ data = data.replace( /<!DOCTYPE[^>]*>/i, function( match )
796
+ {
797
+ editor.docType = docType = match;
798
+ return '';
799
+ });
800
+ }
801
+
802
+ // Get the HTML version of the data.
803
+ if ( editor.dataProcessor )
804
+ data = editor.dataProcessor.toHtml( data, fixForBody );
805
+
806
+ if ( fullPage )
807
+ {
808
+ // Check if the <body> tag is available.
809
+ if ( !(/<body[\s|>]/).test( data ) )
810
+ data = '<body>' + data;
811
+
812
+ // Check if the <html> tag is available.
813
+ if ( !(/<html[\s|>]/).test( data ) )
814
+ data = '<html>' + data + '</html>';
815
+
816
+ // Check if the <head> tag is available.
817
+ if ( !(/<head[\s|>]/).test( data ) )
818
+ data = data.replace( /<html[^>]*>/, '$&<head><title></title></head>' ) ;
819
+ else if ( !(/<title[\s|>]/).test( data ) )
820
+ data = data.replace( /<head[^>]*>/, '$&<title></title>' ) ;
821
+
822
+ // The base must be the first tag in the HEAD, e.g. to get relative
823
+ // links on styles.
824
+ baseTag && ( data = data.replace( /<head>/, '$&' + baseTag ) );
825
+
826
+ // Inject the extra stuff into <head>.
827
+ // Attention: do not change it before testing it well. (V2)
828
+ // This is tricky... if the head ends with <meta ... content type>,
829
+ // Firefox will break. But, it works if we place our extra stuff as
830
+ // the last elements in the HEAD.
831
+ data = data.replace( /<\/head\s*>/, headExtra + '$&' );
832
+
833
+ // Add the DOCTYPE back to it.
834
+ data = docType + data;
835
+ }
836
+ else
837
+ {
838
+ data =
839
+ config.docType +
840
+ '<html dir="' + config.contentsLangDirection + '"' +
841
+ ' lang="' + ( config.contentsLanguage || editor.langCode ) + '">' +
842
+ '<head>' +
843
+ '<title>' + frameLabel + '</title>' +
844
+ baseTag +
845
+ headExtra +
846
+ '</head>' +
847
+ '<body' + ( config.bodyId ? ' id="' + config.bodyId + '"' : '' ) +
848
+ ( config.bodyClass ? ' class="' + config.bodyClass + '"' : '' ) +
849
+ '>' +
850
+ data +
851
+ '</html>';
852
+ }
853
+
854
+ data += activationScript;
855
+
856
+
857
+ // The iframe is recreated on each call of setData, so we need to clear DOM objects
858
+ this.onDispose();
859
+ createIFrame( data );
860
+ },
861
+
862
+ getData : function()
863
+ {
864
+ var config = editor.config,
865
+ fullPage = config.fullPage,
866
+ docType = fullPage && editor.docType,
867
+ doc = iframe.getFrameDocument();
868
+
869
+ var data = fullPage
870
+ ? doc.getDocumentElement().getOuterHtml()
871
+ : doc.getBody().getHtml();
872
+
873
+ if ( editor.dataProcessor )
874
+ data = editor.dataProcessor.toDataFormat( data, fixForBody );
875
+
876
+ // Strip the last blank paragraph within document.
877
+ if ( config.ignoreEmptyParagraph )
878
+ data = data.replace( emptyParagraphRegexp, '' );
879
+
880
+ if ( docType )
881
+ data = docType + '\n' + data;
882
+
883
+ return data;
884
+ },
885
+
886
+ getSnapshotData : function()
887
+ {
888
+ return iframe.getFrameDocument().getBody().getHtml();
889
+ },
890
+
891
+ loadSnapshotData : function( data )
892
+ {
893
+ iframe.getFrameDocument().getBody().setHtml( data );
894
+ },
895
+
896
+ onDispose : function()
897
+ {
898
+ if ( !editor.document )
899
+ return;
900
+
901
+ editor.document.getDocumentElement().clearCustomData();
902
+ editor.document.getBody().clearCustomData();
903
+
904
+ editor.window.clearCustomData();
905
+ editor.document.clearCustomData();
906
+
907
+ iframe.clearCustomData();
908
+
909
+ /*
910
+ * IE BUG: When destroying editor DOM with the selection remains inside
911
+ * editing area would break IE7/8's selection system, we have to put the editing
912
+ * iframe offline first. (#3812 and #5441)
913
+ */
914
+ iframe.remove();
915
+ },
916
+
917
+ unload : function( holderElement )
918
+ {
919
+ this.onDispose();
920
+
921
+ editor.window = editor.document = iframe = mainElement = isPendingFocus = null;
922
+
923
+ editor.fire( 'contentDomUnload' );
924
+ },
925
+
926
+ focus : function()
927
+ {
928
+ if ( isLoadingData )
929
+ isPendingFocus = true;
930
+ // Temporary solution caused by #6025, supposed be unified by #6154.
931
+ else if ( CKEDITOR.env.opera && editor.document )
932
+ {
933
+ editor.document.getBody().focus();
934
+
935
+ editor.selectionChange();
936
+ }
937
+ else if ( !CKEDITOR.env.opera && editor.window )
938
+ {
939
+ editor.window.focus();
940
+
941
+ editor.selectionChange();
942
+ }
943
+ }
944
+ });
945
+
946
+ editor.on( 'insertHtml', onInsertHtml, null, null, 20 );
947
+ editor.on( 'insertElement', onInsertElement, null, null, 20 );
948
+ // Auto fixing on some document structure weakness to enhance usabilities. (#3190 and #3189)
949
+ editor.on( 'selectionChange', onSelectionChangeFixBody, null, null, 1 );
950
+ });
951
+
952
+ var titleBackup;
953
+ // Setting voice label as window title, backup the original one
954
+ // and restore it before running into use.
955
+ editor.on( 'contentDom', function ()
956
+ {
957
+ var title = editor.document.getElementsByTag( 'title' ).getItem( 0 );
958
+ title.setAttribute( '_cke_title', editor.document.$.title );
959
+ editor.document.$.title = frameLabel;
960
+ });
961
+
962
+ // IE8 stricts mode doesn't have 'contentEditable' in effect
963
+ // on element unless it has layout. (#5562)
964
+ if ( CKEDITOR.env.ie8Compat )
965
+ {
966
+ editor.addCss( 'html.CSS1Compat [contenteditable=false]{ min-height:0 !important;}' );
967
+
968
+ var selectors = [];
969
+ for ( var tag in CKEDITOR.dtd.$removeEmpty )
970
+ selectors.push( 'html.CSS1Compat ' + tag + '[contenteditable=false]' );
971
+ editor.addCss( selectors.join( ',' ) + '{ display:inline-block;}' );
972
+ }
973
+
974
+ // Switch on design mode for a short while and close it after then.
975
+ function blinkCursor( retry )
976
+ {
977
+ CKEDITOR.tools.tryThese(
978
+ function()
979
+ {
980
+ editor.document.$.designMode = 'on';
981
+ setTimeout( function ()
982
+ {
983
+ editor.document.$.designMode = 'off';
984
+ editor.document.getBody().focus();
985
+ }, 50 );
986
+ },
987
+ function()
988
+ {
989
+ // The above call is known to fail when parent DOM
990
+ // tree layout changes may break design mode. (#5782)
991
+ // Refresh the 'contentEditable' is a cue to this.
992
+ editor.document.$.designMode = 'off';
993
+ var body = editor.document.getBody();
994
+ body.setAttribute( 'contentEditable', false );
995
+ body.setAttribute( 'contentEditable', true );
996
+ // Try it again once..
997
+ !retry && blinkCursor( 1 );
998
+ });
999
+ }
1000
+
1001
+ // Create an invisible element to grab focus.
1002
+ if ( CKEDITOR.env.gecko || CKEDITOR.env.ie || CKEDITOR.env.opera )
1003
+ {
1004
+ var focusGrabber;
1005
+ editor.on( 'uiReady', function()
1006
+ {
1007
+ focusGrabber = editor.container.append( CKEDITOR.dom.element.createFromHtml(
1008
+ // Use 'span' instead of anything else to fly under the screen-reader radar. (#5049)
1009
+ '<span tabindex="-1" style="position:absolute; left:-10000" role="presentation"></span>' ) );
1010
+
1011
+ focusGrabber.on( 'focus', function()
1012
+ {
1013
+ editor.focus();
1014
+ } );
1015
+ } );
1016
+ editor.on( 'destroy', function()
1017
+ {
1018
+ CKEDITOR.tools.removeFunction( contentDomReadyHandler );
1019
+ focusGrabber.clearCustomData();
1020
+ } );
1021
+ }
1022
+
1023
+ // Disable form elements editing mode provided by some browers. (#5746)
1024
+ editor.on( 'insertElement', function ( evt )
1025
+ {
1026
+ var element = evt.data;
1027
+ if ( element.type == CKEDITOR.NODE_ELEMENT
1028
+ && ( element.is( 'input' ) || element.is( 'textarea' ) ) )
1029
+ {
1030
+ if ( !element.isReadOnly() )
1031
+ {
1032
+ element.setAttribute( 'contentEditable', false );
1033
+ // We should flag that the element was locked by our code so
1034
+ // it'll be editable by the editor functions (#6046).
1035
+ element.setCustomData( '_cke_notReadOnly', 1 );
1036
+ }
1037
+ }
1038
+ });
1039
+
1040
+ }
1041
+ });
1042
+
1043
+ // Fixing Firefox 'Back-Forward Cache' break design mode. (#4514)
1044
+ if ( CKEDITOR.env.gecko )
1045
+ {
1046
+ ( function ()
1047
+ {
1048
+ var body = document.body;
1049
+
1050
+ if ( !body )
1051
+ window.addEventListener( 'load', arguments.callee, false );
1052
+ else
1053
+ {
1054
+ var currentHandler = body.getAttribute( 'onpageshow' );
1055
+ body.setAttribute( 'onpageshow', ( currentHandler ? currentHandler + ';' : '') +
1056
+ 'event.persisted && (function(){' +
1057
+ 'var allInstances = CKEDITOR.instances, editor, doc;' +
1058
+ 'for ( var i in allInstances )' +
1059
+ '{' +
1060
+ ' editor = allInstances[ i ];' +
1061
+ ' doc = editor.document;' +
1062
+ ' if ( doc )' +
1063
+ ' {' +
1064
+ ' doc.$.designMode = "off";' +
1065
+ ' doc.$.designMode = "on";' +
1066
+ ' }' +
1067
+ '}' +
1068
+ '})();' );
1069
+ }
1070
+ } )();
1071
+
1072
+ }
1073
+ })();
1074
+
1075
+ /**
1076
+ * Disables the ability of resize objects (image and tables) in the editing
1077
+ * area.
1078
+ * @type Boolean
1079
+ * @default false
1080
+ * @example
1081
+ * config.disableObjectResizing = true;
1082
+ */
1083
+ CKEDITOR.config.disableObjectResizing = false;
1084
+
1085
+ /**
1086
+ * Disables the "table tools" offered natively by the browser (currently
1087
+ * Firefox only) to make quick table editing operations, like adding or
1088
+ * deleting rows and columns.
1089
+ * @type Boolean
1090
+ * @default true
1091
+ * @example
1092
+ * config.disableNativeTableHandles = false;
1093
+ */
1094
+ CKEDITOR.config.disableNativeTableHandles = true;
1095
+
1096
+ /**
1097
+ * Disables the built-in spell checker while typing natively available in the
1098
+ * browser (currently Firefox and Safari only).<br /><br />
1099
+ *
1100
+ * Even if word suggestions will not appear in the CKEditor context menu, this
1101
+ * feature is useful to help quickly identifying misspelled words.<br /><br />
1102
+ *
1103
+ * This setting is currently compatible with Firefox only due to limitations in
1104
+ * other browsers.
1105
+ * @type Boolean
1106
+ * @default true
1107
+ * @example
1108
+ * config.disableNativeSpellChecker = false;
1109
+ */
1110
+ CKEDITOR.config.disableNativeSpellChecker = true;
1111
+
1112
+ /**
1113
+ * Whether the editor must output an empty value ("") if it's contents is made
1114
+ * by an empty paragraph only.
1115
+ * @type Boolean
1116
+ * @default true
1117
+ * @example
1118
+ * config.ignoreEmptyParagraph = false;
1119
+ */
1120
+ CKEDITOR.config.ignoreEmptyParagraph = true;
1121
+
1122
+ /**
1123
+ * Fired when data is loaded and ready for retrieval in an editor instance.
1124
+ * @name CKEDITOR.editor#dataReady
1125
+ * @event
1126
+ */