rich 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (640) hide show
  1. data/lib/rich/version.rb +1 -1
  2. data/vendor/assets/ckeditor/ckeditor/CHANGES.html +1433 -0
  3. data/vendor/assets/ckeditor/ckeditor/INSTALL.html +92 -0
  4. data/vendor/assets/ckeditor/ckeditor/LICENSE.html +1327 -0
  5. data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/application.xml +32 -0
  6. data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/run.bat +9 -0
  7. data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/run.sh +8 -0
  8. data/vendor/assets/ckeditor/ckeditor/_samples/adobeair/sample.html +45 -0
  9. data/vendor/assets/ckeditor/ckeditor/_samples/ajax.html +98 -0
  10. data/vendor/assets/ckeditor/ckeditor/_samples/api.html +192 -0
  11. data/vendor/assets/ckeditor/ckeditor/_samples/api_dialog.html +198 -0
  12. data/vendor/assets/ckeditor/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  13. data/vendor/assets/ckeditor/ckeditor/_samples/asp/advanced.asp +105 -0
  14. data/vendor/assets/ckeditor/ckeditor/_samples/asp/events.asp +136 -0
  15. data/vendor/assets/ckeditor/ckeditor/_samples/asp/index.html +103 -0
  16. data/vendor/assets/ckeditor/ckeditor/_samples/asp/replace.asp +72 -0
  17. data/vendor/assets/ckeditor/ckeditor/_samples/asp/replaceall.asp +77 -0
  18. data/vendor/assets/ckeditor/ckeditor/_samples/asp/sample_posteddata.asp +46 -0
  19. data/vendor/assets/ckeditor/ckeditor/_samples/asp/standalone.asp +72 -0
  20. data/vendor/assets/ckeditor/ckeditor/_samples/assets/_posteddata.php +59 -0
  21. data/vendor/assets/ckeditor/ckeditor/_samples/assets/output_for_flash.fla +0 -0
  22. data/vendor/assets/ckeditor/ckeditor/_samples/assets/output_for_flash.swf +0 -0
  23. data/vendor/assets/ckeditor/ckeditor/_samples/assets/output_xhtml.css +204 -0
  24. data/vendor/assets/ckeditor/ckeditor/_samples/assets/parsesample.css +70 -0
  25. data/vendor/assets/ckeditor/ckeditor/_samples/assets/swfobject.js +18 -0
  26. data/vendor/assets/ckeditor/ckeditor/_samples/autogrow.html +108 -0
  27. data/vendor/assets/ckeditor/ckeditor/_samples/bbcode.html +125 -0
  28. data/vendor/assets/ckeditor/ckeditor/_samples/devtools.html +94 -0
  29. data/vendor/assets/ckeditor/ckeditor/_samples/divreplace.html +154 -0
  30. data/vendor/assets/ckeditor/ckeditor/_samples/enterkey.html +115 -0
  31. data/vendor/assets/ckeditor/ckeditor/_samples/fullpage.html +82 -0
  32. data/vendor/assets/ckeditor/ckeditor/_samples/index.html +116 -0
  33. data/vendor/assets/ckeditor/ckeditor/_samples/jqueryadapter.html +99 -0
  34. data/vendor/assets/ckeditor/ckeditor/_samples/output_for_flash.html +275 -0
  35. data/vendor/assets/ckeditor/ckeditor/_samples/output_html.html +285 -0
  36. data/vendor/assets/ckeditor/ckeditor/_samples/output_xhtml.html +177 -0
  37. data/vendor/assets/ckeditor/ckeditor/_samples/php/advanced.php +120 -0
  38. data/vendor/assets/ckeditor/ckeditor/_samples/php/events.php +153 -0
  39. data/vendor/assets/ckeditor/ckeditor/_samples/php/index.html +47 -0
  40. data/vendor/assets/ckeditor/ckeditor/_samples/php/replace.php +87 -0
  41. data/vendor/assets/ckeditor/ckeditor/_samples/php/replaceall.php +88 -0
  42. data/vendor/assets/ckeditor/ckeditor/_samples/php/standalone.php +83 -0
  43. data/vendor/assets/ckeditor/ckeditor/_samples/placeholder.html +81 -0
  44. data/vendor/assets/ckeditor/ckeditor/_samples/readonly.html +91 -0
  45. data/vendor/assets/ckeditor/ckeditor/_samples/replacebyclass.html +64 -0
  46. data/vendor/assets/ckeditor/ckeditor/_samples/replacebycode.html +97 -0
  47. data/vendor/assets/ckeditor/ckeditor/_samples/sample.css +163 -0
  48. data/vendor/assets/ckeditor/ckeditor/_samples/sample.js +65 -0
  49. data/vendor/assets/ckeditor/ckeditor/_samples/sample_posteddata.php +21 -0
  50. data/vendor/assets/ckeditor/ckeditor/_samples/sharedspaces.html +153 -0
  51. data/vendor/assets/ckeditor/ckeditor/_samples/skins.html +110 -0
  52. data/vendor/assets/ckeditor/ckeditor/_samples/stylesheetparser.html +93 -0
  53. data/vendor/assets/ckeditor/ckeditor/_samples/tableresize.html +115 -0
  54. data/vendor/assets/ckeditor/ckeditor/_samples/ui_color.html +129 -0
  55. data/vendor/assets/ckeditor/ckeditor/_samples/ui_languages.html +134 -0
  56. data/vendor/assets/ckeditor/ckeditor/_source/adapters/jquery.js +306 -0
  57. data/vendor/assets/ckeditor/ckeditor/_source/core/_bootstrap.js +87 -0
  58. data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor.js +141 -0
  59. data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor_base.js +227 -0
  60. data/vendor/assets/ckeditor/ckeditor/_source/core/ckeditor_basic.js +238 -0
  61. data/vendor/assets/ckeditor/ckeditor/_source/core/command.js +209 -0
  62. data/vendor/assets/ckeditor/ckeditor/_source/core/commanddefinition.js +129 -0
  63. data/vendor/assets/ckeditor/ckeditor/_source/core/config.js +439 -0
  64. data/vendor/assets/ckeditor/ckeditor/_source/core/dataprocessor.js +65 -0
  65. data/vendor/assets/ckeditor/ckeditor/_source/core/dom.js +20 -0
  66. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/comment.js +32 -0
  67. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/document.js +251 -0
  68. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/documentfragment.js +49 -0
  69. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/domobject.js +258 -0
  70. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/element.js +1691 -0
  71. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/elementpath.js +119 -0
  72. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/event.js +145 -0
  73. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/node.js +696 -0
  74. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/nodelist.js +26 -0
  75. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/range.js +2054 -0
  76. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/rangelist.js +213 -0
  77. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/text.js +128 -0
  78. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/walker.js +462 -0
  79. data/vendor/assets/ckeditor/ckeditor/_source/core/dom/window.js +96 -0
  80. data/vendor/assets/ckeditor/ckeditor/_source/core/dtd.js +266 -0
  81. data/vendor/assets/ckeditor/ckeditor/_source/core/editor.js +1059 -0
  82. data/vendor/assets/ckeditor/ckeditor/_source/core/editor_basic.js +186 -0
  83. data/vendor/assets/ckeditor/ckeditor/_source/core/env.js +305 -0
  84. data/vendor/assets/ckeditor/ckeditor/_source/core/event.js +342 -0
  85. data/vendor/assets/ckeditor/ckeditor/_source/core/eventInfo.js +120 -0
  86. data/vendor/assets/ckeditor/ckeditor/_source/core/focusmanager.js +152 -0
  87. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser.js +224 -0
  88. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  89. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  90. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/comment.js +60 -0
  91. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/element.js +308 -0
  92. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/filter.js +288 -0
  93. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/fragment.js +518 -0
  94. data/vendor/assets/ckeditor/ckeditor/_source/core/htmlparser/text.js +53 -0
  95. data/vendor/assets/ckeditor/ckeditor/_source/core/lang.js +157 -0
  96. data/vendor/assets/ckeditor/ckeditor/_source/core/loader.js +240 -0
  97. data/vendor/assets/ckeditor/ckeditor/_source/core/plugindefinition.js +83 -0
  98. data/vendor/assets/ckeditor/ckeditor/_source/core/plugins.js +103 -0
  99. data/vendor/assets/ckeditor/ckeditor/_source/core/resourcemanager.js +238 -0
  100. data/vendor/assets/ckeditor/ckeditor/_source/core/scriptloader.js +180 -0
  101. data/vendor/assets/ckeditor/ckeditor/_source/core/skins.js +184 -0
  102. data/vendor/assets/ckeditor/ckeditor/_source/core/themes.js +19 -0
  103. data/vendor/assets/ckeditor/ckeditor/_source/core/tools.js +763 -0
  104. data/vendor/assets/ckeditor/ckeditor/_source/core/ui.js +128 -0
  105. data/vendor/assets/ckeditor/ckeditor/_source/lang/_languages.js +84 -0
  106. data/vendor/assets/ckeditor/ckeditor/_source/lang/_translationstatus.txt +61 -0
  107. data/vendor/assets/ckeditor/ckeditor/_source/lang/af.js +815 -0
  108. data/vendor/assets/ckeditor/ckeditor/_source/lang/ar.js +815 -0
  109. data/vendor/assets/ckeditor/ckeditor/_source/lang/bg.js +815 -0
  110. data/vendor/assets/ckeditor/ckeditor/_source/lang/bn.js +815 -0
  111. data/vendor/assets/ckeditor/ckeditor/_source/lang/bs.js +815 -0
  112. data/vendor/assets/ckeditor/ckeditor/_source/lang/ca.js +815 -0
  113. data/vendor/assets/ckeditor/ckeditor/_source/lang/cs.js +815 -0
  114. data/vendor/assets/ckeditor/ckeditor/_source/lang/cy.js +815 -0
  115. data/vendor/assets/ckeditor/ckeditor/_source/lang/da.js +815 -0
  116. data/vendor/assets/ckeditor/ckeditor/_source/lang/de.js +815 -0
  117. data/vendor/assets/ckeditor/ckeditor/_source/lang/el.js +815 -0
  118. data/vendor/assets/ckeditor/ckeditor/_source/lang/en-au.js +815 -0
  119. data/vendor/assets/ckeditor/ckeditor/_source/lang/en-ca.js +815 -0
  120. data/vendor/assets/ckeditor/ckeditor/_source/lang/en-gb.js +815 -0
  121. data/vendor/assets/ckeditor/ckeditor/_source/lang/en.js +815 -0
  122. data/vendor/assets/ckeditor/ckeditor/_source/lang/eo.js +815 -0
  123. data/vendor/assets/ckeditor/ckeditor/_source/lang/es.js +815 -0
  124. data/vendor/assets/ckeditor/ckeditor/_source/lang/et.js +815 -0
  125. data/vendor/assets/ckeditor/ckeditor/_source/lang/eu.js +815 -0
  126. data/vendor/assets/ckeditor/ckeditor/_source/lang/fa.js +815 -0
  127. data/vendor/assets/ckeditor/ckeditor/_source/lang/fi.js +815 -0
  128. data/vendor/assets/ckeditor/ckeditor/_source/lang/fo.js +815 -0
  129. data/vendor/assets/ckeditor/ckeditor/_source/lang/fr-ca.js +815 -0
  130. data/vendor/assets/ckeditor/ckeditor/_source/lang/fr.js +815 -0
  131. data/vendor/assets/ckeditor/ckeditor/_source/lang/gl.js +815 -0
  132. data/vendor/assets/ckeditor/ckeditor/_source/lang/gu.js +815 -0
  133. data/vendor/assets/ckeditor/ckeditor/_source/lang/he.js +815 -0
  134. data/vendor/assets/ckeditor/ckeditor/_source/lang/hi.js +815 -0
  135. data/vendor/assets/ckeditor/ckeditor/_source/lang/hr.js +815 -0
  136. data/vendor/assets/ckeditor/ckeditor/_source/lang/hu.js +815 -0
  137. data/vendor/assets/ckeditor/ckeditor/_source/lang/is.js +815 -0
  138. data/vendor/assets/ckeditor/ckeditor/_source/lang/it.js +815 -0
  139. data/vendor/assets/ckeditor/ckeditor/_source/lang/ja.js +815 -0
  140. data/vendor/assets/ckeditor/ckeditor/_source/lang/ka.js +815 -0
  141. data/vendor/assets/ckeditor/ckeditor/_source/lang/km.js +815 -0
  142. data/vendor/assets/ckeditor/ckeditor/_source/lang/ko.js +815 -0
  143. data/vendor/assets/ckeditor/ckeditor/_source/lang/lt.js +815 -0
  144. data/vendor/assets/ckeditor/ckeditor/_source/lang/lv.js +815 -0
  145. data/vendor/assets/ckeditor/ckeditor/_source/lang/mn.js +815 -0
  146. data/vendor/assets/ckeditor/ckeditor/_source/lang/ms.js +815 -0
  147. data/vendor/assets/ckeditor/ckeditor/_source/lang/nb.js +815 -0
  148. data/vendor/assets/ckeditor/ckeditor/_source/lang/nl.js +815 -0
  149. data/vendor/assets/ckeditor/ckeditor/_source/lang/no.js +815 -0
  150. data/vendor/assets/ckeditor/ckeditor/_source/lang/pl.js +815 -0
  151. data/vendor/assets/ckeditor/ckeditor/_source/lang/pt-br.js +814 -0
  152. data/vendor/assets/ckeditor/ckeditor/_source/lang/pt.js +815 -0
  153. data/vendor/assets/ckeditor/ckeditor/_source/lang/ro.js +815 -0
  154. data/vendor/assets/ckeditor/ckeditor/_source/lang/ru.js +815 -0
  155. data/vendor/assets/ckeditor/ckeditor/_source/lang/sk.js +815 -0
  156. data/vendor/assets/ckeditor/ckeditor/_source/lang/sl.js +815 -0
  157. data/vendor/assets/ckeditor/ckeditor/_source/lang/sr-latn.js +815 -0
  158. data/vendor/assets/ckeditor/ckeditor/_source/lang/sr.js +815 -0
  159. data/vendor/assets/ckeditor/ckeditor/_source/lang/sv.js +814 -0
  160. data/vendor/assets/ckeditor/ckeditor/_source/lang/th.js +815 -0
  161. data/vendor/assets/ckeditor/ckeditor/_source/lang/tr.js +814 -0
  162. data/vendor/assets/ckeditor/ckeditor/_source/lang/uk.js +815 -0
  163. data/vendor/assets/ckeditor/ckeditor/_source/lang/vi.js +815 -0
  164. data/vendor/assets/ckeditor/ckeditor/_source/lang/zh-cn.js +815 -0
  165. data/vendor/assets/ckeditor/ckeditor/_source/lang/zh.js +815 -0
  166. data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +222 -0
  167. data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  168. data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/lang/he.js +216 -0
  169. data/vendor/assets/ckeditor/ckeditor/_source/plugins/a11yhelp/plugin.js +47 -0
  170. data/vendor/assets/ckeditor/ckeditor/_source/plugins/about/dialogs/about.js +76 -0
  171. data/vendor/assets/ckeditor/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  172. data/vendor/assets/ckeditor/ckeditor/_source/plugins/about/plugin.js +24 -0
  173. data/vendor/assets/ckeditor/ckeditor/_source/plugins/adobeair/plugin.js +228 -0
  174. data/vendor/assets/ckeditor/ckeditor/_source/plugins/ajax/plugin.js +152 -0
  175. data/vendor/assets/ckeditor/ckeditor/_source/plugins/autogrow/plugin.js +141 -0
  176. data/vendor/assets/ckeditor/ckeditor/_source/plugins/basicstyles/plugin.js +129 -0
  177. data/vendor/assets/ckeditor/ckeditor/_source/plugins/bbcode/plugin.js +931 -0
  178. data/vendor/assets/ckeditor/ckeditor/_source/plugins/bidi/plugin.js +334 -0
  179. data/vendor/assets/ckeditor/ckeditor/_source/plugins/blockquote/plugin.js +305 -0
  180. data/vendor/assets/ckeditor/ckeditor/_source/plugins/button/plugin.js +290 -0
  181. data/vendor/assets/ckeditor/ckeditor/_source/plugins/clipboard/dialogs/paste.js +223 -0
  182. data/vendor/assets/ckeditor/ckeditor/_source/plugins/clipboard/plugin.js +453 -0
  183. data/vendor/assets/ckeditor/ckeditor/_source/plugins/colorbutton/plugin.js +301 -0
  184. data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +340 -0
  185. data/vendor/assets/ckeditor/ckeditor/_source/plugins/colordialog/plugin.js +15 -0
  186. data/vendor/assets/ckeditor/ckeditor/_source/plugins/contextmenu/plugin.js +179 -0
  187. data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/lang/en.js +16 -0
  188. data/vendor/assets/ckeditor/ckeditor/_source/plugins/devtools/plugin.js +173 -0
  189. data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialog/dialogDefinition.js +1166 -0
  190. data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialog/plugin.js +3308 -0
  191. data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogadvtab/plugin.js +208 -0
  192. data/vendor/assets/ckeditor/ckeditor/_source/plugins/dialogui/plugin.js +1541 -0
  193. data/vendor/assets/ckeditor/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  194. data/vendor/assets/ckeditor/ckeditor/_source/plugins/div/plugin.js +121 -0
  195. data/vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/dialogs/docprops.js +674 -0
  196. data/vendor/assets/ckeditor/ckeditor/_source/plugins/docprops/plugin.js +22 -0
  197. data/vendor/assets/ckeditor/ckeditor/_source/plugins/domiterator/plugin.js +361 -0
  198. data/vendor/assets/ckeditor/ckeditor/_source/plugins/editingblock/plugin.js +278 -0
  199. data/vendor/assets/ckeditor/ckeditor/_source/plugins/elementspath/plugin.js +218 -0
  200. data/vendor/assets/ckeditor/ckeditor/_source/plugins/enterkey/plugin.js +433 -0
  201. data/vendor/assets/ckeditor/ckeditor/_source/plugins/entities/plugin.js +250 -0
  202. data/vendor/assets/ckeditor/ckeditor/_source/plugins/fakeobjects/plugin.js +175 -0
  203. data/vendor/assets/ckeditor/ckeditor/_source/plugins/filebrowser/plugin.js +534 -0
  204. data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/dialogs/find.js +915 -0
  205. data/vendor/assets/ckeditor/ckeditor/_source/plugins/find/plugin.js +47 -0
  206. data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/dialogs/flash.js +674 -0
  207. data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  208. data/vendor/assets/ckeditor/ckeditor/_source/plugins/flash/plugin.js +154 -0
  209. data/vendor/assets/ckeditor/ckeditor/_source/plugins/floatpanel/plugin.js +428 -0
  210. data/vendor/assets/ckeditor/ckeditor/_source/plugins/font/plugin.js +234 -0
  211. data/vendor/assets/ckeditor/ckeditor/_source/plugins/format/plugin.js +197 -0
  212. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/button.js +118 -0
  213. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/checkbox.js +153 -0
  214. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  215. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +100 -0
  216. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  217. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/select.js +558 -0
  218. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/textarea.js +135 -0
  219. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/dialogs/textfield.js +199 -0
  220. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/images/hiddenfield.gif +0 -0
  221. data/vendor/assets/ckeditor/ckeditor/_source/plugins/forms/plugin.js +288 -0
  222. data/vendor/assets/ckeditor/ckeditor/_source/plugins/horizontalrule/plugin.js +48 -0
  223. data/vendor/assets/ckeditor/ckeditor/_source/plugins/htmldataprocessor/plugin.js +596 -0
  224. data/vendor/assets/ckeditor/ckeditor/_source/plugins/htmlwriter/plugin.js +319 -0
  225. data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframe/dialogs/iframe.js +229 -0
  226. data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframe/images/placeholder.png +0 -0
  227. data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframe/plugin.js +87 -0
  228. data/vendor/assets/ckeditor/ckeditor/_source/plugins/iframedialog/plugin.js +188 -0
  229. data/vendor/assets/ckeditor/ckeditor/_source/plugins/image/dialogs/image.js +1407 -0
  230. data/vendor/assets/ckeditor/ckeditor/_source/plugins/image/plugin.js +81 -0
  231. data/vendor/assets/ckeditor/ckeditor/_source/plugins/indent/plugin.js +461 -0
  232. data/vendor/assets/ckeditor/ckeditor/_source/plugins/justify/plugin.js +253 -0
  233. data/vendor/assets/ckeditor/ckeditor/_source/plugins/keystrokes/plugin.js +225 -0
  234. data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/dialogs/anchor.js +144 -0
  235. data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/dialogs/link.js +1425 -0
  236. data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  237. data/vendor/assets/ckeditor/ckeditor/_source/plugins/link/plugin.js +374 -0
  238. data/vendor/assets/ckeditor/ckeditor/_source/plugins/list/plugin.js +774 -0
  239. data/vendor/assets/ckeditor/ckeditor/_source/plugins/listblock/plugin.js +266 -0
  240. data/vendor/assets/ckeditor/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +225 -0
  241. data/vendor/assets/ckeditor/ckeditor/_source/plugins/liststyle/plugin.js +66 -0
  242. data/vendor/assets/ckeditor/ckeditor/_source/plugins/maximize/plugin.js +353 -0
  243. data/vendor/assets/ckeditor/ckeditor/_source/plugins/menu/plugin.js +541 -0
  244. data/vendor/assets/ckeditor/ckeditor/_source/plugins/menubutton/plugin.js +98 -0
  245. data/vendor/assets/ckeditor/ckeditor/_source/plugins/newpage/plugin.js +55 -0
  246. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  247. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pagebreak/plugin.js +164 -0
  248. data/vendor/assets/ckeditor/ckeditor/_source/plugins/panel/plugin.js +400 -0
  249. data/vendor/assets/ckeditor/ckeditor/_source/plugins/panelbutton/plugin.js +144 -0
  250. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastefromword/filter/default.js +1367 -0
  251. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastefromword/plugin.js +141 -0
  252. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +67 -0
  253. data/vendor/assets/ckeditor/ckeditor/_source/plugins/pastetext/plugin.js +98 -0
  254. data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +71 -0
  255. data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/en.js +16 -0
  256. data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/lang/he.js +16 -0
  257. data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/placeholder.gif +0 -0
  258. data/vendor/assets/ckeditor/ckeditor/_source/plugins/placeholder/plugin.js +171 -0
  259. data/vendor/assets/ckeditor/ckeditor/_source/plugins/popup/plugin.js +64 -0
  260. data/vendor/assets/ckeditor/ckeditor/_source/plugins/preview/plugin.js +113 -0
  261. data/vendor/assets/ckeditor/ckeditor/_source/plugins/print/plugin.js +42 -0
  262. data/vendor/assets/ckeditor/ckeditor/_source/plugins/removeformat/plugin.js +185 -0
  263. data/vendor/assets/ckeditor/ckeditor/_source/plugins/resize/plugin.js +168 -0
  264. data/vendor/assets/ckeditor/ckeditor/_source/plugins/richcombo/plugin.js +381 -0
  265. data/vendor/assets/ckeditor/ckeditor/_source/plugins/save/plugin.js +56 -0
  266. data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/dialogs/options.js +537 -0
  267. data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  268. data/vendor/assets/ckeditor/ckeditor/_source/plugins/scayt/plugin.js +973 -0
  269. data/vendor/assets/ckeditor/ckeditor/_source/plugins/selection/plugin.js +1729 -0
  270. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  271. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  272. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  273. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  274. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  275. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  276. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  277. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  278. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  279. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  280. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  281. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showblocks/plugin.js +160 -0
  282. data/vendor/assets/ckeditor/ckeditor/_source/plugins/showborders/plugin.js +207 -0
  283. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/dialogs/smiley.js +224 -0
  284. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  285. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  286. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  287. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  288. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  289. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  290. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  291. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  292. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  293. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  294. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  295. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  296. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  297. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  298. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  299. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  300. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  301. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  302. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  303. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  304. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  305. data/vendor/assets/ckeditor/ckeditor/_source/plugins/smiley/plugin.js +94 -0
  306. data/vendor/assets/ckeditor/ckeditor/_source/plugins/sourcearea/plugin.js +209 -0
  307. data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +350 -0
  308. data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/lang/en.js +122 -0
  309. data/vendor/assets/ckeditor/ckeditor/_source/plugins/specialchar/plugin.js +70 -0
  310. data/vendor/assets/ckeditor/ckeditor/_source/plugins/styles/plugin.js +1700 -0
  311. data/vendor/assets/ckeditor/ckeditor/_source/plugins/styles/styles/default.js +88 -0
  312. data/vendor/assets/ckeditor/ckeditor/_source/plugins/stylescombo/plugin.js +218 -0
  313. data/vendor/assets/ckeditor/ckeditor/_source/plugins/stylesheetparser/plugin.js +148 -0
  314. data/vendor/assets/ckeditor/ckeditor/_source/plugins/tab/plugin.js +367 -0
  315. data/vendor/assets/ckeditor/ckeditor/_source/plugins/table/dialogs/table.js +623 -0
  316. data/vendor/assets/ckeditor/ckeditor/_source/plugins/table/plugin.js +78 -0
  317. data/vendor/assets/ckeditor/ckeditor/_source/plugins/tableresize/plugin.js +443 -0
  318. data/vendor/assets/ckeditor/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +525 -0
  319. data/vendor/assets/ckeditor/ckeditor/_source/plugins/tabletools/plugin.js +1194 -0
  320. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/dialogs/templates.js +234 -0
  321. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/plugin.js +99 -0
  322. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  323. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  324. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  325. data/vendor/assets/ckeditor/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  326. data/vendor/assets/ckeditor/ckeditor/_source/plugins/toolbar/plugin.js +545 -0
  327. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +205 -0
  328. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  329. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/lang/he.js +15 -0
  330. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  331. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  332. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  333. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  334. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  335. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  336. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  337. data/vendor/assets/ckeditor/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  338. data/vendor/assets/ckeditor/ckeditor/_source/plugins/undo/plugin.js +578 -0
  339. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  340. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  341. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/wsc.css +82 -0
  342. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/dialogs/wsc.js +192 -0
  343. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  344. data/vendor/assets/ckeditor/ckeditor/_source/plugins/wysiwygarea/plugin.js +1347 -0
  345. data/vendor/assets/ckeditor/ckeditor/_source/plugins/xml/plugin.js +170 -0
  346. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/dialog.css +989 -0
  347. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/editor.css +25 -0
  348. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/elementspath.css +73 -0
  349. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/icons.css +366 -0
  350. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/icons.png +0 -0
  351. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/icons_rtl.png +0 -0
  352. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  353. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  354. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  355. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  356. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  357. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  358. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  359. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  360. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/mainui.css +206 -0
  361. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/menu.css +232 -0
  362. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/panel.css +217 -0
  363. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/presets.css +49 -0
  364. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/reset.css +85 -0
  365. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/richcombo.css +287 -0
  366. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/skin.js +236 -0
  367. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/templates.css +88 -0
  368. data/vendor/assets/ckeditor/ckeditor/_source/skins/kama/toolbar.css +408 -0
  369. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/dialog.css +891 -0
  370. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/editor.css +25 -0
  371. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/elementspath.css +74 -0
  372. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/icons.css +363 -0
  373. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/icons.png +0 -0
  374. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/icons_rtl.png +0 -0
  375. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  376. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  377. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  378. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  379. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  380. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  381. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  382. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/mainui.css +153 -0
  383. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/menu.css +229 -0
  384. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/panel.css +212 -0
  385. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/presets.css +49 -0
  386. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/reset.css +85 -0
  387. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/richcombo.css +309 -0
  388. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/skin.js +74 -0
  389. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/templates.css +87 -0
  390. data/vendor/assets/ckeditor/ckeditor/_source/skins/office2003/toolbar.css +522 -0
  391. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/dialog.css +907 -0
  392. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/editor.css +25 -0
  393. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/elementspath.css +74 -0
  394. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/icons.css +363 -0
  395. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/icons.png +0 -0
  396. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/icons_rtl.png +0 -0
  397. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  398. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  399. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  400. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  401. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  402. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  403. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  404. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  405. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/mainui.css +162 -0
  406. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/menu.css +232 -0
  407. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/panel.css +212 -0
  408. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/presets.css +50 -0
  409. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/reset.css +85 -0
  410. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/richcombo.css +302 -0
  411. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/skin.js +70 -0
  412. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/templates.css +87 -0
  413. data/vendor/assets/ckeditor/ckeditor/_source/skins/v2/toolbar.css +465 -0
  414. data/vendor/assets/ckeditor/ckeditor/_source/themes/default/theme.js +407 -0
  415. data/vendor/assets/ckeditor/ckeditor/adapters/jquery.js +6 -0
  416. data/vendor/assets/ckeditor/ckeditor/ckeditor.asp +955 -0
  417. data/vendor/assets/ckeditor/ckeditor/ckeditor.js +149 -0
  418. data/vendor/assets/ckeditor/ckeditor/ckeditor.pack +211 -0
  419. data/vendor/assets/ckeditor/ckeditor/ckeditor.php +29 -0
  420. data/vendor/assets/ckeditor/ckeditor/ckeditor_basic.js +8 -0
  421. data/vendor/assets/ckeditor/ckeditor/ckeditor_basic_source.js +20 -0
  422. data/vendor/assets/ckeditor/ckeditor/ckeditor_php4.php +566 -0
  423. data/vendor/assets/ckeditor/ckeditor/ckeditor_php5.php +556 -0
  424. data/vendor/assets/ckeditor/ckeditor/ckeditor_source.js +35 -0
  425. data/vendor/assets/ckeditor/ckeditor/config.js +11 -0
  426. data/vendor/assets/ckeditor/ckeditor/contents.css +25 -0
  427. data/vendor/assets/ckeditor/ckeditor/images/spacer.gif +0 -0
  428. data/vendor/assets/ckeditor/ckeditor/lang/_languages.js +6 -0
  429. data/vendor/assets/ckeditor/ckeditor/lang/_translationstatus.txt +61 -0
  430. data/vendor/assets/ckeditor/ckeditor/lang/af.js +6 -0
  431. data/vendor/assets/ckeditor/ckeditor/lang/ar.js +6 -0
  432. data/vendor/assets/ckeditor/ckeditor/lang/bg.js +6 -0
  433. data/vendor/assets/ckeditor/ckeditor/lang/bn.js +6 -0
  434. data/vendor/assets/ckeditor/ckeditor/lang/bs.js +6 -0
  435. data/vendor/assets/ckeditor/ckeditor/lang/ca.js +6 -0
  436. data/vendor/assets/ckeditor/ckeditor/lang/cs.js +6 -0
  437. data/vendor/assets/ckeditor/ckeditor/lang/cy.js +6 -0
  438. data/vendor/assets/ckeditor/ckeditor/lang/da.js +6 -0
  439. data/vendor/assets/ckeditor/ckeditor/lang/de.js +6 -0
  440. data/vendor/assets/ckeditor/ckeditor/lang/el.js +6 -0
  441. data/vendor/assets/ckeditor/ckeditor/lang/en-au.js +6 -0
  442. data/vendor/assets/ckeditor/ckeditor/lang/en-ca.js +6 -0
  443. data/vendor/assets/ckeditor/ckeditor/lang/en-gb.js +6 -0
  444. data/vendor/assets/ckeditor/ckeditor/lang/en.js +6 -0
  445. data/vendor/assets/ckeditor/ckeditor/lang/eo.js +6 -0
  446. data/vendor/assets/ckeditor/ckeditor/lang/es.js +6 -0
  447. data/vendor/assets/ckeditor/ckeditor/lang/et.js +6 -0
  448. data/vendor/assets/ckeditor/ckeditor/lang/eu.js +6 -0
  449. data/vendor/assets/ckeditor/ckeditor/lang/fa.js +6 -0
  450. data/vendor/assets/ckeditor/ckeditor/lang/fi.js +6 -0
  451. data/vendor/assets/ckeditor/ckeditor/lang/fo.js +6 -0
  452. data/vendor/assets/ckeditor/ckeditor/lang/fr-ca.js +6 -0
  453. data/vendor/assets/ckeditor/ckeditor/lang/fr.js +6 -0
  454. data/vendor/assets/ckeditor/ckeditor/lang/gl.js +6 -0
  455. data/vendor/assets/ckeditor/ckeditor/lang/gu.js +6 -0
  456. data/vendor/assets/ckeditor/ckeditor/lang/he.js +6 -0
  457. data/vendor/assets/ckeditor/ckeditor/lang/hi.js +6 -0
  458. data/vendor/assets/ckeditor/ckeditor/lang/hr.js +6 -0
  459. data/vendor/assets/ckeditor/ckeditor/lang/hu.js +6 -0
  460. data/vendor/assets/ckeditor/ckeditor/lang/is.js +6 -0
  461. data/vendor/assets/ckeditor/ckeditor/lang/it.js +6 -0
  462. data/vendor/assets/ckeditor/ckeditor/lang/ja.js +6 -0
  463. data/vendor/assets/ckeditor/ckeditor/lang/ka.js +6 -0
  464. data/vendor/assets/ckeditor/ckeditor/lang/km.js +6 -0
  465. data/vendor/assets/ckeditor/ckeditor/lang/ko.js +6 -0
  466. data/vendor/assets/ckeditor/ckeditor/lang/lt.js +6 -0
  467. data/vendor/assets/ckeditor/ckeditor/lang/lv.js +6 -0
  468. data/vendor/assets/ckeditor/ckeditor/lang/mn.js +6 -0
  469. data/vendor/assets/ckeditor/ckeditor/lang/ms.js +6 -0
  470. data/vendor/assets/ckeditor/ckeditor/lang/nb.js +6 -0
  471. data/vendor/assets/ckeditor/ckeditor/lang/nl.js +6 -0
  472. data/vendor/assets/ckeditor/ckeditor/lang/no.js +6 -0
  473. data/vendor/assets/ckeditor/ckeditor/lang/pl.js +6 -0
  474. data/vendor/assets/ckeditor/ckeditor/lang/pt-br.js +6 -0
  475. data/vendor/assets/ckeditor/ckeditor/lang/pt.js +6 -0
  476. data/vendor/assets/ckeditor/ckeditor/lang/ro.js +6 -0
  477. data/vendor/assets/ckeditor/ckeditor/lang/ru.js +6 -0
  478. data/vendor/assets/ckeditor/ckeditor/lang/sk.js +6 -0
  479. data/vendor/assets/ckeditor/ckeditor/lang/sl.js +6 -0
  480. data/vendor/assets/ckeditor/ckeditor/lang/sr-latn.js +6 -0
  481. data/vendor/assets/ckeditor/ckeditor/lang/sr.js +6 -0
  482. data/vendor/assets/ckeditor/ckeditor/lang/sv.js +6 -0
  483. data/vendor/assets/ckeditor/ckeditor/lang/th.js +6 -0
  484. data/vendor/assets/ckeditor/ckeditor/lang/tr.js +6 -0
  485. data/vendor/assets/ckeditor/ckeditor/lang/uk.js +6 -0
  486. data/vendor/assets/ckeditor/ckeditor/lang/vi.js +6 -0
  487. data/vendor/assets/ckeditor/ckeditor/lang/zh-cn.js +6 -0
  488. data/vendor/assets/ckeditor/ckeditor/lang/zh.js +6 -0
  489. data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  490. data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  491. data/vendor/assets/ckeditor/ckeditor/plugins/a11yhelp/lang/he.js +6 -0
  492. data/vendor/assets/ckeditor/ckeditor/plugins/about/dialogs/about.js +6 -0
  493. data/vendor/assets/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  494. data/vendor/assets/ckeditor/ckeditor/plugins/adobeair/plugin.js +6 -0
  495. data/vendor/assets/ckeditor/ckeditor/plugins/ajax/plugin.js +6 -0
  496. data/vendor/assets/ckeditor/ckeditor/plugins/autogrow/plugin.js +6 -0
  497. data/vendor/assets/ckeditor/ckeditor/plugins/bbcode/plugin.js +9 -0
  498. data/vendor/assets/ckeditor/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  499. data/vendor/assets/ckeditor/ckeditor/plugins/colordialog/dialogs/colordialog.js +7 -0
  500. data/vendor/assets/ckeditor/ckeditor/plugins/devtools/lang/en.js +6 -0
  501. data/vendor/assets/ckeditor/ckeditor/plugins/devtools/plugin.js +6 -0
  502. data/vendor/assets/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  503. data/vendor/assets/ckeditor/ckeditor/plugins/div/dialogs/div.js +8 -0
  504. data/vendor/assets/ckeditor/ckeditor/plugins/docprops/dialogs/docprops.js +10 -0
  505. data/vendor/assets/ckeditor/ckeditor/plugins/docprops/plugin.js +6 -0
  506. data/vendor/assets/ckeditor/ckeditor/plugins/find/dialogs/find.js +10 -0
  507. data/vendor/assets/ckeditor/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  508. data/vendor/assets/ckeditor/ckeditor/plugins/flash/images/placeholder.png +0 -0
  509. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/button.js +6 -0
  510. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  511. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/form.js +6 -0
  512. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  513. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  514. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/select.js +9 -0
  515. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  516. data/vendor/assets/ckeditor/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  517. data/vendor/assets/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif +0 -0
  518. data/vendor/assets/ckeditor/ckeditor/plugins/iframe/dialogs/iframe.js +7 -0
  519. data/vendor/assets/ckeditor/ckeditor/plugins/iframe/images/placeholder.png +0 -0
  520. data/vendor/assets/ckeditor/ckeditor/plugins/iframedialog/plugin.js +6 -0
  521. data/vendor/assets/ckeditor/ckeditor/plugins/image/dialogs/image.js +13 -0
  522. data/vendor/assets/ckeditor/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  523. data/vendor/assets/ckeditor/ckeditor/plugins/link/dialogs/link.js +12 -0
  524. data/vendor/assets/ckeditor/ckeditor/plugins/link/images/anchor.gif +0 -0
  525. data/vendor/assets/ckeditor/ckeditor/plugins/liststyle/dialogs/liststyle.js +7 -0
  526. data/vendor/assets/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  527. data/vendor/assets/ckeditor/ckeditor/plugins/pastefromword/filter/default.js +11 -0
  528. data/vendor/assets/ckeditor/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  529. data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js +6 -0
  530. data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/en.js +6 -0
  531. data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/lang/he.js +6 -0
  532. data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/placeholder.gif +0 -0
  533. data/vendor/assets/ckeditor/ckeditor/plugins/placeholder/plugin.js +6 -0
  534. data/vendor/assets/ckeditor/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  535. data/vendor/assets/ckeditor/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  536. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  537. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  538. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  539. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  540. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  541. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  542. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  543. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  544. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  545. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  546. data/vendor/assets/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  547. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  548. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  549. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  550. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  551. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  552. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  553. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  554. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  555. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  556. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/heart.gif +0 -0
  557. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  558. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  559. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  560. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  561. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  562. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  563. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  564. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  565. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  566. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  567. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  568. data/vendor/assets/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  569. data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  570. data/vendor/assets/ckeditor/ckeditor/plugins/specialchar/lang/en.js +6 -0
  571. data/vendor/assets/ckeditor/ckeditor/plugins/styles/styles/default.js +6 -0
  572. data/vendor/assets/ckeditor/ckeditor/plugins/stylesheetparser/plugin.js +6 -0
  573. data/vendor/assets/ckeditor/ckeditor/plugins/table/dialogs/table.js +9 -0
  574. data/vendor/assets/ckeditor/ckeditor/plugins/tableresize/plugin.js +7 -0
  575. data/vendor/assets/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  576. data/vendor/assets/ckeditor/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  577. data/vendor/assets/ckeditor/ckeditor/plugins/templates/templates/default.js +6 -0
  578. data/vendor/assets/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  579. data/vendor/assets/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  580. data/vendor/assets/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  581. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  582. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/en.js +6 -0
  583. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/lang/he.js +6 -0
  584. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/plugin.js +6 -0
  585. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  586. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  587. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  588. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  589. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  590. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  591. data/vendor/assets/ckeditor/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  592. data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  593. data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  594. data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  595. data/vendor/assets/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  596. data/vendor/assets/ckeditor/ckeditor/plugins/xml/plugin.js +6 -0
  597. data/vendor/assets/ckeditor/ckeditor/skins/kama/dialog.css +10 -0
  598. data/vendor/assets/ckeditor/ckeditor/skins/kama/editor.css +13 -0
  599. data/vendor/assets/ckeditor/ckeditor/skins/kama/icons.png +0 -0
  600. data/vendor/assets/ckeditor/ckeditor/skins/kama/icons_rtl.png +0 -0
  601. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  602. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  603. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  604. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/mini.gif +0 -0
  605. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/noimage.png +0 -0
  606. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/sprites.png +0 -0
  607. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  608. data/vendor/assets/ckeditor/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  609. data/vendor/assets/ckeditor/ckeditor/skins/kama/skin.js +7 -0
  610. data/vendor/assets/ckeditor/ckeditor/skins/kama/templates.css +6 -0
  611. data/vendor/assets/ckeditor/ckeditor/skins/office2003/dialog.css +9 -0
  612. data/vendor/assets/ckeditor/ckeditor/skins/office2003/editor.css +14 -0
  613. data/vendor/assets/ckeditor/ckeditor/skins/office2003/icons.png +0 -0
  614. data/vendor/assets/ckeditor/ckeditor/skins/office2003/icons_rtl.png +0 -0
  615. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  616. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  617. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  618. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/mini.gif +0 -0
  619. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/noimage.png +0 -0
  620. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/sprites.png +0 -0
  621. data/vendor/assets/ckeditor/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  622. data/vendor/assets/ckeditor/ckeditor/skins/office2003/skin.js +6 -0
  623. data/vendor/assets/ckeditor/ckeditor/skins/office2003/templates.css +6 -0
  624. data/vendor/assets/ckeditor/ckeditor/skins/v2/dialog.css +9 -0
  625. data/vendor/assets/ckeditor/ckeditor/skins/v2/editor.css +13 -0
  626. data/vendor/assets/ckeditor/ckeditor/skins/v2/icons.png +0 -0
  627. data/vendor/assets/ckeditor/ckeditor/skins/v2/icons_rtl.png +0 -0
  628. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  629. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  630. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  631. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/mini.gif +0 -0
  632. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/noimage.png +0 -0
  633. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/sprites.png +0 -0
  634. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  635. data/vendor/assets/ckeditor/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  636. data/vendor/assets/ckeditor/ckeditor/skins/v2/skin.js +6 -0
  637. data/vendor/assets/ckeditor/ckeditor/skins/v2/templates.css +6 -0
  638. data/vendor/assets/ckeditor/ckeditor/themes/default/theme.js +8 -0
  639. data/vendor/assets/javascripts/fileuploader.js +1247 -0
  640. metadata +641 -3
