radiant-ck_editor_filter-extension 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (577) hide show
  1. data/LICENSE +21 -0
  2. data/README.markdown +55 -0
  3. data/Rakefile +138 -0
  4. data/VERSION +1 -0
  5. data/app/models/ckeditor_interface.rb +15 -0
  6. data/app/views/admin/assets/_asset.html.haml +19 -0
  7. data/app/views/admin/pages/_editor_control.html.haml +1 -0
  8. data/ck_editor_filter_extension.rb +25 -0
  9. data/ckeditor.html +0 -0
  10. data/cucumber.yml +1 -0
  11. data/features/support/env.rb +16 -0
  12. data/features/support/paths.rb +14 -0
  13. data/lib/ck_editor_filter.rb +7 -0
  14. data/lib/tasks/ck_editor_filter_extension_tasks.rake +28 -0
  15. data/public/images/admin/tmp_thumbnail_icon.png +0 -0
  16. data/public/javascripts/extensions/ck_editor_filter/ckeditor/.htaccess +24 -0
  17. data/public/javascripts/extensions/ck_editor_filter/ckeditor/CHANGES.html +538 -0
  18. data/public/javascripts/extensions/ck_editor_filter/ckeditor/INSTALL.html +92 -0
  19. data/public/javascripts/extensions/ck_editor_filter/ckeditor/LICENSE.html +1334 -0
  20. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/ajax.html +100 -0
  21. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/api.html +152 -0
  22. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/api_dialog.html +181 -0
  23. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/api_dialog/my_dialog.js +28 -0
  24. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/divreplace.html +137 -0
  25. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/enterkey.html +88 -0
  26. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/fullpage.html +62 -0
  27. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/index.html +53 -0
  28. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/jqueryadapter.html +73 -0
  29. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/php/advanced.php +93 -0
  30. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/php/events.php +130 -0
  31. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/php/replace.php +63 -0
  32. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/php/replaceall.php +68 -0
  33. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/php/standalone.php +64 -0
  34. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/replacebyclass.html +49 -0
  35. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/replacebycode.html +80 -0
  36. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/sample.css +81 -0
  37. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/sample.js +65 -0
  38. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/sample_posteddata.php +59 -0
  39. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/sharedspaces.html +131 -0
  40. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/skins.html +83 -0
  41. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/ui_color.html +87 -0
  42. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_samples/ui_languages.html +104 -0
  43. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/adapters/jquery.js +297 -0
  44. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/_bootstrap.js +84 -0
  45. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/ajax.js +143 -0
  46. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/ckeditor.js +103 -0
  47. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/ckeditor_base.js +190 -0
  48. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/ckeditor_basic.js +241 -0
  49. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/command.js +73 -0
  50. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/commanddefinition.js +86 -0
  51. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/config.js +307 -0
  52. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dataprocessor.js +66 -0
  53. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom.js +21 -0
  54. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/comment.js +32 -0
  55. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/document.js +224 -0
  56. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/documentfragment.js +49 -0
  57. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/domobject.js +210 -0
  58. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/element.js +1441 -0
  59. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/elementpath.js +104 -0
  60. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/event.js +142 -0
  61. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/node.js +662 -0
  62. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/nodelist.js +23 -0
  63. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/range.js +1735 -0
  64. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/text.js +123 -0
  65. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/walker.js +451 -0
  66. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dom/window.js +96 -0
  67. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/dtd.js +233 -0
  68. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/editor.js +720 -0
  69. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/editor_basic.js +179 -0
  70. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/env.js +219 -0
  71. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/event.js +336 -0
  72. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/eventInfo.js +120 -0
  73. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/focusmanager.js +137 -0
  74. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser.js +212 -0
  75. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/basicwriter.js +145 -0
  76. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/cdata.js +43 -0
  77. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/comment.js +60 -0
  78. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/element.js +240 -0
  79. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/filter.js +262 -0
  80. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/fragment.js +495 -0
  81. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/htmlparser/text.js +55 -0
  82. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/imagecacher.js +58 -0
  83. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/lang.js +152 -0
  84. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/loader.js +242 -0
  85. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/plugindefinition.js +66 -0
  86. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/plugins.js +85 -0
  87. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/resourcemanager.js +238 -0
  88. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/scriptloader.js +198 -0
  89. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/skins.js +204 -0
  90. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/themes.js +19 -0
  91. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/tools.js +685 -0
  92. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/ui.js +116 -0
  93. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/core/xml.js +165 -0
  94. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/_languages.js +83 -0
  95. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/_translationstatus.txt +60 -0
  96. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/af.js +699 -0
  97. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ar.js +699 -0
  98. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/bg.js +699 -0
  99. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/bn.js +699 -0
  100. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/bs.js +699 -0
  101. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ca.js +699 -0
  102. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/cs.js +699 -0
  103. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/cy.js +699 -0
  104. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/da.js +699 -0
  105. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/de.js +699 -0
  106. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/el.js +699 -0
  107. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/en-au.js +699 -0
  108. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/en-ca.js +699 -0
  109. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/en-gb.js +699 -0
  110. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/en.js +699 -0
  111. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/eo.js +699 -0
  112. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/es.js +699 -0
  113. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/et.js +699 -0
  114. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/eu.js +699 -0
  115. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/fa.js +699 -0
  116. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/fi.js +699 -0
  117. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/fo.js +699 -0
  118. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/fr-ca.js +699 -0
  119. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/fr.js +699 -0
  120. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/gl.js +699 -0
  121. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/gu.js +699 -0
  122. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/he.js +699 -0
  123. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/hi.js +699 -0
  124. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/hr.js +699 -0
  125. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/hu.js +699 -0
  126. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/is.js +699 -0
  127. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/it.js +699 -0
  128. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ja.js +699 -0
  129. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/km.js +699 -0
  130. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ko.js +699 -0
  131. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/lt.js +699 -0
  132. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/lv.js +699 -0
  133. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/mn.js +699 -0
  134. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ms.js +699 -0
  135. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/nb.js +699 -0
  136. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/nl.js +699 -0
  137. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/no.js +699 -0
  138. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/pl.js +699 -0
  139. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/pt-br.js +699 -0
  140. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/pt.js +699 -0
  141. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ro.js +699 -0
  142. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/ru.js +699 -0
  143. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/sk.js +699 -0
  144. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/sl.js +699 -0
  145. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/sr-latn.js +699 -0
  146. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/sr.js +699 -0
  147. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/sv.js +699 -0
  148. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/th.js +699 -0
  149. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/tr.js +699 -0
  150. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/uk.js +699 -0
  151. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/vi.js +699 -0
  152. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/zh-cn.js +699 -0
  153. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/lang/zh.js +699 -0
  154. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +211 -0
  155. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/a11yhelp/lang/en.js +108 -0
  156. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/a11yhelp/plugin.js +46 -0
  157. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/about/dialogs/about.js +73 -0
  158. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png +0 -0
  159. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/about/plugin.js +23 -0
  160. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/basicstyles/plugin.js +93 -0
  161. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/blockquote/plugin.js +301 -0
  162. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/button/plugin.js +270 -0
  163. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/clipboard/dialogs/paste.js +186 -0
  164. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/clipboard/plugin.js +382 -0
  165. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/colorbutton/plugin.js +227 -0
  166. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +191 -0
  167. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/colordialog/plugin.js +13 -0
  168. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/contextmenu/plugin.js +274 -0
  169. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/dialog/dialogDefinition.js +315 -0
  170. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/dialog/plugin.js +2884 -0
  171. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/dialogui/plugin.js +1408 -0
  172. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/div/dialogs/div.js +535 -0
  173. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/div/plugin.js +121 -0
  174. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/domiterator/plugin.js +355 -0
  175. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/editingblock/plugin.js +224 -0
  176. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/elementspath/plugin.js +189 -0
  177. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/enterkey/plugin.js +329 -0
  178. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/entities/plugin.js +200 -0
  179. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/fakeobjects/plugin.js +120 -0
  180. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/filebrowser/plugin.js +479 -0
  181. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/find/dialogs/find.js +853 -0
  182. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/find/plugin.js +46 -0
  183. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/flash/dialogs/flash.js +690 -0
  184. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/flash/images/placeholder.png +0 -0
  185. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/flash/plugin.js +165 -0
  186. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/floatpanel/plugin.js +376 -0
  187. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/font/plugin.js +233 -0
  188. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/format/plugin.js +193 -0
  189. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/button.js +135 -0
  190. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/checkbox.js +143 -0
  191. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/form.js +177 -0
  192. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +91 -0
  193. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/radio.js +135 -0
  194. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/select.js +556 -0
  195. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/textarea.js +114 -0
  196. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/dialogs/textfield.js +193 -0
  197. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/forms/plugin.js +217 -0
  198. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/horizontalrule/plugin.js +36 -0
  199. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/htmldataprocessor/plugin.js +458 -0
  200. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/htmlwriter/plugin.js +314 -0
  201. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/iframedialog/plugin.js +136 -0
  202. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/image/dialogs/image.js +1378 -0
  203. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/image/plugin.js +64 -0
  204. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/indent/plugin.js +349 -0
  205. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/justify/plugin.js +168 -0
  206. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/keystrokes/plugin.js +229 -0
  207. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/link/dialogs/anchor.js +99 -0
  208. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/link/dialogs/link.js +1421 -0
  209. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/link/images/anchor.gif +0 -0
  210. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/link/plugin.js +188 -0
  211. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/list/plugin.js +643 -0
  212. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/listblock/plugin.js +252 -0
  213. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/maximize/plugin.js +283 -0
  214. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/menu/plugin.js +406 -0
  215. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/menubutton/plugin.js +93 -0
  216. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/newpage/plugin.js +54 -0
  217. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif +0 -0
  218. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pagebreak/plugin.js +98 -0
  219. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/panel/plugin.js +379 -0
  220. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/panelbutton/plugin.js +147 -0
  221. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pastefromword/filter/default.js +1179 -0
  222. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pastefromword/plugin.js +120 -0
  223. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +77 -0
  224. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/pastetext/plugin.js +162 -0
  225. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/popup/plugin.js +62 -0
  226. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/preview/plugin.js +108 -0
  227. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/print/plugin.js +41 -0
  228. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/removeformat/plugin.js +132 -0
  229. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/resize/plugin.js +115 -0
  230. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/richcombo/plugin.js +367 -0
  231. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/save/plugin.js +55 -0
  232. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/scayt/dialogs/options.js +533 -0
  233. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/scayt/dialogs/toolbar.css +71 -0
  234. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/scayt/plugin.js +603 -0
  235. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/selection/plugin.js +1103 -0
  236. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_address.png +0 -0
  237. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_blockquote.png +0 -0
  238. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_div.png +0 -0
  239. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h1.png +0 -0
  240. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h2.png +0 -0
  241. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h3.png +0 -0
  242. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h4.png +0 -0
  243. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h5.png +0 -0
  244. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_h6.png +0 -0
  245. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_p.png +0 -0
  246. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/images/block_pre.png +0 -0
  247. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showblocks/plugin.js +154 -0
  248. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/showborders/plugin.js +170 -0
  249. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/dialogs/smiley.js +215 -0
  250. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/angel_smile.gif +0 -0
  251. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/angry_smile.gif +0 -0
  252. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/broken_heart.gif +0 -0
  253. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/confused_smile.gif +0 -0
  254. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/cry_smile.gif +0 -0
  255. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/devil_smile.gif +0 -0
  256. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif +0 -0
  257. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/envelope.gif +0 -0
  258. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/heart.gif +0 -0
  259. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/kiss.gif +0 -0
  260. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/lightbulb.gif +0 -0
  261. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/omg_smile.gif +0 -0
  262. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/regular_smile.gif +0 -0
  263. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/sad_smile.gif +0 -0
  264. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/shades_smile.gif +0 -0
  265. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/teeth_smile.gif +0 -0
  266. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/thumbs_down.gif +0 -0
  267. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/thumbs_up.gif +0 -0
  268. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/tounge_smile.gif +0 -0
  269. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  270. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/images/wink_smile.gif +0 -0
  271. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/smiley/plugin.js +85 -0
  272. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/sourcearea/plugin.js +205 -0
  273. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +373 -0
  274. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/specialchar/plugin.js +29 -0
  275. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/styles/plugin.js +1258 -0
  276. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/stylescombo/plugin.js +282 -0
  277. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/stylescombo/styles/default.js +85 -0
  278. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/tab/plugin.js +261 -0
  279. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/table/dialogs/table.js +589 -0
  280. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/table/plugin.js +70 -0
  281. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +523 -0
  282. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/tabletools/plugin.js +1022 -0
  283. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/dialogs/templates.js +229 -0
  284. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/plugin.js +100 -0
  285. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/templates/default.js +94 -0
  286. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/templates/images/template1.gif +0 -0
  287. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/templates/images/template2.gif +0 -0
  288. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/templates/templates/images/template3.gif +0 -0
  289. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/toolbar/plugin.js +474 -0
  290. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +204 -0
  291. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/lang/en.js +15 -0
  292. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/plugin.js +37 -0
  293. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/uicolor.gif +0 -0
  294. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  295. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  296. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  297. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  298. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/assets/yui.css +15 -0
  299. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/uicolor/yui/yui.js +71 -0
  300. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/undo/plugin.js +519 -0
  301. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +49 -0
  302. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  303. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wsc/dialogs/wsc.css +83 -0
  304. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wsc/dialogs/wsc.js +176 -0
  305. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wsc/plugin.js +33 -0
  306. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/plugins/wysiwygarea/plugin.js +851 -0
  307. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/dialog.css +822 -0
  308. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/editor.css +25 -0
  309. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/elementspath.css +72 -0
  310. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/icons.css +326 -0
  311. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/icons.png +0 -0
  312. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/dialog_sides.gif +0 -0
  313. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/dialog_sides.png +0 -0
  314. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png +0 -0
  315. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/mini.gif +0 -0
  316. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/noimage.png +0 -0
  317. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/sprites.png +0 -0
  318. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/sprites_ie6.png +0 -0
  319. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/images/toolbar_start.gif +0 -0
  320. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/mainui.css +183 -0
  321. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/menu.css +211 -0
  322. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/panel.css +216 -0
  323. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/presets.css +49 -0
  324. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/reset.css +78 -0
  325. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/richcombo.css +270 -0
  326. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/skin.js +268 -0
  327. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/templates.css +84 -0
  328. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/kama/toolbar.css +421 -0
  329. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/dialog.css +728 -0
  330. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/editor.css +25 -0
  331. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/elementspath.css +73 -0
  332. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/icons.css +324 -0
  333. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/icons.png +0 -0
  334. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/dialog_sides.gif +0 -0
  335. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/dialog_sides.png +0 -0
  336. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png +0 -0
  337. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/mini.gif +0 -0
  338. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/noimage.png +0 -0
  339. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/sprites.png +0 -0
  340. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/images/sprites_ie6.png +0 -0
  341. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/mainui.css +127 -0
  342. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/menu.css +207 -0
  343. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/panel.css +211 -0
  344. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/presets.css +49 -0
  345. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/reset.css +78 -0
  346. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/richcombo.css +289 -0
  347. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/skin.js +81 -0
  348. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/templates.css +81 -0
  349. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/office2003/toolbar.css +475 -0
  350. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/dialog.css +743 -0
  351. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/editor.css +25 -0
  352. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/elementspath.css +73 -0
  353. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/icons.css +324 -0
  354. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/icons.png +0 -0
  355. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/dialog_sides.gif +0 -0
  356. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/dialog_sides.png +0 -0
  357. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png +0 -0
  358. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/mini.gif +0 -0
  359. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/noimage.png +0 -0
  360. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/sprites.png +0 -0
  361. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/sprites_ie6.png +0 -0
  362. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/images/toolbar_start.gif +0 -0
  363. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/mainui.css +142 -0
  364. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/menu.css +210 -0
  365. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/panel.css +211 -0
  366. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/presets.css +50 -0
  367. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/reset.css +78 -0
  368. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/richcombo.css +289 -0
  369. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/skin.js +77 -0
  370. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/templates.css +81 -0
  371. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/skins/v2/toolbar.css +425 -0
  372. data/public/javascripts/extensions/ck_editor_filter/ckeditor/_source/themes/default/theme.js +334 -0
  373. data/public/javascripts/extensions/ck_editor_filter/ckeditor/adapters/jquery.js +6 -0
  374. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor.js +121 -0
  375. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor.pack +205 -0
  376. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor.php +29 -0
  377. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor_basic.js +8 -0
  378. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor_basic_source.js +20 -0
  379. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor_php4.php +593 -0
  380. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor_php5.php +583 -0
  381. data/public/javascripts/extensions/ck_editor_filter/ckeditor/ckeditor_source.js +25 -0
  382. data/public/javascripts/extensions/ck_editor_filter/ckeditor/config.js +11 -0
  383. data/public/javascripts/extensions/ck_editor_filter/ckeditor/contents.css +35 -0
  384. data/public/javascripts/extensions/ck_editor_filter/ckeditor/images/spacer.gif +0 -0
  385. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/_languages.js +6 -0
  386. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/_translationstatus.txt +60 -0
  387. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/af.js +6 -0
  388. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ar.js +6 -0
  389. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/bg.js +6 -0
  390. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/bn.js +6 -0
  391. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/bs.js +6 -0
  392. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ca.js +6 -0
  393. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/cs.js +6 -0
  394. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/cy.js +6 -0
  395. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/da.js +6 -0
  396. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/de.js +6 -0
  397. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/el.js +6 -0
  398. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/en-au.js +6 -0
  399. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/en-ca.js +6 -0
  400. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/en-gb.js +6 -0
  401. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/en.js +6 -0
  402. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/eo.js +6 -0
  403. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/es.js +6 -0
  404. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/et.js +6 -0
  405. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/eu.js +6 -0
  406. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/fa.js +6 -0
  407. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/fi.js +6 -0
  408. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/fo.js +6 -0
  409. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/fr-ca.js +6 -0
  410. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/fr.js +6 -0
  411. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/gl.js +6 -0
  412. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/gu.js +6 -0
  413. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/he.js +6 -0
  414. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/hi.js +6 -0
  415. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/hr.js +6 -0
  416. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/hu.js +6 -0
  417. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/is.js +6 -0
  418. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/it.js +6 -0
  419. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ja.js +6 -0
  420. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/km.js +6 -0
  421. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ko.js +6 -0
  422. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/lt.js +6 -0
  423. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/lv.js +6 -0
  424. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/mn.js +6 -0
  425. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ms.js +6 -0
  426. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/nb.js +6 -0
  427. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/nl.js +6 -0
  428. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/no.js +6 -0
  429. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/pl.js +6 -0
  430. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/pt-br.js +6 -0
  431. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/pt.js +6 -0
  432. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ro.js +6 -0
  433. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/ru.js +6 -0
  434. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/sk.js +6 -0
  435. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/sl.js +6 -0
  436. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/sr-latn.js +6 -0
  437. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/sr.js +6 -0
  438. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/sv.js +6 -0
  439. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/th.js +6 -0
  440. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/tr.js +6 -0
  441. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/uk.js +6 -0
  442. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/vi.js +6 -0
  443. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/zh-cn.js +6 -0
  444. data/public/javascripts/extensions/ck_editor_filter/ckeditor/lang/zh.js +6 -0
  445. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/MediaEmbed/dialogs/mediaembed.html +14 -0
  446. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/MediaEmbed/images/icon.gif +0 -0
  447. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/MediaEmbed/plugin.js +61 -0
  448. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +7 -0
  449. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/a11yhelp/lang/en.js +6 -0
  450. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/about/dialogs/about.js +6 -0
  451. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
  452. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
  453. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/colordialog/dialogs/colordialog.js +6 -0
  454. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
  455. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/div/dialogs/div.js +7 -0
  456. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/find/dialogs/find.js +9 -0
  457. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/flash/dialogs/flash.js +9 -0
  458. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/flash/images/placeholder.png +0 -0
  459. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/button.js +6 -0
  460. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
  461. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/form.js +6 -0
  462. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
  463. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/radio.js +6 -0
  464. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/select.js +9 -0
  465. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
  466. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
  467. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/iframedialog/plugin.js +6 -0
  468. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/image/dialogs/image.js +13 -0
  469. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/link/dialogs/anchor.js +6 -0
  470. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/link/dialogs/link.js +11 -0
  471. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/link/images/anchor.gif +0 -0
  472. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
  473. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/paperclipped/images/icon.png +0 -0
  474. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/paperclipped/plugin.js +21 -0
  475. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/pastefromword/filter/default.js +10 -0
  476. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
  477. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/scayt/dialogs/options.js +8 -0
  478. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
  479. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_address.png +0 -0
  480. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
  481. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_div.png +0 -0
  482. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
  483. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
  484. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
  485. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
  486. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
  487. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
  488. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_p.png +0 -0
  489. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
  490. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
  491. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
  492. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
  493. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
  494. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
  495. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
  496. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
  497. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
  498. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/envelope.gif +0 -0
  499. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/heart.gif +0 -0
  500. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/kiss.gif +0 -0
  501. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
  502. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
  503. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
  504. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
  505. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
  506. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
  507. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
  508. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
  509. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
  510. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
  511. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
  512. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
  513. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/stylescombo/styles/default.js +6 -0
  514. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/table/dialogs/table.js +9 -0
  515. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/tabletools/dialogs/tableCell.js +8 -0
  516. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/templates/dialogs/templates.js +7 -0
  517. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/templates/templates/default.js +6 -0
  518. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
  519. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
  520. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
  521. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
  522. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/lang/en.js +6 -0
  523. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/plugin.js +6 -0
  524. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/uicolor.gif +0 -0
  525. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
  526. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
  527. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
  528. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
  529. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
  530. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/uicolor/yui/yui.js +76 -0
  531. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
  532. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
  533. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
  534. data/public/javascripts/extensions/ck_editor_filter/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
  535. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/dialog.css +9 -0
  536. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/editor.css +12 -0
  537. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/icons.png +0 -0
  538. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
  539. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/dialog_sides.png +0 -0
  540. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
  541. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/mini.gif +0 -0
  542. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/noimage.png +0 -0
  543. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/sprites.png +0 -0
  544. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
  545. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
  546. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/skin.js +7 -0
  547. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/kama/templates.css +6 -0
  548. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/dialog.css +9 -0
  549. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/editor.css +13 -0
  550. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/icons.png +0 -0
  551. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
  552. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
  553. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
  554. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/mini.gif +0 -0
  555. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/noimage.png +0 -0
  556. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/sprites.png +0 -0
  557. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
  558. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/skin.js +6 -0
  559. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/office2003/templates.css +6 -0
  560. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/dialog.css +8 -0
  561. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/editor.css +12 -0
  562. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/icons.png +0 -0
  563. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
  564. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/dialog_sides.png +0 -0
  565. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
  566. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/mini.gif +0 -0
  567. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/noimage.png +0 -0
  568. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/sprites.png +0 -0
  569. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
  570. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
  571. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/skin.js +6 -0
  572. data/public/javascripts/extensions/ck_editor_filter/ckeditor/skins/v2/templates.css +6 -0
  573. data/public/javascripts/extensions/ck_editor_filter/ckeditor/themes/default/theme.js +8 -0
  574. data/public/javascripts/extensions/ck_editor_filter/radiant.ckeditor.js +83 -0
  575. data/spec/spec.opts +6 -0
  576. data/spec/spec_helper.rb +36 -0
  577. metadata +658 -0
