ppc_logic 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (870) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/Capfile +4 -0
  4. data/Gemfile +31 -0
  5. data/Rakefile +32 -0
  6. data/VERSION +1 -0
  7. data/app/controllers/admin/ads_controller.rb +43 -0
  8. data/app/controllers/admin/branches_controller.rb +48 -0
  9. data/app/controllers/admin/campaigns_controller.rb +67 -0
  10. data/app/controllers/admin/landing_pages_controller.rb +63 -0
  11. data/app/controllers/admin/local_offers_controller.rb +44 -0
  12. data/app/controllers/admin/ppc_controller.rb +6 -0
  13. data/app/controllers/application_controller.rb +4 -0
  14. data/app/controllers/landing_pages_controller.rb +16 -0
  15. data/app/helpers/application_helper.rb +19 -0
  16. data/app/helpers/layout_helper.rb +18 -0
  17. data/app/models/ad.rb +49 -0
  18. data/app/models/branch.rb +35 -0
  19. data/app/models/campaign.rb +59 -0
  20. data/app/models/landing_page.rb +174 -0
  21. data/app/models/landing_page_report.rb +132 -0
  22. data/app/models/landing_page_stat.rb +43 -0
  23. data/app/models/local_offer.rb +38 -0
  24. data/app/views/admin/ads/_form.html.erb +215 -0
  25. data/app/views/admin/ads/edit.html.erb +5 -0
  26. data/app/views/admin/ads/index.html.erb +27 -0
  27. data/app/views/admin/ads/new.html.erb +5 -0
  28. data/app/views/admin/ads/show.html.erb +23 -0
  29. data/app/views/admin/branches/_form.html.erb +37 -0
  30. data/app/views/admin/branches/edit.html.erb +5 -0
  31. data/app/views/admin/branches/index.html.erb +25 -0
  32. data/app/views/admin/branches/new.html.erb +5 -0
  33. data/app/views/admin/branches/show.html.erb +23 -0
  34. data/app/views/admin/campaigns/_form.html.erb +95 -0
  35. data/app/views/admin/campaigns/_locale_select.html.erb +12 -0
  36. data/app/views/admin/campaigns/_targeting.html.erb +11 -0
  37. data/app/views/admin/campaigns/edit.html.erb +5 -0
  38. data/app/views/admin/campaigns/index.html.erb +35 -0
  39. data/app/views/admin/campaigns/new.html.erb +5 -0
  40. data/app/views/admin/campaigns/show.html.erb +23 -0
  41. data/app/views/admin/landing_pages/_form.html.erb +52 -0
  42. data/app/views/admin/landing_pages/_landing_page.html.erb +21 -0
  43. data/app/views/admin/landing_pages/edit.html.erb +5 -0
  44. data/app/views/admin/landing_pages/index.html.erb +30 -0
  45. data/app/views/admin/landing_pages/landing_page_report.html.erb +126 -0
  46. data/app/views/admin/landing_pages/new.html.erb +5 -0
  47. data/app/views/admin/landing_pages/show.html.erb +39 -0
  48. data/app/views/admin/local_offers/_form.html.erb +40 -0
  49. data/app/views/admin/local_offers/edit.html.erb +5 -0
  50. data/app/views/admin/local_offers/index.html.erb +31 -0
  51. data/app/views/admin/local_offers/new.html.erb +5 -0
  52. data/app/views/admin/local_offers/show.html.erb +22 -0
  53. data/app/views/admin/ppc/index.html.erb +15 -0
  54. data/app/views/landing_pages/show.html.erb +2 -0
  55. data/app/views/layouts/application.html.erb +52 -0
  56. data/config.ru +2 -0
  57. data/config/application.rb +11 -0
  58. data/config/boot.rb +3 -0
  59. data/config/cucumber.yml +10 -0
  60. data/config/environment.rb +3 -0
  61. data/config/environments/development.rb +12 -0
  62. data/config/environments/production.rb +9 -0
  63. data/config/environments/test.rb +15 -0
  64. data/config/initializers/campfire_logic.rb +10 -0
  65. data/config/initializers/formats.rb +19 -0
  66. data/config/initializers/metric_fu.rb +9 -0
  67. data/config/initializers/ppc_logic.rb +9 -0
  68. data/config/initializers/secret_token.rb +1 -0
  69. data/config/initializers/session_store.rb +1 -0
  70. data/config/mongoid.yml +18 -0
  71. data/config/routes.rb +23 -0
  72. data/features/manage_landing_pages.feature +47 -0
  73. data/features/manage_local_offers.feature +47 -0
  74. data/features/step_definitions/general_steps.rb +7 -0
  75. data/features/step_definitions/landing_page_steps.rb +7 -0
  76. data/features/step_definitions/site_steps.rb +19 -0
  77. data/features/step_definitions/web_steps.rb +219 -0
  78. data/features/support/env.rb +33 -0
  79. data/features/support/hooks.rb +4 -0
  80. data/features/support/paths.rb +33 -0
  81. data/init.rb +1 -0
  82. data/lib/.DS_Store +0 -0
  83. data/lib/madmen.rb +9 -0
  84. data/lib/madmen/google.rb +97 -0
  85. data/lib/madmen/google/ad.rb +177 -0
  86. data/lib/madmen/google/ad_group.rb +209 -0
  87. data/lib/madmen/google/campaign.rb +307 -0
  88. data/lib/madmen/google/keyword.rb +123 -0
  89. data/lib/ppc_logic.rb +19 -0
  90. data/lib/ppc_logic/engine.rb +7 -0
  91. data/lib/ppc_logic/railtie.rb +10 -0
  92. data/lib/tasks/cucumber.rake +53 -0
  93. data/lib/tasks/rcov.rake +76 -0
  94. data/ppc_logic.gemspec +939 -0
  95. data/public/404.html +26 -0
  96. data/public/422.html +26 -0
  97. data/public/500.html +26 -0
  98. data/public/favicon.ico +0 -0
  99. data/public/images/icons/add.png +0 -0
  100. data/public/images/icons/checkmark.gif +0 -0
  101. data/public/images/icons/collapsed.gif +0 -0
  102. data/public/images/icons/delete.png +0 -0
  103. data/public/images/icons/drag.png +0 -0
  104. data/public/images/icons/edit.png +0 -0
  105. data/public/images/icons/expanded.gif +0 -0
  106. data/public/images/icons/help_icon.png +0 -0
  107. data/public/images/icons/link_icon.png +0 -0
  108. data/public/images/icons/move.png +0 -0
  109. data/public/images/icons/move_white.png +0 -0
  110. data/public/images/icons/note.png +0 -0
  111. data/public/images/icons/note_white.png +0 -0
  112. data/public/images/icons/notification_icon_sprite.png +0 -0
  113. data/public/images/icons/spinner.gif +0 -0
  114. data/public/images/icons/view.png +0 -0
  115. data/public/images/icons/warning.png +0 -0
  116. data/public/images/icons/warning_2.png +0 -0
  117. data/public/images/icons/warning_box.png +0 -0
  118. data/public/images/icons/warning_icon.png +0 -0
  119. data/public/images/icons/warning_white.png +0 -0
  120. data/public/images/layout/arrow_asc.png +0 -0
  121. data/public/images/layout/arrow_desc.png +0 -0
  122. data/public/images/layout/back.png +0 -0
  123. data/public/images/layout/black_bar.png +0 -0
  124. data/public/images/layout/branding.png +0 -0
  125. data/public/images/layout/breadcrumb_bg.png +0 -0
  126. data/public/images/layout/button_bg.png +0 -0
  127. data/public/images/layout/content_left_bg.png +0 -0
  128. data/public/images/layout/content_right_bg.png +0 -0
  129. data/public/images/layout/footer_bg.png +0 -0
  130. data/public/images/layout/h1_bg.png +0 -0
  131. data/public/images/layout/h2_bg.png +0 -0
  132. data/public/images/layout/h2_bg_for_table.png +0 -0
  133. data/public/images/layout/header_bg_grey.png +0 -0
  134. data/public/images/layout/header_bg_purple.png +0 -0
  135. data/public/images/layout/legend_bg.png +0 -0
  136. data/public/images/layout/menu_box_bg.png +0 -0
  137. data/public/images/layout/shadow_border.png +0 -0
  138. data/public/images/layout/shadow_border_2.png +0 -0
  139. data/public/images/layout/shadow_border_3.png +0 -0
  140. data/public/images/layout/shadow_border_4.png +0 -0
  141. data/public/images/layout/tab.png +0 -0
  142. data/public/images/layout/tab_active.png +0 -0
  143. data/public/images/layout/table_header.png +0 -0
  144. data/public/images/layout/text_field_bg.jpg +0 -0
  145. data/public/images/layout/text_field_error_bg.png +0 -0
  146. data/public/images/layout/th_bg.png +0 -0
  147. data/public/images/layout/th_bg_selected.png +0 -0
  148. data/public/images/menu_icons/account.png +0 -0
  149. data/public/images/menu_icons/affiliates.png +0 -0
  150. data/public/images/menu_icons/banner_ad.png +0 -0
  151. data/public/images/menu_icons/banner_ad_disabled.png +0 -0
  152. data/public/images/menu_icons/banner_ad_on.png +0 -0
  153. data/public/images/menu_icons/banner_ads_disabled.png +0 -0
  154. data/public/images/menu_icons/billing.png +0 -0
  155. data/public/images/menu_icons/campaigns.png +0 -0
  156. data/public/images/menu_icons/campaigns_disabled.png +0 -0
  157. data/public/images/menu_icons/campaigns_on.png +0 -0
  158. data/public/images/menu_icons/categories.png +0 -0
  159. data/public/images/menu_icons/clients.png +0 -0
  160. data/public/images/menu_icons/clients_on.png +0 -0
  161. data/public/images/menu_icons/contact.png +0 -0
  162. data/public/images/menu_icons/directories.png +0 -0
  163. data/public/images/menu_icons/document.png +0 -0
  164. data/public/images/menu_icons/document_on.png +0 -0
  165. data/public/images/menu_icons/help.png +0 -0
  166. data/public/images/menu_icons/images.png +0 -0
  167. data/public/images/menu_icons/images_on.png +0 -0
  168. data/public/images/menu_icons/keywords.png +0 -0
  169. data/public/images/menu_icons/landing_pages.png +0 -0
  170. data/public/images/menu_icons/landing_pages_disabled.png +0 -0
  171. data/public/images/menu_icons/landing_pages_on.png +0 -0
  172. data/public/images/menu_icons/library.png +0 -0
  173. data/public/images/menu_icons/library_on.png +0 -0
  174. data/public/images/menu_icons/local_site.png +0 -0
  175. data/public/images/menu_icons/local_site_on.png +0 -0
  176. data/public/images/menu_icons/locations.png +0 -0
  177. data/public/images/menu_icons/locations_on.png +0 -0
  178. data/public/images/menu_icons/messages.png +0 -0
  179. data/public/images/menu_icons/messages_on.png +0 -0
  180. data/public/images/menu_icons/ppc_ads.png +0 -0
  181. data/public/images/menu_icons/ppc_ads_disabled.png +0 -0
  182. data/public/images/menu_icons/ppc_ads_on.png +0 -0
  183. data/public/images/menu_icons/print_collaterals.png +0 -0
  184. data/public/images/menu_icons/print_collaterals_disabled.png +0 -0
  185. data/public/images/menu_icons/print_collaterals_on.png +0 -0
  186. data/public/images/menu_icons/reports.png +0 -0
  187. data/public/images/menu_icons/reports_on.png +0 -0
  188. data/public/images/menu_icons/services.png +0 -0
  189. data/public/images/menu_icons/services_on.png +0 -0
  190. data/public/images/menu_icons/settings.png +0 -0
  191. data/public/images/menu_icons/site_template.png +0 -0
  192. data/public/images/menu_icons/site_template_on.png +0 -0
  193. data/public/images/menu_icons/survey.png +0 -0
  194. data/public/images/menu_icons/survey_on.png +0 -0
  195. data/public/images/menu_icons/users.png +0 -0
  196. data/public/images/menu_icons/users_on.png +0 -0
  197. data/public/images/menu_icons/video.png +0 -0
  198. data/public/images/menu_icons/video_on.png +0 -0
  199. data/public/index.html +9 -0
  200. data/public/javascripts/application.js +2 -0
  201. data/public/javascripts/ckeditor/.htaccess +24 -0
  202. data/public/javascripts/ckeditor/CHANGES.html +993 -0
  203. data/public/javascripts/ckeditor/INSTALL.html +92 -0
  204. data/public/javascripts/ckeditor/LICENSE.html +1334 -0
  205. data/public/javascripts/ckeditor/_samples/ajax.html +87 -0
  206. data/public/javascripts/ckeditor/_samples/api.html +152 -0
  207. data/public/javascripts/ckeditor/_samples/api_dialog.html +188 -0
  208. data/public/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  209. data/public/javascripts/ckeditor/_samples/asp/advanced.asp +105 -0
  210. data/public/javascripts/ckeditor/_samples/asp/events.asp +136 -0
  211. data/public/javascripts/ckeditor/_samples/asp/index.html +103 -0
  212. data/public/javascripts/ckeditor/_samples/asp/replace.asp +72 -0
  213. data/public/javascripts/ckeditor/_samples/asp/replaceall.asp +77 -0
  214. data/public/javascripts/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
  215. data/public/javascripts/ckeditor/_samples/asp/standalone.asp +72 -0
  216. data/public/javascripts/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  217. data/public/javascripts/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  218. data/public/javascripts/ckeditor/_samples/assets/output_xhtml.css +204 -0
  219. data/public/javascripts/ckeditor/_samples/assets/swfobject.js +18 -0
  220. data/public/javascripts/ckeditor/_samples/autogrow.html +75 -0
  221. data/public/javascripts/ckeditor/_samples/divreplace.html +137 -0
  222. data/public/javascripts/ckeditor/_samples/enterkey.html +88 -0
  223. data/public/javascripts/ckeditor/_samples/fullpage.html +62 -0
  224. data/public/javascripts/ckeditor/_samples/index.html +57 -0
  225. data/public/javascripts/ckeditor/_samples/jqueryadapter.html +73 -0
  226. data/public/javascripts/ckeditor/_samples/output_for_flash.html +257 -0
  227. data/public/javascripts/ckeditor/_samples/output_html.html +259 -0
  228. data/public/javascripts/ckeditor/_samples/output_xhtml.html +159 -0
  229. data/public/javascripts/ckeditor/_samples/php/advanced.php +93 -0
  230. data/public/javascripts/ckeditor/_samples/php/events.php +130 -0
  231. data/public/javascripts/ckeditor/_samples/php/replace.php +63 -0
  232. data/public/javascripts/ckeditor/_samples/php/replaceall.php +68 -0
  233. data/public/javascripts/ckeditor/_samples/php/standalone.php +64 -0
  234. data/public/javascripts/ckeditor/_samples/replacebyclass.html +49 -0
  235. data/public/javascripts/ckeditor/_samples/replacebycode.html +80 -0
  236. data/public/javascripts/ckeditor/_samples/sample.css +81 -0
  237. data/public/javascripts/ckeditor/_samples/sample.js +65 -0
  238. data/public/javascripts/ckeditor/_samples/sample_posteddata.php +59 -0
  239. data/public/javascripts/ckeditor/_samples/sharedspaces.html +131 -0
  240. data/public/javascripts/ckeditor/_samples/skins.html +83 -0
  241. data/public/javascripts/ckeditor/_samples/ui_color.html +87 -0
  242. data/public/javascripts/ckeditor/_samples/ui_languages.html +103 -0
  243. data/public/javascripts/ckeditor/_source/adapters/jquery.js +297 -0
  244. data/public/javascripts/ckeditor/_source/core/_bootstrap.js +96 -0
  245. data/public/javascripts/ckeditor/_source/core/ajax.js +142 -0
  246. data/public/javascripts/ckeditor/_source/core/ckeditor.js +133 -0
  247. data/public/javascripts/ckeditor/_source/core/ckeditor_base.js +196 -0
  248. data/public/javascripts/ckeditor/_source/core/ckeditor_basic.js +239 -0
  249. data/public/javascripts/ckeditor/_source/core/command.js +209 -0
  250. data/public/javascripts/ckeditor/_source/core/commanddefinition.js +129 -0
  251. data/public/javascripts/ckeditor/_source/core/config.js +430 -0
  252. data/public/javascripts/ckeditor/_source/core/dataprocessor.js +65 -0
  253. data/public/javascripts/ckeditor/_source/core/dom.js +20 -0
  254. data/public/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
  255. data/public/javascripts/ckeditor/_source/core/dom/document.js +224 -0
  256. data/public/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
  257. data/public/javascripts/ckeditor/_source/core/dom/domobject.js +255 -0
  258. data/public/javascripts/ckeditor/_source/core/dom/element.js +1564 -0
  259. data/public/javascripts/ckeditor/_source/core/dom/elementpath.js +119 -0
  260. data/public/javascripts/ckeditor/_source/core/dom/event.js +142 -0
  261. data/public/javascripts/ckeditor/_source/core/dom/node.js +683 -0
  262. data/public/javascripts/ckeditor/_source/core/dom/nodelist.js +26 -0
  263. data/public/javascripts/ckeditor/_source/core/dom/range.js +1883 -0
  264. data/public/javascripts/ckeditor/_source/core/dom/rangelist.js +214 -0
  265. data/public/javascripts/ckeditor/_source/core/dom/text.js +123 -0
  266. data/public/javascripts/ckeditor/_source/core/dom/walker.js +445 -0
  267. data/public/javascripts/ckeditor/_source/core/dom/window.js +96 -0
  268. data/public/javascripts/ckeditor/_source/core/dtd.js +238 -0
  269. data/public/javascripts/ckeditor/_source/core/editor.js +924 -0
  270. data/public/javascripts/ckeditor/_source/core/editor_basic.js +182 -0
  271. data/public/javascripts/ckeditor/_source/core/env.js +270 -0
  272. data/public/javascripts/ckeditor/_source/core/event.js +342 -0
  273. data/public/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
  274. data/public/javascripts/ckeditor/_source/core/focusmanager.js +152 -0
  275. data/public/javascripts/ckeditor/_source/core/htmlparser.js +224 -0
  276. data/public/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  277. data/public/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  278. data/public/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
  279. data/public/javascripts/ckeditor/_source/core/htmlparser/element.js +240 -0
  280. data/public/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
  281. data/public/javascripts/ckeditor/_source/core/htmlparser/fragment.js +504 -0
  282. data/public/javascripts/ckeditor/_source/core/htmlparser/text.js +55 -0
  283. data/public/javascripts/ckeditor/_source/core/imagecacher.js +80 -0
  284. data/public/javascripts/ckeditor/_source/core/lang.js +156 -0
  285. data/public/javascripts/ckeditor/_source/core/loader.js +243 -0
  286. data/public/javascripts/ckeditor/_source/core/plugindefinition.js +66 -0
  287. data/public/javascripts/ckeditor/_source/core/plugins.js +85 -0
  288. data/public/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
  289. data/public/javascripts/ckeditor/_source/core/scriptloader.js +200 -0
  290. data/public/javascripts/ckeditor/_source/core/skins.js +212 -0
  291. data/public/javascripts/ckeditor/_source/core/themes.js +19 -0
  292. data/public/javascripts/ckeditor/_source/core/tools.js +734 -0
  293. data/public/javascripts/ckeditor/_source/core/ui.js +116 -0
  294. data/public/javascripts/ckeditor/_source/core/xml.js +165 -0
  295. data/public/javascripts/ckeditor/_source/lang/_languages.js +83 -0
  296. data/public/javascripts/ckeditor/_source/lang/_translationstatus.txt +60 -0
  297. data/public/javascripts/ckeditor/_source/lang/af.js +758 -0
  298. data/public/javascripts/ckeditor/_source/lang/ar.js +758 -0
  299. data/public/javascripts/ckeditor/_source/lang/bg.js +758 -0
  300. data/public/javascripts/ckeditor/_source/lang/bn.js +758 -0
  301. data/public/javascripts/ckeditor/_source/lang/bs.js +758 -0
  302. data/public/javascripts/ckeditor/_source/lang/ca.js +758 -0
  303. data/public/javascripts/ckeditor/_source/lang/cs.js +758 -0
  304. data/public/javascripts/ckeditor/_source/lang/cy.js +758 -0
  305. data/public/javascripts/ckeditor/_source/lang/da.js +758 -0
  306. data/public/javascripts/ckeditor/_source/lang/de.js +758 -0
  307. data/public/javascripts/ckeditor/_source/lang/el.js +758 -0
  308. data/public/javascripts/ckeditor/_source/lang/en-au.js +758 -0
  309. data/public/javascripts/ckeditor/_source/lang/en-ca.js +758 -0
  310. data/public/javascripts/ckeditor/_source/lang/en-gb.js +758 -0
  311. data/public/javascripts/ckeditor/_source/lang/en.js +758 -0
  312. data/public/javascripts/ckeditor/_source/lang/eo.js +758 -0
  313. data/public/javascripts/ckeditor/_source/lang/es.js +758 -0
  314. data/public/javascripts/ckeditor/_source/lang/et.js +758 -0
  315. data/public/javascripts/ckeditor/_source/lang/eu.js +758 -0
  316. data/public/javascripts/ckeditor/_source/lang/fa.js +758 -0
  317. data/public/javascripts/ckeditor/_source/lang/fi.js +758 -0
  318. data/public/javascripts/ckeditor/_source/lang/fo.js +758 -0
  319. data/public/javascripts/ckeditor/_source/lang/fr-ca.js +758 -0
  320. data/public/javascripts/ckeditor/_source/lang/fr.js +758 -0
  321. data/public/javascripts/ckeditor/_source/lang/gl.js +758 -0
  322. data/public/javascripts/ckeditor/_source/lang/gu.js +758 -0
  323. data/public/javascripts/ckeditor/_source/lang/he.js +758 -0
  324. data/public/javascripts/ckeditor/_source/lang/hi.js +758 -0
  325. data/public/javascripts/ckeditor/_source/lang/hr.js +758 -0
  326. data/public/javascripts/ckeditor/_source/lang/hu.js +758 -0
  327. data/public/javascripts/ckeditor/_source/lang/is.js +758 -0
  328. data/public/javascripts/ckeditor/_source/lang/it.js +758 -0
  329. data/public/javascripts/ckeditor/_source/lang/ja.js +758 -0
  330. data/public/javascripts/ckeditor/_source/lang/km.js +758 -0
  331. data/public/javascripts/ckeditor/_source/lang/ko.js +758 -0
  332. data/public/javascripts/ckeditor/_source/lang/lt.js +758 -0
  333. data/public/javascripts/ckeditor/_source/lang/lv.js +758 -0
  334. data/public/javascripts/ckeditor/_source/lang/mn.js +758 -0
  335. data/public/javascripts/ckeditor/_source/lang/ms.js +758 -0
  336. data/public/javascripts/ckeditor/_source/lang/nb.js +758 -0
  337. data/public/javascripts/ckeditor/_source/lang/nl.js +758 -0
  338. data/public/javascripts/ckeditor/_source/lang/no.js +758 -0
  339. data/public/javascripts/ckeditor/_source/lang/pl.js +758 -0
  340. data/public/javascripts/ckeditor/_source/lang/pt-br.js +757 -0
  341. data/public/javascripts/ckeditor/_source/lang/pt.js +758 -0
  342. data/public/javascripts/ckeditor/_source/lang/ro.js +758 -0
  343. data/public/javascripts/ckeditor/_source/lang/ru.js +758 -0
  344. data/public/javascripts/ckeditor/_source/lang/sk.js +758 -0
  345. data/public/javascripts/ckeditor/_source/lang/sl.js +758 -0
  346. data/public/javascripts/ckeditor/_source/lang/sr-latn.js +758 -0
  347. data/public/javascripts/ckeditor/_source/lang/sr.js +758 -0
  348. data/public/javascripts/ckeditor/_source/lang/sv.js +758 -0
  349. data/public/javascripts/ckeditor/_source/lang/th.js +758 -0
  350. data/public/javascripts/ckeditor/_source/lang/tr.js +757 -0
  351. data/public/javascripts/ckeditor/_source/lang/uk.js +758 -0
  352. data/public/javascripts/ckeditor/_source/lang/vi.js +758 -0
  353. data/public/javascripts/ckeditor/_source/lang/zh-cn.js +758 -0
  354. data/public/javascripts/ckeditor/_source/lang/zh.js +758 -0
  355. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
  356. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  357. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  358. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
  359. data/public/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
  360. data/public/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  361. data/public/javascripts/ckeditor/_source/plugins/about/plugin.js +23 -0
  362. data/public/javascripts/ckeditor/_source/plugins/ajax_save/plugin.js +44 -0
  363. data/public/javascripts/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
  364. data/public/javascripts/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
  365. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
  366. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
  367. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
  368. data/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js +44 -0
  369. data/public/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +86 -0
  370. data/public/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
  371. data/public/javascripts/ckeditor/_source/plugins/bidi/plugin.js +259 -0
  372. data/public/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
  373. data/public/javascripts/ckeditor/_source/plugins/button/plugin.js +277 -0
  374. data/public/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +205 -0
  375. data/public/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +412 -0
  376. data/public/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +250 -0
  377. data/public/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +336 -0
  378. data/public/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
  379. data/public/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +290 -0
  380. data/public/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
  381. data/public/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3015 -0
  382. data/public/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +213 -0
  383. data/public/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1523 -0
  384. data/public/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  385. data/public/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
  386. data/public/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +356 -0
  387. data/public/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +229 -0
  388. data/public/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +206 -0
  389. data/public/javascripts/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
  390. data/public/javascripts/ckeditor/_source/plugins/embed/images/embed.png +0 -0
  391. data/public/javascripts/ckeditor/_source/plugins/embed/lang/en.js +9 -0
  392. data/public/javascripts/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
  393. data/public/javascripts/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
  394. data/public/javascripts/ckeditor/_source/plugins/embed/plugin.js +44 -0
  395. data/public/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +363 -0
  396. data/public/javascripts/ckeditor/_source/plugins/entities/plugin.js +226 -0
  397. data/public/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +122 -0
  398. data/public/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +501 -0
  399. data/public/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +890 -0
  400. data/public/javascripts/ckeditor/_source/plugins/find/plugin.js +46 -0
  401. data/public/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
  402. data/public/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  403. data/public/javascripts/ckeditor/_source/plugins/flash/plugin.js +168 -0
  404. data/public/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +402 -0
  405. data/public/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
  406. data/public/javascripts/ckeditor/_source/plugins/format/plugin.js +194 -0
  407. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
  408. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  409. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  410. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +98 -0
  411. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  412. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
  413. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  414. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  415. data/public/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  416. data/public/javascripts/ckeditor/_source/plugins/forms/plugin.js +284 -0
  417. data/public/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  418. data/public/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +502 -0
  419. data/public/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  420. data/public/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
  421. data/public/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1396 -0
  422. data/public/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
  423. data/public/javascripts/ckeditor/_source/plugins/indent/plugin.js +455 -0
  424. data/public/javascripts/ckeditor/_source/plugins/justify/plugin.js +221 -0
  425. data/public/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  426. data/public/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
  427. data/public/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1424 -0
  428. data/public/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  429. data/public/javascripts/ckeditor/_source/plugins/link/plugin.js +238 -0
  430. data/public/javascripts/ckeditor/_source/plugins/list/plugin.js +710 -0
  431. data/public/javascripts/ckeditor/_source/plugins/listblock/plugin.js +257 -0
  432. data/public/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +204 -0
  433. data/public/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  434. data/public/javascripts/ckeditor/_source/plugins/maximize/plugin.js +350 -0
  435. data/public/javascripts/ckeditor/_source/plugins/menu/plugin.js +408 -0
  436. data/public/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +94 -0
  437. data/public/javascripts/ckeditor/_source/plugins/newpage/plugin.js +53 -0
  438. data/public/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  439. data/public/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +121 -0
  440. data/public/javascripts/ckeditor/_source/plugins/panel/plugin.js +399 -0
  441. data/public/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
  442. data/public/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1170 -0
  443. data/public/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +122 -0
  444. data/public/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +70 -0
  445. data/public/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +145 -0
  446. data/public/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
  447. data/public/javascripts/ckeditor/_source/plugins/preview/plugin.js +108 -0
  448. data/public/javascripts/ckeditor/_source/plugins/print/plugin.js +41 -0
  449. data/public/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +184 -0
  450. data/public/javascripts/ckeditor/_source/plugins/resize/plugin.js +157 -0
  451. data/public/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +370 -0
  452. data/public/javascripts/ckeditor/_source/plugins/save/plugin.js +55 -0
  453. data/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +534 -0
  454. data/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  455. data/public/javascripts/ckeditor/_source/plugins/scayt/plugin.js +945 -0
  456. data/public/javascripts/ckeditor/_source/plugins/selection/plugin.js +1375 -0
  457. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  458. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  459. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  460. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  461. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  462. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  463. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  464. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  465. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  466. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  467. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  468. data/public/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +155 -0
  469. data/public/javascripts/ckeditor/_source/plugins/showborders/plugin.js +201 -0
  470. data/public/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +218 -0
  471. data/public/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  472. data/public/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  473. data/public/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  474. data/public/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  475. data/public/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  476. data/public/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  477. data/public/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  478. data/public/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  479. data/public/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  480. data/public/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  481. data/public/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  482. data/public/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  483. data/public/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  484. data/public/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  485. data/public/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  486. data/public/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  487. data/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  488. data/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  489. data/public/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  490. data/public/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  491. data/public/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  492. data/public/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  493. data/public/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +207 -0
  494. data/public/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +409 -0
  495. data/public/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
  496. data/public/javascripts/ckeditor/_source/plugins/styles/plugin.js +1479 -0
  497. data/public/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  498. data/public/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +206 -0
  499. data/public/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
  500. data/public/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +672 -0
  501. data/public/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
  502. data/public/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
  503. data/public/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +533 -0
  504. data/public/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1120 -0
  505. data/public/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +233 -0
  506. data/public/javascripts/ckeditor/_source/plugins/templates/plugin.js +99 -0
  507. data/public/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  508. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  509. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  510. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  511. data/public/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +481 -0
  512. data/public/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  513. data/public/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  514. data/public/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  515. data/public/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  516. data/public/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  517. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  518. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  519. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  520. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  521. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  522. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  523. data/public/javascripts/ckeditor/_source/plugins/undo/plugin.js +554 -0
  524. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  525. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  526. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  527. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
  528. data/public/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  529. data/public/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1146 -0
  530. data/public/javascripts/ckeditor/_source/skins/kama/dialog.css +882 -0
  531. data/public/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
  532. data/public/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
  533. data/public/javascripts/ckeditor/_source/skins/kama/icons.css +357 -0
  534. data/public/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
  535. data/public/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  536. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  537. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  538. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  539. data/public/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  540. data/public/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  541. data/public/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  542. data/public/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  543. data/public/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  544. data/public/javascripts/ckeditor/_source/skins/kama/mainui.css +195 -0
  545. data/public/javascripts/ckeditor/_source/skins/kama/menu.css +216 -0
  546. data/public/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
  547. data/public/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
  548. data/public/javascripts/ckeditor/_source/skins/kama/reset.css +84 -0
  549. data/public/javascripts/ckeditor/_source/skins/kama/richcombo.css +277 -0
  550. data/public/javascripts/ckeditor/_source/skins/kama/skin.js +268 -0
  551. data/public/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
  552. data/public/javascripts/ckeditor/_source/skins/kama/toolbar.css +409 -0
  553. data/public/javascripts/ckeditor/_source/skins/office2003/dialog.css +785 -0
  554. data/public/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
  555. data/public/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  556. data/public/javascripts/ckeditor/_source/skins/office2003/icons.css +354 -0
  557. data/public/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
  558. data/public/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  559. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  560. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  561. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  562. data/public/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  563. data/public/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  564. data/public/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  565. data/public/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  566. data/public/javascripts/ckeditor/_source/skins/office2003/mainui.css +145 -0
  567. data/public/javascripts/ckeditor/_source/skins/office2003/menu.css +213 -0
  568. data/public/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
  569. data/public/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
  570. data/public/javascripts/ckeditor/_source/skins/office2003/reset.css +84 -0
  571. data/public/javascripts/ckeditor/_source/skins/office2003/richcombo.css +297 -0
  572. data/public/javascripts/ckeditor/_source/skins/office2003/skin.js +81 -0
  573. data/public/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
  574. data/public/javascripts/ckeditor/_source/skins/office2003/toolbar.css +470 -0
  575. data/public/javascripts/ckeditor/_source/skins/v2/dialog.css +800 -0
  576. data/public/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
  577. data/public/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
  578. data/public/javascripts/ckeditor/_source/skins/v2/icons.css +354 -0
  579. data/public/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
  580. data/public/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  581. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  582. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  583. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  584. data/public/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  585. data/public/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  586. data/public/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  587. data/public/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  588. data/public/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  589. data/public/javascripts/ckeditor/_source/skins/v2/mainui.css +154 -0
  590. data/public/javascripts/ckeditor/_source/skins/v2/menu.css +215 -0
  591. data/public/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
  592. data/public/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
  593. data/public/javascripts/ckeditor/_source/skins/v2/reset.css +84 -0
  594. data/public/javascripts/ckeditor/_source/skins/v2/richcombo.css +297 -0
  595. data/public/javascripts/ckeditor/_source/skins/v2/skin.js +77 -0
  596. data/public/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
  597. data/public/javascripts/ckeditor/_source/skins/v2/toolbar.css +423 -0
  598. data/public/javascripts/ckeditor/_source/themes/default/theme.js +361 -0
  599. data/public/javascripts/ckeditor/adapters/jquery.js +6 -0
  600. data/public/javascripts/ckeditor/ckeditor.js +137 -0
  601. data/public/javascripts/ckeditor/ckeditor.pack +211 -0
  602. data/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
  603. data/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
  604. data/public/javascripts/ckeditor/ckeditor_source.js +25 -0
  605. data/public/javascripts/ckeditor/config.js +43 -0
  606. data/public/javascripts/ckeditor/contents.css +39 -0
  607. data/public/javascripts/ckeditor/css/ckfinder.css +299 -0
  608. data/public/javascripts/ckeditor/css/fck_dialog.css +119 -0
  609. data/public/javascripts/ckeditor/css/fck_editor.css +448 -0
  610. data/public/javascripts/ckeditor/css/swfupload.css +94 -0
  611. data/public/javascripts/ckeditor/images/add.gif +0 -0
  612. data/public/javascripts/ckeditor/images/cancelbutton.gif +0 -0
  613. data/public/javascripts/ckeditor/images/ckfnothumb.gif +0 -0
  614. data/public/javascripts/ckeditor/images/doc.gif +0 -0
  615. data/public/javascripts/ckeditor/images/mp3.gif +0 -0
  616. data/public/javascripts/ckeditor/images/pdf.gif +0 -0
  617. data/public/javascripts/ckeditor/images/rar.gif +0 -0
  618. data/public/javascripts/ckeditor/images/refresh.gif +0 -0
  619. data/public/javascripts/ckeditor/images/select_files.png +0 -0
  620. data/public/javascripts/ckeditor/images/spacer.gif +0 -0
  621. data/public/javascripts/ckeditor/images/swf.gif +0 -0
  622. data/public/javascripts/ckeditor/images/toolbar.start.gif +0 -0
  623. data/public/javascripts/ckeditor/images/xls.gif +0 -0
  624. data/public/javascripts/ckeditor/lang/_languages.js +6 -0
  625. data/public/javascripts/ckeditor/lang/_translationstatus.txt +60 -0
  626. data/public/javascripts/ckeditor/lang/af.js +6 -0
  627. data/public/javascripts/ckeditor/lang/ar.js +6 -0
  628. data/public/javascripts/ckeditor/lang/bg.js +6 -0
  629. data/public/javascripts/ckeditor/lang/bn.js +6 -0
  630. data/public/javascripts/ckeditor/lang/bs.js +6 -0
  631. data/public/javascripts/ckeditor/lang/ca.js +6 -0
  632. data/public/javascripts/ckeditor/lang/cs.js +6 -0
  633. data/public/javascripts/ckeditor/lang/cy.js +6 -0
  634. data/public/javascripts/ckeditor/lang/da.js +6 -0
  635. data/public/javascripts/ckeditor/lang/de.js +6 -0
  636. data/public/javascripts/ckeditor/lang/el.js +6 -0
  637. data/public/javascripts/ckeditor/lang/en-au.js +6 -0
  638. data/public/javascripts/ckeditor/lang/en-ca.js +6 -0
  639. data/public/javascripts/ckeditor/lang/en-gb.js +6 -0
  640. data/public/javascripts/ckeditor/lang/en.js +6 -0
  641. data/public/javascripts/ckeditor/lang/eo.js +6 -0
  642. data/public/javascripts/ckeditor/lang/es.js +6 -0
  643. data/public/javascripts/ckeditor/lang/et.js +6 -0
  644. data/public/javascripts/ckeditor/lang/eu.js +6 -0
  645. data/public/javascripts/ckeditor/lang/fa.js +6 -0
  646. data/public/javascripts/ckeditor/lang/fi.js +6 -0
  647. data/public/javascripts/ckeditor/lang/fo.js +6 -0
  648. data/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
  649. data/public/javascripts/ckeditor/lang/fr.js +6 -0
  650. data/public/javascripts/ckeditor/lang/gl.js +6 -0
  651. data/public/javascripts/ckeditor/lang/gu.js +6 -0
  652. data/public/javascripts/ckeditor/lang/he.js +6 -0
  653. data/public/javascripts/ckeditor/lang/hi.js +6 -0
  654. data/public/javascripts/ckeditor/lang/hr.js +6 -0
  655. data/public/javascripts/ckeditor/lang/hu.js +6 -0
  656. data/public/javascripts/ckeditor/lang/is.js +6 -0
  657. data/public/javascripts/ckeditor/lang/it.js +6 -0
  658. data/public/javascripts/ckeditor/lang/ja.js +6 -0
  659. data/public/javascripts/ckeditor/lang/km.js +6 -0
  660. data/public/javascripts/ckeditor/lang/ko.js +6 -0
  661. data/public/javascripts/ckeditor/lang/lt.js +6 -0
  662. data/public/javascripts/ckeditor/lang/lv.js +6 -0
  663. data/public/javascripts/ckeditor/lang/mn.js +6 -0
  664. data/public/javascripts/ckeditor/lang/ms.js +6 -0
  665. data/public/javascripts/ckeditor/lang/nb.js +6 -0
  666. data/public/javascripts/ckeditor/lang/nl.js +6 -0
  667. data/public/javascripts/ckeditor/lang/no.js +6 -0
  668. data/public/javascripts/ckeditor/lang/pl.js +6 -0
  669. data/public/javascripts/ckeditor/lang/pt-br.js +6 -0
  670. data/public/javascripts/ckeditor/lang/pt.js +6 -0
  671. data/public/javascripts/ckeditor/lang/ro.js +6 -0
  672. data/public/javascripts/ckeditor/lang/ru.js +6 -0
  673. data/public/javascripts/ckeditor/lang/sk.js +6 -0
  674. data/public/javascripts/ckeditor/lang/sl.js +6 -0
  675. data/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
  676. data/public/javascripts/ckeditor/lang/sr.js +6 -0
  677. data/public/javascripts/ckeditor/lang/sv.js +6 -0
  678. data/public/javascripts/ckeditor/lang/th.js +6 -0
  679. data/public/javascripts/ckeditor/lang/tr.js +6 -0
  680. data/public/javascripts/ckeditor/lang/uk.js +6 -0
  681. data/public/javascripts/ckeditor/lang/vi.js +6 -0
  682. data/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
  683. data/public/javascripts/ckeditor/lang/zh.js +6 -0
  684. data/public/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  685. data/public/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  686. data/public/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  687. data/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
  688. data/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  689. data/public/javascripts/ckeditor/plugins/ajax_save/plugin.js +1 -0
  690. data/public/javascripts/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  691. data/public/javascripts/ckeditor/plugins/attachment/images/attachment.png +0 -0
  692. data/public/javascripts/ckeditor/plugins/attachment/lang/en.js +10 -0
  693. data/public/javascripts/ckeditor/plugins/attachment/lang/ru.js +10 -0
  694. data/public/javascripts/ckeditor/plugins/attachment/lang/uk.js +10 -0
  695. data/public/javascripts/ckeditor/plugins/attachment/plugin.js +1 -0
  696. data/public/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
  697. data/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  698. data/public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  699. data/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  700. data/public/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
  701. data/public/javascripts/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  702. data/public/javascripts/ckeditor/plugins/embed/images/embed.png +0 -0
  703. data/public/javascripts/ckeditor/plugins/embed/lang/en.js +9 -0
  704. data/public/javascripts/ckeditor/plugins/embed/lang/ru.js +9 -0
  705. data/public/javascripts/ckeditor/plugins/embed/lang/uk.js +9 -0
  706. data/public/javascripts/ckeditor/plugins/embed/plugin.js +1 -0
  707. data/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
  708. data/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  709. data/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  710. data/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
  711. data/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  712. data/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
  713. data/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  714. data/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  715. data/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
  716. data/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  717. data/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +7 -0
  718. data/public/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  719. data/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
  720. data/public/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
  721. data/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  722. data/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
  723. data/public/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
  724. data/public/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +6 -0
  725. data/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  726. data/public/javascripts/ckeditor/plugins/pastefromword/filter/default.js +10 -0
  727. data/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  728. data/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  729. data/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  730. data/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  731. data/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  732. data/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  733. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  734. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  735. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  736. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  737. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  738. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  739. data/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  740. data/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  741. data/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  742. data/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  743. data/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  744. data/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  745. data/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  746. data/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  747. data/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  748. data/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  749. data/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  750. data/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  751. data/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  752. data/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  753. data/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  754. data/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  755. data/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  756. data/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  757. data/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  758. data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  759. data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  760. data/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  761. data/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  762. data/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  763. data/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  764. data/public/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
  765. data/public/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
  766. data/public/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
  767. data/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  768. data/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  769. data/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
  770. data/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  771. data/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  772. data/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  773. data/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  774. data/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
  775. data/public/javascripts/ckeditor/plugins/uicolor/lang/he.js +6 -0
  776. data/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
  777. data/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  778. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  779. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  780. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  781. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  782. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  783. data/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  784. data/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  785. data/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  786. data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  787. data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  788. data/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
  789. data/public/javascripts/ckeditor/skins/kama/editor.css +12 -0
  790. data/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
  791. data/public/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
  792. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  793. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  794. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  795. data/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
  796. data/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
  797. data/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
  798. data/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  799. data/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  800. data/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
  801. data/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
  802. data/public/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
  803. data/public/javascripts/ckeditor/skins/office2003/editor.css +13 -0
  804. data/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
  805. data/public/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
  806. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  807. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  808. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  809. data/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
  810. data/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
  811. data/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
  812. data/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  813. data/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
  814. data/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
  815. data/public/javascripts/ckeditor/skins/v2/dialog.css +9 -0
  816. data/public/javascripts/ckeditor/skins/v2/editor.css +12 -0
  817. data/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
  818. data/public/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
  819. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  820. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  821. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  822. data/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
  823. data/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
  824. data/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
  825. data/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  826. data/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  827. data/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
  828. data/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
  829. data/public/javascripts/ckeditor/swfupload/fileprogress.js +275 -0
  830. data/public/javascripts/ckeditor/swfupload/handlers.js +170 -0
  831. data/public/javascripts/ckeditor/swfupload/mootools-1.2.3-core-yc.js +356 -0
  832. data/public/javascripts/ckeditor/swfupload/querystring.js +40 -0
  833. data/public/javascripts/ckeditor/swfupload/swfupload.js +1 -0
  834. data/public/javascripts/ckeditor/swfupload/swfupload.queue.js +1 -0
  835. data/public/javascripts/ckeditor/swfupload/swfupload.swf +0 -0
  836. data/public/javascripts/ckeditor/swfupload/swfupload.swfobject.js +111 -0
  837. data/public/javascripts/ckeditor/themes/default/theme.js +8 -0
  838. data/public/javascripts/controls.js +965 -0
  839. data/public/javascripts/dragdrop.js +974 -0
  840. data/public/javascripts/effects.js +1123 -0
  841. data/public/javascripts/link_obfuscator.js +31 -0
  842. data/public/javascripts/prototype.js +6001 -0
  843. data/public/javascripts/rails.js +175 -0
  844. data/public/robots.txt +5 -0
  845. data/public/stylesheets/.gitkeep +0 -0
  846. data/public/stylesheets/application.css +882 -0
  847. data/public/stylesheets/core.css +1147 -0
  848. data/public/stylesheets/core_ie.css +52 -0
  849. data/public/stylesheets/csshover3.htc +14 -0
  850. data/public/stylesheets/ppc_logic.css +98 -0
  851. data/script/rails +6 -0
  852. data/spec/blueprints.rb +25 -0
  853. data/spec/controllers/ads_controller_spec.rb +60 -0
  854. data/spec/controllers/branches_controller_spec.rb +60 -0
  855. data/spec/controllers/campaigns_controller_spec.rb +60 -0
  856. data/spec/controllers/landing_pages_controller_spec.rb +60 -0
  857. data/spec/controllers/local_offers_controller_spec.rb +60 -0
  858. data/spec/lib/madmen/google/ad_spec.rb +115 -0
  859. data/spec/lib/madmen/google/adgroup_spec.rb +106 -0
  860. data/spec/lib/madmen/google/campaign_spec.rb +171 -0
  861. data/spec/lib/madmen/google/keyword_spec.rb +105 -0
  862. data/spec/models/ad_spec.rb +26 -0
  863. data/spec/models/branch_spec.rb +4 -0
  864. data/spec/models/campaign_spec.rb +8 -0
  865. data/spec/models/landing_page_spec.rb +103 -0
  866. data/spec/models/local_offer_spec.rb +7 -0
  867. data/spec/spec_helper.rb +10 -0
  868. data/tasks/ppc_logic.rake +27 -0
  869. data/vendor/plugins/.gitkeep +0 -0
  870. metadata +1120 -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,1146 @@
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 = /(^|<body\b[^>]*>)\s*<(p|div|address|h\d|center)[^>]*>\s*(?:<br[^>]*>|&nbsp;|\u00A0|&#160;)?\s*(:?<\/\2>)?\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
+ marker = null;
96
+ }
97
+
98
+ CKEDITOR.tools.setTimeout( function()
99
+ {
100
+ this.fire( 'saveSnapshot' );
101
+ }, 0, this );
102
+ }
103
+ }
104
+
105
+ function onInsertElement( evt )
106
+ {
107
+ if ( this.mode == 'wysiwyg' )
108
+ {
109
+ this.focus();
110
+
111
+ var selection = this.getSelection();
112
+ if ( checkReadOnly( selection ) )
113
+ return;
114
+
115
+ this.fire( 'saveSnapshot' );
116
+
117
+ var ranges = selection.getRanges(),
118
+ element = evt.data,
119
+ elementName = element.getName(),
120
+ isBlock = CKEDITOR.dtd.$block[ elementName ];
121
+
122
+ var selIsLocked = selection.isLocked;
123
+
124
+ if ( selIsLocked )
125
+ selection.unlock();
126
+
127
+ var range, clone, lastElement, bookmark;
128
+
129
+ for ( var i = ranges.length - 1 ; i >= 0 ; i-- )
130
+ {
131
+ range = ranges[ i ];
132
+
133
+ // Remove the original contents.
134
+ range.deleteContents();
135
+
136
+ clone = !i && element || element.clone( 1 );
137
+
138
+ // If we're inserting a block at dtd-violated position, split
139
+ // the parent blocks until we reach blockLimit.
140
+ var current, dtd;
141
+ if ( isBlock )
142
+ {
143
+ while ( ( current = range.getCommonAncestor( 0, 1 ) )
144
+ && ( dtd = CKEDITOR.dtd[ current.getName() ] )
145
+ && !( dtd && dtd [ elementName ] ) )
146
+ {
147
+ // Split up inline elements.
148
+ if ( current.getName() in CKEDITOR.dtd.span )
149
+ range.splitElement( current );
150
+ // If we're in an empty block which indicate a new paragraph,
151
+ // simply replace it with the inserting block.(#3664)
152
+ else if ( range.checkStartOfBlock()
153
+ && range.checkEndOfBlock() )
154
+ {
155
+ range.setStartBefore( current );
156
+ range.collapse( true );
157
+ current.remove();
158
+ }
159
+ else
160
+ range.splitBlock();
161
+ }
162
+ }
163
+
164
+ // Insert the new node.
165
+ range.insertNode( clone );
166
+
167
+ // Save the last element reference so we can make the
168
+ // selection later.
169
+ if ( !lastElement )
170
+ lastElement = clone;
171
+ }
172
+
173
+ range.moveToPosition( lastElement, CKEDITOR.POSITION_AFTER_END );
174
+
175
+ // If we're inserting a block element immediatelly followed by
176
+ // another block element, the selection must move there. (#3100,#5436)
177
+ if ( isBlock )
178
+ {
179
+ var next = lastElement.getNext( notWhitespaceEval ),
180
+ nextName = next && next.type == CKEDITOR.NODE_ELEMENT && next.getName();
181
+
182
+ // Check if it's a block element that accepts text.
183
+ if ( nextName && CKEDITOR.dtd.$block[ nextName ] && CKEDITOR.dtd[ nextName ]['#'] )
184
+ range.moveToElementEditStart( next );
185
+ }
186
+
187
+ selection.selectRanges( [ range ] );
188
+
189
+ if ( selIsLocked )
190
+ this.getSelection().lock();
191
+
192
+ // Save snaps after the whole execution completed.
193
+ // This's a workaround for make DOM modification's happened after
194
+ // 'insertElement' to be included either, e.g. Form-based dialogs' 'commitContents'
195
+ // call.
196
+ CKEDITOR.tools.setTimeout( function(){
197
+ this.fire( 'saveSnapshot' );
198
+ }, 0, this );
199
+ }
200
+ }
201
+
202
+ // DOM modification here should not bother dirty flag.(#4385)
203
+ function restoreDirty( editor )
204
+ {
205
+ if ( !editor.checkDirty() )
206
+ setTimeout( function(){ editor.resetDirty(); }, 0 );
207
+ }
208
+
209
+ var isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true ),
210
+ isNotBookmark = CKEDITOR.dom.walker.bookmark( false, true );
211
+
212
+ function isNotEmpty( node )
213
+ {
214
+ return isNotWhitespace( node ) && isNotBookmark( node );
215
+ }
216
+
217
+ function isNbsp( node )
218
+ {
219
+ return node.type == CKEDITOR.NODE_TEXT
220
+ && CKEDITOR.tools.trim( node.getText() ).match( /^(?:&nbsp;|\xa0)$/ );
221
+ }
222
+
223
+ function restoreSelection( selection )
224
+ {
225
+ if ( selection.isLocked )
226
+ {
227
+ selection.unlock();
228
+ setTimeout( function() { selection.lock(); }, 0 );
229
+ }
230
+ }
231
+
232
+ function isBlankParagraph( block )
233
+ {
234
+ return block.getOuterHtml().match( emptyParagraphRegexp );
235
+ }
236
+
237
+ isNotWhitespace = CKEDITOR.dom.walker.whitespaces( true );
238
+
239
+ // Gecko need a key event to 'wake up' the editing
240
+ // ability when document is empty.(#3864, #5781)
241
+ function activateEditing( editor )
242
+ {
243
+ var win = editor.window,
244
+ doc = editor.document,
245
+ body = editor.document.getBody(),
246
+ bodyChildsNum = body.getChildren().count();
247
+
248
+ if ( !bodyChildsNum || ( bodyChildsNum == 1&& body.getFirst().hasAttribute( '_moz_editor_bogus_node' ) ) )
249
+ {
250
+ restoreDirty( editor );
251
+
252
+ // Memorize scroll position to restore it later (#4472).
253
+ var hostDocument = editor.element.getDocument();
254
+ var hostDocumentElement = hostDocument.getDocumentElement();
255
+ var scrollTop = hostDocumentElement.$.scrollTop;
256
+ var scrollLeft = hostDocumentElement.$.scrollLeft;
257
+
258
+ // Simulating keyboard character input by dispatching a keydown of white-space text.
259
+ var keyEventSimulate = doc.$.createEvent( "KeyEvents" );
260
+ keyEventSimulate.initKeyEvent( 'keypress', true, true, win.$, false,
261
+ false, false, false, 0, 32 );
262
+ doc.$.dispatchEvent( keyEventSimulate );
263
+
264
+ if ( scrollTop != hostDocumentElement.$.scrollTop || scrollLeft != hostDocumentElement.$.scrollLeft )
265
+ hostDocument.getWindow().$.scrollTo( scrollLeft, scrollTop );
266
+
267
+ // Restore the original document status by placing the cursor before a bogus br created (#5021).
268
+ bodyChildsNum && body.getFirst().remove();
269
+ doc.getBody().appendBogus();
270
+ var nativeRange = new CKEDITOR.dom.range( doc );
271
+ nativeRange.setStartAt( body , CKEDITOR.POSITION_AFTER_START );
272
+ nativeRange.select();
273
+ }
274
+ }
275
+
276
+ /**
277
+ * Auto-fixing block-less content by wrapping paragraph (#3190), prevent
278
+ * non-exitable-block by padding extra br.(#3189)
279
+ */
280
+ function onSelectionChangeFixBody( evt )
281
+ {
282
+ var editor = evt.editor,
283
+ path = evt.data.path,
284
+ blockLimit = path.blockLimit,
285
+ selection = evt.data.selection,
286
+ range = selection.getRanges()[0],
287
+ body = editor.document.getBody(),
288
+ enterMode = editor.config.enterMode;
289
+
290
+ CKEDITOR.env.gecko && activateEditing( editor );
291
+
292
+ // When enterMode set to block, we'll establing new paragraph only if we're
293
+ // selecting inline contents right under body. (#3657)
294
+ if ( enterMode != CKEDITOR.ENTER_BR
295
+ && range.collapsed
296
+ && blockLimit.getName() == 'body'
297
+ && !path.block )
298
+ {
299
+ editor.fire( 'updateSnapshot' );
300
+ restoreDirty( editor );
301
+ CKEDITOR.env.ie && restoreSelection( selection );
302
+
303
+ var fixedBlock = range.fixBlock( true,
304
+ editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' );
305
+
306
+ // For IE, we should remove any filler node which was introduced before.
307
+ if ( CKEDITOR.env.ie )
308
+ {
309
+ var first = fixedBlock.getFirst( isNotEmpty );
310
+ first && isNbsp( first ) && first.remove();
311
+ }
312
+
313
+ // If the fixed block is actually blank and is already followed by an exitable blank
314
+ // block, we should revert the fix and move into the existed one. (#3684)
315
+ if ( isBlankParagraph( fixedBlock ) )
316
+ {
317
+ var element = fixedBlock.getNext( isNotWhitespace );
318
+ if ( element &&
319
+ element.type == CKEDITOR.NODE_ELEMENT &&
320
+ !nonExitableElementNames[ element.getName() ] )
321
+ {
322
+ range.moveToElementEditStart( element );
323
+ fixedBlock.remove();
324
+ }
325
+ else
326
+ {
327
+ element = fixedBlock.getPrevious( isNotWhitespace );
328
+ if ( element &&
329
+ element.type == CKEDITOR.NODE_ELEMENT &&
330
+ !nonExitableElementNames[ element.getName() ] )
331
+ {
332
+ range.moveToElementEditEnd( element );
333
+ fixedBlock.remove();
334
+ }
335
+ }
336
+ }
337
+
338
+ range.select();
339
+ // Notify non-IE that selection has changed.
340
+ if ( !CKEDITOR.env.ie )
341
+ editor.selectionChange();
342
+ }
343
+
344
+ // All browsers are incapable to moving cursor out of certain non-exitable
345
+ // blocks (e.g. table, list, pre) at the end of document, make this happen by
346
+ // place a bogus node there, which would be later removed by dataprocessor.
347
+ var walkerRange = new CKEDITOR.dom.range( editor.document ),
348
+ walker = new CKEDITOR.dom.walker( walkerRange );
349
+ walkerRange.selectNodeContents( body );
350
+ walker.evaluator = function( node )
351
+ {
352
+ return node.type == CKEDITOR.NODE_ELEMENT && ( node.getName() in nonExitableElementNames );
353
+ };
354
+ walker.guard = function( node, isMoveout )
355
+ {
356
+ return !( ( node.type == CKEDITOR.NODE_TEXT && isNotWhitespace( node ) ) || isMoveout );
357
+ };
358
+
359
+ if ( walker.previous() )
360
+ {
361
+ editor.fire( 'updateSnapshot' );
362
+ restoreDirty( editor );
363
+ CKEDITOR.env.ie && restoreSelection( selection );
364
+
365
+ var paddingBlock;
366
+ if ( enterMode != CKEDITOR.ENTER_BR )
367
+ paddingBlock = body.append( new CKEDITOR.dom.element( enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ) );
368
+ else
369
+ paddingBlock = body;
370
+
371
+ if ( !CKEDITOR.env.ie )
372
+ paddingBlock.appendBogus();
373
+ }
374
+ }
375
+
376
+ CKEDITOR.plugins.add( 'wysiwygarea',
377
+ {
378
+ requires : [ 'editingblock' ],
379
+
380
+ init : function( editor )
381
+ {
382
+ var fixForBody = ( editor.config.enterMode != CKEDITOR.ENTER_BR )
383
+ ? editor.config.enterMode == CKEDITOR.ENTER_DIV ? 'div' : 'p' : false;
384
+
385
+ var frameLabel = editor.lang.editorTitle.replace( '%1', editor.name );
386
+
387
+ var contentDomReadyHandler;
388
+ editor.on( 'editingBlockReady', function()
389
+ {
390
+ var mainElement,
391
+ iframe,
392
+ isLoadingData,
393
+ isPendingFocus,
394
+ frameLoaded,
395
+ fireMode;
396
+
397
+
398
+ // Support for custom document.domain in IE.
399
+ var isCustomDomain = CKEDITOR.env.isCustomDomain();
400
+
401
+ // Creates the iframe that holds the editable document.
402
+ var createIFrame = function( data )
403
+ {
404
+ if ( iframe )
405
+ iframe.remove();
406
+
407
+
408
+ var srcScript =
409
+ 'document.open();' +
410
+
411
+ // The document domain must be set any time we
412
+ // call document.open().
413
+ ( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
414
+
415
+ 'document.close();';
416
+
417
+ iframe = CKEDITOR.dom.element.createFromHtml( '<iframe' +
418
+ ' style="width:100%;height:100%"' +
419
+ ' frameBorder="0"' +
420
+ ' title="' + frameLabel + '"' +
421
+ // With IE, the custom domain has to be taken care at first,
422
+ // for other browers, the 'src' attribute should be left empty to
423
+ // trigger iframe's 'load' event.
424
+ ' src="' + ( CKEDITOR.env.ie ? 'javascript:void(function(){' + encodeURIComponent( srcScript ) + '}())' : '' ) + '"' +
425
+ ' tabIndex="' + ( CKEDITOR.env.webkit? -1 : editor.tabIndex ) + '"' +
426
+ ' allowTransparency="true"' +
427
+ '></iframe>' );
428
+
429
+ // Running inside of Firefox chrome the load event doesn't bubble like in a normal page (#5689)
430
+ if ( document.location.protocol == 'chrome:' )
431
+ CKEDITOR.event.useCapture = true;
432
+
433
+ // With FF, it's better to load the data on iframe.load. (#3894,#4058)
434
+ iframe.on( 'load', function( ev )
435
+ {
436
+ frameLoaded = 1;
437
+ ev.removeListener();
438
+
439
+ var doc = iframe.getFrameDocument().$;
440
+
441
+ // Don't leave any history log in IE. (#5657)
442
+ doc.open( "text/html","replace" );
443
+ doc.write( data );
444
+ doc.close();
445
+ });
446
+
447
+ // Reset adjustment back to default (#5689)
448
+ if ( document.location.protocol == 'chrome:' )
449
+ CKEDITOR.event.useCapture = false;
450
+
451
+ // The container must be visible when creating the iframe in FF (#5956)
452
+ var element = editor.element,
453
+ isHidden = CKEDITOR.env.gecko && !element.isVisible(),
454
+ previousStyles = {};
455
+ if ( isHidden )
456
+ {
457
+ element.show();
458
+ previousStyles = {
459
+ position : element.getStyle( 'position' ),
460
+ top : element.getStyle( 'top' )
461
+ };
462
+ element.setStyles( { position : 'absolute', top : '-3000px' } );
463
+ }
464
+
465
+ mainElement.append( iframe );
466
+
467
+ if ( isHidden )
468
+ {
469
+ setTimeout( function()
470
+ {
471
+ element.hide();
472
+ element.setStyles( previousStyles );
473
+ }, 1000 );
474
+ }
475
+ };
476
+
477
+ // The script that launches the bootstrap logic on 'domReady', so the document
478
+ // is fully editable even before the editing iframe is fully loaded (#4455).
479
+ contentDomReadyHandler = CKEDITOR.tools.addFunction( contentDomReady );
480
+ var activationScript =
481
+ '<script id="cke_actscrpt" type="text/javascript" cke_temp="1">' +
482
+ ( isCustomDomain ? ( 'document.domain="' + document.domain + '";' ) : '' ) +
483
+ 'window.parent.CKEDITOR.tools.callFunction( ' + contentDomReadyHandler + ', window );' +
484
+ '</script>';
485
+
486
+ // Editing area bootstrap code.
487
+ function contentDomReady( domWindow )
488
+ {
489
+ if ( !frameLoaded )
490
+ return;
491
+ frameLoaded = 0;
492
+
493
+ editor.fire( 'ariaWidget', iframe );
494
+
495
+ var domDocument = domWindow.document,
496
+ body = domDocument.body;
497
+
498
+ // Remove this script from the DOM.
499
+ var script = domDocument.getElementById( "cke_actscrpt" );
500
+ script.parentNode.removeChild( script );
501
+
502
+ body.spellcheck = !editor.config.disableNativeSpellChecker;
503
+
504
+ if ( CKEDITOR.env.ie )
505
+ {
506
+ // Don't display the focus border.
507
+ body.hideFocus = true;
508
+
509
+ // Disable and re-enable the body to avoid IE from
510
+ // taking the editing focus at startup. (#141 / #523)
511
+ body.disabled = true;
512
+ body.contentEditable = true;
513
+ body.removeAttribute( 'disabled' );
514
+ }
515
+ else
516
+ {
517
+ // Avoid opening design mode in a frame window thread,
518
+ // which will cause host page scrolling.(#4397)
519
+ setTimeout( function()
520
+ {
521
+ // Prefer 'contentEditable' instead of 'designMode'. (#3593)
522
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900
523
+ || CKEDITOR.env.opera )
524
+ domDocument.$.body.contentEditable = true;
525
+ else if ( CKEDITOR.env.webkit )
526
+ domDocument.$.body.parentNode.contentEditable = true;
527
+ else
528
+ domDocument.$.designMode = 'on';
529
+ }, 0 );
530
+ }
531
+
532
+ CKEDITOR.env.gecko && CKEDITOR.tools.setTimeout( activateEditing, 0, null, editor );
533
+
534
+ domWindow = editor.window = new CKEDITOR.dom.window( domWindow );
535
+ domDocument = editor.document = new CKEDITOR.dom.document( domDocument );
536
+
537
+ domDocument.on( 'dblclick', function( evt )
538
+ {
539
+ var element = evt.data.getTarget(),
540
+ data = { element : element, dialog : '' };
541
+ editor.fire( 'doubleclick', data );
542
+ data.dialog && editor.openDialog( data.dialog );
543
+ });
544
+
545
+ // Gecko/Webkit need some help when selecting control type elements. (#3448)
546
+ if ( !( CKEDITOR.env.ie || CKEDITOR.env.opera ) )
547
+ {
548
+ domDocument.on( 'mousedown', function( ev )
549
+ {
550
+ var control = ev.data.getTarget();
551
+ if ( control.is( 'img', 'hr', 'input', 'textarea', 'select' ) )
552
+ editor.getSelection().selectElement( control );
553
+ } );
554
+ }
555
+
556
+ if ( CKEDITOR.env.gecko )
557
+ {
558
+ domDocument.on( 'mouseup', function( ev )
559
+ {
560
+ if ( ev.data.$.button == 2 )
561
+ {
562
+ var target = ev.data.getTarget();
563
+
564
+ // Prevent right click from selecting an empty block even
565
+ // when selection is anchored inside it. (#5845)
566
+ if ( !target.getOuterHtml().replace( emptyParagraphRegexp, '' ) )
567
+ {
568
+ var range = new CKEDITOR.dom.range( domDocument );
569
+ range.moveToElementEditStart( target );
570
+ range.select( true );
571
+ }
572
+ }
573
+ } );
574
+ }
575
+
576
+ // Prevent the browser opening links in read-only blocks. (#6032)
577
+ domDocument.on( 'click', function( ev )
578
+ {
579
+ ev = ev.data;
580
+ if ( ev.getTarget().is( 'a' ) && ev.$.button != 2 )
581
+ ev.preventDefault();
582
+ });
583
+
584
+ // Webkit: avoid from editing form control elements content.
585
+ if ( CKEDITOR.env.webkit )
586
+ {
587
+ // Prevent from tick checkbox/radiobox/select
588
+ domDocument.on( 'click', function( ev )
589
+ {
590
+ if ( ev.data.getTarget().is( 'input', 'select' ) )
591
+ ev.data.preventDefault();
592
+ } );
593
+
594
+ // Prevent from editig textfield/textarea value.
595
+ domDocument.on( 'mouseup', function( ev )
596
+ {
597
+ if ( ev.data.getTarget().is( 'input', 'textarea' ) )
598
+ ev.data.preventDefault();
599
+ } );
600
+ }
601
+
602
+ // IE standard compliant in editing frame doesn't focus the editor when
603
+ // clicking outside actual content, manually apply the focus. (#1659)
604
+ if ( CKEDITOR.env.ie
605
+ && domDocument.$.compatMode == 'CSS1Compat'
606
+ || CKEDITOR.env.gecko
607
+ || CKEDITOR.env.opera )
608
+ {
609
+ var htmlElement = domDocument.getDocumentElement();
610
+ htmlElement.on( 'mousedown', function( evt )
611
+ {
612
+ // Setting focus directly on editor doesn't work, we
613
+ // have to use here a temporary element to 'redirect'
614
+ // the focus.
615
+ if ( evt.data.getTarget().equals( htmlElement ) )
616
+ {
617
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
618
+ blinkCursor();
619
+ focusGrabber.focus();
620
+ }
621
+ } );
622
+ }
623
+
624
+ domWindow.on( 'blur', function()
625
+ {
626
+ editor.focusManager.blur();
627
+ });
628
+
629
+ var wasFocused;
630
+
631
+ domWindow.on( 'focus', function()
632
+ {
633
+ var doc = editor.document;
634
+
635
+ if ( CKEDITOR.env.gecko && CKEDITOR.env.version >= 10900 )
636
+ blinkCursor();
637
+ else if ( CKEDITOR.env.opera )
638
+ doc.getBody().focus();
639
+ // Webkit needs focus for the first time on the HTML element. (#6153)
640
+ else if ( CKEDITOR.env.webkit )
641
+ {
642
+ if ( !wasFocused )
643
+ {
644
+ editor.document.getDocumentElement().focus();
645
+ wasFocused = 1;
646
+ }
647
+ }
648
+
649
+ editor.focusManager.focus();
650
+ });
651
+
652
+ var keystrokeHandler = editor.keystrokeHandler;
653
+ if ( keystrokeHandler )
654
+ keystrokeHandler.attach( domDocument );
655
+
656
+ if ( CKEDITOR.env.ie )
657
+ {
658
+ domDocument.getDocumentElement().addClass( domDocument.$.compatMode );
659
+ // Override keystrokes which should have deletion behavior
660
+ // on control types in IE . (#4047)
661
+ domDocument.on( 'keydown', function( evt )
662
+ {
663
+ var keyCode = evt.data.getKeystroke();
664
+
665
+ // Backspace OR Delete.
666
+ if ( keyCode in { 8 : 1, 46 : 1 } )
667
+ {
668
+ var sel = editor.getSelection(),
669
+ control = sel.getSelectedElement();
670
+
671
+ if ( control )
672
+ {
673
+ // Make undo snapshot.
674
+ editor.fire( 'saveSnapshot' );
675
+
676
+ // Delete any element that 'hasLayout' (e.g. hr,table) in IE8 will
677
+ // break up the selection, safely manage it here. (#4795)
678
+ var bookmark = sel.getRanges()[ 0 ].createBookmark();
679
+ // Remove the control manually.
680
+ control.remove();
681
+ sel.selectBookmarks( [ bookmark ] );
682
+
683
+ editor.fire( 'saveSnapshot' );
684
+
685
+ evt.data.preventDefault();
686
+ }
687
+ }
688
+ } );
689
+
690
+ // PageUp/PageDown scrolling is broken in document
691
+ // with standard doctype, manually fix it. (#4736)
692
+ if ( domDocument.$.compatMode == 'CSS1Compat' )
693
+ {
694
+ var pageUpDownKeys = { 33 : 1, 34 : 1 };
695
+ domDocument.on( 'keydown', function( evt )
696
+ {
697
+ if ( evt.data.getKeystroke() in pageUpDownKeys )
698
+ {
699
+ setTimeout( function ()
700
+ {
701
+ editor.getSelection().scrollIntoView();
702
+ }, 0 );
703
+ }
704
+ } );
705
+ }
706
+ }
707
+
708
+ // Adds the document body as a context menu target.
709
+ if ( editor.contextMenu )
710
+ editor.contextMenu.addTarget( domDocument, editor.config.browserContextMenuOnCtrl !== false );
711
+
712
+ setTimeout( function()
713
+ {
714
+ editor.fire( 'contentDom' );
715
+
716
+ if ( fireMode )
717
+ {
718
+ editor.mode = 'wysiwyg';
719
+ editor.fire( 'mode' );
720
+ fireMode = false;
721
+ }
722
+
723
+ isLoadingData = false;
724
+
725
+ if ( isPendingFocus )
726
+ {
727
+ editor.focus();
728
+ isPendingFocus = false;
729
+ }
730
+ setTimeout( function()
731
+ {
732
+ editor.fire( 'dataReady' );
733
+ }, 0 );
734
+
735
+ // IE, Opera and Safari may not support it and throw errors.
736
+ try { editor.document.$.execCommand( 'enableObjectResizing', false, !editor.config.disableObjectResizing ) ; } catch(e) {}
737
+ try { editor.document.$.execCommand( 'enableInlineTableEditing', false, !editor.config.disableNativeTableHandles ) ; } catch(e) {}
738
+
739
+ /*
740
+ * IE BUG: IE might have rendered the iframe with invisible contents.
741
+ * (#3623). Push some inconsequential CSS style changes to force IE to
742
+ * refresh it.
743
+ *
744
+ * Also, for some unknown reasons, short timeouts (e.g. 100ms) do not
745
+ * fix the problem. :(
746
+ */
747
+ if ( CKEDITOR.env.ie )
748
+ {
749
+ setTimeout( function()
750
+ {
751
+ if ( editor.document )
752
+ {
753
+ var $body = editor.document.$.body;
754
+ $body.runtimeStyle.marginBottom = '0px';
755
+ $body.runtimeStyle.marginBottom = '';
756
+ }
757
+ }, 1000 );
758
+ }
759
+ },
760
+ 0 );
761
+ }
762
+
763
+ editor.addMode( 'wysiwyg',
764
+ {
765
+ load : function( holderElement, data, isSnapshot )
766
+ {
767
+ mainElement = holderElement;
768
+
769
+ if ( CKEDITOR.env.ie && CKEDITOR.env.quirks )
770
+ holderElement.setStyle( 'position', 'relative' );
771
+
772
+ // The editor data "may be dirty" after this
773
+ // point.
774
+ editor.mayBeDirty = true;
775
+
776
+ fireMode = true;
777
+
778
+ if ( isSnapshot )
779
+ this.loadSnapshotData( data );
780
+ else
781
+ this.loadData( data );
782
+ },
783
+
784
+ loadData : function( data )
785
+ {
786
+ isLoadingData = true;
787
+
788
+ var config = editor.config,
789
+ fullPage = config.fullPage,
790
+ docType = config.docType;
791
+
792
+ // Build the additional stuff to be included into <head>.
793
+ var headExtra =
794
+ '<style type="text/css" cke_temp="1">' +
795
+ editor._.styles.join( '\n' ) +
796
+ '</style>';
797
+
798
+ !fullPage && ( headExtra =
799
+ CKEDITOR.tools.buildStyleHtml( editor.config.contentsCss ) +
800
+ headExtra );
801
+
802
+ var baseTag = config.baseHref ? '<base href="' + config.baseHref + '" cke_temp="1" />' : '';
803
+
804
+ if ( fullPage )
805
+ {
806
+ // Search and sweep out the doctype declaration.
807
+ data = data.replace( /<!DOCTYPE[^>]*>/i, function( match )
808
+ {
809
+ editor.docType = docType = match;
810
+ return '';
811
+ });
812
+ }
813
+
814
+ // Get the HTML version of the data.
815
+ if ( editor.dataProcessor )
816
+ data = editor.dataProcessor.toHtml( data, fixForBody );
817
+
818
+ if ( fullPage )
819
+ {
820
+ // Check if the <body> tag is available.
821
+ if ( !(/<body[\s|>]/).test( data ) )
822
+ data = '<body>' + data;
823
+
824
+ // Check if the <html> tag is available.
825
+ if ( !(/<html[\s|>]/).test( data ) )
826
+ data = '<html>' + data + '</html>';
827
+
828
+ // Check if the <head> tag is available.
829
+ if ( !(/<head[\s|>]/).test( data ) )
830
+ data = data.replace( /<html[^>]*>/, '$&<head><title></title></head>' ) ;
831
+ else if ( !(/<title[\s|>]/).test( data ) )
832
+ data = data.replace( /<head[^>]*>/, '$&<title></title>' ) ;
833
+
834
+ // The base must be the first tag in the HEAD, e.g. to get relative
835
+ // links on styles.
836
+ baseTag && ( data = data.replace( /<head>/, '$&' + baseTag ) );
837
+
838
+ // Inject the extra stuff into <head>.
839
+ // Attention: do not change it before testing it well. (V2)
840
+ // This is tricky... if the head ends with <meta ... content type>,
841
+ // Firefox will break. But, it works if we place our extra stuff as
842
+ // the last elements in the HEAD.
843
+ data = data.replace( /<\/head\s*>/, headExtra + '$&' );
844
+
845
+ // Add the DOCTYPE back to it.
846
+ data = docType + data;
847
+ }
848
+ else
849
+ {
850
+ data =
851
+ config.docType +
852
+ '<html dir="' + config.contentsLangDirection + '"' +
853
+ ' lang="' + ( config.contentsLanguage || editor.langCode ) + '">' +
854
+ '<head>' +
855
+ '<title>' + frameLabel + '</title>' +
856
+ baseTag +
857
+ headExtra +
858
+ '</head>' +
859
+ '<body' + ( config.bodyId ? ' id="' + config.bodyId + '"' : '' ) +
860
+ ( config.bodyClass ? ' class="' + config.bodyClass + '"' : '' ) +
861
+ '>' +
862
+ data +
863
+ '</html>';
864
+ }
865
+
866
+ data += activationScript;
867
+
868
+
869
+ // The iframe is recreated on each call of setData, so we need to clear DOM objects
870
+ this.onDispose();
871
+ createIFrame( data );
872
+ },
873
+
874
+ getData : function()
875
+ {
876
+ var config = editor.config,
877
+ fullPage = config.fullPage,
878
+ docType = fullPage && editor.docType,
879
+ doc = iframe.getFrameDocument();
880
+
881
+ var data = fullPage
882
+ ? doc.getDocumentElement().getOuterHtml()
883
+ : doc.getBody().getHtml();
884
+
885
+ if ( editor.dataProcessor )
886
+ data = editor.dataProcessor.toDataFormat( data, fixForBody );
887
+
888
+ // Reset empty if the document contains only one empty paragraph.
889
+ if ( config.ignoreEmptyParagraph )
890
+ data = data.replace( emptyParagraphRegexp, function( match, lookback ) { return lookback; } );
891
+
892
+ if ( docType )
893
+ data = docType + '\n' + data;
894
+
895
+ return data;
896
+ },
897
+
898
+ getSnapshotData : function()
899
+ {
900
+ return iframe.getFrameDocument().getBody().getHtml();
901
+ },
902
+
903
+ loadSnapshotData : function( data )
904
+ {
905
+ iframe.getFrameDocument().getBody().setHtml( data );
906
+ },
907
+
908
+ onDispose : function()
909
+ {
910
+ if ( !editor.document )
911
+ return;
912
+
913
+ editor.document.getDocumentElement().clearCustomData();
914
+ editor.document.getBody().clearCustomData();
915
+
916
+ editor.window.clearCustomData();
917
+ editor.document.clearCustomData();
918
+
919
+ iframe.clearCustomData();
920
+
921
+ /*
922
+ * IE BUG: When destroying editor DOM with the selection remains inside
923
+ * editing area would break IE7/8's selection system, we have to put the editing
924
+ * iframe offline first. (#3812 and #5441)
925
+ */
926
+ iframe.remove();
927
+ },
928
+
929
+ unload : function( holderElement )
930
+ {
931
+ this.onDispose();
932
+
933
+ editor.window = editor.document = iframe = mainElement = isPendingFocus = null;
934
+
935
+ editor.fire( 'contentDomUnload' );
936
+ },
937
+
938
+ focus : function()
939
+ {
940
+ if ( isLoadingData )
941
+ isPendingFocus = true;
942
+ // Temporary solution caused by #6025, supposed be unified by #6154.
943
+ else if ( CKEDITOR.env.opera && editor.document )
944
+ {
945
+ // Required for Opera when switching focus
946
+ // from another iframe, e.g. panels. (#6444)
947
+ var iframe = editor.window.$.frameElement;
948
+ iframe.blur(), iframe.focus();
949
+ editor.document.getBody().focus();
950
+
951
+ editor.selectionChange();
952
+ }
953
+ else if ( !CKEDITOR.env.opera && editor.window )
954
+ {
955
+ editor.window.focus();
956
+
957
+ editor.selectionChange();
958
+ }
959
+ }
960
+ });
961
+
962
+ editor.on( 'insertHtml', onInsertHtml, null, null, 20 );
963
+ editor.on( 'insertElement', onInsertElement, null, null, 20 );
964
+ // Auto fixing on some document structure weakness to enhance usabilities. (#3190 and #3189)
965
+ editor.on( 'selectionChange', onSelectionChangeFixBody, null, null, 1 );
966
+ });
967
+
968
+ var titleBackup;
969
+ // Setting voice label as window title, backup the original one
970
+ // and restore it before running into use.
971
+ editor.on( 'contentDom', function()
972
+ {
973
+ var title = editor.document.getElementsByTag( 'title' ).getItem( 0 );
974
+ title.setAttribute( '_cke_title', editor.document.$.title );
975
+ editor.document.$.title = frameLabel;
976
+ });
977
+
978
+ // IE8 stricts mode doesn't have 'contentEditable' in effect
979
+ // on element unless it has layout. (#5562)
980
+ if ( CKEDITOR.env.ie8Compat )
981
+ {
982
+ editor.addCss( 'html.CSS1Compat [contenteditable=false]{ min-height:0 !important;}' );
983
+
984
+ var selectors = [];
985
+ for ( var tag in CKEDITOR.dtd.$removeEmpty )
986
+ selectors.push( 'html.CSS1Compat ' + tag + '[contenteditable=false]' );
987
+ editor.addCss( selectors.join( ',' ) + '{ display:inline-block;}' );
988
+ }
989
+ // Set the HTML style to 100% to have the text cursor in affect (#6341)
990
+ else if ( CKEDITOR.env.gecko )
991
+ editor.addCss( 'html { height: 100% !important; }' );
992
+
993
+ // Switch on design mode for a short while and close it after then.
994
+ function blinkCursor( retry )
995
+ {
996
+ CKEDITOR.tools.tryThese(
997
+ function()
998
+ {
999
+ editor.document.$.designMode = 'on';
1000
+ setTimeout( function()
1001
+ {
1002
+ editor.document.$.designMode = 'off';
1003
+ if ( CKEDITOR.currentInstance == editor )
1004
+ editor.document.getBody().focus();
1005
+ }, 50 );
1006
+ },
1007
+ function()
1008
+ {
1009
+ // The above call is known to fail when parent DOM
1010
+ // tree layout changes may break design mode. (#5782)
1011
+ // Refresh the 'contentEditable' is a cue to this.
1012
+ editor.document.$.designMode = 'off';
1013
+ var body = editor.document.getBody();
1014
+ body.setAttribute( 'contentEditable', false );
1015
+ body.setAttribute( 'contentEditable', true );
1016
+ // Try it again once..
1017
+ !retry && blinkCursor( 1 );
1018
+ });
1019
+ }
1020
+
1021
+ // Create an invisible element to grab focus.
1022
+ if ( CKEDITOR.env.gecko || CKEDITOR.env.ie || CKEDITOR.env.opera )
1023
+ {
1024
+ var focusGrabber;
1025
+ editor.on( 'uiReady', function()
1026
+ {
1027
+ focusGrabber = editor.container.append( CKEDITOR.dom.element.createFromHtml(
1028
+ // Use 'span' instead of anything else to fly under the screen-reader radar. (#5049)
1029
+ '<span tabindex="-1" style="position:absolute; left:-10000" role="presentation"></span>' ) );
1030
+
1031
+ focusGrabber.on( 'focus', function()
1032
+ {
1033
+ editor.focus();
1034
+ } );
1035
+ } );
1036
+ editor.on( 'destroy', function()
1037
+ {
1038
+ CKEDITOR.tools.removeFunction( contentDomReadyHandler );
1039
+ focusGrabber.clearCustomData();
1040
+ } );
1041
+ }
1042
+
1043
+ // Disable form elements editing mode provided by some browers. (#5746)
1044
+ editor.on( 'insertElement', function ( evt )
1045
+ {
1046
+ var element = evt.data;
1047
+ if ( element.type == CKEDITOR.NODE_ELEMENT
1048
+ && ( element.is( 'input' ) || element.is( 'textarea' ) ) )
1049
+ {
1050
+ if ( !element.isReadOnly() )
1051
+ {
1052
+ element.setAttribute( 'contentEditable', false );
1053
+ // We should flag that the element was locked by our code so
1054
+ // it'll be editable by the editor functions (#6046).
1055
+ element.setCustomData( '_cke_notReadOnly', 1 );
1056
+ }
1057
+ }
1058
+ });
1059
+
1060
+ }
1061
+ });
1062
+
1063
+ // Fixing Firefox 'Back-Forward Cache' break design mode. (#4514)
1064
+ if ( CKEDITOR.env.gecko )
1065
+ {
1066
+ (function()
1067
+ {
1068
+ var body = document.body;
1069
+
1070
+ if ( !body )
1071
+ window.addEventListener( 'load', arguments.callee, false );
1072
+ else
1073
+ {
1074
+ var currentHandler = body.getAttribute( 'onpageshow' );
1075
+ body.setAttribute( 'onpageshow', ( currentHandler ? currentHandler + ';' : '') +
1076
+ 'event.persisted && (function(){' +
1077
+ 'var allInstances = CKEDITOR.instances, editor, doc;' +
1078
+ 'for ( var i in allInstances )' +
1079
+ '{' +
1080
+ ' editor = allInstances[ i ];' +
1081
+ ' doc = editor.document;' +
1082
+ ' if ( doc )' +
1083
+ ' {' +
1084
+ ' doc.$.designMode = "off";' +
1085
+ ' doc.$.designMode = "on";' +
1086
+ ' }' +
1087
+ '}' +
1088
+ '})();' );
1089
+ }
1090
+ } )();
1091
+
1092
+ }
1093
+ })();
1094
+
1095
+ /**
1096
+ * Disables the ability of resize objects (image and tables) in the editing
1097
+ * area.
1098
+ * @type Boolean
1099
+ * @default false
1100
+ * @example
1101
+ * config.disableObjectResizing = true;
1102
+ */
1103
+ CKEDITOR.config.disableObjectResizing = false;
1104
+
1105
+ /**
1106
+ * Disables the "table tools" offered natively by the browser (currently
1107
+ * Firefox only) to make quick table editing operations, like adding or
1108
+ * deleting rows and columns.
1109
+ * @type Boolean
1110
+ * @default true
1111
+ * @example
1112
+ * config.disableNativeTableHandles = false;
1113
+ */
1114
+ CKEDITOR.config.disableNativeTableHandles = true;
1115
+
1116
+ /**
1117
+ * Disables the built-in spell checker while typing natively available in the
1118
+ * browser (currently Firefox and Safari only).<br /><br />
1119
+ *
1120
+ * Even if word suggestions will not appear in the CKEditor context menu, this
1121
+ * feature is useful to help quickly identifying misspelled words.<br /><br />
1122
+ *
1123
+ * This setting is currently compatible with Firefox only due to limitations in
1124
+ * other browsers.
1125
+ * @type Boolean
1126
+ * @default true
1127
+ * @example
1128
+ * config.disableNativeSpellChecker = false;
1129
+ */
1130
+ CKEDITOR.config.disableNativeSpellChecker = true;
1131
+
1132
+ /**
1133
+ * Whether the editor must output an empty value ("") if it's contents is made
1134
+ * by an empty paragraph only.
1135
+ * @type Boolean
1136
+ * @default true
1137
+ * @example
1138
+ * config.ignoreEmptyParagraph = false;
1139
+ */
1140
+ CKEDITOR.config.ignoreEmptyParagraph = true;
1141
+
1142
+ /**
1143
+ * Fired when data is loaded and ready for retrieval in an editor instance.
1144
+ * @name CKEDITOR.editor#dataReady
1145
+ * @event
1146
+ */