@@ -0,0 +1,518 @@
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
+ /**
7
+ * A lightweight representation of an HTML DOM structure.
8
+ * @constructor
9
+ * @example
10
+ */
11
+ CKEDITOR.htmlParser.fragment = function()
12
+ {
13
+ /**
14
+ * The nodes contained in the root of this fragment.
15
+ * @type Array
16
+ * @example
17
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
18
+ * alert( fragment.children.length ); "2"
19
+ */
20
+ this.children = [];
21
+
22
+ /**
23
+ * Get the fragment parent. Should always be null.
24
+ * @type Object
25
+ * @default null
26
+ * @example
27
+ */
28
+ this.parent = null;
29
+
30
+ /** @private */
31
+ this._ =
32
+ {
33
+ isBlockLike : true,
34
+ hasInlineStarted : false
35
+ };
36
+ };
37
+
38
+ (function()
39
+ {
40
+ // Block-level elements whose internal structure should be respected during
41
+ // parser fixing.
42
+ var nonBreakingBlocks = CKEDITOR.tools.extend( { table:1,ul:1,ol:1,dl:1 }, CKEDITOR.dtd.table, CKEDITOR.dtd.ul, CKEDITOR.dtd.ol, CKEDITOR.dtd.dl );
43
+
44
+ // IE < 8 don't output the close tag on definition list items. (#6975)
45
+ var optionalCloseTags = CKEDITOR.env.ie && CKEDITOR.env.version < 8 ? { dd : 1, dt :1 } : {};
46
+
47
+ var listBlocks = { ol:1, ul:1 };
48
+
49
+ // Dtd of the fragment element, basically it accept anything except for intermediate structure, e.g. orphan <li>.
50
+ var rootDtd = CKEDITOR.tools.extend( {}, { html: 1 }, CKEDITOR.dtd.html, CKEDITOR.dtd.body, CKEDITOR.dtd.head, { style:1,script:1 } );
51
+
52
+ function isRemoveEmpty( node )
53
+ {
54
+ // Empty link is to be removed when empty but not anchor. (#7894)
55
+ return node.name == 'a' && node.attributes.href
56
+ || CKEDITOR.dtd.$removeEmpty[ node.name ];
57
+ }
58
+
59
+ /**
60
+ * Creates a {@link CKEDITOR.htmlParser.fragment} from an HTML string.
61
+ * @param {String} fragmentHtml The HTML to be parsed, filling the fragment.
62
+ * @param {Number} [fixForBody=false] Wrap body with specified element if needed.
63
+ * @param {CKEDITOR.htmlParser.element} contextNode Parse the html as the content of this element.
64
+ * @returns CKEDITOR.htmlParser.fragment The fragment created.
65
+ * @example
66
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '<b>Sample</b> Text' );
67
+ * alert( fragment.children[0].name ); "b"
68
+ * alert( fragment.children[1].value ); " Text"
69
+ */
70
+ CKEDITOR.htmlParser.fragment.fromHtml = function( fragmentHtml, fixForBody, contextNode )
71
+ {
72
+ var parser = new CKEDITOR.htmlParser(),
73
+ fragment = contextNode || new CKEDITOR.htmlParser.fragment(),
74
+ pendingInline = [],
75
+ pendingBRs = [],
76
+ currentNode = fragment,
77
+ // Indicate we're inside a <textarea> element, spaces should be touched differently.
78
+ inTextarea = false,
79
+ // Indicate we're inside a <pre> element, spaces should be touched differently.
80
+ inPre = false;
81
+
82
+ function checkPending( newTagName )
83
+ {
84
+ var pendingBRsSent;
85
+
86
+ if ( pendingInline.length > 0 )
87
+ {
88
+ for ( var i = 0 ; i < pendingInline.length ; i++ )
89
+ {
90
+ var pendingElement = pendingInline[ i ],
91
+ pendingName = pendingElement.name,
92
+ pendingDtd = CKEDITOR.dtd[ pendingName ],
93
+ currentDtd = currentNode.name && CKEDITOR.dtd[ currentNode.name ];
94
+
95
+ if ( ( !currentDtd || currentDtd[ pendingName ] ) && ( !newTagName || !pendingDtd || pendingDtd[ newTagName ] || !CKEDITOR.dtd[ newTagName ] ) )
96
+ {
97
+ if ( !pendingBRsSent )
98
+ {
99
+ sendPendingBRs();
100
+ pendingBRsSent = 1;
101
+ }
102
+
103
+ // Get a clone for the pending element.
104
+ pendingElement = pendingElement.clone();
105
+
106
+ // Add it to the current node and make it the current,
107
+ // so the new element will be added inside of it.
108
+ pendingElement.parent = currentNode;
109
+ currentNode = pendingElement;
110
+
111
+ // Remove the pending element (back the index by one
112
+ // to properly process the next entry).
113
+ pendingInline.splice( i, 1 );
114
+ i--;
115
+ }
116
+ else
117
+ {
118
+ // Some element of the same type cannot be nested, flat them,
119
+ // e.g. <a href="#">foo<a href="#">bar</a></a>. (#7894)
120
+ if ( pendingName == currentNode.name )
121
+ addElement( currentNode, currentNode.parent, 1 ), i--;
122
+ }
123
+ }
124
+ }
125
+ }
126
+
127
+ function sendPendingBRs()
128
+ {
129
+ while ( pendingBRs.length )
130
+ currentNode.add( pendingBRs.shift() );
131
+ }
132
+
133
+ /*
134
+ * Beside of simply append specified element to target, this function also takes
135
+ * care of other dirty lifts like forcing block in body, trimming spaces at
136
+ * the block boundaries etc.
137
+ *
138
+ * @param {Element} element The element to be added as the last child of {@link target}.
139
+ * @param {Element} target The parent element to relieve the new node.
140
+ * @param {Boolean} [moveCurrent=false] Don't change the "currentNode" global unless
141
+ * there's a return point node specified on the element, otherwise move current onto {@link target} node.
142
+ */
143
+ function addElement( element, target, moveCurrent )
144
+ {
145
+ // Ignore any element that has already been added.
146
+ if ( element.previous !== undefined )
147
+ return;
148
+
149
+ target = target || currentNode || fragment;
150
+
151
+ // Current element might be mangled by fix body below,
152
+ // save it for restore later.
153
+ var savedCurrent = currentNode;
154
+
155
+ // If the target is the fragment and this inline element can't go inside
156
+ // body (if fixForBody).
157
+ if ( fixForBody && ( !target.type || target.name == 'body' ) )
158
+ {
159
+ var elementName, realElementName;
160
+ if ( element.attributes
161
+ && ( realElementName =
162
+ element.attributes[ 'data-cke-real-element-type' ] ) )
163
+ elementName = realElementName;
164
+ else
165
+ elementName = element.name;
166
+
167
+ if ( elementName && !( elementName in CKEDITOR.dtd.$body || elementName == 'body' || element.isOrphan ) )
168
+ {
169
+ // Create a <p> in the fragment.
170
+ currentNode = target;
171
+ parser.onTagOpen( fixForBody, {} );
172
+
173
+ // The new target now is the <p>.
174
+ element.returnPoint = target = currentNode;
175
+ }
176
+ }
177
+
178
+ // Rtrim empty spaces on block end boundary. (#3585)
179
+ if ( element._.isBlockLike
180
+ && element.name != 'pre' && element.name != 'textarea' )
181
+ {
182
+
183
+ var length = element.children.length,
184
+ lastChild = element.children[ length - 1 ],
185
+ text;
186
+ if ( lastChild && lastChild.type == CKEDITOR.NODE_TEXT )
187
+ {
188
+ if ( !( text = CKEDITOR.tools.rtrim( lastChild.value ) ) )
189
+ element.children.length = length -1;
190
+ else
191
+ lastChild.value = text;
192
+ }
193
+ }
194
+
195
+ target.add( element );
196
+
197
+ if ( element.returnPoint )
198
+ {
199
+ currentNode = element.returnPoint;
200
+ delete element.returnPoint;
201
+ }
202
+ else
203
+ currentNode = moveCurrent ? target : savedCurrent;
204
+ }
205
+
206
+ parser.onTagOpen = function( tagName, attributes, selfClosing, optionalClose )
207
+ {
208
+ var element = new CKEDITOR.htmlParser.element( tagName, attributes );
209
+
210
+ // "isEmpty" will be always "false" for unknown elements, so we
211
+ // must force it if the parser has identified it as a selfClosing tag.
212
+ if ( element.isUnknown && selfClosing )
213
+ element.isEmpty = true;
214
+
215
+ // Check for optional closed elements, including browser quirks and manually opened blocks.
216
+ element.isOptionalClose = tagName in optionalCloseTags || optionalClose;
217
+
218
+ // This is a tag to be removed if empty, so do not add it immediately.
219
+ if ( isRemoveEmpty( element ) )
220
+ {
221
+ pendingInline.push( element );
222
+ return;
223
+ }
224
+ else if ( tagName == 'pre' )
225
+ inPre = true;
226
+ else if ( tagName == 'br' && inPre )
227
+ {
228
+ currentNode.add( new CKEDITOR.htmlParser.text( '\n' ) );
229
+ return;
230
+ }
231
+ else if ( tagName == 'textarea' )
232
+ inTextarea = true;
233
+
234
+ if ( tagName == 'br' )
235
+ {
236
+ pendingBRs.push( element );
237
+ return;
238
+ }
239
+
240
+ while( 1 )
241
+ {
242
+ var currentName = currentNode.name;
243
+
244
+ var currentDtd = currentName ? ( CKEDITOR.dtd[ currentName ]
245
+ || ( currentNode._.isBlockLike ? CKEDITOR.dtd.div : CKEDITOR.dtd.span ) )
246
+ : rootDtd;
247
+
248
+ // If the element cannot be child of the current element.
249
+ if ( !element.isUnknown && !currentNode.isUnknown && !currentDtd[ tagName ] )
250
+ {
251
+ // Current node doesn't have a close tag, time for a close
252
+ // as this element isn't fit in. (#7497)
253
+ if ( currentNode.isOptionalClose )
254
+ parser.onTagClose( currentName );
255
+ // Fixing malformed nested lists by moving it into a previous list item. (#3828)
256
+ else if ( tagName in listBlocks
257
+ && currentName in listBlocks )
258
+ {
259
+ var children = currentNode.children,
260
+ lastChild = children[ children.length - 1 ];
261
+
262
+ // Establish the list item if it's not existed.
263
+ if ( !( lastChild && lastChild.name == 'li' ) )
264
+ addElement( ( lastChild = new CKEDITOR.htmlParser.element( 'li' ) ), currentNode );
265
+
266
+ !element.returnPoint && ( element.returnPoint = currentNode );
267
+ currentNode = lastChild;
268
+ }
269
+ // Establish new list root for orphan list items.
270
+ else if ( tagName in CKEDITOR.dtd.$listItem && currentName != tagName )
271
+ parser.onTagOpen( tagName == 'li' ? 'ul' : 'dl', {}, 0, 1 );
272
+ // We're inside a structural block like table and list, AND the incoming element
273
+ // is not of the same type (e.g. <td>td1<td>td2</td>), we simply add this new one before it,
274
+ // and most importantly, return back to here once this element is added,
275
+ // e.g. <table><tr><td>td1</td><p>p1</p><td>td2</td></tr></table>
276
+ else if ( currentName in nonBreakingBlocks && currentName != tagName )
277
+ {
278
+ !element.returnPoint && ( element.returnPoint = currentNode );
279
+ currentNode = currentNode.parent;
280
+ }
281
+ else
282
+ {
283
+ // The current element is an inline element, which
284
+ // need to be continued even after the close, so put
285
+ // it in the pending list.
286
+ if ( currentName in CKEDITOR.dtd.$inline )
287
+ pendingInline.unshift( currentNode );
288
+
289
+ // The most common case where we just need to close the
290
+ // current one and append the new one to the parent.
291
+ if ( currentNode.parent )
292
+ addElement( currentNode, currentNode.parent, 1 );
293
+ // We've tried our best to fix the embarrassment here, while
294
+ // this element still doesn't find it's parent, mark it as
295
+ // orphan and show our tolerance to it.
296
+ else
297
+ {
298
+ element.isOrphan = 1;
299
+ break;
300
+ }
301
+ }
302
+ }
303
+ else
304
+ break;
305
+ }
306
+
307
+ checkPending( tagName );
308
+ sendPendingBRs();
309
+
310
+ element.parent = currentNode;
311
+
312
+ if ( element.isEmpty )
313
+ addElement( element );
314
+ else
315
+ currentNode = element;
316
+ };
317
+
318
+ parser.onTagClose = function( tagName )
319
+ {
320
+ // Check if there is any pending tag to be closed.
321
+ for ( var i = pendingInline.length - 1 ; i >= 0 ; i-- )
322
+ {
323
+ // If found, just remove it from the list.
324
+ if ( tagName == pendingInline[ i ].name )
325
+ {
326
+ pendingInline.splice( i, 1 );
327
+ return;
328
+ }
329
+ }
330
+
331
+ var pendingAdd = [],
332
+ newPendingInline = [],
333
+ candidate = currentNode;
334
+
335
+ while ( candidate != fragment && candidate.name != tagName )
336
+ {
337
+ // If this is an inline element, add it to the pending list, if we're
338
+ // really closing one of the parents element later, they will continue
339
+ // after it.
340
+ if ( !candidate._.isBlockLike )
341
+ newPendingInline.unshift( candidate );
342
+
343
+ // This node should be added to it's parent at this point. But,
344
+ // it should happen only if the closing tag is really closing
345
+ // one of the nodes. So, for now, we just cache it.
346
+ pendingAdd.push( candidate );
347
+
348
+ // Make sure return point is properly restored.
349
+ candidate = candidate.returnPoint || candidate.parent;
350
+ }
351
+
352
+ if ( candidate != fragment )
353
+ {
354
+ // Add all elements that have been found in the above loop.
355
+ for ( i = 0 ; i < pendingAdd.length ; i++ )
356
+ {
357
+ var node = pendingAdd[ i ];
358
+ addElement( node, node.parent );
359
+ }
360
+
361
+ currentNode = candidate;
362
+
363
+ if ( currentNode.name == 'pre' )
364
+ inPre = false;
365
+
366
+ if ( currentNode.name == 'textarea' )
367
+ inTextarea = false;
368
+
369
+ if ( candidate._.isBlockLike )
370
+ sendPendingBRs();
371
+
372
+ addElement( candidate, candidate.parent );
373
+
374
+ // The parent should start receiving new nodes now, except if
375
+ // addElement changed the currentNode.
376
+ if ( candidate == currentNode )
377
+ currentNode = currentNode.parent;
378
+
379
+ pendingInline = pendingInline.concat( newPendingInline );
380
+ }
381
+
382
+ if ( tagName == 'body' )
383
+ fixForBody = false;
384
+ };
385
+
386
+ parser.onText = function( text )
387
+ {
388
+ // Trim empty spaces at beginning of text contents except <pre> and <textarea>.
389
+ if ( ( !currentNode._.hasInlineStarted || pendingBRs.length ) && !inPre && !inTextarea )
390
+ {
391
+ text = CKEDITOR.tools.ltrim( text );
392
+
393
+ if ( text.length === 0 )
394
+ return;
395
+ }
396
+
397
+ sendPendingBRs();
398
+ checkPending();
399
+
400
+ if ( fixForBody
401
+ && ( !currentNode.type || currentNode.name == 'body' )
402
+ && CKEDITOR.tools.trim( text ) )
403
+ {
404
+ this.onTagOpen( fixForBody, {}, 0, 1 );
405
+ }
406
+
407
+ // Shrinking consequential spaces into one single for all elements
408
+ // text contents.
409
+ if ( !inPre && !inTextarea )
410
+ text = text.replace( /[\t\r\n ]{2,}|[\t\r\n]/g, ' ' );
411
+
412
+ currentNode.add( new CKEDITOR.htmlParser.text( text ) );
413
+ };
414
+
415
+ parser.onCDATA = function( cdata )
416
+ {
417
+ currentNode.add( new CKEDITOR.htmlParser.cdata( cdata ) );
418
+ };
419
+
420
+ parser.onComment = function( comment )
421
+ {
422
+ sendPendingBRs();
423
+ checkPending();
424
+ currentNode.add( new CKEDITOR.htmlParser.comment( comment ) );
425
+ };
426
+
427
+ // Parse it.
428
+ parser.parse( fragmentHtml );
429
+
430
+ // Send all pending BRs except one, which we consider a unwanted bogus. (#5293)
431
+ sendPendingBRs( !CKEDITOR.env.ie && 1 );
432
+
433
+ // Close all pending nodes, make sure return point is properly restored.
434
+ while ( currentNode != fragment )
435
+ addElement( currentNode, currentNode.parent, 1 );
436
+
437
+ return fragment;
438
+ };
439
+
440
+ CKEDITOR.htmlParser.fragment.prototype =
441
+ {
442
+ /**
443
+ * Adds a node to this fragment.
444
+ * @param {Object} node The node to be added. It can be any of of the
445
+ * following types: {@link CKEDITOR.htmlParser.element},
446
+ * {@link CKEDITOR.htmlParser.text} and
447
+ * {@link CKEDITOR.htmlParser.comment}.
448
+ * @param {Number} [index] From where the insertion happens.
449
+ * @example
450
+ */
451
+ add : function( node, index )
452
+ {
453
+ isNaN( index ) && ( index = this.children.length );
454
+
455
+ var previous = index > 0 ? this.children[ index - 1 ] : null;
456
+ if ( previous )
457
+ {
458
+ // If the block to be appended is following text, trim spaces at
459
+ // the right of it.
460
+ if ( node._.isBlockLike && previous.type == CKEDITOR.NODE_TEXT )
461
+ {
462
+ previous.value = CKEDITOR.tools.rtrim( previous.value );
463
+
464
+ // If we have completely cleared the previous node.
465
+ if ( previous.value.length === 0 )
466
+ {
467
+ // Remove it from the list and add the node again.
468
+ this.children.pop();
469
+ this.add( node );
470
+ return;
471
+ }
472
+ }
473
+
474
+ previous.next = node;
475
+ }
476
+
477
+ node.previous = previous;
478
+ node.parent = this;
479
+
480
+ this.children.splice( index, 0, node );
481
+
482
+ this._.hasInlineStarted = node.type == CKEDITOR.NODE_TEXT || ( node.type == CKEDITOR.NODE_ELEMENT && !node._.isBlockLike );
483
+ },
484
+
485
+ /**
486
+ * Writes the fragment HTML to a CKEDITOR.htmlWriter.
487
+ * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML.
488
+ * @example
489
+ * var writer = new CKEDITOR.htmlWriter();
490
+ * var fragment = CKEDITOR.htmlParser.fragment.fromHtml( '&lt;P&gt;&lt;B&gt;Example' );
491
+ * fragment.writeHtml( writer )
492
+ * alert( writer.getHtml() ); "&lt;p&gt;&lt;b&gt;Example&lt;/b&gt;&lt;/p&gt;"
493
+ */
494
+ writeHtml : function( writer, filter )
495
+ {
496
+ var isChildrenFiltered;
497
+ this.filterChildren = function()
498
+ {
499
+ var writer = new CKEDITOR.htmlParser.basicWriter();
500
+ this.writeChildrenHtml.call( this, writer, filter, true );
501
+ var html = writer.getHtml();
502
+ this.children = new CKEDITOR.htmlParser.fragment.fromHtml( html ).children;
503
+ isChildrenFiltered = 1;
504
+ };
505
+
506
+ // Filtering the root fragment before anything else.
507
+ !this.name && filter && filter.onFragment( this );
508
+
509
+ this.writeChildrenHtml( writer, isChildrenFiltered ? null : filter );
510
+ },
511
+
512
+ writeChildrenHtml : function( writer, filter )
513
+ {
514
+ for ( var i = 0 ; i < this.children.length ; i++ )
515
+ this.children[i].writeHtml( writer, filter );
516
+ }
517
+ };
518
+ })();