@@ -0,0 +1,116 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * Contains UI features related to an editor instance.
8
+ * @constructor
9
+ * @param {CKEDITOR.editor} editor The editor instance.
10
+ * @example
11
+ */
12
+ CKEDITOR.ui = function( editor )
13
+ {
14
+ if ( editor.ui )
15
+ return editor.ui;
16
+
17
+ /**
18
+ * Object used to hold private stuff.
19
+ * @private
20
+ */
21
+ this._ =
22
+ {
23
+ handlers : {},
24
+ items : {},
25
+ editor : editor
26
+ };
27
+
28
+ return this;
29
+ };
30
+
31
+ // PACKAGER_RENAME( CKEDITOR.ui )
32
+
33
+ CKEDITOR.ui.prototype =
34
+ {
35
+ /**
36
+ * Adds a UI item to the items collection. These items can be later used in
37
+ * the interface.
38
+ * @param {String} name The UI item name.
39
+ * @param {Object} type The item type.
40
+ * @param {Object} definition The item definition. The properties of this
41
+ * object depend on the item type.
42
+ * @example
43
+ * // Add a new button named "MyBold".
44
+ * editorInstance.ui.add( 'MyBold', CKEDITOR.UI_BUTTON,
45
+ * {
46
+ * label : 'My Bold',
47
+ * command : 'bold'
48
+ * });
49
+ */
50
+ add : function( name, type, definition )
51
+ {
52
+ this._.items[ name ] =
53
+ {
54
+ type : type,
55
+ // The name of {@link CKEDITOR.command} which associate with this UI.
56
+ command : definition.command || null,
57
+ args : Array.prototype.slice.call( arguments, 2 )
58
+ };
59
+ },
60
+
61
+ /**
62
+ * Gets a UI object.
63
+ * @param {String} name The UI item hame.
64
+ * @example
65
+ */
66
+ create : function( name )
67
+ {
68
+ var item = this._.items[ name ],
69
+ handler = item && this._.handlers[ item.type ],
70
+ command = item && item.command && this._.editor.getCommand( item.command );
71
+
72
+ var result = handler && handler.create.apply( this, item.args );
73
+
74
+ // Add reference inside command object.
75
+ if ( command )
76
+ command.uiItems.push( result );
77
+
78
+ return result;
79
+ },
80
+
81
+ /**
82
+ * Adds a handler for a UI item type. The handler is responsible for
83
+ * transforming UI item definitions in UI objects.
84
+ * @param {Object} type The item type.
85
+ * @param {Object} handler The handler definition.
86
+ * @example
87
+ */
88
+ addHandler : function( type, handler )
89
+ {
90
+ this._.handlers[ type ] = handler;
91
+ }
92
+ };
93
+
94
+ /**
95
+ * (Virtual Class) Do not call this constructor. This class is not really part
96
+ * of the API. It just illustrates the features of hanlder objects to be
97
+ * passed to the {@link CKEDITOR.ui.prototype.addHandler} function.
98
+ * @name CKEDITOR.ui.handlerDefinition
99
+ * @constructor
100
+ * @example
101
+ */
102
+
103
+ /**
104
+ * Transforms an item definition into an UI item object.
105
+ * @name CKEDITOR.handlerDefinition.prototype.create
106
+ * @function
107
+ * @param {Object} definition The item definition.
108
+ * @example
109
+ * editorInstance.ui.addHandler( CKEDITOR.UI_BUTTON,
110
+ * {
111
+ * create : function( definition )
112
+ * {
113
+ * return new CKEDITOR.ui.button( definition );
114
+ * }
115
+ * });
116
+ */
@@ -0,0 +1,165 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @fileOverview Defines the {@link CKEDITOR.xml} class, which represents a
8
+ * loaded XML document.
9
+ */
10
+
11
+ /**
12
+ * Represents a loaded XML document.
13
+ * @constructor
14
+ * @param {object|string} xmlObjectOrData A native XML (DOM document) object or
15
+ * a string containing the XML definition to be loaded.
16
+ * @example
17
+ * var xml = <b>new CKEDITOR.xml( '<books><book title="My Book" /></books>' )</b>;
18
+ */
19
+ CKEDITOR.xml = function( xmlObjectOrData )
20
+ {
21
+ var baseXml = null;
22
+
23
+ if ( typeof xmlObjectOrData == 'object' )
24
+ baseXml = xmlObjectOrData;
25
+ else
26
+ {
27
+ var data = ( xmlObjectOrData || '' ).replace( /&nbsp;/g, '\xA0' );
28
+ if ( window.DOMParser )
29
+ baseXml = (new DOMParser()).parseFromString( data, 'text/xml' );
30
+ else if ( window.ActiveXObject )
31
+ {
32
+ try { baseXml = new ActiveXObject( 'MSXML2.DOMDocument' ); }
33
+ catch(e)
34
+ {
35
+ try { baseXml = new ActiveXObject( 'Microsoft.XmlDom' ); } catch(e) {}
36
+ }
37
+
38
+ if ( baseXml )
39
+ {
40
+ baseXml.async = false;
41
+ baseXml.resolveExternals = false;
42
+ baseXml.validateOnParse = false;
43
+ baseXml.loadXML( data );
44
+ }
45
+ }
46
+ }
47
+
48
+ /**
49
+ * The native XML (DOM document) used by the class instance.
50
+ * @type object
51
+ * @example
52
+ */
53
+ this.baseXml = baseXml;
54
+ };
55
+
56
+ CKEDITOR.xml.prototype =
57
+ {
58
+ /**
59
+ * Get a single node from the XML document, based on a XPath query.
60
+ * @param {String} xpath The XPath query to execute.
61
+ * @param {Object} [contextNode] The XML DOM node to be used as the context
62
+ * for the XPath query. The document root is used by default.
63
+ * @returns {Object} A XML node element or null if the query has no results.
64
+ * @example
65
+ * // Create the XML instance.
66
+ * var xml = new CKEDITOR.xml( '<list><item id="test1" /><item id="test2" /></list>' );
67
+ * // Get the first <item> node.
68
+ * var itemNode = <b>xml.selectSingleNode( 'list/item' )</b>;
69
+ * // Alert "item".
70
+ * alert( itemNode.nodeName );
71
+ */
72
+ selectSingleNode : function( xpath, contextNode )
73
+ {
74
+ var baseXml = this.baseXml;
75
+
76
+ if ( contextNode || ( contextNode = baseXml ) )
77
+ {
78
+ if ( CKEDITOR.env.ie || contextNode.selectSingleNode ) // IE
79
+ return contextNode.selectSingleNode( xpath );
80
+ else if ( baseXml.evaluate ) // Others
81
+ {
82
+ var result = baseXml.evaluate( xpath, contextNode, null, 9, null);
83
+ return ( result && result.singleNodeValue ) || null;
84
+ }
85
+ }
86
+
87
+ return null;
88
+ },
89
+
90
+ /**
91
+ * Gets a list node from the XML document, based on a XPath query.
92
+ * @param {String} xpath The XPath query to execute.
93
+ * @param {Object} [contextNode] The XML DOM node to be used as the context
94
+ * for the XPath query. The document root is used by default.
95
+ * @returns {ArrayLike} An array containing all matched nodes. The array will
96
+ * be empty if the query has no results.
97
+ * @example
98
+ * // Create the XML instance.
99
+ * var xml = new CKEDITOR.xml( '<list><item id="test1" /><item id="test2" /></list>' );
100
+ * // Get the first <item> node.
101
+ * var itemNodes = xml.selectSingleNode( 'list/item' );
102
+ * // Alert "item" twice, one for each <item>.
103
+ * for ( var i = 0 ; i < itemNodes.length ; i++ )
104
+ * alert( itemNodes[i].nodeName );
105
+ */
106
+ selectNodes : function( xpath, contextNode )
107
+ {
108
+ var baseXml = this.baseXml,
109
+ nodes = [];
110
+
111
+ if ( contextNode || ( contextNode = baseXml ) )
112
+ {
113
+ if ( CKEDITOR.env.ie || contextNode.selectNodes ) // IE
114
+ return contextNode.selectNodes( xpath );
115
+ else if ( baseXml.evaluate ) // Others
116
+ {
117
+ var result = baseXml.evaluate( xpath, contextNode, null, 5, null);
118
+
119
+ if ( result )
120
+ {
121
+ var node;
122
+ while ( ( node = result.iterateNext() ) )
123
+ nodes.push( node );
124
+ }
125
+ }
126
+ }
127
+
128
+ return nodes;
129
+ },
130
+
131
+ /**
132
+ * Gets the string representation of hte inner contents of a XML node,
133
+ * based on a XPath query.
134
+ * @param {String} xpath The XPath query to execute.
135
+ * @param {Object} [contextNode] The XML DOM node to be used as the context
136
+ * for the XPath query. The document root is used by default.
137
+ * @returns {String} The textual representation of the inner contents of
138
+ * the node or null if the query has no results.
139
+ * @example
140
+ * // Create the XML instance.
141
+ * var xml = new CKEDITOR.xml( '<list><item id="test1" /><item id="test2" /></list>' );
142
+ * // Alert "<item id="test1" /><item id="test2" />".
143
+ * alert( xml.getInnerXml( 'list' ) );
144
+ */
145
+ getInnerXml : function( xpath, contextNode )
146
+ {
147
+ var node = this.selectSingleNode( xpath, contextNode ),
148
+ xml = [];
149
+ if ( node )
150
+ {
151
+ node = node.firstChild;
152
+ while ( node )
153
+ {
154
+ if ( node.xml ) // IE
155
+ xml.push( node.xml );
156
+ else if ( window.XMLSerializer ) // Others
157
+ xml.push( ( new XMLSerializer() ).serializeToString( node ) );
158
+
159
+ node = node.nextSibling;
160
+ }
161
+ }
162
+
163
+ return xml.length ? xml.join( '' ) : null;
164
+ }
165
+ };
@@ -0,0 +1,83 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ var CKEDITOR_LANGS = (function()
7
+ {
8
+ var langs =
9
+ {
10
+ af : 'Afrikaans',
11
+ ar : 'Arabic',
12
+ bg : 'Bulgarian',
13
+ bn : 'Bengali/Bangla',
14
+ bs : 'Bosnian',
15
+ ca : 'Catalan',
16
+ cs : 'Czech',
17
+ cy : 'Welsh',
18
+ da : 'Danish',
19
+ de : 'German',
20
+ el : 'Greek',
21
+ en : 'English',
22
+ 'en-au' : 'English (Australia)',
23
+ 'en-ca' : 'English (Canadian)',
24
+ 'en-gb' : 'English (United Kingdom)',
25
+ eo : 'Esperanto',
26
+ es : 'Spanish',
27
+ et : 'Estonian',
28
+ eu : 'Basque',
29
+ fa : 'Persian',
30
+ fi : 'Finnish',
31
+ fo : 'Faroese',
32
+ fr : 'French',
33
+ 'fr-ca' : 'French (Canada)',
34
+ gl : 'Galician',
35
+ gu : 'Gujarati',
36
+ he : 'Hebrew',
37
+ hi : 'Hindi',
38
+ hr : 'Croatian',
39
+ hu : 'Hungarian',
40
+ is : 'Icelandic',
41
+ it : 'Italian',
42
+ ja : 'Japanese',
43
+ km : 'Khmer',
44
+ ko : 'Korean',
45
+ lt : 'Lithuanian',
46
+ lv : 'Latvian',
47
+ mn : 'Mongolian',
48
+ ms : 'Malay',
49
+ nb : 'Norwegian Bokmal',
50
+ nl : 'Dutch',
51
+ no : 'Norwegian',
52
+ pl : 'Polish',
53
+ pt : 'Portuguese (Portugal)',
54
+ 'pt-br' : 'Portuguese (Brazil)',
55
+ ro : 'Romanian',
56
+ ru : 'Russian',
57
+ sk : 'Slovak',
58
+ sl : 'Slovenian',
59
+ sr : 'Serbian (Cyrillic)',
60
+ 'sr-latn' : 'Serbian (Latin)',
61
+ sv : 'Swedish',
62
+ th : 'Thai',
63
+ tr : 'Turkish',
64
+ uk : 'Ukrainian',
65
+ vi : 'Vietnamese',
66
+ zh : 'Chinese Traditional',
67
+ 'zh-cn' : 'Chinese Simplified'
68
+ };
69
+
70
+ var langsArray = [];
71
+
72
+ for ( var code in langs )
73
+ {
74
+ langsArray.push( { code : code, name : langs[ code ] } );
75
+ }
76
+
77
+ langsArray.sort( function( a, b )
78
+ {
79
+ return ( a.name < b.name ) ? -1 : 1;
80
+ });
81
+
82
+ return langsArray;
83
+ })();
@@ -0,0 +1,60 @@
1
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
2
+ For licensing, see LICENSE.html or http://ckeditor.com/license
3
+
4
+ af.js Found: 286 Missing: 203
5
+ ar.js Found: 450 Missing: 39
6
+ bg.js Found: 279 Missing: 210
7
+ bn.js Found: 281 Missing: 208
8
+ bs.js Found: 187 Missing: 302
9
+ ca.js Found: 403 Missing: 86
10
+ cs.js Found: 410 Missing: 79
11
+ cy.js Found: 451 Missing: 38
12
+ da.js Found: 403 Missing: 86
13
+ de.js Found: 443 Missing: 46
14
+ el.js Found: 285 Missing: 204
15
+ en-au.js Found: 368 Missing: 121
16
+ en-ca.js Found: 368 Missing: 121
17
+ en-gb.js Found: 369 Missing: 120
18
+ eo.js Found: 259 Missing: 230
19
+ es.js Found: 466 Missing: 23
20
+ et.js Found: 300 Missing: 189
21
+ eu.js Found: 403 Missing: 86
22
+ fa.js Found: 301 Missing: 188
23
+ fi.js Found: 466 Missing: 23
24
+ fo.js Found: 300 Missing: 189
25
+ fr-ca.js Found: 301 Missing: 188
26
+ fr.js Found: 402 Missing: 87
27
+ gl.js Found: 282 Missing: 207
28
+ gu.js Found: 300 Missing: 189
29
+ he.js Found: 466 Missing: 23
30
+ hi.js Found: 301 Missing: 188
31
+ hr.js Found: 403 Missing: 86
32
+ hu.js Found: 300 Missing: 189
33
+ is.js Found: 306 Missing: 183
34
+ it.js Found: 403 Missing: 86
35
+ ja.js Found: 412 Missing: 77
36
+ km.js Found: 275 Missing: 214
37
+ ko.js Found: 292 Missing: 197
38
+ lt.js Found: 305 Missing: 184
39
+ lv.js Found: 282 Missing: 207
40
+ mn.js Found: 300 Missing: 189
41
+ ms.js Found: 264 Missing: 225
42
+ nb.js Found: 409 Missing: 80
43
+ nl.js Found: 466 Missing: 23
44
+ no.js Found: 409 Missing: 80
45
+ pl.js Found: 410 Missing: 79
46
+ pt-br.js Found: 402 Missing: 87
47
+ pt.js Found: 281 Missing: 208
48
+ ro.js Found: 300 Missing: 189
49
+ ru.js Found: 466 Missing: 23
50
+ sk.js Found: 301 Missing: 188
51
+ sl.js Found: 409 Missing: 80
52
+ sr-latn.js Found: 275 Missing: 214
53
+ sr.js Found: 275 Missing: 214
54
+ sv.js Found: 298 Missing: 191
55
+ th.js Found: 286 Missing: 203
56
+ tr.js Found: 306 Missing: 183
57
+ uk.js Found: 403 Missing: 86
58
+ vi.js Found: 403 Missing: 86
59
+ zh-cn.js Found: 403 Missing: 86
60
+ zh.js Found: 403 Missing: 86
@@ -0,0 +1,699 @@
1
+ /*
2
+ Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ /**
7
+ * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
8
+ * Afrikaans language.
9
+ */
10
+
11
+ /**#@+
12
+ @type String
13
+ @example
14
+ */
15
+
16
+ /**
17
+ * Constains the dictionary of language entries.
18
+ * @namespace
19
+ */
20
+ CKEDITOR.lang['af'] =
21
+ {
22
+ /**
23
+ * The language reading direction. Possible values are "rtl" for
24
+ * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
25
+ * languages (like English).
26
+ * @default 'ltr'
27
+ */
28
+ dir : 'ltr',
29
+
30
+ /*
31
+ * Screenreader titles. Please note that screenreaders are not always capable
32
+ * of reading non-English words. So be careful while translating it.
33
+ */
34
+ editorTitle : 'Rich text editor, %1, press ALT 0 for help.', // MISSING
35
+
36
+ // ARIA descriptions.
37
+ toolbar : 'Toolbar', // MISSING
38
+ editor : 'Rich Text Editor', // MISSING
39
+
40
+ // Toolbar buttons without dialogs.
41
+ source : 'Source',
42
+ newPage : 'Nuwe Bladsy',
43
+ save : 'Bewaar',
44
+ preview : 'Voorskou',
45
+ cut : 'Uitsny ',
46
+ copy : 'Kopieer',
47
+ paste : 'Byvoeg',
48
+ print : 'Druk',
49
+ underline : 'Onderstreep',
50
+ bold : 'Vet',
51
+ italic : 'Skuins',
52
+ selectAll : 'Selekteer alles',
53
+ removeFormat : 'Formaat verweider',
54
+ strike : 'Gestreik',
55
+ subscript : 'Subscript',
56
+ superscript : 'Superscript',
57
+ horizontalrule : 'Horisontale lyn byvoeg',
58
+ pagebreak : 'Bladsy breek byvoeg',
59
+ unlink : 'Skakel verweider',
60
+ undo : 'Ont-skep',
61
+ redo : 'Her-skep',
62
+
63
+ // Common messages and labels.
64
+ common :
65
+ {
66
+ browseServer : 'Server deurblaai',
67
+ url : 'URL',
68
+ protocol : 'Protokol',
69
+ upload : 'Oplaai',
70
+ uploadSubmit : 'Stuur dit na die Server',
71
+ image : 'Beeld',
72
+ flash : 'Flash',
73
+ form : 'Form',
74
+ checkbox : 'HakBox',
75
+ radio : 'PuntBox',
76
+ textField : 'Byvoegbare karakter strook',
77
+ textarea : 'Byvoegbare karakter area',
78
+ hiddenField : 'Blinde strook',
79
+ button : 'Knop',
80
+ select : 'Opklapbare keuse strook',
81
+ imageButton : 'Beeld knop',
82
+ notSet : '<geen instelling>',
83
+ id : 'Id',
84
+ name : 'Naam',
85
+ langDir : 'Taal rigting',
86
+ langDirLtr : 'Links na regs (LTR)',
87
+ langDirRtl : 'Regs na links (RTL)',
88
+ langCode : 'Taal kode',
89
+ longDescr : 'Lang beskreiwing URL',
90
+ cssClass : 'Skakel Tiepe',
91
+ advisoryTitle : 'Voorbeveelings Titel',
92
+ cssStyle : 'Styl',
93
+ ok : 'OK',
94
+ cancel : 'Kanseleer',
95
+ close : 'Close', // MISSING
96
+ preview : 'Preview', // MISSING
97
+ generalTab : 'General', // MISSING
98
+ advancedTab : 'Ingewikkeld',
99
+ validateNumberFailed : 'This value is not a number.', // MISSING
100
+ confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
101
+ confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
102
+ options : 'Options', // MISSING
103
+ target : 'Target', // MISSING
104
+ targetNew : 'New Window (_blank)', // MISSING
105
+ targetTop : 'Topmost Window (_top)', // MISSING
106
+ targetSelf : 'Same Window (_self)', // MISSING
107
+ targetParent : 'Parent Window (_parent)', // MISSING
108
+
109
+ // Put the voice-only part of the label in the span.
110
+ unavailable : '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
111
+ },
112
+
113
+ // Special char dialog.
114
+ specialChar :
115
+ {
116
+ toolbar : 'Spesiaale Karakter byvoeg',
117
+ title : 'Kies spesiale karakter'
118
+ },
119
+
120
+ // Link dialog.
121
+ link :
122
+ {
123
+ toolbar : 'Skakel byvoeg/verander',
124
+ menu : 'Verander skakel',
125
+ title : 'Skakel',
126
+ info : 'Skakel informasie',
127
+ target : 'Mikpunt',
128
+ upload : 'Oplaai',
129
+ advanced : 'Ingewikkeld',
130
+ type : 'Skakel soort',
131
+ toUrl : 'URL', // MISSING
132
+ toAnchor : 'Skakel na plekhouers in text',
133
+ toEmail : 'E-Mail',
134
+ targetFrame : '<raam>',
135
+ targetPopup : '<popup venster>',
136
+ targetFrameName : 'Mikpunt Venster Naam',
137
+ targetPopupName : 'Popup Venster Naam',
138
+ popupFeatures : 'Popup Venster Geaartheid',
139
+ popupResizable : 'Resizable', // MISSING
140
+ popupStatusBar : 'Status Balk',
141
+ popupLocationBar: 'Adres Balk',
142
+ popupToolbar : 'Gereedskap Balk',
143
+ popupMenuBar : 'Menu Balk',
144
+ popupFullScreen : 'Voll Skerm (IE)',
145
+ popupScrollBars : 'Gleibalkstuk',
146
+ popupDependent : 'Afhanklik (Netscape)',
147
+ popupWidth : 'Weite',
148
+ popupLeft : 'Links Posisie',
149
+ popupHeight : 'Hoogde',
150
+ popupTop : 'Bo Posisie',
151
+ id : 'Id', // MISSING
152
+ langDir : 'Taal rigting',
153
+ langDirLTR : 'Links na regs (LTR)',
154
+ langDirRTL : 'Regs na links (RTL)',
155
+ acccessKey : 'Toegang sleutel',
156
+ name : 'Naam',
157
+ langCode : 'Taal rigting',
158
+ tabIndex : 'Tab Index',
159
+ advisoryTitle : 'Voorbeveelings Titel',
160
+ advisoryContentType : 'Voorbeveelings inhoud soort',
161
+ cssClasses : 'Skakel Tiepe',
162
+ charset : 'Geskakelde voorbeeld karakterstel',
163
+ styles : 'Styl',
164
+ selectAnchor : 'Kies \'n plekhouer',
165
+ anchorName : 'Volgens plekhouer naam',
166
+ anchorId : 'Volgens element Id',
167
+ emailAddress : 'E-Mail Adres',
168
+ emailSubject : 'Boodskap Opskrif',
169
+ emailBody : 'Boodskap Inhoud',
170
+ noAnchors : '(Geen plekhouers beskikbaar in dokument}',
171
+ noUrl : 'Voeg asseblief die URL in',
172
+ noEmail : 'Voeg asseblief die e-mail adres in'
173
+ },
174
+
175
+ // Anchor dialog
176
+ anchor :
177
+ {
178
+ toolbar : 'Plekhouer byvoeg/verander',
179
+ menu : 'Plekhouer eienskappe',
180
+ title : 'Plekhouer eienskappe',
181
+ name : 'Plekhouer Naam',
182
+ errorName : 'Voltooi die plekhouer naam asseblief'
183
+ },
184
+
185
+ // Find And Replace Dialog
186
+ findAndReplace :
187
+ {
188
+ title : 'Find and Replace', // MISSING
189
+ find : 'Vind',
190
+ replace : 'Vervang',
191
+ findWhat : 'Soek wat:',
192
+ replaceWith : 'Vervang met:',
193
+ notFoundMsg : 'Die gespesifiseerde karakters word nie gevind nie.',
194
+ matchCase : 'Vergelyk karakter skryfweise',
195
+ matchWord : 'Vergelyk komplete woord',
196
+ matchCyclic : 'Match cyclic', // MISSING
197
+ replaceAll : 'Vervang alles',
198
+ replaceSuccessMsg : '%1 occurrence(s) replaced.' // MISSING
199
+ },
200
+
201
+ // Table Dialog
202
+ table :
203
+ {
204
+ toolbar : 'Tabel',
205
+ title : 'Tabel eienskappe',
206
+ menu : 'Tabel eienskappe',
207
+ deleteTable : 'Tabel verweider',
208
+ rows : 'Reie',
209
+ columns : 'Kolome',
210
+ border : 'Kant groote',
211
+ align : 'Parideering',
212
+ alignLeft : 'Links',
213
+ alignCenter : 'Middel',
214
+ alignRight : 'Regs',
215
+ width : 'Weite',
216
+ widthPx : 'pixels',
217
+ widthPc : 'percent',
218
+ widthUnit : 'width unit', // MISSING
219
+ height : 'Hoogde',
220
+ cellSpace : 'Cell spasieering',
221
+ cellPad : 'Cell buffer',
222
+ caption : 'Beskreiwing',
223
+ summary : 'Opsomming',
224
+ headers : 'Headers', // MISSING
225
+ headersNone : 'None', // MISSING
226
+ headersColumn : 'First column', // MISSING
227
+ headersRow : 'First Row', // MISSING
228
+ headersBoth : 'Both', // MISSING
229
+ invalidRows : 'Number of rows must be a number greater than 0.', // MISSING
230
+ invalidCols : 'Number of columns must be a number greater than 0.', // MISSING
231
+ invalidBorder : 'Border size must be a number.', // MISSING
232
+ invalidWidth : 'Table width must be a number.', // MISSING
233
+ invalidHeight : 'Table height must be a number.', // MISSING
234
+ invalidCellSpacing : 'Cell spacing must be a number.', // MISSING
235
+ invalidCellPadding : 'Cell padding must be a number.', // MISSING
236
+
237
+ cell :
238
+ {
239
+ menu : 'Cell',
240
+ insertBefore : 'Insert Cell Before', // MISSING
241
+ insertAfter : 'Insert Cell After', // MISSING
242
+ deleteCell : 'Cell verweider',
243
+ merge : 'Cell verenig',
244
+ mergeRight : 'Merge Right', // MISSING
245
+ mergeDown : 'Merge Down', // MISSING
246
+ splitHorizontal : 'Split Cell Horizontally', // MISSING
247
+ splitVertical : 'Split Cell Vertically', // MISSING
248
+ title : 'Cell Properties', // MISSING
249
+ cellType : 'Cell Type', // MISSING
250
+ rowSpan : 'Rows Span', // MISSING
251
+ colSpan : 'Columns Span', // MISSING
252
+ wordWrap : 'Word Wrap', // MISSING
253
+ hAlign : 'Horizontal Alignment', // MISSING
254
+ vAlign : 'Vertical Alignment', // MISSING
255
+ alignTop : 'Top', // MISSING
256
+ alignMiddle : 'Middle', // MISSING
257
+ alignBottom : 'Bottom', // MISSING
258
+ alignBaseline : 'Baseline', // MISSING
259
+ bgColor : 'Background Color', // MISSING
260
+ borderColor : 'Border Color', // MISSING
261
+ data : 'Data', // MISSING
262
+ header : 'Header', // MISSING
263
+ yes : 'Yes', // MISSING
264
+ no : 'No', // MISSING
265
+ invalidWidth : 'Cell width must be a number.', // MISSING
266
+ invalidHeight : 'Cell height must be a number.', // MISSING
267
+ invalidRowSpan : 'Rows span must be a whole number.', // MISSING
268
+ invalidColSpan : 'Columns span must be a whole number.', // MISSING
269
+ chooseColor : 'Choose' // MISSING
270
+ },
271
+
272
+ row :
273
+ {
274
+ menu : 'Ry',
275
+ insertBefore : 'Insert Row Before', // MISSING
276
+ insertAfter : 'Insert Row After', // MISSING
277
+ deleteRow : 'Ry verweider'
278
+ },
279
+
280
+ column :
281
+ {
282
+ menu : 'Kolom',
283
+ insertBefore : 'Insert Column Before', // MISSING
284
+ insertAfter : 'Insert Column After', // MISSING
285
+ deleteColumn : 'Kolom verweider'
286
+ }
287
+ },
288
+
289
+ // Button Dialog.
290
+ button :
291
+ {
292
+ title : 'Knop eienskappe',
293
+ text : 'Karakters (Waarde)',
294
+ type : 'Soort',
295
+ typeBtn : 'Knop',
296
+ typeSbm : 'Indien',
297
+ typeRst : 'Reset'
298
+ },
299
+
300
+ // Checkbox and Radio Button Dialogs.
301
+ checkboxAndRadio :
302
+ {
303
+ checkboxTitle : 'HakBox eienskappe',
304
+ radioTitle : 'PuntBox eienskappe',
305
+ value : 'Waarde',
306
+ selected : 'Uitgekies'
307
+ },
308
+
309
+ // Form Dialog.
310
+ form :
311
+ {
312
+ title : 'Form eienskappe',
313
+ menu : 'Form eienskappe',
314
+ action : 'Aksie',
315
+ method : 'Metode',
316
+ encoding : 'Encoding' // MISSING
317
+ },
318
+
319
+ // Select Field Dialog.
320
+ select :
321
+ {
322
+ title : 'Opklapbare keuse strook eienskappe',
323
+ selectInfo : 'Info',
324
+ opAvail : 'Beskikbare Opsies',
325
+ value : 'Waarde',
326
+ size : 'Grote',
327
+ lines : 'lyne',
328
+ chkMulti : 'Laat meerere keuses toe',
329
+ opText : 'Karakters',
330
+ opValue : 'Waarde',
331
+ btnAdd : 'Byvoeg',
332
+ btnModify : 'Verander',
333
+ btnUp : 'Op',
334
+ btnDown : 'Af',
335
+ btnSetValue : 'Stel as uitgekiesde waarde',
336
+ btnDelete : 'Verweider'
337
+ },
338
+
339
+ // Textarea Dialog.
340
+ textarea :
341
+ {
342
+ title : 'Karakter area eienskappe',
343
+ cols : 'Kolom',
344
+ rows : 'Reie'
345
+ },
346
+
347
+ // Text Field Dialog.
348
+ textfield :
349
+ {
350
+ title : 'Karakter strook eienskappe',
351
+ name : 'Naam',
352
+ value : 'Waarde',
353
+ charWidth : 'Karakter weite',
354
+ maxChars : 'Maximale karakters',
355
+ type : 'Soort',
356
+ typeText : 'Karakters',
357
+ typePass : 'Wagwoord'
358
+ },
359
+
360
+ // Hidden Field Dialog.
361
+ hidden :
362
+ {
363
+ title : 'Blinde strook eienskappe',
364
+ name : 'Naam',
365
+ value : 'Waarde'
366
+ },
367
+
368
+ // Image Dialog.
369
+ image :
370
+ {
371
+ title : 'Beeld eienskappe',
372
+ titleButton : 'Beeld knop eienskappe',
373
+ menu : 'Beeld eienskappe',
374
+ infoTab : 'Beeld informasie',
375
+ btnUpload : 'Stuur dit na die Server',
376
+ upload : 'Uplaai',
377
+ alt : 'Alternatiewe beskrywing',
378
+ width : 'Weidte',
379
+ height : 'Hoogde',
380
+ lockRatio : 'Behou preporsie',
381
+ unlockRatio : 'Unlock Ratio', // MISSING
382
+ resetSize : 'Herstel groote',
383
+ border : 'Kant',
384
+ hSpace : 'HSpasie',
385
+ vSpace : 'VSpasie',
386
+ align : 'Paradeer',
387
+ alignLeft : 'Links',
388
+ alignRight : 'Regs',
389
+ alertUrl : 'Voeg asseblief Beeld URL in.',
390
+ linkTab : 'Skakel',
391
+ button2Img : 'Do you want to transform the selected image button on a simple image?', // MISSING
392
+ img2Button : 'Do you want to transform the selected image on a image button?', // MISSING
393
+ urlMissing : 'Image source URL is missing.', // MISSING
394
+ validateWidth : 'Width must be a whole number.', // MISSING
395
+ validateHeight : 'Height must be a whole number.', // MISSING
396
+ validateBorder : 'Border must be a whole number.', // MISSING
397
+ validateHSpace : 'HSpace must be a whole number.', // MISSING
398
+ validateVSpace : 'VSpace must be a whole number.' // MISSING
399
+ },
400
+
401
+ // Flash Dialog
402
+ flash :
403
+ {
404
+ properties : 'Flash eienskappe',
405
+ propertiesTab : 'Properties', // MISSING
406
+ title : 'Flash eienskappe',
407
+ chkPlay : 'Automaties Speel',
408
+ chkLoop : 'Herhaling',
409
+ chkMenu : 'Laat Flash Menu toe',
410
+ chkFull : 'Allow Fullscreen', // MISSING
411
+ scale : 'Scale',
412
+ scaleAll : 'Wys alles',
413
+ scaleNoBorder : 'Geen kante',
414
+ scaleFit : 'Presiese pas',
415
+ access : 'Script Access', // MISSING
416
+ accessAlways : 'Always', // MISSING
417
+ accessSameDomain: 'Same domain', // MISSING
418
+ accessNever : 'Never', // MISSING
419
+ align : 'Paradeer',
420
+ alignLeft : 'Links',
421
+ alignAbsBottom : 'Abs Onder',
422
+ alignAbsMiddle : 'Abs Middel',
423
+ alignBaseline : 'Baseline',
424
+ alignBottom : 'Onder',
425
+ alignMiddle : 'Middel',
426
+ alignRight : 'Regs',
427
+ alignTextTop : 'Text Bo',
428
+ alignTop : 'Bo',
429
+ quality : 'Quality', // MISSING
430
+ qualityBest : 'Best', // MISSING
431
+ qualityHigh : 'High', // MISSING
432
+ qualityAutoHigh : 'Auto High', // MISSING
433
+ qualityMedium : 'Medium', // MISSING
434
+ qualityAutoLow : 'Auto Low', // MISSING
435
+ qualityLow : 'Low', // MISSING
436
+ windowModeWindow: 'Window', // MISSING
437
+ windowModeOpaque: 'Opaque', // MISSING
438
+ windowModeTransparent : 'Transparent', // MISSING
439
+ windowMode : 'Window mode', // MISSING
440
+ flashvars : 'Variables for Flash', // MISSING
441
+ bgcolor : 'Agtergrond kleur',
442
+ width : 'Weidte',
443
+ height : 'Hoogde',
444
+ hSpace : 'HSpasie',
445
+ vSpace : 'VSpasie',
446
+ validateSrc : 'Voeg asseblief die URL in',
447
+ validateWidth : 'Width must be a number.', // MISSING
448
+ validateHeight : 'Height must be a number.', // MISSING
449
+ validateHSpace : 'HSpace must be a number.', // MISSING
450
+ validateVSpace : 'VSpace must be a number.' // MISSING
451
+ },
452
+
453
+ // Speller Pages Dialog
454
+ spellCheck :
455
+ {
456
+ toolbar : 'Spelling nagaan',
457
+ title : 'Spell Check', // MISSING
458
+ notAvailable : 'Sorry, but service is unavailable now.', // MISSING
459
+ errorLoading : 'Error loading application service host: %s.', // MISSING
460
+ notInDic : 'Nie in woordeboek nie',
461
+ changeTo : 'Verander na',
462
+ btnIgnore : 'Ignoreer',
463
+ btnIgnoreAll : 'Ignoreer na-volgende',
464
+ btnReplace : 'Vervang',
465
+ btnReplaceAll : 'vervang na-volgende',
466
+ btnUndo : 'Ont-skep',
467
+ noSuggestions : '- Geen voorstel -',
468
+ progress : 'Spelling word beproef...',
469
+ noMispell : 'Spellproef kompleet: Geen foute',
470
+ noChanges : 'Spellproef kompleet: Geen woord veranderings',
471
+ oneChange : 'Spellproef kompleet: Een woord verander',
472
+ manyChanges : 'Spellproef kompleet: %1 woorde verander',
473
+ ieSpellDownload : 'Geen Spellproefer geinstaleer nie. Wil U dit aflaai?'
474
+ },
475
+
476
+ smiley :
477
+ {
478
+ toolbar : 'Smiley',
479
+ title : 'Voeg Smiley by'
480
+ },
481
+
482
+ elementsPath :
483
+ {
484
+ eleLabel : 'Elements path', // MISSING
485
+ eleTitle : '%1 element' // MISSING
486
+ },
487
+
488
+ numberedlist : 'Genommerde lys',
489
+ bulletedlist : 'Gepunkte lys',
490
+ indent : 'Paradeering verleng',
491
+ outdent : 'Paradeering verkort',
492
+
493
+ justify :
494
+ {
495
+ left : 'Links rig',
496
+ center : 'Rig Middel',
497
+ right : 'Regs rig',
498
+ block : 'Blok paradeer'
499
+ },
500
+
501
+ blockquote : 'Block Quote', // MISSING
502
+
503
+ clipboard :
504
+ {
505
+ title : 'Byvoeg',
506
+ cutError : 'U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).',
507
+ copyError : 'U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).',
508
+ pasteMsg : 'Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(<STRONG>Ctrl+V</STRONG>) en druk <STRONG>OK</STRONG>.',
509
+ securityMsg : 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.', // MISSING
510
+ pasteArea : 'Paste Area' // MISSING
511
+ },
512
+
513
+ pastefromword :
514
+ {
515
+ confirmCleanup : 'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?', // MISSING
516
+ toolbar : 'Van Word af byvoeg',
517
+ title : 'Van Word af byvoeg',
518
+ error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
519
+ },
520
+
521
+ pasteText :
522
+ {
523
+ button : 'Voeg slegs karakters by',
524
+ title : 'Voeg slegs karakters by'
525
+ },
526
+
527
+ templates :
528
+ {
529
+ button : 'Templates',
530
+ title : 'Inhoud Templates',
531
+ insertOption : 'Vervang bestaande inhoud',
532
+ selectPromptMsg : 'Kies die template om te gebruik in die editor<br>(Inhoud word vervang!):',
533
+ emptyListMsg : '(Geen templates gedefinieerd)'
534
+ },
535
+
536
+ showBlocks : 'Show Blocks', // MISSING
537
+
538
+ stylesCombo :
539
+ {
540
+ label : 'Styl',
541
+ panelTitle : 'Formatting Styles', // MISSING
542
+ panelTitle1 : 'Block Styles', // MISSING
543
+ panelTitle2 : 'Inline Styles', // MISSING
544
+ panelTitle3 : 'Object Styles' // MISSING
545
+ },
546
+
547
+ format :
548
+ {
549
+ label : 'Karakter formaat',
550
+ panelTitle : 'Karakter formaat',
551
+
552
+ tag_p : 'Normaal',
553
+ tag_pre : 'Geformateerd',
554
+ tag_address : 'Adres',
555
+ tag_h1 : 'Opskrif 1',
556
+ tag_h2 : 'Opskrif 2',
557
+ tag_h3 : 'Opskrif 3',
558
+ tag_h4 : 'Opskrif 4',
559
+ tag_h5 : 'Opskrif 5',
560
+ tag_h6 : 'Opskrif 6',
561
+ tag_div : 'Normaal (DIV)'
562
+ },
563
+
564
+ div :
565
+ {
566
+ title : 'Create Div Container', // MISSING
567
+ toolbar : 'Create Div Container', // MISSING
568
+ cssClassInputLabel : 'Stylesheet Classes', // MISSING
569
+ styleSelectLabel : 'Style', // MISSING
570
+ IdInputLabel : 'Id', // MISSING
571
+ languageCodeInputLabel : ' Language Code', // MISSING
572
+ inlineStyleInputLabel : 'Inline Style', // MISSING
573
+ advisoryTitleInputLabel : 'Advisory Title', // MISSING
574
+ langDirLabel : 'Language Direction', // MISSING
575
+ langDirLTRLabel : 'Left to Right (LTR)', // MISSING
576
+ langDirRTLLabel : 'Right to Left (RTL)', // MISSING
577
+ edit : 'Edit Div', // MISSING
578
+ remove : 'Remove Div' // MISSING
579
+ },
580
+
581
+ font :
582
+ {
583
+ label : 'Karakters',
584
+ voiceLabel : 'Font', // MISSING
585
+ panelTitle : 'Karakters'
586
+ },
587
+
588
+ fontSize :
589
+ {
590
+ label : 'Karakter grote',
591
+ voiceLabel : 'Font Size', // MISSING
592
+ panelTitle : 'Karakter grote'
593
+ },
594
+
595
+ colorButton :
596
+ {
597
+ textColorTitle : 'Karakter kleur',
598
+ bgColorTitle : 'Agtergrond kleur',
599
+ panelTitle : 'Colors', // MISSING
600
+ auto : 'Automaties',
601
+ more : 'Meer Kleure...'
602
+ },
603
+
604
+ colors :
605
+ {
606
+ '000' : 'Black', // MISSING
607
+ '800000' : 'Maroon', // MISSING
608
+ '8B4513' : 'Saddle Brown', // MISSING
609
+ '2F4F4F' : 'Dark Slate Gray', // MISSING
610
+ '008080' : 'Teal', // MISSING
611
+ '000080' : 'Navy', // MISSING
612
+ '4B0082' : 'Indigo', // MISSING
613
+ '696969' : 'Dim Gray', // MISSING
614
+ 'B22222' : 'Fire Brick', // MISSING
615
+ 'A52A2A' : 'Brown', // MISSING
616
+ 'DAA520' : 'Golden Rod', // MISSING
617
+ '006400' : 'Dark Green', // MISSING
618
+ '40E0D0' : 'Turquoise', // MISSING
619
+ '0000CD' : 'Medium Blue', // MISSING
620
+ '800080' : 'Purple', // MISSING
621
+ '808080' : 'Gray', // MISSING
622
+ 'F00' : 'Red', // MISSING
623
+ 'FF8C00' : 'Dark Orange', // MISSING
624
+ 'FFD700' : 'Gold', // MISSING
625
+ '008000' : 'Green', // MISSING
626
+ '0FF' : 'Cyan', // MISSING
627
+ '00F' : 'Blue', // MISSING
628
+ 'EE82EE' : 'Violet', // MISSING
629
+ 'A9A9A9' : 'Dark Gray', // MISSING
630
+ 'FFA07A' : 'Light Salmon', // MISSING
631
+ 'FFA500' : 'Orange', // MISSING
632
+ 'FFFF00' : 'Yellow', // MISSING
633
+ '00FF00' : 'Lime', // MISSING
634
+ 'AFEEEE' : 'Pale Turquoise', // MISSING
635
+ 'ADD8E6' : 'Light Blue', // MISSING
636
+ 'DDA0DD' : 'Plum', // MISSING
637
+ 'D3D3D3' : 'Light Grey', // MISSING
638
+ 'FFF0F5' : 'Lavender Blush', // MISSING
639
+ 'FAEBD7' : 'Antique White', // MISSING
640
+ 'FFFFE0' : 'Light Yellow', // MISSING
641
+ 'F0FFF0' : 'Honeydew', // MISSING
642
+ 'F0FFFF' : 'Azure', // MISSING
643
+ 'F0F8FF' : 'Alice Blue', // MISSING
644
+ 'E6E6FA' : 'Lavender', // MISSING
645
+ 'FFF' : 'White' // MISSING
646
+ },
647
+
648
+ scayt :
649
+ {
650
+ title : 'Spell Check As You Type', // MISSING
651
+ enable : 'Enable SCAYT', // MISSING
652
+ disable : 'Disable SCAYT', // MISSING
653
+ about : 'About SCAYT', // MISSING
654
+ toggle : 'Toggle SCAYT', // MISSING
655
+ options : 'Options', // MISSING
656
+ langs : 'Languages', // MISSING
657
+ moreSuggestions : 'More suggestions', // MISSING
658
+ ignore : 'Ignore', // MISSING
659
+ ignoreAll : 'Ignore All', // MISSING
660
+ addWord : 'Add Word', // MISSING
661
+ emptyDic : 'Dictionary name should not be empty.', // MISSING
662
+ optionsTab : 'Options', // MISSING
663
+ languagesTab : 'Languages', // MISSING
664
+ dictionariesTab : 'Dictionaries', // MISSING
665
+ aboutTab : 'About' // MISSING
666
+ },
667
+
668
+ about :
669
+ {
670
+ title : 'About CKEditor', // MISSING
671
+ dlgTitle : 'About CKEditor', // MISSING
672
+ moreInfo : 'For licensing information please visit our web site:', // MISSING
673
+ copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
674
+ },
675
+
676
+ maximize : 'Maximize', // MISSING
677
+ minimize : 'Minimize', // MISSING
678
+
679
+ fakeobjects :
680
+ {
681
+ anchor : 'Anchor', // MISSING
682
+ flash : 'Flash Animation', // MISSING
683
+ div : 'Page Break', // MISSING
684
+ unknown : 'Unknown Object' // MISSING
685
+ },
686
+
687
+ resize : 'Drag to resize', // MISSING
688
+
689
+ colordialog :
690
+ {
691
+ title : 'Select color', // MISSING
692
+ highlight : 'Highlight', // MISSING
693
+ selected : 'Selected', // MISSING
694
+ clear : 'Clear' // MISSING
695
+ },
696
+
697
+ toolbarCollapse : 'Collapse Toolbar', // MISSING
698
+ toolbarExpand : 'Expand Toolbar' // MISSING
699
+ };