inline_forms 0.9.17 → 0.9.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (712) hide show
  1. data/VERSION +1 -1
  2. data/app/helpers/form_elements/text_area.rb +4 -1
  3. data/inline_forms.gemspec +709 -2
  4. data/lib/otherstuff/Gemfile +58 -0
  5. data/lib/otherstuff/add_roles.sql +54 -0
  6. data/lib/otherstuff/database.yml +32 -0
  7. data/lib/otherstuff/diffie +2 -0
  8. data/lib/otherstuff/mk-ice-ts +26 -0
  9. data/lib/otherstuff/mk-new-app +24 -0
  10. data/lib/otherstuff/mkrole +7 -0
  11. data/lib/otherstuff/roles_users.sql +40 -0
  12. data/public/images/glass_plate.gif +0 -0
  13. data/public/images/ui-bg_diagonals-medium_20_d34d17_40x40.png +0 -0
  14. data/public/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  15. data/public/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  16. data/public/images/ui-bg_gloss-wave_45_817865_500x100.png +0 -0
  17. data/public/images/ui-bg_gloss-wave_60_fece2f_500x100.png +0 -0
  18. data/public/images/ui-bg_gloss-wave_70_ffdd57_500x100.png +0 -0
  19. data/public/images/ui-bg_gloss-wave_90_fff9e5_500x100.png +0 -0
  20. data/public/images/ui-bg_highlight-soft_100_feeebd_1x100.png +0 -0
  21. data/public/images/ui-bg_inset-soft_30_ffffff_1x100.png +0 -0
  22. data/public/images/ui-icons_3d3d3d_256x240.png +0 -0
  23. data/public/images/ui-icons_bd7b00_256x240.png +0 -0
  24. data/public/images/ui-icons_d19405_256x240.png +0 -0
  25. data/public/images/ui-icons_eb990f_256x240.png +0 -0
  26. data/public/images/ui-icons_ed9f26_256x240.png +0 -0
  27. data/public/images/ui-icons_fadc7a_256x240.png +0 -0
  28. data/public/images/ui-icons_ffe180_256x240.png +0 -0
  29. data/public/javascripts/application.js +2 -0
  30. data/public/javascripts/ckeditor/.htaccess +24 -0
  31. data/public/javascripts/ckeditor/CHANGES.html +1295 -0
  32. data/public/javascripts/ckeditor/INSTALL.html +92 -0
  33. data/public/javascripts/ckeditor/LICENSE.html +1334 -0
  34. data/public/javascripts/ckeditor/_samples/adobeair/application.xml +32 -0
  35. data/public/javascripts/ckeditor/_samples/adobeair/run.bat +9 -0
  36. data/public/javascripts/ckeditor/_samples/adobeair/run.sh +8 -0
  37. data/public/javascripts/ckeditor/_samples/adobeair/sample.html +45 -0
  38. data/public/javascripts/ckeditor/_samples/ajax.html +98 -0
  39. data/public/javascripts/ckeditor/_samples/api.html +192 -0
  40. data/public/javascripts/ckeditor/_samples/api_dialog.html +198 -0
  41. data/public/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  42. data/public/javascripts/ckeditor/_samples/asp/index.html +103 -0
  43. data/public/javascripts/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  44. data/public/javascripts/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  45. data/public/javascripts/ckeditor/_samples/assets/output_xhtml.css +204 -0
  46. data/public/javascripts/ckeditor/_samples/assets/parsesample.css +70 -0
  47. data/public/javascripts/ckeditor/_samples/assets/swfobject.js +18 -0
  48. data/public/javascripts/ckeditor/_samples/autogrow.html +103 -0
  49. data/public/javascripts/ckeditor/_samples/bbcode.html +136 -0
  50. data/public/javascripts/ckeditor/_samples/devtools.html +94 -0
  51. data/public/javascripts/ckeditor/_samples/divreplace.html +154 -0
  52. data/public/javascripts/ckeditor/_samples/enterkey.html +115 -0
  53. data/public/javascripts/ckeditor/_samples/fullpage.html +82 -0
  54. data/public/javascripts/ckeditor/_samples/index.html +116 -0
  55. data/public/javascripts/ckeditor/_samples/jqueryadapter.html +99 -0
  56. data/public/javascripts/ckeditor/_samples/output_for_flash.html +275 -0
  57. data/public/javascripts/ckeditor/_samples/output_html.html +285 -0
  58. data/public/javascripts/ckeditor/_samples/output_xhtml.html +181 -0
  59. data/public/javascripts/ckeditor/_samples/php/index.html +47 -0
  60. data/public/javascripts/ckeditor/_samples/placeholder.html +81 -0
  61. data/public/javascripts/ckeditor/_samples/readonly.html +91 -0
  62. data/public/javascripts/ckeditor/_samples/replacebyclass.html +64 -0
  63. data/public/javascripts/ckeditor/_samples/replacebycode.html +97 -0
  64. data/public/javascripts/ckeditor/_samples/sample.css +163 -0
  65. data/public/javascripts/ckeditor/_samples/sample.js +65 -0
  66. data/public/javascripts/ckeditor/_samples/sharedspaces.html +153 -0
  67. data/public/javascripts/ckeditor/_samples/skins.html +110 -0
  68. data/public/javascripts/ckeditor/_samples/stylesheetparser.html +93 -0
  69. data/public/javascripts/ckeditor/_samples/tableresize.html +115 -0
  70. data/public/javascripts/ckeditor/_samples/ui_color.html +129 -0
  71. data/public/javascripts/ckeditor/_samples/ui_languages.html +134 -0
  72. data/public/javascripts/ckeditor/_source/adapters/jquery.js +306 -0
  73. data/public/javascripts/ckeditor/_source/core/_bootstrap.js +87 -0
  74. data/public/javascripts/ckeditor/_source/core/ckeditor.js +141 -0
  75. data/public/javascripts/ckeditor/_source/core/ckeditor_base.js +227 -0
  76. data/public/javascripts/ckeditor/_source/core/ckeditor_basic.js +238 -0
  77. data/public/javascripts/ckeditor/_source/core/command.js +209 -0
  78. data/public/javascripts/ckeditor/_source/core/commanddefinition.js +129 -0
  79. data/public/javascripts/ckeditor/_source/core/config.js +431 -0
  80. data/public/javascripts/ckeditor/_source/core/dataprocessor.js +65 -0
  81. data/public/javascripts/ckeditor/_source/core/dom.js +20 -0
  82. data/public/javascripts/ckeditor/_source/core/dom/comment.js +32 -0
  83. data/public/javascripts/ckeditor/_source/core/dom/document.js +251 -0
  84. data/public/javascripts/ckeditor/_source/core/dom/documentfragment.js +49 -0
  85. data/public/javascripts/ckeditor/_source/core/dom/domobject.js +258 -0
  86. data/public/javascripts/ckeditor/_source/core/dom/element.js +1663 -0
  87. data/public/javascripts/ckeditor/_source/core/dom/elementpath.js +119 -0
  88. data/public/javascripts/ckeditor/_source/core/dom/event.js +142 -0
  89. data/public/javascripts/ckeditor/_source/core/dom/node.js +690 -0
  90. data/public/javascripts/ckeditor/_source/core/dom/nodelist.js +26 -0
  91. data/public/javascripts/ckeditor/_source/core/dom/range.js +2032 -0
  92. data/public/javascripts/ckeditor/_source/core/dom/rangelist.js +213 -0
  93. data/public/javascripts/ckeditor/_source/core/dom/text.js +128 -0
  94. data/public/javascripts/ckeditor/_source/core/dom/walker.js +462 -0
  95. data/public/javascripts/ckeditor/_source/core/dom/window.js +96 -0
  96. data/public/javascripts/ckeditor/_source/core/dtd.js +237 -0
  97. data/public/javascripts/ckeditor/_source/core/editor.js +1041 -0
  98. data/public/javascripts/ckeditor/_source/core/editor_basic.js +186 -0
  99. data/public/javascripts/ckeditor/_source/core/env.js +282 -0
  100. data/public/javascripts/ckeditor/_source/core/event.js +342 -0
  101. data/public/javascripts/ckeditor/_source/core/eventInfo.js +120 -0
  102. data/public/javascripts/ckeditor/_source/core/focusmanager.js +152 -0
  103. data/public/javascripts/ckeditor/_source/core/htmlparser.js +224 -0
  104. data/public/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  105. data/public/javascripts/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  106. data/public/javascripts/ckeditor/_source/core/htmlparser/comment.js +60 -0
  107. data/public/javascripts/ckeditor/_source/core/htmlparser/element.js +249 -0
  108. data/public/javascripts/ckeditor/_source/core/htmlparser/filter.js +288 -0
  109. data/public/javascripts/ckeditor/_source/core/htmlparser/fragment.js +492 -0
  110. data/public/javascripts/ckeditor/_source/core/htmlparser/text.js +55 -0
  111. data/public/javascripts/ckeditor/_source/core/lang.js +157 -0
  112. data/public/javascripts/ckeditor/_source/core/loader.js +240 -0
  113. data/public/javascripts/ckeditor/_source/core/plugindefinition.js +83 -0
  114. data/public/javascripts/ckeditor/_source/core/plugins.js +103 -0
  115. data/public/javascripts/ckeditor/_source/core/resourcemanager.js +238 -0
  116. data/public/javascripts/ckeditor/_source/core/scriptloader.js +180 -0
  117. data/public/javascripts/ckeditor/_source/core/skins.js +184 -0
  118. data/public/javascripts/ckeditor/_source/core/themes.js +19 -0
  119. data/public/javascripts/ckeditor/_source/core/tools.js +734 -0
  120. data/public/javascripts/ckeditor/_source/core/ui.js +128 -0
  121. data/public/javascripts/ckeditor/_source/lang/_languages.js +84 -0
  122. data/public/javascripts/ckeditor/_source/lang/_translationstatus.txt +61 -0
  123. data/public/javascripts/ckeditor/_source/lang/af.js +810 -0
  124. data/public/javascripts/ckeditor/_source/lang/ar.js +810 -0
  125. data/public/javascripts/ckeditor/_source/lang/bg.js +810 -0
  126. data/public/javascripts/ckeditor/_source/lang/bn.js +810 -0
  127. data/public/javascripts/ckeditor/_source/lang/bs.js +810 -0
  128. data/public/javascripts/ckeditor/_source/lang/ca.js +810 -0
  129. data/public/javascripts/ckeditor/_source/lang/cs.js +810 -0
  130. data/public/javascripts/ckeditor/_source/lang/cy.js +810 -0
  131. data/public/javascripts/ckeditor/_source/lang/da.js +810 -0
  132. data/public/javascripts/ckeditor/_source/lang/de.js +810 -0
  133. data/public/javascripts/ckeditor/_source/lang/el.js +810 -0
  134. data/public/javascripts/ckeditor/_source/lang/en-au.js +810 -0
  135. data/public/javascripts/ckeditor/_source/lang/en-ca.js +810 -0
  136. data/public/javascripts/ckeditor/_source/lang/en-gb.js +810 -0
  137. data/public/javascripts/ckeditor/_source/lang/en.js +810 -0
  138. data/public/javascripts/ckeditor/_source/lang/eo.js +810 -0
  139. data/public/javascripts/ckeditor/_source/lang/es.js +810 -0
  140. data/public/javascripts/ckeditor/_source/lang/et.js +810 -0
  141. data/public/javascripts/ckeditor/_source/lang/eu.js +810 -0
  142. data/public/javascripts/ckeditor/_source/lang/fa.js +810 -0
  143. data/public/javascripts/ckeditor/_source/lang/fi.js +810 -0
  144. data/public/javascripts/ckeditor/_source/lang/fo.js +810 -0
  145. data/public/javascripts/ckeditor/_source/lang/fr-ca.js +810 -0
  146. data/public/javascripts/ckeditor/_source/lang/fr.js +810 -0
  147. data/public/javascripts/ckeditor/_source/lang/gl.js +810 -0
  148. data/public/javascripts/ckeditor/_source/lang/gu.js +810 -0
  149. data/public/javascripts/ckeditor/_source/lang/he.js +810 -0
  150. data/public/javascripts/ckeditor/_source/lang/hi.js +810 -0
  151. data/public/javascripts/ckeditor/_source/lang/hr.js +810 -0
  152. data/public/javascripts/ckeditor/_source/lang/hu.js +810 -0
  153. data/public/javascripts/ckeditor/_source/lang/is.js +810 -0
  154. data/public/javascripts/ckeditor/_source/lang/it.js +810 -0
  155. data/public/javascripts/ckeditor/_source/lang/ja.js +810 -0
  156. data/public/javascripts/ckeditor/_source/lang/ka.js +810 -0
  157. data/public/javascripts/ckeditor/_source/lang/km.js +810 -0
  158. data/public/javascripts/ckeditor/_source/lang/ko.js +810 -0
  159. data/public/javascripts/ckeditor/_source/lang/lt.js +810 -0
  160. data/public/javascripts/ckeditor/_source/lang/lv.js +810 -0
  161. data/public/javascripts/ckeditor/_source/lang/mn.js +810 -0
  162. data/public/javascripts/ckeditor/_source/lang/ms.js +810 -0
  163. data/public/javascripts/ckeditor/_source/lang/nb.js +810 -0
  164. data/public/javascripts/ckeditor/_source/lang/nl.js +810 -0
  165. data/public/javascripts/ckeditor/_source/lang/no.js +810 -0
  166. data/public/javascripts/ckeditor/_source/lang/pl.js +810 -0
  167. data/public/javascripts/ckeditor/_source/lang/pt-br.js +809 -0
  168. data/public/javascripts/ckeditor/_source/lang/pt.js +810 -0
  169. data/public/javascripts/ckeditor/_source/lang/ro.js +810 -0
  170. data/public/javascripts/ckeditor/_source/lang/ru.js +810 -0
  171. data/public/javascripts/ckeditor/_source/lang/sk.js +810 -0
  172. data/public/javascripts/ckeditor/_source/lang/sl.js +810 -0
  173. data/public/javascripts/ckeditor/_source/lang/sr-latn.js +810 -0
  174. data/public/javascripts/ckeditor/_source/lang/sr.js +810 -0
  175. data/public/javascripts/ckeditor/_source/lang/sv.js +809 -0
  176. data/public/javascripts/ckeditor/_source/lang/th.js +810 -0
  177. data/public/javascripts/ckeditor/_source/lang/tr.js +809 -0
  178. data/public/javascripts/ckeditor/_source/lang/uk.js +810 -0
  179. data/public/javascripts/ckeditor/_source/lang/vi.js +810 -0
  180. data/public/javascripts/ckeditor/_source/lang/zh-cn.js +810 -0
  181. data/public/javascripts/ckeditor/_source/lang/zh.js +810 -0
  182. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
  183. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  184. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  185. data/public/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
  186. data/public/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
  187. data/public/javascripts/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  188. data/public/javascripts/ckeditor/_source/plugins/about/plugin.js +24 -0
  189. data/public/javascripts/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
  190. data/public/javascripts/ckeditor/_source/plugins/ajax/plugin.js +152 -0
  191. data/public/javascripts/ckeditor/_source/plugins/attachment/dialogs/attachment.js +384 -0
  192. data/public/javascripts/ckeditor/_source/plugins/attachment/images/attachment.png +0 -0
  193. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/en.js +10 -0
  194. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/ru.js +10 -0
  195. data/public/javascripts/ckeditor/_source/plugins/attachment/lang/uk.js +10 -0
  196. data/public/javascripts/ckeditor/_source/plugins/attachment/plugin.js +44 -0
  197. data/public/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +88 -0
  198. data/public/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +101 -0
  199. data/public/javascripts/ckeditor/_source/plugins/bbcode/plugin.js +924 -0
  200. data/public/javascripts/ckeditor/_source/plugins/bidi/plugin.js +331 -0
  201. data/public/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
  202. data/public/javascripts/ckeditor/_source/plugins/button/plugin.js +285 -0
  203. data/public/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
  204. data/public/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +446 -0
  205. data/public/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +295 -0
  206. data/public/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
  207. data/public/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
  208. data/public/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +177 -0
  209. data/public/javascripts/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
  210. data/public/javascripts/ckeditor/_source/plugins/devtools/plugin.js +173 -0
  211. data/public/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +1099 -0
  212. data/public/javascripts/ckeditor/_source/plugins/dialog/plugin.js +3235 -0
  213. data/public/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +205 -0
  214. data/public/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +1537 -0
  215. data/public/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  216. data/public/javascripts/ckeditor/_source/plugins/div/plugin.js +121 -0
  217. data/public/javascripts/ckeditor/_source/plugins/docprops/dialogs/docprops.js +686 -0
  218. data/public/javascripts/ckeditor/_source/plugins/docprops/plugin.js +22 -0
  219. data/public/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
  220. data/public/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +269 -0
  221. data/public/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
  222. data/public/javascripts/ckeditor/_source/plugins/embed/dialogs/embed.js +65 -0
  223. data/public/javascripts/ckeditor/_source/plugins/embed/images/embed.png +0 -0
  224. data/public/javascripts/ckeditor/_source/plugins/embed/lang/en.js +9 -0
  225. data/public/javascripts/ckeditor/_source/plugins/embed/lang/ru.js +9 -0
  226. data/public/javascripts/ckeditor/_source/plugins/embed/lang/uk.js +9 -0
  227. data/public/javascripts/ckeditor/_source/plugins/embed/plugin.js +43 -0
  228. data/public/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +399 -0
  229. data/public/javascripts/ckeditor/_source/plugins/entities/plugin.js +250 -0
  230. data/public/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +126 -0
  231. data/public/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +524 -0
  232. data/public/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +895 -0
  233. data/public/javascripts/ckeditor/_source/plugins/find/plugin.js +47 -0
  234. data/public/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +698 -0
  235. data/public/javascripts/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  236. data/public/javascripts/ckeditor/_source/plugins/flash/plugin.js +168 -0
  237. data/public/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +405 -0
  238. data/public/javascripts/ckeditor/_source/plugins/font/plugin.js +234 -0
  239. data/public/javascripts/ckeditor/_source/plugins/format/plugin.js +197 -0
  240. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
  241. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  242. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  243. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
  244. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  245. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +562 -0
  246. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  247. data/public/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  248. data/public/javascripts/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  249. data/public/javascripts/ckeditor/_source/plugins/forms/plugin.js +288 -0
  250. data/public/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  251. data/public/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +595 -0
  252. data/public/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  253. data/public/javascripts/ckeditor/_source/plugins/iframe/dialogs/iframe.js +257 -0
  254. data/public/javascripts/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
  255. data/public/javascripts/ckeditor/_source/plugins/iframe/plugin.js +106 -0
  256. data/public/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
  257. data/public/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +1403 -0
  258. data/public/javascripts/ckeditor/_source/plugins/image/plugin.js +81 -0
  259. data/public/javascripts/ckeditor/_source/plugins/indent/plugin.js +461 -0
  260. data/public/javascripts/ckeditor/_source/plugins/justify/plugin.js +253 -0
  261. data/public/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  262. data/public/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
  263. data/public/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +1400 -0
  264. data/public/javascripts/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  265. data/public/javascripts/ckeditor/_source/plugins/link/plugin.js +336 -0
  266. data/public/javascripts/ckeditor/_source/plugins/list/plugin.js +727 -0
  267. data/public/javascripts/ckeditor/_source/plugins/listblock/plugin.js +257 -0
  268. data/public/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +204 -0
  269. data/public/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  270. data/public/javascripts/ckeditor/_source/plugins/maximize/plugin.js +352 -0
  271. data/public/javascripts/ckeditor/_source/plugins/menu/plugin.js +505 -0
  272. data/public/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
  273. data/public/javascripts/ckeditor/_source/plugins/newpage/plugin.js +54 -0
  274. data/public/javascripts/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  275. data/public/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
  276. data/public/javascripts/ckeditor/_source/plugins/panel/plugin.js +402 -0
  277. data/public/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +146 -0
  278. data/public/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1376 -0
  279. data/public/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
  280. data/public/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
  281. data/public/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
  282. data/public/javascripts/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
  283. data/public/javascripts/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
  284. data/public/javascripts/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
  285. data/public/javascripts/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
  286. data/public/javascripts/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
  287. data/public/javascripts/ckeditor/_source/plugins/popup/plugin.js +64 -0
  288. data/public/javascripts/ckeditor/_source/plugins/preview/plugin.js +109 -0
  289. data/public/javascripts/ckeditor/_source/plugins/print/plugin.js +42 -0
  290. data/public/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
  291. data/public/javascripts/ckeditor/_source/plugins/resize/plugin.js +168 -0
  292. data/public/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +378 -0
  293. data/public/javascripts/ckeditor/_source/plugins/save/plugin.js +56 -0
  294. data/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
  295. data/public/javascripts/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  296. data/public/javascripts/ckeditor/_source/plugins/scayt/plugin.js +964 -0
  297. data/public/javascripts/ckeditor/_source/plugins/selection/plugin.js +1563 -0
  298. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  299. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  300. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  301. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  302. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  303. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  304. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  305. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  306. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  307. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  308. data/public/javascripts/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  309. data/public/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
  310. data/public/javascripts/ckeditor/_source/plugins/showborders/plugin.js +207 -0
  311. data/public/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
  312. data/public/javascripts/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  313. data/public/javascripts/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  314. data/public/javascripts/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  315. data/public/javascripts/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  316. data/public/javascripts/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  317. data/public/javascripts/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  318. data/public/javascripts/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  319. data/public/javascripts/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  320. data/public/javascripts/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  321. data/public/javascripts/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  322. data/public/javascripts/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  323. data/public/javascripts/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  324. data/public/javascripts/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  325. data/public/javascripts/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  326. data/public/javascripts/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  327. data/public/javascripts/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  328. data/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  329. data/public/javascripts/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  330. data/public/javascripts/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  331. data/public/javascripts/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  332. data/public/javascripts/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  333. data/public/javascripts/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  334. data/public/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
  335. data/public/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
  336. data/public/javascripts/ckeditor/_source/plugins/specialchar/lang/en.js +89 -0
  337. data/public/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
  338. data/public/javascripts/ckeditor/_source/plugins/styles/plugin.js +1678 -0
  339. data/public/javascripts/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  340. data/public/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +219 -0
  341. data/public/javascripts/ckeditor/_source/plugins/stylesheetparser/plugin.js +143 -0
  342. data/public/javascripts/ckeditor/_source/plugins/tab/plugin.js +367 -0
  343. data/public/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +672 -0
  344. data/public/javascripts/ckeditor/_source/plugins/table/plugin.js +78 -0
  345. data/public/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +450 -0
  346. data/public/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
  347. data/public/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +1191 -0
  348. data/public/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
  349. data/public/javascripts/ckeditor/_source/plugins/templates/plugin.js +99 -0
  350. data/public/javascripts/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  351. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  352. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  353. data/public/javascripts/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  354. data/public/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
  355. data/public/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  356. data/public/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  357. data/public/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  358. data/public/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  359. data/public/javascripts/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  360. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  361. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  362. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  363. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  364. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  365. data/public/javascripts/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  366. data/public/javascripts/ckeditor/_source/plugins/undo/plugin.js +580 -0
  367. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  368. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  369. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  370. data/public/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
  371. data/public/javascripts/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  372. data/public/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +1351 -0
  373. data/public/javascripts/ckeditor/_source/plugins/xml/plugin.js +170 -0
  374. data/public/javascripts/ckeditor/_source/skins/kama/dialog.css +920 -0
  375. data/public/javascripts/ckeditor/_source/skins/kama/editor.css +25 -0
  376. data/public/javascripts/ckeditor/_source/skins/kama/elementspath.css +73 -0
  377. data/public/javascripts/ckeditor/_source/skins/kama/icons.css +366 -0
  378. data/public/javascripts/ckeditor/_source/skins/kama/icons.png +0 -0
  379. data/public/javascripts/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  380. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  381. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  382. data/public/javascripts/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  383. data/public/javascripts/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  384. data/public/javascripts/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  385. data/public/javascripts/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  386. data/public/javascripts/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  387. data/public/javascripts/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  388. data/public/javascripts/ckeditor/_source/skins/kama/mainui.css +203 -0
  389. data/public/javascripts/ckeditor/_source/skins/kama/menu.css +232 -0
  390. data/public/javascripts/ckeditor/_source/skins/kama/panel.css +217 -0
  391. data/public/javascripts/ckeditor/_source/skins/kama/presets.css +49 -0
  392. data/public/javascripts/ckeditor/_source/skins/kama/reset.css +84 -0
  393. data/public/javascripts/ckeditor/_source/skins/kama/richcombo.css +287 -0
  394. data/public/javascripts/ckeditor/_source/skins/kama/skin.js +236 -0
  395. data/public/javascripts/ckeditor/_source/skins/kama/templates.css +88 -0
  396. data/public/javascripts/ckeditor/_source/skins/kama/toolbar.css +407 -0
  397. data/public/javascripts/ckeditor/_source/skins/office2003/dialog.css +826 -0
  398. data/public/javascripts/ckeditor/_source/skins/office2003/editor.css +25 -0
  399. data/public/javascripts/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  400. data/public/javascripts/ckeditor/_source/skins/office2003/icons.css +363 -0
  401. data/public/javascripts/ckeditor/_source/skins/office2003/icons.png +0 -0
  402. data/public/javascripts/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  403. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  404. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  405. data/public/javascripts/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  406. data/public/javascripts/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  407. data/public/javascripts/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  408. data/public/javascripts/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  409. data/public/javascripts/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  410. data/public/javascripts/ckeditor/_source/skins/office2003/mainui.css +153 -0
  411. data/public/javascripts/ckeditor/_source/skins/office2003/menu.css +229 -0
  412. data/public/javascripts/ckeditor/_source/skins/office2003/panel.css +212 -0
  413. data/public/javascripts/ckeditor/_source/skins/office2003/presets.css +49 -0
  414. data/public/javascripts/ckeditor/_source/skins/office2003/reset.css +84 -0
  415. data/public/javascripts/ckeditor/_source/skins/office2003/richcombo.css +309 -0
  416. data/public/javascripts/ckeditor/_source/skins/office2003/skin.js +74 -0
  417. data/public/javascripts/ckeditor/_source/skins/office2003/templates.css +87 -0
  418. data/public/javascripts/ckeditor/_source/skins/office2003/toolbar.css +522 -0
  419. data/public/javascripts/ckeditor/_source/skins/v2/dialog.css +842 -0
  420. data/public/javascripts/ckeditor/_source/skins/v2/editor.css +25 -0
  421. data/public/javascripts/ckeditor/_source/skins/v2/elementspath.css +74 -0
  422. data/public/javascripts/ckeditor/_source/skins/v2/icons.css +363 -0
  423. data/public/javascripts/ckeditor/_source/skins/v2/icons.png +0 -0
  424. data/public/javascripts/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  425. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  426. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  427. data/public/javascripts/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  428. data/public/javascripts/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  429. data/public/javascripts/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  430. data/public/javascripts/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  431. data/public/javascripts/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  432. data/public/javascripts/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  433. data/public/javascripts/ckeditor/_source/skins/v2/mainui.css +162 -0
  434. data/public/javascripts/ckeditor/_source/skins/v2/menu.css +232 -0
  435. data/public/javascripts/ckeditor/_source/skins/v2/panel.css +212 -0
  436. data/public/javascripts/ckeditor/_source/skins/v2/presets.css +50 -0
  437. data/public/javascripts/ckeditor/_source/skins/v2/reset.css +84 -0
  438. data/public/javascripts/ckeditor/_source/skins/v2/richcombo.css +302 -0
  439. data/public/javascripts/ckeditor/_source/skins/v2/skin.js +70 -0
  440. data/public/javascripts/ckeditor/_source/skins/v2/templates.css +87 -0
  441. data/public/javascripts/ckeditor/_source/skins/v2/toolbar.css +465 -0
  442. data/public/javascripts/ckeditor/_source/themes/default/theme.js +394 -0
  443. data/public/javascripts/ckeditor/adapters/jquery.js +6 -0
  444. data/public/javascripts/ckeditor/ckeditor.js +145 -0
  445. data/public/javascripts/ckeditor/ckeditor.pack +211 -0
  446. data/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
  447. data/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
  448. data/public/javascripts/ckeditor/ckeditor_source.js +25 -0
  449. data/public/javascripts/ckeditor/config.js +28 -0
  450. data/public/javascripts/ckeditor/contents.css +23 -0
  451. data/public/javascripts/ckeditor/css/ckfinder.css +316 -0
  452. data/public/javascripts/ckeditor/css/fck_dialog.css +119 -0
  453. data/public/javascripts/ckeditor/css/fck_editor.css +448 -0
  454. data/public/javascripts/ckeditor/css/swfupload.css +94 -0
  455. data/public/javascripts/ckeditor/images/add.gif +0 -0
  456. data/public/javascripts/ckeditor/images/cancelbutton.gif +0 -0
  457. data/public/javascripts/ckeditor/images/ckfnothumb.gif +0 -0
  458. data/public/javascripts/ckeditor/images/doc.gif +0 -0
  459. data/public/javascripts/ckeditor/images/mp3.gif +0 -0
  460. data/public/javascripts/ckeditor/images/pdf.gif +0 -0
  461. data/public/javascripts/ckeditor/images/rar.gif +0 -0
  462. data/public/javascripts/ckeditor/images/refresh.gif +0 -0
  463. data/public/javascripts/ckeditor/images/select_files.png +0 -0
  464. data/public/javascripts/ckeditor/images/spacer.gif +0 -0
  465. data/public/javascripts/ckeditor/images/swf.gif +0 -0
  466. data/public/javascripts/ckeditor/images/toolbar.start.gif +0 -0
  467. data/public/javascripts/ckeditor/images/xls.gif +0 -0
  468. data/public/javascripts/ckeditor/lang/_languages.js +6 -0
  469. data/public/javascripts/ckeditor/lang/_translationstatus.txt +61 -0
  470. data/public/javascripts/ckeditor/lang/af.js +6 -0
  471. data/public/javascripts/ckeditor/lang/ar.js +6 -0
  472. data/public/javascripts/ckeditor/lang/bg.js +6 -0
  473. data/public/javascripts/ckeditor/lang/bn.js +6 -0
  474. data/public/javascripts/ckeditor/lang/bs.js +6 -0
  475. data/public/javascripts/ckeditor/lang/ca.js +6 -0
  476. data/public/javascripts/ckeditor/lang/cs.js +6 -0
  477. data/public/javascripts/ckeditor/lang/cy.js +6 -0
  478. data/public/javascripts/ckeditor/lang/da.js +6 -0
  479. data/public/javascripts/ckeditor/lang/de.js +6 -0
  480. data/public/javascripts/ckeditor/lang/el.js +6 -0
  481. data/public/javascripts/ckeditor/lang/en-au.js +6 -0
  482. data/public/javascripts/ckeditor/lang/en-ca.js +6 -0
  483. data/public/javascripts/ckeditor/lang/en-gb.js +6 -0
  484. data/public/javascripts/ckeditor/lang/en.js +6 -0
  485. data/public/javascripts/ckeditor/lang/eo.js +6 -0
  486. data/public/javascripts/ckeditor/lang/es.js +6 -0
  487. data/public/javascripts/ckeditor/lang/et.js +6 -0
  488. data/public/javascripts/ckeditor/lang/eu.js +6 -0
  489. data/public/javascripts/ckeditor/lang/fa.js +6 -0
  490. data/public/javascripts/ckeditor/lang/fi.js +6 -0
  491. data/public/javascripts/ckeditor/lang/fo.js +6 -0
  492. data/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
  493. data/public/javascripts/ckeditor/lang/fr.js +6 -0
  494. data/public/javascripts/ckeditor/lang/gl.js +6 -0
  495. data/public/javascripts/ckeditor/lang/gu.js +6 -0
  496. data/public/javascripts/ckeditor/lang/he.js +6 -0
  497. data/public/javascripts/ckeditor/lang/hi.js +6 -0
  498. data/public/javascripts/ckeditor/lang/hr.js +6 -0
  499. data/public/javascripts/ckeditor/lang/hu.js +6 -0
  500. data/public/javascripts/ckeditor/lang/is.js +6 -0
  501. data/public/javascripts/ckeditor/lang/it.js +6 -0
  502. data/public/javascripts/ckeditor/lang/ja.js +6 -0
  503. data/public/javascripts/ckeditor/lang/ka.js +6 -0
  504. data/public/javascripts/ckeditor/lang/km.js +6 -0
  505. data/public/javascripts/ckeditor/lang/ko.js +6 -0
  506. data/public/javascripts/ckeditor/lang/lt.js +6 -0
  507. data/public/javascripts/ckeditor/lang/lv.js +6 -0
  508. data/public/javascripts/ckeditor/lang/mn.js +6 -0
  509. data/public/javascripts/ckeditor/lang/ms.js +6 -0
  510. data/public/javascripts/ckeditor/lang/nb.js +6 -0
  511. data/public/javascripts/ckeditor/lang/nl.js +6 -0
  512. data/public/javascripts/ckeditor/lang/no.js +6 -0
  513. data/public/javascripts/ckeditor/lang/pl.js +6 -0
  514. data/public/javascripts/ckeditor/lang/pt-br.js +6 -0
  515. data/public/javascripts/ckeditor/lang/pt.js +6 -0
  516. data/public/javascripts/ckeditor/lang/ro.js +6 -0
  517. data/public/javascripts/ckeditor/lang/ru.js +6 -0
  518. data/public/javascripts/ckeditor/lang/sk.js +6 -0
  519. data/public/javascripts/ckeditor/lang/sl.js +6 -0
  520. data/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
  521. data/public/javascripts/ckeditor/lang/sr.js +6 -0
  522. data/public/javascripts/ckeditor/lang/sv.js +6 -0
  523. data/public/javascripts/ckeditor/lang/th.js +6 -0
  524. data/public/javascripts/ckeditor/lang/tr.js +6 -0
  525. data/public/javascripts/ckeditor/lang/uk.js +6 -0
  526. data/public/javascripts/ckeditor/lang/vi.js +6 -0
  527. data/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
  528. data/public/javascripts/ckeditor/lang/zh.js +6 -0
  529. data/public/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  530. data/public/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  531. data/public/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  532. data/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
  533. data/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  534. data/public/javascripts/ckeditor/plugins/adobeair/plugin.js +6 -0
  535. data/public/javascripts/ckeditor/plugins/ajax/plugin.js +6 -0
  536. data/public/javascripts/ckeditor/plugins/attachment/dialogs/attachment.js +1 -0
  537. data/public/javascripts/ckeditor/plugins/attachment/images/attachment.png +0 -0
  538. data/public/javascripts/ckeditor/plugins/attachment/lang/en.js +10 -0
  539. data/public/javascripts/ckeditor/plugins/attachment/lang/ru.js +10 -0
  540. data/public/javascripts/ckeditor/plugins/attachment/lang/uk.js +10 -0
  541. data/public/javascripts/ckeditor/plugins/attachment/plugin.js +1 -0
  542. data/public/javascripts/ckeditor/plugins/autogrow/plugin.js +6 -0
  543. data/public/javascripts/ckeditor/plugins/bbcode/plugin.js +9 -0
  544. data/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  545. data/public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  546. data/public/javascripts/ckeditor/plugins/devtools/lang/en.js +6 -0
  547. data/public/javascripts/ckeditor/plugins/devtools/plugin.js +6 -0
  548. data/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  549. data/public/javascripts/ckeditor/plugins/div/dialogs/div.js +8 -0
  550. data/public/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
  551. data/public/javascripts/ckeditor/plugins/docprops/plugin.js +6 -0
  552. data/public/javascripts/ckeditor/plugins/embed/dialogs/embed.js +1 -0
  553. data/public/javascripts/ckeditor/plugins/embed/images/embed.png +0 -0
  554. data/public/javascripts/ckeditor/plugins/embed/lang/en.js +9 -0
  555. data/public/javascripts/ckeditor/plugins/embed/lang/ru.js +9 -0
  556. data/public/javascripts/ckeditor/plugins/embed/lang/uk.js +9 -0
  557. data/public/javascripts/ckeditor/plugins/embed/plugin.js +1 -0
  558. data/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
  559. data/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  560. data/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
  561. data/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
  562. data/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  563. data/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
  564. data/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  565. data/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  566. data/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
  567. data/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  568. data/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  569. data/public/javascripts/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  570. data/public/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
  571. data/public/javascripts/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  572. data/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
  573. data/public/javascripts/ckeditor/plugins/image/dialogs/image.js +13 -0
  574. data/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  575. data/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
  576. data/public/javascripts/ckeditor/plugins/link/images/anchor.gif +0 -0
  577. data/public/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +6 -0
  578. data/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  579. data/public/javascripts/ckeditor/plugins/pastefromword/filter/default.js +11 -0
  580. data/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  581. data/public/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
  582. data/public/javascripts/ckeditor/plugins/placeholder/lang/en.js +6 -0
  583. data/public/javascripts/ckeditor/plugins/placeholder/lang/he.js +6 -0
  584. data/public/javascripts/ckeditor/plugins/placeholder/placeholder.gif +0 -0
  585. data/public/javascripts/ckeditor/plugins/placeholder/plugin.js +6 -0
  586. data/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  587. data/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  588. data/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  589. data/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  590. data/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  591. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  592. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  593. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  594. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  595. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  596. data/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  597. data/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  598. data/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  599. data/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  600. data/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  601. data/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  602. data/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  603. data/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  604. data/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  605. data/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  606. data/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  607. data/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  608. data/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
  609. data/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  610. data/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  611. data/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  612. data/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  613. data/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  614. data/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  615. data/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  616. data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  617. data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  618. data/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  619. data/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  620. data/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  621. data/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  622. data/public/javascripts/ckeditor/plugins/specialchar/lang/en.js +6 -0
  623. data/public/javascripts/ckeditor/plugins/styles/styles/default.js +6 -0
  624. data/public/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
  625. data/public/javascripts/ckeditor/plugins/table/dialogs/table.js +9 -0
  626. data/public/javascripts/ckeditor/plugins/tableresize/plugin.js +7 -0
  627. data/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  628. data/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  629. data/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
  630. data/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  631. data/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  632. data/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  633. data/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  634. data/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
  635. data/public/javascripts/ckeditor/plugins/uicolor/lang/he.js +6 -0
  636. data/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
  637. data/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  638. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  639. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  640. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  641. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  642. data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  643. data/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  644. data/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  645. data/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  646. data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  647. data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  648. data/public/javascripts/ckeditor/plugins/xml/plugin.js +6 -0
  649. data/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
  650. data/public/javascripts/ckeditor/skins/kama/editor.css +13 -0
  651. data/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
  652. data/public/javascripts/ckeditor/skins/kama/icons_rtl.png +0 -0
  653. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  654. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  655. data/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  656. data/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
  657. data/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
  658. data/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
  659. data/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  660. data/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  661. data/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
  662. data/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
  663. data/public/javascripts/ckeditor/skins/office2003/dialog.css +9 -0
  664. data/public/javascripts/ckeditor/skins/office2003/editor.css +14 -0
  665. data/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
  666. data/public/javascripts/ckeditor/skins/office2003/icons_rtl.png +0 -0
  667. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  668. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  669. data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  670. data/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
  671. data/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
  672. data/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
  673. data/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  674. data/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
  675. data/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
  676. data/public/javascripts/ckeditor/skins/v2/dialog.css +9 -0
  677. data/public/javascripts/ckeditor/skins/v2/editor.css +13 -0
  678. data/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
  679. data/public/javascripts/ckeditor/skins/v2/icons_rtl.png +0 -0
  680. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  681. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  682. data/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  683. data/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
  684. data/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
  685. data/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
  686. data/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  687. data/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  688. data/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
  689. data/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
  690. data/public/javascripts/ckeditor/swfupload/fileprogress.js +266 -0
  691. data/public/javascripts/ckeditor/swfupload/handlers.js +181 -0
  692. data/public/javascripts/ckeditor/swfupload/jquery-1.5.1.min.js +16 -0
  693. data/public/javascripts/ckeditor/swfupload/querystring.js +40 -0
  694. data/public/javascripts/ckeditor/swfupload/rails.js +158 -0
  695. data/public/javascripts/ckeditor/swfupload/swfupload.js +1 -0
  696. data/public/javascripts/ckeditor/swfupload/swfupload.queue.js +1 -0
  697. data/public/javascripts/ckeditor/swfupload/swfupload.swf +0 -0
  698. data/public/javascripts/ckeditor/swfupload/swfupload.swfobject.js +111 -0
  699. data/public/javascripts/ckeditor/themes/default/theme.js +8 -0
  700. data/public/javascripts/jquery-ui.js +11603 -0
  701. data/public/javascripts/jquery-ui.min.js +406 -0
  702. data/public/javascripts/jquery.form.js +899 -0
  703. data/public/javascripts/jquery.js +8936 -0
  704. data/public/javascripts/jquery.min.js +18 -0
  705. data/public/javascripts/jquery.remotipart.js +79 -0
  706. data/public/javascripts/jquery_ujs.js +315 -0
  707. data/public/javascripts/rails.js +175 -0
  708. data/public/javascripts/slider.js +275 -0
  709. data/public/stylesheets/devise.css +94 -0
  710. data/public/stylesheets/inline_forms.css +16 -0
  711. data/public/stylesheets/jquery-ui-sunny.css +578 -0
  712. metadata +711 -4
@@ -0,0 +1,146 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.add( 'panelbutton',
7
+ {
8
+ requires : [ 'button' ],
9
+ beforeInit : function( editor )
10
+ {
11
+ editor.ui.addHandler( CKEDITOR.UI_PANELBUTTON, CKEDITOR.ui.panelButton.handler );
12
+ }
13
+ });
14
+
15
+ /**
16
+ * Button UI element.
17
+ * @constant
18
+ * @example
19
+ */
20
+ CKEDITOR.UI_PANELBUTTON = 'panelbutton';
21
+
22
+ (function()
23
+ {
24
+ var clickFn = function( editor )
25
+ {
26
+ var _ = this._;
27
+
28
+ if ( _.state == CKEDITOR.TRISTATE_DISABLED )
29
+ return;
30
+
31
+ this.createPanel( editor );
32
+
33
+ if ( _.on )
34
+ {
35
+ _.panel.hide();
36
+ return;
37
+ }
38
+
39
+ _.panel.showBlock( this._.id, this.document.getById( this._.id ), 4 );
40
+ };
41
+
42
+
43
+ CKEDITOR.ui.panelButton = CKEDITOR.tools.createClass(
44
+ {
45
+ base : CKEDITOR.ui.button,
46
+
47
+ $ : function( definition )
48
+ {
49
+ // We don't want the panel definition in this object.
50
+ var panelDefinition = definition.panel;
51
+ delete definition.panel;
52
+
53
+ this.base( definition );
54
+
55
+ this.document = ( panelDefinition
56
+ && panelDefinition.parent
57
+ && panelDefinition.parent.getDocument() )
58
+ || CKEDITOR.document;
59
+
60
+ panelDefinition.block =
61
+ {
62
+ attributes : panelDefinition.attributes
63
+ };
64
+
65
+ this.hasArrow = true;
66
+
67
+ this.click = clickFn;
68
+
69
+ this._ =
70
+ {
71
+ panelDefinition : panelDefinition
72
+ };
73
+ },
74
+
75
+ statics :
76
+ {
77
+ handler :
78
+ {
79
+ create : function( definition )
80
+ {
81
+ return new CKEDITOR.ui.panelButton( definition );
82
+ }
83
+ }
84
+ },
85
+
86
+ proto :
87
+ {
88
+ createPanel : function( editor )
89
+ {
90
+ var _ = this._;
91
+
92
+ if ( _.panel )
93
+ return;
94
+
95
+ var panelDefinition = this._.panelDefinition || {},
96
+ panelBlockDefinition = this._.panelDefinition.block,
97
+ panelParentElement = panelDefinition.parent || CKEDITOR.document.getBody(),
98
+ panel = this._.panel = new CKEDITOR.ui.floatPanel( editor, panelParentElement, panelDefinition ),
99
+ block = panel.addBlock( _.id, panelBlockDefinition ),
100
+ me = this;
101
+
102
+ panel.onShow = function()
103
+ {
104
+ if ( me.className )
105
+ this.element.getFirst().addClass( me.className + '_panel' );
106
+
107
+ me.setState( CKEDITOR.TRISTATE_ON );
108
+
109
+ _.on = 1;
110
+
111
+ if ( me.onOpen )
112
+ me.onOpen();
113
+ };
114
+
115
+ panel.onHide = function( preventOnClose )
116
+ {
117
+ if ( me.className )
118
+ this.element.getFirst().removeClass( me.className + '_panel' );
119
+
120
+ me.setState( me.modes && me.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
121
+
122
+ _.on = 0;
123
+
124
+ if ( !preventOnClose && me.onClose )
125
+ me.onClose();
126
+ };
127
+
128
+ panel.onEscape = function()
129
+ {
130
+ panel.hide();
131
+ me.document.getById( _.id ).focus();
132
+ };
133
+
134
+ if ( this.onBlock )
135
+ this.onBlock( panel, block );
136
+
137
+ block.onHide = function()
138
+ {
139
+ _.on = 0;
140
+ me.setState( CKEDITOR.TRISTATE_OFF );
141
+ };
142
+ }
143
+ }
144
+ });
145
+
146
+ })();
@@ -0,0 +1,1376 @@
1
+ /*
2
+ Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ (function()
7
+ {
8
+ var fragmentPrototype = CKEDITOR.htmlParser.fragment.prototype,
9
+ elementPrototype = CKEDITOR.htmlParser.element.prototype;
10
+
11
+ fragmentPrototype.onlyChild = elementPrototype.onlyChild = function()
12
+ {
13
+ var children = this.children,
14
+ count = children.length,
15
+ firstChild = ( count == 1 ) && children[ 0 ];
16
+ return firstChild || null;
17
+ };
18
+
19
+ elementPrototype.removeAnyChildWithName = function( tagName )
20
+ {
21
+ var children = this.children,
22
+ childs = [],
23
+ child;
24
+
25
+ for ( var i = 0; i < children.length; i++ )
26
+ {
27
+ child = children[ i ];
28
+ if ( !child.name )
29
+ continue;
30
+
31
+ if ( child.name == tagName )
32
+ {
33
+ childs.push( child );
34
+ children.splice( i--, 1 );
35
+ }
36
+ childs = childs.concat( child.removeAnyChildWithName( tagName ) );
37
+ }
38
+ return childs;
39
+ };
40
+
41
+ elementPrototype.getAncestor = function( tagNameRegex )
42
+ {
43
+ var parent = this.parent;
44
+ while ( parent && !( parent.name && parent.name.match( tagNameRegex ) ) )
45
+ parent = parent.parent;
46
+ return parent;
47
+ };
48
+
49
+ fragmentPrototype.firstChild = elementPrototype.firstChild = function( evaluator )
50
+ {
51
+ var child;
52
+
53
+ for ( var i = 0 ; i < this.children.length ; i++ )
54
+ {
55
+ child = this.children[ i ];
56
+ if ( evaluator( child ) )
57
+ return child;
58
+ else if ( child.name )
59
+ {
60
+ child = child.firstChild( evaluator );
61
+ if ( child )
62
+ return child;
63
+ }
64
+ }
65
+
66
+ return null;
67
+ };
68
+
69
+ // Adding a (set) of styles to the element's 'style' attributes.
70
+ elementPrototype.addStyle = function( name, value, isPrepend )
71
+ {
72
+ var styleText, addingStyleText = '';
73
+ // name/value pair.
74
+ if ( typeof value == 'string' )
75
+ addingStyleText += name + ':' + value + ';';
76
+ else
77
+ {
78
+ // style literal.
79
+ if ( typeof name == 'object' )
80
+ {
81
+ for ( var style in name )
82
+ {
83
+ if ( name.hasOwnProperty( style ) )
84
+ addingStyleText += style + ':' + name[ style ] + ';';
85
+ }
86
+ }
87
+ // raw style text form.
88
+ else
89
+ addingStyleText += name;
90
+
91
+ isPrepend = value;
92
+ }
93
+
94
+ if ( !this.attributes )
95
+ this.attributes = {};
96
+
97
+ styleText = this.attributes.style || '';
98
+
99
+ styleText = ( isPrepend ?
100
+ [ addingStyleText, styleText ]
101
+ : [ styleText, addingStyleText ] ).join( ';' );
102
+
103
+ this.attributes.style = styleText.replace( /^;|;(?=;)/, '' );
104
+ };
105
+
106
+ /**
107
+ * Return the DTD-valid parent tag names of the specified one.
108
+ * @param tagName
109
+ */
110
+ CKEDITOR.dtd.parentOf = function( tagName )
111
+ {
112
+ var result = {};
113
+ for ( var tag in this )
114
+ {
115
+ if ( tag.indexOf( '$' ) == -1 && this[ tag ][ tagName ] )
116
+ result[ tag ] = 1;
117
+ }
118
+ return result;
119
+ };
120
+
121
+ // 1. move consistent list item styles up to list root.
122
+ // 2. clear out unnecessary list item numbering.
123
+ function postProcessList( list )
124
+ {
125
+ var children = list.children,
126
+ child,
127
+ attrs,
128
+ count = list.children.length,
129
+ match,
130
+ mergeStyle,
131
+ styleTypeRegexp = /list-style-type:(.*?)(?:;|$)/,
132
+ stylesFilter = CKEDITOR.plugins.pastefromword.filters.stylesFilter;
133
+
134
+ attrs = list.attributes;
135
+ if ( styleTypeRegexp.exec( attrs.style ) )
136
+ return;
137
+
138
+ for ( var i = 0; i < count; i++ )
139
+ {
140
+ child = children[ i ];
141
+
142
+ if ( child.attributes.value && Number( child.attributes.value ) == i + 1 )
143
+ delete child.attributes.value;
144
+
145
+ match = styleTypeRegexp.exec( child.attributes.style );
146
+
147
+ if ( match )
148
+ {
149
+ if ( match[ 1 ] == mergeStyle || !mergeStyle )
150
+ mergeStyle = match[ 1 ];
151
+ else
152
+ {
153
+ mergeStyle = null;
154
+ break;
155
+ }
156
+ }
157
+ }
158
+
159
+ if ( mergeStyle )
160
+ {
161
+ for ( i = 0; i < count; i++ )
162
+ {
163
+ attrs = children[ i ].attributes;
164
+ attrs.style && ( attrs.style = stylesFilter( [ [ 'list-style-type'] ] )( attrs.style ) || '' );
165
+ }
166
+
167
+ list.addStyle( 'list-style-type', mergeStyle );
168
+ }
169
+ }
170
+
171
+ var cssLengthRelativeUnit = /^([.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz){1}?/i;
172
+ var emptyMarginRegex = /^(?:\b0[^\s]*\s*){1,4}$/; // e.g. 0px 0pt 0px
173
+ var romanLiternalPattern = '^m{0,4}(cm|cd|d?c{0,3})(xc|xl|l?x{0,3})(ix|iv|v?i{0,3})$',
174
+ lowerRomanLiteralRegex = new RegExp( romanLiternalPattern ),
175
+ upperRomanLiteralRegex = new RegExp( romanLiternalPattern.toUpperCase() );
176
+
177
+ var orderedPatterns = { 'decimal' : /\d+/, 'lower-roman': lowerRomanLiteralRegex, 'upper-roman': upperRomanLiteralRegex, 'lower-alpha' : /^[a-z]+$/, 'upper-alpha': /^[A-Z]+$/ },
178
+ unorderedPatterns = { 'disc' : /[l\u00B7\u2002]/, 'circle' : /[\u006F\u00D8]/,'square' : /[\u006E\u25C6]/},
179
+ listMarkerPatterns = { 'ol' : orderedPatterns, 'ul' : unorderedPatterns },
180
+ romans = [ [1000, 'M'], [900, 'CM'], [500, 'D'], [400, 'CD'], [100, 'C'], [90, 'XC'], [50, 'L'], [40, 'XL'], [10, 'X'], [9, 'IX'], [5, 'V'], [4, 'IV'], [1, 'I'] ],
181
+ alpahbets = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
182
+
183
+ // Convert roman numbering back to decimal.
184
+ function fromRoman( str )
185
+ {
186
+ str = str.toUpperCase();
187
+ var l = romans.length, retVal = 0;
188
+ for ( var i = 0; i < l; ++i )
189
+ {
190
+ for ( var j = romans[i], k = j[1].length; str.substr( 0, k ) == j[1]; str = str.substr( k ) )
191
+ retVal += j[ 0 ];
192
+ }
193
+ return retVal;
194
+ }
195
+
196
+ // Convert alphabet numbering back to decimal.
197
+ function fromAlphabet( str )
198
+ {
199
+ str = str.toUpperCase();
200
+ var l = alpahbets.length, retVal = 1;
201
+ for ( var x = 1; str.length > 0; x *= l )
202
+ {
203
+ retVal += alpahbets.indexOf( str.charAt( str.length - 1 ) ) * x;
204
+ str = str.substr( 0, str.length - 1 );
205
+ }
206
+ return retVal;
207
+ }
208
+
209
+ var listBaseIndent = 0,
210
+ previousListItemMargin = null,
211
+ previousListId;
212
+
213
+ var plugin = ( CKEDITOR.plugins.pastefromword =
214
+ {
215
+ utils :
216
+ {
217
+ // Create a <cke:listbullet> which indicate an list item type.
218
+ createListBulletMarker : function ( bullet, bulletText )
219
+ {
220
+ var marker = new CKEDITOR.htmlParser.element( 'cke:listbullet' );
221
+ marker.attributes = { 'cke:listsymbol' : bullet[ 0 ] };
222
+ marker.add( new CKEDITOR.htmlParser.text( bulletText ) );
223
+ return marker;
224
+ },
225
+
226
+ isListBulletIndicator : function( element )
227
+ {
228
+ var styleText = element.attributes && element.attributes.style;
229
+ if ( /mso-list\s*:\s*Ignore/i.test( styleText ) )
230
+ return true;
231
+ },
232
+
233
+ isContainingOnlySpaces : function( element )
234
+ {
235
+ var text;
236
+ return ( ( text = element.onlyChild() )
237
+ && ( /^(:?\s|&nbsp;)+$/ ).test( text.value ) );
238
+ },
239
+
240
+ resolveList : function( element )
241
+ {
242
+ // <cke:listbullet> indicate a list item.
243
+ var attrs = element.attributes,
244
+ listMarker;
245
+
246
+ if ( ( listMarker = element.removeAnyChildWithName( 'cke:listbullet' ) )
247
+ && listMarker.length
248
+ && ( listMarker = listMarker[ 0 ] ) )
249
+ {
250
+ element.name = 'cke:li';
251
+
252
+ if ( attrs.style )
253
+ {
254
+ attrs.style = plugin.filters.stylesFilter(
255
+ [
256
+ // Text-indent is not representing list item level any more.
257
+ [ 'text-indent' ],
258
+ [ 'line-height' ],
259
+ // First attempt is to resolve indent level from on a constant margin increment.
260
+ [ ( /^margin(:?-left)?$/ ), null, function( margin )
261
+ {
262
+ // Deal with component/short-hand form.
263
+ var values = margin.split( ' ' );
264
+ margin = plugin.utils.convertToPx( values[ 3 ] || values[ 1 ] || values [ 0 ] );
265
+ margin = parseInt( margin, 10 );
266
+
267
+ // Figure out the indent unit by checking the first time of incrementation.
268
+ if ( !listBaseIndent && previousListItemMargin !== null && margin > previousListItemMargin )
269
+ listBaseIndent = margin - previousListItemMargin;
270
+
271
+ previousListItemMargin = margin;
272
+
273
+ attrs[ 'cke:indent' ] = listBaseIndent && ( Math.ceil( margin / listBaseIndent ) + 1 ) || 1;
274
+ } ],
275
+ // The best situation: "mso-list:l0 level1 lfo2" tells the belonged list root, list item indentation, etc.
276
+ [ ( /^mso-list$/ ), null, function( val )
277
+ {
278
+ val = val.split( ' ' );
279
+ var listId = Number( val[ 0 ].match( /\d+/ ) ),
280
+ indent = Number( val[ 1 ].match( /\d+/ ) );
281
+
282
+ listId !== previousListId && ( attrs[ 'cke:reset' ] = 1 );
283
+ previousListId = listId;
284
+ attrs[ 'cke:indent' ] = indent;
285
+ } ]
286
+ ] )( attrs.style, element ) || '';
287
+ }
288
+
289
+ // First level list item might be presented without a margin.
290
+
291
+
292
+ // In case all above doesn't apply.
293
+ if ( !attrs[ 'cke:indent' ] )
294
+ {
295
+ previousListItemMargin = 0;
296
+ attrs[ 'cke:indent' ] = 1;
297
+ }
298
+
299
+ // Inherit attributes from bullet.
300
+ CKEDITOR.tools.extend( attrs, listMarker.attributes );
301
+ return true;
302
+ }
303
+ // Current list disconnected.
304
+ else
305
+ previousListId = previousListItemMargin = listBaseIndent = null;
306
+
307
+ return false;
308
+ },
309
+
310
+ // Convert various length units to 'px' in ignorance of DPI.
311
+ convertToPx : ( function ()
312
+ {
313
+ var calculator = CKEDITOR.dom.element.createFromHtml(
314
+ '<div style="position:absolute;left:-9999px;' +
315
+ 'top:-9999px;margin:0px;padding:0px;border:0px;"' +
316
+ '></div>', CKEDITOR.document );
317
+ CKEDITOR.document.getBody().append( calculator );
318
+
319
+ return function( cssLength )
320
+ {
321
+ if ( cssLengthRelativeUnit.test( cssLength ) )
322
+ {
323
+ calculator.setStyle( 'width', cssLength );
324
+ return calculator.$.clientWidth + 'px';
325
+ }
326
+
327
+ return cssLength;
328
+ };
329
+ } )(),
330
+
331
+ // Providing a shorthand style then retrieve one or more style component values.
332
+ getStyleComponents : ( function()
333
+ {
334
+ var calculator = CKEDITOR.dom.element.createFromHtml(
335
+ '<div style="position:absolute;left:-9999px;top:-9999px;"></div>',
336
+ CKEDITOR.document );
337
+ CKEDITOR.document.getBody().append( calculator );
338
+
339
+ return function( name, styleValue, fetchList )
340
+ {
341
+ calculator.setStyle( name, styleValue );
342
+ var styles = {},
343
+ count = fetchList.length;
344
+ for ( var i = 0; i < count; i++ )
345
+ styles[ fetchList[ i ] ] = calculator.getStyle( fetchList[ i ] );
346
+
347
+ return styles;
348
+ };
349
+ } )(),
350
+
351
+ listDtdParents : CKEDITOR.dtd.parentOf( 'ol' )
352
+ },
353
+
354
+ filters :
355
+ {
356
+ // Transform a normal list into flat list items only presentation.
357
+ // E.g. <ul><li>level1<ol><li>level2</li></ol></li> =>
358
+ // <cke:li cke:listtype="ul" cke:indent="1">level1</cke:li>
359
+ // <cke:li cke:listtype="ol" cke:indent="2">level2</cke:li>
360
+ flattenList : function( element )
361
+ {
362
+ var attrs = element.attributes,
363
+ parent = element.parent;
364
+
365
+ var listStyleType,
366
+ indentLevel = 1;
367
+
368
+ // Resolve how many level nested.
369
+ while ( parent )
370
+ {
371
+ parent.attributes && parent.attributes[ 'cke:list' ] && indentLevel++;
372
+ parent = parent.parent;
373
+ }
374
+
375
+ // All list items are of the same type.
376
+ switch ( attrs.type )
377
+ {
378
+ case 'a' :
379
+ listStyleType = 'lower-alpha';
380
+ break;
381
+ // TODO: Support more list style type from MS-Word.
382
+ }
383
+
384
+ var children = element.children,
385
+ child;
386
+
387
+ for ( var i = 0; i < children.length; i++ )
388
+ {
389
+ child = children[ i ];
390
+ var attributes = child.attributes;
391
+
392
+ if ( child.name in CKEDITOR.dtd.$listItem )
393
+ {
394
+ var listItemChildren = child.children,
395
+ count = listItemChildren.length,
396
+ last = listItemChildren[ count - 1 ];
397
+
398
+ // Move out nested list.
399
+ if ( last.name in CKEDITOR.dtd.$list )
400
+ {
401
+ children.splice( i + 1, 0, last );
402
+ last.parent = element;
403
+
404
+ // Remove the parent list item if it's just a holder.
405
+ if ( !--listItemChildren.length )
406
+ children.splice( i, 1 );
407
+ }
408
+
409
+ child.name = 'cke:li';
410
+
411
+ // Inherit numbering from list root on the first list item.
412
+ attrs.start && !i && ( attributes.value = attrs.start );
413
+
414
+ plugin.filters.stylesFilter(
415
+ [
416
+ [ 'tab-stops', null, function( val )
417
+ {
418
+ var margin = val.split( ' ' )[ 1 ].match( cssLengthRelativeUnit );
419
+ margin && ( previousListItemMargin = parseInt( plugin.utils.convertToPx( margin[ 0 ] ), 10 ) );
420
+ } ],
421
+ [ 'mso-list', null, function( val )
422
+ {
423
+ val = val.split( ' ' );
424
+ var listId = Number( val[ 0 ].match( /\d+/ ) );
425
+ listId !== previousListId && ( attributes[ 'cke:reset' ] = 1 );
426
+ previousListId = listId;
427
+ } ]
428
+ ] )( attributes.style );
429
+
430
+ attributes[ 'cke:indent' ] = indentLevel;
431
+ attributes[ 'cke:listtype' ] = element.name;
432
+ attributes[ 'cke:list-style-type' ] = listStyleType;
433
+ }
434
+ }
435
+
436
+ delete element.name;
437
+
438
+ // We're loosing tag name here, signalize this element as a list.
439
+ attrs[ 'cke:list' ] = 1;
440
+ },
441
+
442
+ /**
443
+ * Try to collect all list items among the children and establish one
444
+ * or more HTML list structures for them.
445
+ * @param element
446
+ */
447
+ assembleList : function( element )
448
+ {
449
+ var children = element.children, child,
450
+ listItem, // The current processing cke:li element.
451
+ listItemAttrs,
452
+ listItemIndent, // Indent level of current list item.
453
+ lastIndent,
454
+ lastListItem, // The previous one just been added to the list.
455
+ list, // Current staging list and it's parent list if any.
456
+ openedLists = [],
457
+ previousListStyleType,
458
+ previousListType;
459
+
460
+ // Properties of the list item are to be resolved from the list bullet.
461
+ var bullet,
462
+ listType,
463
+ listStyleType,
464
+ itemNumeric;
465
+
466
+ for ( var i = 0; i < children.length; i++ )
467
+ {
468
+ child = children[ i ];
469
+
470
+ if ( 'cke:li' == child.name )
471
+ {
472
+ child.name = 'li';
473
+ listItem = child;
474
+ listItemAttrs = listItem.attributes;
475
+ bullet = listItemAttrs[ 'cke:listsymbol' ];
476
+ bullet = bullet && bullet.match( /^(?:[(]?)([^\s]+?)([.)]?)$/ );
477
+ listType = listStyleType = itemNumeric = null;
478
+
479
+ if ( listItemAttrs[ 'cke:ignored' ] )
480
+ {
481
+ children.splice( i--, 1 );
482
+ continue;
483
+ }
484
+
485
+
486
+ // This's from a new list root.
487
+ listItemAttrs[ 'cke:reset' ] && ( list = lastIndent = lastListItem = null );
488
+
489
+ // List item indent level might come from a real list indentation or
490
+ // been resolved from a pseudo list item's margin value, even get
491
+ // no indentation at all.
492
+ listItemIndent = Number( listItemAttrs[ 'cke:indent' ] );
493
+
494
+ // We're moving out of the current list, cleaning up.
495
+ if ( listItemIndent != lastIndent )
496
+ previousListType = previousListStyleType = null;
497
+
498
+ // List type and item style are already resolved.
499
+ if ( !bullet )
500
+ {
501
+ listType = listItemAttrs[ 'cke:listtype' ] || 'ol';
502
+ listStyleType = listItemAttrs[ 'cke:list-style-type' ];
503
+ }
504
+ else
505
+ {
506
+ // Probably share the same list style type with previous list item,
507
+ // give it priority to avoid ambiguous between C(Alpha) and C.(Roman).
508
+ if ( previousListType && listMarkerPatterns[ previousListType ] [ previousListStyleType ].test( bullet[ 1 ] ) )
509
+ {
510
+ listType = previousListType;
511
+ listStyleType = previousListStyleType;
512
+ }
513
+ else
514
+ {
515
+ for ( var type in listMarkerPatterns )
516
+ {
517
+ for ( var style in listMarkerPatterns[ type ] )
518
+ {
519
+ if ( listMarkerPatterns[ type ][ style ].test( bullet[ 1 ] ) )
520
+ {
521
+ // Small numbering has higher priority, when dealing with ambiguous
522
+ // between C(Alpha) and C.(Roman).
523
+ if ( type == 'ol' && ( /alpha|roman/ ).test( style ) )
524
+ {
525
+ var num = /roman/.test( style ) ? fromRoman( bullet[ 1 ] ) : fromAlphabet( bullet[ 1 ] );
526
+ if ( !itemNumeric || num < itemNumeric )
527
+ {
528
+ itemNumeric = num;
529
+ listType = type;
530
+ listStyleType = style;
531
+ }
532
+ }
533
+ else
534
+ {
535
+ listType = type;
536
+ listStyleType = style;
537
+ break;
538
+ }
539
+ }
540
+ }
541
+ }
542
+ }
543
+
544
+ // Simply use decimal/disc for the rest forms of unrepresentable
545
+ // numerals, e.g. Chinese..., but as long as there a second part
546
+ // included, it has a bigger chance of being a order list ;)
547
+ !listType && ( listType = bullet[ 2 ] ? 'ol' : 'ul' );
548
+ }
549
+
550
+ previousListType = listType;
551
+ previousListStyleType = listStyleType || ( listType == 'ol' ? 'decimal' : 'disc' );
552
+ if ( listStyleType && listStyleType != ( listType == 'ol' ? 'decimal' : 'disc' ) )
553
+ listItem.addStyle( 'list-style-type', listStyleType );
554
+
555
+ // Figure out start numbering.
556
+ if ( listType == 'ol' && bullet )
557
+ {
558
+ switch ( listStyleType )
559
+ {
560
+ case 'decimal' :
561
+ itemNumeric = Number( bullet[ 1 ] );
562
+ break;
563
+ case 'lower-roman':
564
+ case 'upper-roman':
565
+ itemNumeric = fromRoman( bullet[ 1 ] );
566
+ break;
567
+ case 'lower-alpha':
568
+ case 'upper-alpha':
569
+ itemNumeric = fromAlphabet( bullet[ 1 ] );
570
+ break;
571
+ }
572
+
573
+ // Always create the numbering, swipe out unnecessary ones later.
574
+ listItem.attributes.value = itemNumeric;
575
+ }
576
+
577
+ // Start the list construction.
578
+ if ( !list )
579
+ {
580
+ openedLists.push( list = new CKEDITOR.htmlParser.element( listType ) );
581
+ list.add( listItem );
582
+ children[ i ] = list;
583
+ }
584
+ else
585
+ {
586
+ if ( listItemIndent > lastIndent )
587
+ {
588
+ openedLists.push( list = new CKEDITOR.htmlParser.element( listType ) );
589
+ list.add( listItem );
590
+ lastListItem.add( list );
591
+ }
592
+ else if ( listItemIndent < lastIndent )
593
+ {
594
+ // There might be a negative gap between two list levels. (#4944)
595
+ var diff = lastIndent - listItemIndent,
596
+ parent;
597
+ while ( diff-- && ( parent = list.parent ) )
598
+ list = parent.parent;
599
+
600
+ list.add( listItem );
601
+ }
602
+ else
603
+ list.add( listItem );
604
+
605
+ children.splice( i--, 1 );
606
+ }
607
+
608
+ lastListItem = listItem;
609
+ lastIndent = listItemIndent;
610
+ }
611
+ else if ( list )
612
+ list = lastIndent = lastListItem = null;
613
+ }
614
+
615
+ for ( i = 0; i < openedLists.length; i++ )
616
+ postProcessList( openedLists[ i ] );
617
+
618
+ list = lastIndent = lastListItem = previousListId = previousListItemMargin = listBaseIndent = null;
619
+ },
620
+
621
+ /**
622
+ * A simple filter which always rejecting.
623
+ */
624
+ falsyFilter : function( value )
625
+ {
626
+ return false;
627
+ },
628
+
629
+ /**
630
+ * A filter dedicated on the 'style' attribute filtering, e.g. dropping/replacing style properties.
631
+ * @param styles {Array} in form of [ styleNameRegexp, styleValueRegexp,
632
+ * newStyleValue/newStyleGenerator, newStyleName ] where only the first
633
+ * parameter is mandatory.
634
+ * @param whitelist {Boolean} Whether the {@param styles} will be considered as a white-list.
635
+ */
636
+ stylesFilter : function( styles, whitelist )
637
+ {
638
+ return function( styleText, element )
639
+ {
640
+ var rules = [];
641
+ // html-encoded quote might be introduced by 'font-family'
642
+ // from MS-Word which confused the following regexp. e.g.
643
+ //'font-family: &quot;Lucida, Console&quot;'
644
+ ( styleText || '' )
645
+ .replace( /&quot;/g, '"' )
646
+ .replace( /\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,
647
+ function( match, name, value )
648
+ {
649
+ name = name.toLowerCase();
650
+ name == 'font-family' && ( value = value.replace( /["']/g, '' ) );
651
+
652
+ var namePattern,
653
+ valuePattern,
654
+ newValue,
655
+ newName;
656
+ for ( var i = 0 ; i < styles.length; i++ )
657
+ {
658
+ if ( styles[ i ] )
659
+ {
660
+ namePattern = styles[ i ][ 0 ];
661
+ valuePattern = styles[ i ][ 1 ];
662
+ newValue = styles[ i ][ 2 ];
663
+ newName = styles[ i ][ 3 ];
664
+
665
+ if ( name.match( namePattern )
666
+ && ( !valuePattern || value.match( valuePattern ) ) )
667
+ {
668
+ name = newName || name;
669
+ whitelist && ( newValue = newValue || value );
670
+
671
+ if ( typeof newValue == 'function' )
672
+ newValue = newValue( value, element, name );
673
+
674
+ // Return an couple indicate both name and value
675
+ // changed.
676
+ if ( newValue && newValue.push )
677
+ name = newValue[ 0 ], newValue = newValue[ 1 ];
678
+
679
+ if ( typeof newValue == 'string' )
680
+ rules.push( [ name, newValue ] );
681
+ return;
682
+ }
683
+ }
684
+ }
685
+
686
+ !whitelist && rules.push( [ name, value ] );
687
+
688
+ });
689
+
690
+ for ( var i = 0 ; i < rules.length ; i++ )
691
+ rules[ i ] = rules[ i ].join( ':' );
692
+ return rules.length ?
693
+ ( rules.join( ';' ) + ';' ) : false;
694
+ };
695
+ },
696
+
697
+ /**
698
+ * Migrate the element by decorate styles on it.
699
+ * @param styleDefiniton
700
+ * @param variables
701
+ */
702
+ elementMigrateFilter : function ( styleDefiniton, variables )
703
+ {
704
+ return function( element )
705
+ {
706
+ var styleDef =
707
+ variables ?
708
+ new CKEDITOR.style( styleDefiniton, variables )._.definition
709
+ : styleDefiniton;
710
+ element.name = styleDef.element;
711
+ CKEDITOR.tools.extend( element.attributes, CKEDITOR.tools.clone( styleDef.attributes ) );
712
+ element.addStyle( CKEDITOR.style.getStyleText( styleDef ) );
713
+ };
714
+ },
715
+
716
+ /**
717
+ * Migrate styles by creating a new nested stylish element.
718
+ * @param styleDefinition
719
+ */
720
+ styleMigrateFilter : function( styleDefinition, variableName )
721
+ {
722
+
723
+ var elementMigrateFilter = this.elementMigrateFilter;
724
+ return function( value, element )
725
+ {
726
+ // Build an stylish element first.
727
+ var styleElement = new CKEDITOR.htmlParser.element( null ),
728
+ variables = {};
729
+
730
+ variables[ variableName ] = value;
731
+ elementMigrateFilter( styleDefinition, variables )( styleElement );
732
+ // Place the new element inside the existing span.
733
+ styleElement.children = element.children;
734
+ element.children = [ styleElement ];
735
+ };
736
+ },
737
+
738
+ /**
739
+ * A filter which remove cke-namespaced-attribute on
740
+ * all none-cke-namespaced elements.
741
+ * @param value
742
+ * @param element
743
+ */
744
+ bogusAttrFilter : function( value, element )
745
+ {
746
+ if ( element.name.indexOf( 'cke:' ) == -1 )
747
+ return false;
748
+ },
749
+
750
+ /**
751
+ * A filter which will be used to apply inline css style according the stylesheet
752
+ * definition rules, is generated lazily when filtering.
753
+ */
754
+ applyStyleFilter : null
755
+
756
+ },
757
+
758
+ getRules : function( editor )
759
+ {
760
+ var dtd = CKEDITOR.dtd,
761
+ blockLike = CKEDITOR.tools.extend( {}, dtd.$block, dtd.$listItem, dtd.$tableContent ),
762
+ config = editor.config,
763
+ filters = this.filters,
764
+ falsyFilter = filters.falsyFilter,
765
+ stylesFilter = filters.stylesFilter,
766
+ elementMigrateFilter = filters.elementMigrateFilter,
767
+ styleMigrateFilter = CKEDITOR.tools.bind( this.filters.styleMigrateFilter, this.filters ),
768
+ createListBulletMarker = this.utils.createListBulletMarker,
769
+ flattenList = filters.flattenList,
770
+ assembleList = filters.assembleList,
771
+ isListBulletIndicator = this.utils.isListBulletIndicator,
772
+ containsNothingButSpaces = this.utils.isContainingOnlySpaces,
773
+ resolveListItem = this.utils.resolveList,
774
+ convertToPx = this.utils.convertToPx,
775
+ getStyleComponents = this.utils.getStyleComponents,
776
+ listDtdParents = this.utils.listDtdParents,
777
+ removeFontStyles = config.pasteFromWordRemoveFontStyles !== false,
778
+ removeStyles = config.pasteFromWordRemoveStyles !== false;
779
+
780
+ return {
781
+
782
+ elementNames :
783
+ [
784
+ // Remove script, meta and link elements.
785
+ [ ( /meta|link|script/ ), '' ]
786
+ ],
787
+
788
+ root : function( element )
789
+ {
790
+ element.filterChildren();
791
+ assembleList( element );
792
+ },
793
+
794
+ elements :
795
+ {
796
+ '^' : function( element )
797
+ {
798
+ // Transform CSS style declaration to inline style.
799
+ var applyStyleFilter;
800
+ if ( CKEDITOR.env.gecko && ( applyStyleFilter = filters.applyStyleFilter ) )
801
+ applyStyleFilter( element );
802
+ },
803
+
804
+ $ : function( element )
805
+ {
806
+ var tagName = element.name || '',
807
+ attrs = element.attributes;
808
+
809
+ // Convert length unit of width/height on blocks to
810
+ // a more editor-friendly way (px).
811
+ if ( tagName in blockLike
812
+ && attrs.style )
813
+ {
814
+ attrs.style = stylesFilter(
815
+ [ [ ( /^(:?width|height)$/ ), null, convertToPx ] ] )( attrs.style ) || '';
816
+ }
817
+
818
+ // Processing headings.
819
+ if ( tagName.match( /h\d/ ) )
820
+ {
821
+ element.filterChildren();
822
+ // Is the heading actually a list item?
823
+ if ( resolveListItem( element ) )
824
+ return;
825
+
826
+ // Adapt heading styles to editor's convention.
827
+ elementMigrateFilter( config[ 'format_' + tagName ] )( element );
828
+ }
829
+ // Remove inline elements which contain only empty spaces.
830
+ else if ( tagName in dtd.$inline )
831
+ {
832
+ element.filterChildren();
833
+ if ( containsNothingButSpaces( element ) )
834
+ delete element.name;
835
+ }
836
+ // Remove element with ms-office namespace,
837
+ // with it's content preserved, e.g. 'o:p'.
838
+ else if ( tagName.indexOf( ':' ) != -1
839
+ && tagName.indexOf( 'cke' ) == -1 )
840
+ {
841
+ element.filterChildren();
842
+
843
+ // Restore image real link from vml.
844
+ if ( tagName == 'v:imagedata' )
845
+ {
846
+ var href = element.attributes[ 'o:href' ];
847
+ if ( href )
848
+ element.attributes.src = href;
849
+ element.name = 'img';
850
+ return;
851
+ }
852
+ delete element.name;
853
+ }
854
+
855
+ // Assembling list items into a whole list.
856
+ if ( tagName in listDtdParents )
857
+ {
858
+ element.filterChildren();
859
+ assembleList( element );
860
+ }
861
+ },
862
+
863
+ // We'll drop any style sheet, but Firefox conclude
864
+ // certain styles in a single style element, which are
865
+ // required to be changed into inline ones.
866
+ 'style' : function( element )
867
+ {
868
+ if ( CKEDITOR.env.gecko )
869
+ {
870
+ // Grab only the style definition section.
871
+ var styleDefSection = element.onlyChild().value.match( /\/\* Style Definitions \*\/([\s\S]*?)\/\*/ ),
872
+ styleDefText = styleDefSection && styleDefSection[ 1 ],
873
+ rules = {}; // Storing the parsed result.
874
+
875
+ if ( styleDefText )
876
+ {
877
+ styleDefText
878
+ // Remove line-breaks.
879
+ .replace(/[\n\r]/g,'')
880
+ // Extract selectors and style properties.
881
+ .replace( /(.+?)\{(.+?)\}/g,
882
+ function( rule, selectors, styleBlock )
883
+ {
884
+ selectors = selectors.split( ',' );
885
+ var length = selectors.length, selector;
886
+ for ( var i = 0; i < length; i++ )
887
+ {
888
+ // Assume MS-Word mostly generate only simple
889
+ // selector( [Type selector][Class selector]).
890
+ CKEDITOR.tools.trim( selectors[ i ] )
891
+ .replace( /^(\w+)(\.[\w-]+)?$/g,
892
+ function( match, tagName, className )
893
+ {
894
+ tagName = tagName || '*';
895
+ className = className.substring( 1, className.length );
896
+
897
+ // Reject MS-Word Normal styles.
898
+ if ( className.match( /MsoNormal/ ) )
899
+ return;
900
+
901
+ if ( !rules[ tagName ] )
902
+ rules[ tagName ] = {};
903
+ if ( className )
904
+ rules[ tagName ][ className ] = styleBlock;
905
+ else
906
+ rules[ tagName ] = styleBlock;
907
+ } );
908
+ }
909
+ });
910
+
911
+ filters.applyStyleFilter = function( element )
912
+ {
913
+ var name = rules[ '*' ] ? '*' : element.name,
914
+ className = element.attributes && element.attributes[ 'class' ],
915
+ style;
916
+ if ( name in rules )
917
+ {
918
+ style = rules[ name ];
919
+ if ( typeof style == 'object' )
920
+ style = style[ className ];
921
+ // Maintain style rules priorities.
922
+ style && element.addStyle( style, true );
923
+ }
924
+ };
925
+ }
926
+ }
927
+ return false;
928
+ },
929
+
930
+ 'p' : function( element )
931
+ {
932
+ // This's a fall-back approach to recognize list item in FF3.6,
933
+ // as it's not perfect as not all list style (e.g. "heading list") is shipped
934
+ // with this pattern. (#6662)
935
+ if ( /MsoListParagraph/.exec( element.attributes[ 'class' ] ) )
936
+ {
937
+ var bulletText = element.firstChild( function( node )
938
+ {
939
+ return node.type == CKEDITOR.NODE_TEXT && !containsNothingButSpaces( node.parent );
940
+ });
941
+ var bullet = bulletText && bulletText.parent,
942
+ bulletAttrs = bullet && bullet.attributes;
943
+ bulletAttrs && !bulletAttrs.style && ( bulletAttrs.style = 'mso-list: Ignore;' );
944
+ }
945
+
946
+ element.filterChildren();
947
+
948
+ // Is the paragraph actually a list item?
949
+ if ( resolveListItem( element ) )
950
+ return;
951
+
952
+ // Adapt paragraph formatting to editor's convention
953
+ // according to enter-mode.
954
+ if ( config.enterMode == CKEDITOR.ENTER_BR )
955
+ {
956
+ // We suffer from attribute/style lost in this situation.
957
+ delete element.name;
958
+ element.add( new CKEDITOR.htmlParser.element( 'br' ) );
959
+ }
960
+ else
961
+ elementMigrateFilter( config[ 'format_' + ( config.enterMode == CKEDITOR.ENTER_P ? 'p' : 'div' ) ] )( element );
962
+ },
963
+
964
+ 'div' : function( element )
965
+ {
966
+ // Aligned table with no text surrounded is represented by a wrapper div, from which
967
+ // table cells inherit as text-align styles, which is wrong.
968
+ // Instead we use a clear-float div after the table to properly achieve the same layout.
969
+ var singleChild = element.onlyChild();
970
+ if ( singleChild && singleChild.name == 'table' )
971
+ {
972
+ var attrs = element.attributes;
973
+ singleChild.attributes = CKEDITOR.tools.extend( singleChild.attributes, attrs );
974
+ attrs.style && singleChild.addStyle( attrs.style );
975
+
976
+ var clearFloatDiv = new CKEDITOR.htmlParser.element( 'div' );
977
+ clearFloatDiv.addStyle( 'clear' ,'both' );
978
+ element.add( clearFloatDiv );
979
+ delete element.name;
980
+ }
981
+ },
982
+
983
+ 'td' : function ( element )
984
+ {
985
+ // 'td' in 'thead' is actually <th>.
986
+ if ( element.getAncestor( 'thead') )
987
+ element.name = 'th';
988
+ },
989
+
990
+ // MS-Word sometimes present list as a mixing of normal list
991
+ // and pseudo-list, normalize the previous ones into pseudo form.
992
+ 'ol' : flattenList,
993
+ 'ul' : flattenList,
994
+ 'dl' : flattenList,
995
+
996
+ 'font' : function( element )
997
+ {
998
+ // Drop the font tag if it comes from list bullet text.
999
+ if ( isListBulletIndicator( element.parent ) )
1000
+ {
1001
+ delete element.name;
1002
+ return;
1003
+ }
1004
+
1005
+ element.filterChildren();
1006
+
1007
+ var attrs = element.attributes,
1008
+ styleText = attrs.style,
1009
+ parent = element.parent;
1010
+
1011
+ if ( 'font' == parent.name ) // Merge nested <font> tags.
1012
+ {
1013
+ CKEDITOR.tools.extend( parent.attributes,
1014
+ element.attributes );
1015
+ styleText && parent.addStyle( styleText );
1016
+ delete element.name;
1017
+ }
1018
+ // Convert the merged into a span with all attributes preserved.
1019
+ else
1020
+ {
1021
+ styleText = styleText || '';
1022
+ // IE's having those deprecated attributes, normalize them.
1023
+ if ( attrs.color )
1024
+ {
1025
+ attrs.color != '#000000' && ( styleText += 'color:' + attrs.color + ';' );
1026
+ delete attrs.color;
1027
+ }
1028
+ if ( attrs.face )
1029
+ {
1030
+ styleText += 'font-family:' + attrs.face + ';';
1031
+ delete attrs.face;
1032
+ }
1033
+ // TODO: Mapping size in ranges of xx-small,
1034
+ // x-small, small, medium, large, x-large, xx-large.
1035
+ if ( attrs.size )
1036
+ {
1037
+ styleText += 'font-size:' +
1038
+ ( attrs.size > 3 ? 'large'
1039
+ : ( attrs.size < 3 ? 'small' : 'medium' ) ) + ';';
1040
+ delete attrs.size;
1041
+ }
1042
+
1043
+ element.name = 'span';
1044
+ element.addStyle( styleText );
1045
+ }
1046
+ },
1047
+
1048
+ 'span' : function( element )
1049
+ {
1050
+ // Remove the span if it comes from list bullet text.
1051
+ if ( isListBulletIndicator( element.parent ) )
1052
+ return false;
1053
+
1054
+ element.filterChildren();
1055
+ if ( containsNothingButSpaces( element ) )
1056
+ {
1057
+ delete element.name;
1058
+ return null;
1059
+ }
1060
+
1061
+ // List item bullet type is supposed to be indicated by
1062
+ // the text of a span with style 'mso-list : Ignore' or an image.
1063
+ if ( isListBulletIndicator( element ) )
1064
+ {
1065
+ var listSymbolNode = element.firstChild( function( node )
1066
+ {
1067
+ return node.value || node.name == 'img';
1068
+ });
1069
+
1070
+ var listSymbol = listSymbolNode && ( listSymbolNode.value || 'l.' ),
1071
+ listType = listSymbol && listSymbol.match( /^(?:[(]?)([^\s]+?)([.)]?)$/ );
1072
+
1073
+ if ( listType )
1074
+ {
1075
+ var marker = createListBulletMarker( listType, listSymbol );
1076
+ // Some non-existed list items might be carried by an inconsequential list, indicate by "mso-hide:all/display:none",
1077
+ // those are to be removed later, now mark it with "cke:ignored".
1078
+ var ancestor = element.getAncestor( 'span' );
1079
+ if ( ancestor && (/ mso-hide:\s*all|display:\s*none /).test( ancestor.attributes.style ) )
1080
+ marker.attributes[ 'cke:ignored' ] = 1;
1081
+ return marker;
1082
+ }
1083
+ }
1084
+
1085
+ // Update the src attribute of image element with href.
1086
+ var children = element.children,
1087
+ attrs = element.attributes,
1088
+ styleText = attrs && attrs.style,
1089
+ firstChild = children && children[ 0 ];
1090
+
1091
+ // Assume MS-Word mostly carry font related styles on <span>,
1092
+ // adapting them to editor's convention.
1093
+ if ( styleText )
1094
+ {
1095
+ attrs.style = stylesFilter(
1096
+ [
1097
+ // Drop 'inline-height' style which make lines overlapping.
1098
+ [ 'line-height' ],
1099
+ [ ( /^font-family$/ ), null, !removeFontStyles ? styleMigrateFilter( config[ 'font_style' ], 'family' ) : null ] ,
1100
+ [ ( /^font-size$/ ), null, !removeFontStyles ? styleMigrateFilter( config[ 'fontSize_style' ], 'size' ) : null ] ,
1101
+ [ ( /^color$/ ), null, !removeFontStyles ? styleMigrateFilter( config[ 'colorButton_foreStyle' ], 'color' ) : null ] ,
1102
+ [ ( /^background-color$/ ), null, !removeFontStyles ? styleMigrateFilter( config[ 'colorButton_backStyle' ], 'color' ) : null ]
1103
+ ] )( styleText, element ) || '';
1104
+ }
1105
+
1106
+ return null;
1107
+ },
1108
+
1109
+ // Migrate basic style formats to editor configured ones.
1110
+ 'b' : elementMigrateFilter( config[ 'coreStyles_bold' ] ),
1111
+ 'i' : elementMigrateFilter( config[ 'coreStyles_italic' ] ),
1112
+ 'u' : elementMigrateFilter( config[ 'coreStyles_underline' ] ),
1113
+ 's' : elementMigrateFilter( config[ 'coreStyles_strike' ] ),
1114
+ 'sup' : elementMigrateFilter( config[ 'coreStyles_superscript' ] ),
1115
+ 'sub' : elementMigrateFilter( config[ 'coreStyles_subscript' ] ),
1116
+ // Editor doesn't support anchor with content currently (#3582),
1117
+ // drop such anchors with content preserved.
1118
+ 'a' : function( element )
1119
+ {
1120
+ var attrs = element.attributes;
1121
+ if ( attrs && !attrs.href && attrs.name )
1122
+ delete element.name;
1123
+ },
1124
+ 'cke:listbullet' : function( element )
1125
+ {
1126
+ if ( element.getAncestor( /h\d/ ) && !config.pasteFromWordNumberedHeadingToList )
1127
+ delete element.name;
1128
+ }
1129
+ },
1130
+
1131
+ attributeNames :
1132
+ [
1133
+ // Remove onmouseover and onmouseout events (from MS Word comments effect)
1134
+ [ ( /^onmouse(:?out|over)/ ), '' ],
1135
+ // Onload on image element.
1136
+ [ ( /^onload$/ ), '' ],
1137
+ // Remove office and vml attribute from elements.
1138
+ [ ( /(?:v|o):\w+/ ), '' ],
1139
+ // Remove lang/language attributes.
1140
+ [ ( /^lang/ ), '' ]
1141
+ ],
1142
+
1143
+ attributes :
1144
+ {
1145
+ 'style' : stylesFilter(
1146
+ removeStyles ?
1147
+ // Provide a white-list of styles that we preserve, those should
1148
+ // be the ones that could later be altered with editor tools.
1149
+ [
1150
+ // Leave list-style-type
1151
+ [ ( /^list-style-type$/ ), null ],
1152
+
1153
+ // Preserve margin-left/right which used as default indent style in the editor.
1154
+ [ ( /^margin$|^margin-(?!bottom|top)/ ), null, function( value, element, name )
1155
+ {
1156
+ if ( element.name in { p : 1, div : 1 } )
1157
+ {
1158
+ var indentStyleName = config.contentsLangDirection == 'ltr' ?
1159
+ 'margin-left' : 'margin-right';
1160
+
1161
+ // Extract component value from 'margin' shorthand.
1162
+ if ( name == 'margin' )
1163
+ {
1164
+ value = getStyleComponents( name, value,
1165
+ [ indentStyleName ] )[ indentStyleName ];
1166
+ }
1167
+ else if ( name != indentStyleName )
1168
+ return null;
1169
+
1170
+ if ( value && !emptyMarginRegex.test( value ) )
1171
+ return [ indentStyleName, value ];
1172
+ }
1173
+
1174
+ return null;
1175
+ } ],
1176
+
1177
+ // Preserve clear float style.
1178
+ [ ( /^clear$/ ) ],
1179
+
1180
+ [ ( /^border.*|margin.*|vertical-align|float$/ ), null,
1181
+ function( value, element )
1182
+ {
1183
+ if ( element.name == 'img' )
1184
+ return value;
1185
+ } ],
1186
+
1187
+ [ (/^width|height$/ ), null,
1188
+ function( value, element )
1189
+ {
1190
+ if ( element.name in { table : 1, td : 1, th : 1, img : 1 } )
1191
+ return value;
1192
+ } ]
1193
+ ] :
1194
+ // Otherwise provide a black-list of styles that we remove.
1195
+ [
1196
+ [ ( /^mso-/ ) ],
1197
+ // Fixing color values.
1198
+ [ ( /-color$/ ), null, function( value )
1199
+ {
1200
+ if ( value == 'transparent' )
1201
+ return false;
1202
+ if ( CKEDITOR.env.gecko )
1203
+ return value.replace( /-moz-use-text-color/g, 'transparent' );
1204
+ } ],
1205
+ // Remove empty margin values, e.g. 0.00001pt 0em 0pt
1206
+ [ ( /^margin$/ ), emptyMarginRegex ],
1207
+ [ 'text-indent', '0cm' ],
1208
+ [ 'page-break-before' ],
1209
+ [ 'tab-stops' ],
1210
+ [ 'display', 'none' ],
1211
+ removeFontStyles ? [ ( /font-?/ ) ] : null
1212
+ ], removeStyles ),
1213
+
1214
+ // Prefer width styles over 'width' attributes.
1215
+ 'width' : function( value, element )
1216
+ {
1217
+ if ( element.name in dtd.$tableContent )
1218
+ return false;
1219
+ },
1220
+ // Prefer border styles over table 'border' attributes.
1221
+ 'border' : function( value, element )
1222
+ {
1223
+ if ( element.name in dtd.$tableContent )
1224
+ return false;
1225
+ },
1226
+
1227
+ // Only Firefox carry style sheet from MS-Word, which
1228
+ // will be applied by us manually. For other browsers
1229
+ // the css className is useless.
1230
+ 'class' : falsyFilter,
1231
+
1232
+ // MS-Word always generate 'background-color' along with 'bgcolor',
1233
+ // simply drop the deprecated attributes.
1234
+ 'bgcolor' : falsyFilter,
1235
+
1236
+ // Deprecate 'valign' attribute in favor of 'vertical-align'.
1237
+ 'valign' : removeStyles ? falsyFilter : function( value, element )
1238
+ {
1239
+ element.addStyle( 'vertical-align', value );
1240
+ return false;
1241
+ }
1242
+ },
1243
+
1244
+ // Fore none-IE, some useful data might be buried under these IE-conditional
1245
+ // comments where RegExp were the right approach to dig them out where usual approach
1246
+ // is transform it into a fake element node which hold the desired data.
1247
+ comment :
1248
+ !CKEDITOR.env.ie ?
1249
+ function( value, node )
1250
+ {
1251
+ var imageInfo = value.match( /<img.*?>/ ),
1252
+ listInfo = value.match( /^\[if !supportLists\]([\s\S]*?)\[endif\]$/ );
1253
+
1254
+ // Seek for list bullet indicator.
1255
+ if ( listInfo )
1256
+ {
1257
+ // Bullet symbol could be either text or an image.
1258
+ var listSymbol = listInfo[ 1 ] || ( imageInfo && 'l.' ),
1259
+ listType = listSymbol && listSymbol.match( />(?:[(]?)([^\s]+?)([.)]?)</ );
1260
+ return createListBulletMarker( listType, listSymbol );
1261
+ }
1262
+
1263
+ // Reveal the <img> element in conditional comments for Firefox.
1264
+ if ( CKEDITOR.env.gecko && imageInfo )
1265
+ {
1266
+ var img = CKEDITOR.htmlParser.fragment.fromHtml( imageInfo[ 0 ] ).children[ 0 ],
1267
+ previousComment = node.previous,
1268
+ // Try to dig the real image link from vml markup from previous comment text.
1269
+ imgSrcInfo = previousComment && previousComment.value.match( /<v:imagedata[^>]*o:href=['"](.*?)['"]/ ),
1270
+ imgSrc = imgSrcInfo && imgSrcInfo[ 1 ];
1271
+
1272
+ // Is there a real 'src' url to be used?
1273
+ imgSrc && ( img.attributes.src = imgSrc );
1274
+ return img;
1275
+ }
1276
+
1277
+ return false;
1278
+ }
1279
+ : falsyFilter
1280
+ };
1281
+ }
1282
+ });
1283
+
1284
+ // The paste processor here is just a reduced copy of html data processor.
1285
+ var pasteProcessor = function()
1286
+ {
1287
+ this.dataFilter = new CKEDITOR.htmlParser.filter();
1288
+ };
1289
+
1290
+ pasteProcessor.prototype =
1291
+ {
1292
+ toHtml : function( data )
1293
+ {
1294
+ var fragment = CKEDITOR.htmlParser.fragment.fromHtml( data, false ),
1295
+ writer = new CKEDITOR.htmlParser.basicWriter();
1296
+
1297
+ fragment.writeHtml( writer, this.dataFilter );
1298
+ return writer.getHtml( true );
1299
+ }
1300
+ };
1301
+
1302
+ CKEDITOR.cleanWord = function( data, editor )
1303
+ {
1304
+ // Firefox will be confused by those downlevel-revealed IE conditional
1305
+ // comments, fixing them first( convert it to upperlevel-revealed one ).
1306
+ // e.g. <![if !vml]>...<![endif]>
1307
+ if ( CKEDITOR.env.gecko )
1308
+ data = data.replace( /(<!--\[if[^<]*?\])-->([\S\s]*?)<!--(\[endif\]-->)/gi, '$1$2$3' );
1309
+
1310
+ var dataProcessor = new pasteProcessor(),
1311
+ dataFilter = dataProcessor.dataFilter;
1312
+
1313
+ // These rules will have higher priorities than default ones.
1314
+ dataFilter.addRules( CKEDITOR.plugins.pastefromword.getRules( editor ) );
1315
+
1316
+ // Allow extending data filter rules.
1317
+ editor.fire( 'beforeCleanWord', { filter : dataFilter } );
1318
+
1319
+ try
1320
+ {
1321
+ data = dataProcessor.toHtml( data, false );
1322
+ }
1323
+ catch ( e )
1324
+ {
1325
+ alert( editor.lang.pastefromword.error );
1326
+ }
1327
+
1328
+ /* Below post processing those things that are unable to delivered by filter rules. */
1329
+
1330
+ // Remove 'cke' namespaced attribute used in filter rules as marker.
1331
+ data = data.replace( /cke:.*?".*?"/g, '' );
1332
+
1333
+ // Remove empty style attribute.
1334
+ data = data.replace( /style=""/g, '' );
1335
+
1336
+ // Remove the dummy spans ( having no inline style ).
1337
+ data = data.replace( /<span>/g, '' );
1338
+
1339
+ return data;
1340
+ };
1341
+ })();
1342
+
1343
+ /**
1344
+ * Whether to ignore all font related formatting styles, including:
1345
+ * <ul> <li>font size;</li>
1346
+ * <li>font family;</li>
1347
+ * <li>font foreground/background color.</li></ul>
1348
+ * @name CKEDITOR.config.pasteFromWordRemoveFontStyles
1349
+ * @since 3.1
1350
+ * @type Boolean
1351
+ * @default true
1352
+ * @example
1353
+ * config.pasteFromWordRemoveFontStyles = false;
1354
+ */
1355
+
1356
+ /**
1357
+ * Whether to transform MS Word outline numbered headings into lists.
1358
+ * @name CKEDITOR.config.pasteFromWordNumberedHeadingToList
1359
+ * @since 3.1
1360
+ * @type Boolean
1361
+ * @default false
1362
+ * @example
1363
+ * config.pasteFromWordNumberedHeadingToList = true;
1364
+ */
1365
+
1366
+ /**
1367
+ * Whether to remove element styles that can't be managed with the editor. Note
1368
+ * that this doesn't handle the font specific styles, which depends on the
1369
+ * {@link CKEDITOR.config.pasteFromWordRemoveFontStyles} setting instead.
1370
+ * @name CKEDITOR.config.pasteFromWordRemoveStyles
1371
+ * @since 3.1
1372
+ * @type Boolean
1373
+ * @default true
1374
+ * @example
1375
+ * config.pasteFromWordRemoveStyles = false;
1376
+ */