refinerycms-ckeditor 0.1.4 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (700) hide show
  1. data/app/assets/javascripts/ckeditor/.htaccess +1 -1
  2. data/app/assets/javascripts/ckeditor/CHANGES.html +72 -2
  3. data/app/assets/javascripts/ckeditor/INSTALL.html +2 -2
  4. data/app/assets/javascripts/ckeditor/LICENSE.html +2 -2
  5. data/app/assets/javascripts/ckeditor/_samples/adobeair/application.xml +2 -2
  6. data/app/assets/javascripts/ckeditor/_samples/adobeair/run.bat +1 -1
  7. data/app/assets/javascripts/ckeditor/_samples/adobeair/run.sh +1 -1
  8. data/app/assets/javascripts/ckeditor/_samples/adobeair/sample.html +2 -2
  9. data/app/assets/javascripts/ckeditor/_samples/ajax.html +2 -2
  10. data/app/assets/javascripts/ckeditor/_samples/api.html +2 -2
  11. data/app/assets/javascripts/ckeditor/_samples/api_dialog.html +2 -2
  12. data/app/assets/javascripts/ckeditor/_samples/api_dialog/my_dialog.js +1 -1
  13. data/app/assets/javascripts/ckeditor/_samples/asp/advanced.asp +2 -2
  14. data/app/assets/javascripts/ckeditor/_samples/asp/events.asp +2 -2
  15. data/app/assets/javascripts/ckeditor/_samples/asp/index.html +2 -2
  16. data/app/assets/javascripts/ckeditor/_samples/asp/replace.asp +2 -2
  17. data/app/assets/javascripts/ckeditor/_samples/asp/replaceall.asp +2 -2
  18. data/app/assets/javascripts/ckeditor/_samples/asp/sample_posteddata.asp +2 -2
  19. data/app/assets/javascripts/ckeditor/_samples/asp/standalone.asp +2 -2
  20. data/app/assets/javascripts/ckeditor/_samples/assets/_posteddata.php +2 -2
  21. data/app/assets/javascripts/ckeditor/_samples/assets/output_xhtml.css +1 -1
  22. data/app/assets/javascripts/ckeditor/_samples/autogrow.html +2 -2
  23. data/app/assets/javascripts/ckeditor/_samples/bbcode.html +2 -2
  24. data/app/assets/javascripts/ckeditor/_samples/devtools.html +2 -2
  25. data/app/assets/javascripts/ckeditor/_samples/divreplace.html +2 -2
  26. data/app/assets/javascripts/ckeditor/_samples/enterkey.html +2 -2
  27. data/app/assets/javascripts/ckeditor/_samples/fullpage.html +2 -2
  28. data/app/assets/javascripts/ckeditor/_samples/index.html +2 -2
  29. data/app/assets/javascripts/ckeditor/_samples/jqueryadapter.html +2 -2
  30. data/app/assets/javascripts/ckeditor/_samples/output_for_flash.html +2 -2
  31. data/app/assets/javascripts/ckeditor/_samples/output_html.html +2 -2
  32. data/app/assets/javascripts/ckeditor/_samples/output_xhtml.html +10 -6
  33. data/app/assets/javascripts/ckeditor/_samples/php/advanced.php +2 -2
  34. data/app/assets/javascripts/ckeditor/_samples/php/events.php +2 -2
  35. data/app/assets/javascripts/ckeditor/_samples/php/index.html +2 -2
  36. data/app/assets/javascripts/ckeditor/_samples/php/replace.php +2 -2
  37. data/app/assets/javascripts/ckeditor/_samples/php/replaceall.php +2 -2
  38. data/app/assets/javascripts/ckeditor/_samples/php/standalone.php +2 -2
  39. data/app/assets/javascripts/ckeditor/_samples/placeholder.html +2 -2
  40. data/app/assets/javascripts/ckeditor/_samples/readonly.html +2 -2
  41. data/app/assets/javascripts/ckeditor/_samples/replacebyclass.html +2 -2
  42. data/app/assets/javascripts/ckeditor/_samples/replacebycode.html +2 -2
  43. data/app/assets/javascripts/ckeditor/_samples/sample.css +1 -1
  44. data/app/assets/javascripts/ckeditor/_samples/sample.js +1 -1
  45. data/app/assets/javascripts/ckeditor/_samples/sample_posteddata.php +1 -1
  46. data/app/assets/javascripts/ckeditor/_samples/sharedspaces.html +2 -2
  47. data/app/assets/javascripts/ckeditor/_samples/skins.html +2 -2
  48. data/app/assets/javascripts/ckeditor/_samples/stylesheetparser.html +2 -2
  49. data/app/assets/javascripts/ckeditor/_samples/tableresize.html +2 -2
  50. data/app/assets/javascripts/ckeditor/_samples/ui_color.html +2 -2
  51. data/app/assets/javascripts/ckeditor/_samples/ui_languages.html +2 -2
  52. data/app/assets/javascripts/ckeditor/_source/adapters/jquery.js +1 -1
  53. data/app/assets/javascripts/ckeditor/_source/core/_bootstrap.js +1 -1
  54. data/app/assets/javascripts/ckeditor/_source/core/ckeditor.js +1 -1
  55. data/app/assets/javascripts/ckeditor/_source/core/ckeditor_base.js +13 -5
  56. data/app/assets/javascripts/ckeditor/_source/core/ckeditor_basic.js +1 -1
  57. data/app/assets/javascripts/ckeditor/_source/core/command.js +17 -1
  58. data/app/assets/javascripts/ckeditor/_source/core/commanddefinition.js +1 -1
  59. data/app/assets/javascripts/ckeditor/_source/core/config.js +19 -11
  60. data/app/assets/javascripts/ckeditor/_source/core/dataprocessor.js +1 -1
  61. data/app/assets/javascripts/ckeditor/_source/core/dom.js +1 -1
  62. data/app/assets/javascripts/ckeditor/_source/core/dom/comment.js +24 -12
  63. data/app/assets/javascripts/ckeditor/_source/core/dom/document.js +1 -1
  64. data/app/assets/javascripts/ckeditor/_source/core/dom/documentfragment.js +1 -1
  65. data/app/assets/javascripts/ckeditor/_source/core/dom/domobject.js +7 -7
  66. data/app/assets/javascripts/ckeditor/_source/core/dom/element.js +135 -30
  67. data/app/assets/javascripts/ckeditor/_source/core/dom/elementpath.js +1 -3
  68. data/app/assets/javascripts/ckeditor/_source/core/dom/event.js +1 -1
  69. data/app/assets/javascripts/ckeditor/_source/core/dom/node.js +11 -16
  70. data/app/assets/javascripts/ckeditor/_source/core/dom/nodelist.js +1 -1
  71. data/app/assets/javascripts/ckeditor/_source/core/dom/range.js +27 -13
  72. data/app/assets/javascripts/ckeditor/_source/core/dom/rangelist.js +1 -1
  73. data/app/assets/javascripts/ckeditor/_source/core/dom/text.js +1 -1
  74. data/app/assets/javascripts/ckeditor/_source/core/dom/walker.js +69 -35
  75. data/app/assets/javascripts/ckeditor/_source/core/dom/window.js +1 -1
  76. data/app/assets/javascripts/ckeditor/_source/core/dtd.js +1 -1
  77. data/app/assets/javascripts/ckeditor/_source/core/editor.js +1 -1
  78. data/app/assets/javascripts/ckeditor/_source/core/editor_basic.js +1 -1
  79. data/app/assets/javascripts/ckeditor/_source/core/env.js +1 -1
  80. data/app/assets/javascripts/ckeditor/_source/core/event.js +1 -1
  81. data/app/assets/javascripts/ckeditor/_source/core/eventInfo.js +1 -1
  82. data/app/assets/javascripts/ckeditor/_source/core/focusmanager.js +1 -1
  83. data/app/assets/javascripts/ckeditor/_source/core/htmlparser.js +1 -1
  84. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/basicwriter.js +1 -1
  85. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/cdata.js +1 -1
  86. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/comment.js +1 -1
  87. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/element.js +1 -1
  88. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/filter.js +1 -1
  89. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/fragment.js +26 -7
  90. data/app/assets/javascripts/ckeditor/_source/core/htmlparser/text.js +1 -1
  91. data/app/assets/javascripts/ckeditor/_source/core/lang.js +1 -1
  92. data/app/assets/javascripts/ckeditor/_source/core/loader.js +2 -2
  93. data/app/assets/javascripts/ckeditor/_source/core/plugindefinition.js +1 -1
  94. data/app/assets/javascripts/ckeditor/_source/core/plugins.js +1 -1
  95. data/app/assets/javascripts/ckeditor/_source/core/resourcemanager.js +1 -1
  96. data/app/assets/javascripts/ckeditor/_source/core/scriptloader.js +1 -1
  97. data/app/assets/javascripts/ckeditor/_source/core/skins.js +1 -1
  98. data/app/assets/javascripts/ckeditor/_source/core/themes.js +1 -1
  99. data/app/assets/javascripts/ckeditor/_source/core/tools.js +1 -1
  100. data/app/assets/javascripts/ckeditor/_source/core/ui.js +1 -1
  101. data/app/assets/javascripts/ckeditor/_source/lang/_languages.js +1 -1
  102. data/app/assets/javascripts/ckeditor/_source/lang/_translationstatus.txt +25 -23
  103. data/app/assets/javascripts/ckeditor/_source/lang/af.js +1 -1
  104. data/app/assets/javascripts/ckeditor/_source/lang/ar.js +4 -4
  105. data/app/assets/javascripts/ckeditor/_source/lang/bg.js +403 -403
  106. data/app/assets/javascripts/ckeditor/_source/lang/bn.js +1 -1
  107. data/app/assets/javascripts/ckeditor/_source/lang/bs.js +1 -1
  108. data/app/assets/javascripts/ckeditor/_source/lang/ca.js +1 -1
  109. data/app/assets/javascripts/ckeditor/_source/lang/cs.js +28 -28
  110. data/app/assets/javascripts/ckeditor/_source/lang/cy.js +6 -6
  111. data/app/assets/javascripts/ckeditor/_source/lang/da.js +162 -162
  112. data/app/assets/javascripts/ckeditor/_source/lang/de.js +2 -2
  113. data/app/assets/javascripts/ckeditor/_source/lang/el.js +132 -132
  114. data/app/assets/javascripts/ckeditor/_source/lang/en-au.js +4 -4
  115. data/app/assets/javascripts/ckeditor/_source/lang/en-ca.js +1 -1
  116. data/app/assets/javascripts/ckeditor/_source/lang/en-gb.js +1 -1
  117. data/app/assets/javascripts/ckeditor/_source/lang/en.js +1 -1
  118. data/app/assets/javascripts/ckeditor/_source/lang/eo.js +376 -376
  119. data/app/assets/javascripts/ckeditor/_source/lang/es.js +1 -1
  120. data/app/assets/javascripts/ckeditor/_source/lang/et.js +2 -2
  121. data/app/assets/javascripts/ckeditor/_source/lang/eu.js +1 -1
  122. data/app/assets/javascripts/ckeditor/_source/lang/fa.js +1 -1
  123. data/app/assets/javascripts/ckeditor/_source/lang/fi.js +1 -1
  124. data/app/assets/javascripts/ckeditor/_source/lang/fo.js +31 -31
  125. data/app/assets/javascripts/ckeditor/_source/lang/fr-ca.js +1 -1
  126. data/app/assets/javascripts/ckeditor/_source/lang/fr.js +30 -30
  127. data/app/assets/javascripts/ckeditor/_source/lang/gl.js +1 -1
  128. data/app/assets/javascripts/ckeditor/_source/lang/gu.js +261 -261
  129. data/app/assets/javascripts/ckeditor/_source/lang/he.js +1 -1
  130. data/app/assets/javascripts/ckeditor/_source/lang/hi.js +7 -7
  131. data/app/assets/javascripts/ckeditor/_source/lang/hr.js +158 -158
  132. data/app/assets/javascripts/ckeditor/_source/lang/hu.js +1 -1
  133. data/app/assets/javascripts/ckeditor/_source/lang/is.js +1 -1
  134. data/app/assets/javascripts/ckeditor/_source/lang/it.js +4 -4
  135. data/app/assets/javascripts/ckeditor/_source/lang/ja.js +1 -1
  136. data/app/assets/javascripts/ckeditor/_source/lang/ka.js +1 -1
  137. data/app/assets/javascripts/ckeditor/_source/lang/km.js +1 -1
  138. data/app/assets/javascripts/ckeditor/_source/lang/ko.js +1 -1
  139. data/app/assets/javascripts/ckeditor/_source/lang/lt.js +1 -1
  140. data/app/assets/javascripts/ckeditor/_source/lang/lv.js +1 -1
  141. data/app/assets/javascripts/ckeditor/_source/lang/mk.js +814 -0
  142. data/app/assets/javascripts/ckeditor/_source/lang/mn.js +1 -1
  143. data/app/assets/javascripts/ckeditor/_source/lang/ms.js +1 -1
  144. data/app/assets/javascripts/ckeditor/_source/lang/nb.js +4 -4
  145. data/app/assets/javascripts/ckeditor/_source/lang/nl.js +35 -35
  146. data/app/assets/javascripts/ckeditor/_source/lang/no.js +4 -4
  147. data/app/assets/javascripts/ckeditor/_source/lang/pl.js +3 -3
  148. data/app/assets/javascripts/ckeditor/_source/lang/pt-br.js +1 -1
  149. data/app/assets/javascripts/ckeditor/_source/lang/pt.js +34 -34
  150. data/app/assets/javascripts/ckeditor/_source/lang/ro.js +1 -1
  151. data/app/assets/javascripts/ckeditor/_source/lang/ru.js +1 -1
  152. data/app/assets/javascripts/ckeditor/_source/lang/sk.js +1 -1
  153. data/app/assets/javascripts/ckeditor/_source/lang/sl.js +1 -1
  154. data/app/assets/javascripts/ckeditor/_source/lang/sr-latn.js +1 -1
  155. data/app/assets/javascripts/ckeditor/_source/lang/sr.js +1 -1
  156. data/app/assets/javascripts/ckeditor/_source/lang/sv.js +1 -1
  157. data/app/assets/javascripts/ckeditor/_source/lang/th.js +1 -1
  158. data/app/assets/javascripts/ckeditor/_source/lang/tr.js +50 -50
  159. data/app/assets/javascripts/ckeditor/_source/lang/ug.js +814 -0
  160. data/app/assets/javascripts/ckeditor/_source/lang/uk.js +35 -35
  161. data/app/assets/javascripts/ckeditor/_source/lang/vi.js +84 -84
  162. data/app/assets/javascripts/ckeditor/_source/lang/zh-cn.js +4 -4
  163. data/app/assets/javascripts/ckeditor/_source/lang/zh.js +16 -16
  164. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js +1 -1
  165. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
  166. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/cs.js +89 -0
  167. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/cy.js +89 -0
  168. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/da.js +89 -0
  169. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/de.js +89 -0
  170. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/el.js +89 -0
  171. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/en.js +3 -3
  172. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/eo.js +89 -0
  173. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fa.js +89 -0
  174. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fi.js +89 -0
  175. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/fr.js +89 -0
  176. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/gu.js +89 -0
  177. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/he.js +6 -133
  178. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/it.js +89 -0
  179. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/mk.js +89 -0
  180. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/nb.js +89 -0
  181. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/nl.js +89 -0
  182. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/no.js +89 -0
  183. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/tr.js +89 -0
  184. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/ug.js +89 -0
  185. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/vi.js +89 -0
  186. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js +89 -0
  187. data/app/assets/javascripts/ckeditor/_source/plugins/a11yhelp/plugin.js +2 -2
  188. data/app/assets/javascripts/ckeditor/_source/plugins/about/dialogs/about.js +1 -1
  189. data/app/assets/javascripts/ckeditor/_source/plugins/about/plugin.js +1 -1
  190. data/app/assets/javascripts/ckeditor/_source/plugins/adobeair/plugin.js +1 -1
  191. data/app/assets/javascripts/ckeditor/_source/plugins/ajax/plugin.js +1 -1
  192. data/app/assets/javascripts/ckeditor/_source/plugins/autogrow/plugin.js +2 -2
  193. data/app/assets/javascripts/ckeditor/_source/plugins/basicstyles/plugin.js +1 -1
  194. data/app/assets/javascripts/ckeditor/_source/plugins/bbcode/plugin.js +1 -1
  195. data/app/assets/javascripts/ckeditor/_source/plugins/bidi/plugin.js +1 -1
  196. data/app/assets/javascripts/ckeditor/_source/plugins/blockquote/plugin.js +1 -1
  197. data/app/assets/javascripts/ckeditor/_source/plugins/button/plugin.js +1 -1
  198. data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/dialogs/paste.js +2 -2
  199. data/app/assets/javascripts/ckeditor/_source/plugins/clipboard/plugin.js +41 -15
  200. data/app/assets/javascripts/ckeditor/_source/plugins/colorbutton/plugin.js +5 -6
  201. data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js +140 -93
  202. data/app/assets/javascripts/ckeditor/_source/plugins/colordialog/plugin.js +1 -1
  203. data/app/assets/javascripts/ckeditor/_source/plugins/contextmenu/plugin.js +1 -1
  204. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt +27 -0
  205. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/bg.js +16 -0
  206. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/cs.js +16 -0
  207. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/cy.js +16 -0
  208. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/da.js +16 -0
  209. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/de.js +16 -0
  210. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/el.js +16 -0
  211. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/en.js +1 -1
  212. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/eo.js +16 -0
  213. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/et.js +16 -0
  214. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fa.js +16 -0
  215. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fi.js +16 -0
  216. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/fr.js +16 -0
  217. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/gu.js +16 -0
  218. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/he.js +16 -0
  219. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/hr.js +16 -0
  220. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/it.js +16 -0
  221. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/nb.js +16 -0
  222. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/nl.js +16 -0
  223. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/no.js +16 -0
  224. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/pl.js +16 -0
  225. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/tr.js +16 -0
  226. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/ug.js +16 -0
  227. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/uk.js +16 -0
  228. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/vi.js +16 -0
  229. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/lang/zh-cn.js +16 -0
  230. data/app/assets/javascripts/ckeditor/_source/plugins/devtools/plugin.js +2 -2
  231. data/app/assets/javascripts/ckeditor/_source/plugins/dialog/dialogDefinition.js +1 -1
  232. data/app/assets/javascripts/ckeditor/_source/plugins/dialog/plugin.js +33 -22
  233. data/app/assets/javascripts/ckeditor/_source/plugins/dialogadvtab/plugin.js +1 -1
  234. data/app/assets/javascripts/ckeditor/_source/plugins/dialogui/plugin.js +12 -4
  235. data/app/assets/javascripts/ckeditor/_source/plugins/div/dialogs/div.js +1 -1
  236. data/app/assets/javascripts/ckeditor/_source/plugins/div/plugin.js +1 -1
  237. data/app/assets/javascripts/ckeditor/_source/plugins/docprops/dialogs/docprops.js +1 -1
  238. data/app/assets/javascripts/ckeditor/_source/plugins/docprops/plugin.js +1 -1
  239. data/app/assets/javascripts/ckeditor/_source/plugins/domiterator/plugin.js +41 -36
  240. data/app/assets/javascripts/ckeditor/_source/plugins/editingblock/plugin.js +1 -1
  241. data/app/assets/javascripts/ckeditor/_source/plugins/elementspath/plugin.js +1 -1
  242. data/app/assets/javascripts/ckeditor/_source/plugins/enterkey/plugin.js +1 -1
  243. data/app/assets/javascripts/ckeditor/_source/plugins/entities/plugin.js +14 -10
  244. data/app/assets/javascripts/ckeditor/_source/plugins/fakeobjects/plugin.js +1 -1
  245. data/app/assets/javascripts/ckeditor/_source/plugins/filebrowser/plugin.js +2 -3
  246. data/app/assets/javascripts/ckeditor/_source/plugins/find/dialogs/find.js +1 -1
  247. data/app/assets/javascripts/ckeditor/_source/plugins/find/plugin.js +1 -1
  248. data/app/assets/javascripts/ckeditor/_source/plugins/flash/dialogs/flash.js +1 -1
  249. data/app/assets/javascripts/ckeditor/_source/plugins/flash/plugin.js +1 -1
  250. data/app/assets/javascripts/ckeditor/_source/plugins/floatpanel/plugin.js +67 -19
  251. data/app/assets/javascripts/ckeditor/_source/plugins/font/plugin.js +1 -1
  252. data/app/assets/javascripts/ckeditor/_source/plugins/format/plugin.js +1 -1
  253. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/button.js +1 -1
  254. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/checkbox.js +1 -1
  255. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/form.js +1 -1
  256. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js +1 -1
  257. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/radio.js +1 -1
  258. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/select.js +1 -1
  259. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textarea.js +1 -1
  260. data/app/assets/javascripts/ckeditor/_source/plugins/forms/dialogs/textfield.js +1 -1
  261. data/app/assets/javascripts/ckeditor/_source/plugins/forms/plugin.js +1 -1
  262. data/app/assets/javascripts/ckeditor/_source/plugins/horizontalrule/plugin.js +1 -1
  263. data/app/assets/javascripts/ckeditor/_source/plugins/htmldataprocessor/plugin.js +6 -2
  264. data/app/assets/javascripts/ckeditor/_source/plugins/htmlwriter/plugin.js +1 -1
  265. data/app/assets/javascripts/ckeditor/_source/plugins/iframe/dialogs/iframe.js +1 -1
  266. data/app/assets/javascripts/ckeditor/_source/plugins/iframe/plugin.js +1 -1
  267. data/app/assets/javascripts/ckeditor/_source/plugins/iframedialog/plugin.js +1 -1
  268. data/app/assets/javascripts/ckeditor/_source/plugins/image/dialogs/image.js +4 -5
  269. data/app/assets/javascripts/ckeditor/_source/plugins/image/plugin.js +89 -6
  270. data/app/assets/javascripts/ckeditor/_source/plugins/indent/plugin.js +20 -1
  271. data/app/assets/javascripts/ckeditor/_source/plugins/justify/plugin.js +15 -17
  272. data/app/assets/javascripts/ckeditor/_source/plugins/keystrokes/plugin.js +1 -1
  273. data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/anchor.js +1 -1
  274. data/app/assets/javascripts/ckeditor/_source/plugins/link/dialogs/link.js +8 -6
  275. data/app/assets/javascripts/ckeditor/_source/plugins/link/plugin.js +1 -1
  276. data/app/assets/javascripts/ckeditor/_source/plugins/list/plugin.js +250 -57
  277. data/app/assets/javascripts/ckeditor/_source/plugins/listblock/plugin.js +2 -8
  278. data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js +1 -1
  279. data/app/assets/javascripts/ckeditor/_source/plugins/liststyle/plugin.js +1 -1
  280. data/app/assets/javascripts/ckeditor/_source/plugins/maximize/plugin.js +1 -1
  281. data/app/assets/javascripts/ckeditor/_source/plugins/menu/plugin.js +4 -3
  282. data/app/assets/javascripts/ckeditor/_source/plugins/menubutton/plugin.js +1 -1
  283. data/app/assets/javascripts/ckeditor/_source/plugins/newpage/plugin.js +1 -1
  284. data/app/assets/javascripts/ckeditor/_source/plugins/pagebreak/plugin.js +1 -1
  285. data/app/assets/javascripts/ckeditor/_source/plugins/panel/plugin.js +7 -11
  286. data/app/assets/javascripts/ckeditor/_source/plugins/panelbutton/plugin.js +1 -1
  287. data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/filter/default.js +1 -1
  288. data/app/assets/javascripts/ckeditor/_source/plugins/pastefromword/plugin.js +1 -1
  289. data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js +1 -1
  290. data/app/assets/javascripts/ckeditor/_source/plugins/pastetext/plugin.js +1 -1
  291. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js +1 -1
  292. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt +26 -0
  293. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/bg.js +16 -0
  294. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/cs.js +16 -0
  295. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/cy.js +16 -0
  296. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/da.js +16 -0
  297. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/de.js +16 -0
  298. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/el.js +16 -0
  299. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/en.js +1 -1
  300. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/eo.js +16 -0
  301. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/et.js +16 -0
  302. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fa.js +16 -0
  303. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fi.js +16 -0
  304. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/fr.js +16 -0
  305. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/he.js +1 -1
  306. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/hr.js +16 -0
  307. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/it.js +16 -0
  308. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/nb.js +16 -0
  309. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/nl.js +16 -0
  310. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/no.js +16 -0
  311. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/pl.js +16 -0
  312. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/tr.js +16 -0
  313. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/ug.js +16 -0
  314. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/uk.js +16 -0
  315. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/vi.js +16 -0
  316. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/lang/zh-cn.js +16 -0
  317. data/app/assets/javascripts/ckeditor/_source/plugins/placeholder/plugin.js +2 -2
  318. data/app/assets/javascripts/ckeditor/_source/plugins/popup/plugin.js +8 -3
  319. data/app/assets/javascripts/ckeditor/_source/plugins/preview/plugin.js +1 -1
  320. data/app/assets/javascripts/ckeditor/_source/plugins/print/plugin.js +1 -1
  321. data/app/assets/javascripts/ckeditor/_source/plugins/removeformat/plugin.js +1 -1
  322. data/app/assets/javascripts/ckeditor/_source/plugins/resize/plugin.js +3 -2
  323. data/app/assets/javascripts/ckeditor/_source/plugins/richcombo/plugin.js +1 -1
  324. data/app/assets/javascripts/ckeditor/_source/plugins/save/plugin.js +1 -1
  325. data/app/assets/javascripts/ckeditor/_source/plugins/scayt/dialogs/options.js +1 -1
  326. data/app/assets/javascripts/ckeditor/_source/plugins/scayt/plugin.js +1 -1
  327. data/app/assets/javascripts/ckeditor/_source/plugins/selection/plugin.js +208 -82
  328. data/app/assets/javascripts/ckeditor/_source/plugins/showblocks/plugin.js +1 -1
  329. data/app/assets/javascripts/ckeditor/_source/plugins/showborders/plugin.js +1 -1
  330. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/dialogs/smiley.js +1 -1
  331. data/app/assets/javascripts/ckeditor/_source/plugins/smiley/plugin.js +1 -1
  332. data/app/assets/javascripts/ckeditor/_source/plugins/sourcearea/plugin.js +1 -1
  333. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js +1 -1
  334. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt +19 -0
  335. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/cs.js +126 -0
  336. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/cy.js +126 -0
  337. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/de.js +126 -0
  338. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/en.js +123 -119
  339. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/eo.js +126 -0
  340. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/et.js +126 -0
  341. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fa.js +126 -0
  342. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fi.js +126 -0
  343. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/fr.js +126 -0
  344. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/hr.js +126 -0
  345. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/it.js +126 -0
  346. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/nb.js +126 -0
  347. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/nl.js +126 -0
  348. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/no.js +126 -0
  349. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/tr.js +126 -0
  350. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/ug.js +126 -0
  351. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/lang/zh-cn.js +126 -0
  352. data/app/assets/javascripts/ckeditor/_source/plugins/specialchar/plugin.js +2 -2
  353. data/app/assets/javascripts/ckeditor/_source/plugins/styles/plugin.js +10 -4
  354. data/app/assets/javascripts/ckeditor/_source/plugins/styles/styles/default.js +1 -1
  355. data/app/assets/javascripts/ckeditor/_source/plugins/stylescombo/plugin.js +1 -1
  356. data/app/assets/javascripts/ckeditor/_source/plugins/stylesheetparser/plugin.js +1 -1
  357. data/app/assets/javascripts/ckeditor/_source/plugins/tab/plugin.js +1 -1
  358. data/app/assets/javascripts/ckeditor/_source/plugins/table/dialogs/table.js +23 -28
  359. data/app/assets/javascripts/ckeditor/_source/plugins/table/plugin.js +1 -1
  360. data/app/assets/javascripts/ckeditor/_source/plugins/tableresize/plugin.js +1 -1
  361. data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js +4 -9
  362. data/app/assets/javascripts/ckeditor/_source/plugins/tabletools/plugin.js +8 -17
  363. data/app/assets/javascripts/ckeditor/_source/plugins/templates/dialogs/templates.js +1 -1
  364. data/app/assets/javascripts/ckeditor/_source/plugins/templates/plugin.js +2 -1
  365. data/app/assets/javascripts/ckeditor/_source/plugins/templates/templates/default.js +1 -1
  366. data/app/assets/javascripts/ckeditor/_source/plugins/toolbar/plugin.js +1 -1
  367. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js +1 -1
  368. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt +27 -0
  369. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/bg.js +15 -0
  370. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/cs.js +15 -0
  371. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/cy.js +15 -0
  372. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/da.js +15 -0
  373. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/de.js +15 -0
  374. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/el.js +15 -0
  375. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/en.js +1 -1
  376. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/eo.js +15 -0
  377. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/et.js +15 -0
  378. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fa.js +15 -0
  379. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fi.js +15 -0
  380. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/fr.js +15 -0
  381. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/he.js +1 -1
  382. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/hr.js +15 -0
  383. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/it.js +15 -0
  384. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/mk.js +15 -0
  385. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/nb.js +15 -0
  386. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/nl.js +15 -0
  387. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/no.js +15 -0
  388. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/pl.js +15 -0
  389. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/tr.js +15 -0
  390. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/ug.js +15 -0
  391. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/uk.js +15 -0
  392. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/vi.js +15 -0
  393. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/lang/zh-cn.js +15 -0
  394. data/app/assets/javascripts/ckeditor/_source/plugins/uicolor/plugin.js +2 -2
  395. data/app/assets/javascripts/ckeditor/_source/plugins/undo/plugin.js +19 -4
  396. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/ciframe.html +1 -1
  397. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html +1 -1
  398. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.css +1 -1
  399. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/dialogs/wsc.js +1 -1
  400. data/app/assets/javascripts/ckeditor/_source/plugins/wsc/plugin.js +1 -1
  401. data/app/assets/javascripts/ckeditor/_source/plugins/wysiwygarea/plugin.js +58 -59
  402. data/app/assets/javascripts/ckeditor/_source/plugins/xml/plugin.js +1 -1
  403. data/app/assets/javascripts/ckeditor/_source/skins/kama/dialog.css +1 -1
  404. data/app/assets/javascripts/ckeditor/_source/skins/kama/editor.css +1 -1
  405. data/app/assets/javascripts/ckeditor/_source/skins/kama/elementspath.css +1 -1
  406. data/app/assets/javascripts/ckeditor/_source/skins/kama/icons.css +1 -1
  407. data/app/assets/javascripts/ckeditor/_source/skins/kama/mainui.css +1 -1
  408. data/app/assets/javascripts/ckeditor/_source/skins/kama/menu.css +1 -1
  409. data/app/assets/javascripts/ckeditor/_source/skins/kama/panel.css +1 -1
  410. data/app/assets/javascripts/ckeditor/_source/skins/kama/presets.css +1 -1
  411. data/app/assets/javascripts/ckeditor/_source/skins/kama/reset.css +1 -1
  412. data/app/assets/javascripts/ckeditor/_source/skins/kama/richcombo.css +1 -1
  413. data/app/assets/javascripts/ckeditor/_source/skins/kama/skin.js +1 -1
  414. data/app/assets/javascripts/ckeditor/_source/skins/kama/templates.css +1 -1
  415. data/app/assets/javascripts/ckeditor/_source/skins/kama/toolbar.css +1 -1
  416. data/app/assets/javascripts/ckeditor/_source/skins/office2003/dialog.css +1 -1
  417. data/app/assets/javascripts/ckeditor/_source/skins/office2003/editor.css +1 -1
  418. data/app/assets/javascripts/ckeditor/_source/skins/office2003/elementspath.css +1 -1
  419. data/app/assets/javascripts/ckeditor/_source/skins/office2003/icons.css +1 -1
  420. data/app/assets/javascripts/ckeditor/_source/skins/office2003/mainui.css +1 -1
  421. data/app/assets/javascripts/ckeditor/_source/skins/office2003/menu.css +1 -1
  422. data/app/assets/javascripts/ckeditor/_source/skins/office2003/panel.css +1 -1
  423. data/app/assets/javascripts/ckeditor/_source/skins/office2003/presets.css +1 -1
  424. data/app/assets/javascripts/ckeditor/_source/skins/office2003/reset.css +1 -1
  425. data/app/assets/javascripts/ckeditor/_source/skins/office2003/skin.js +1 -1
  426. data/app/assets/javascripts/ckeditor/_source/skins/office2003/templates.css +1 -1
  427. data/app/assets/javascripts/ckeditor/_source/skins/office2003/toolbar.css +1 -1
  428. data/app/assets/javascripts/ckeditor/_source/skins/v2/dialog.css +1 -1
  429. data/app/assets/javascripts/ckeditor/_source/skins/v2/editor.css +1 -1
  430. data/app/assets/javascripts/ckeditor/_source/skins/v2/elementspath.css +1 -1
  431. data/app/assets/javascripts/ckeditor/_source/skins/v2/icons.css +1 -1
  432. data/app/assets/javascripts/ckeditor/_source/skins/v2/mainui.css +1 -1
  433. data/app/assets/javascripts/ckeditor/_source/skins/v2/menu.css +1 -1
  434. data/app/assets/javascripts/ckeditor/_source/skins/v2/panel.css +1 -1
  435. data/app/assets/javascripts/ckeditor/_source/skins/v2/presets.css +1 -1
  436. data/app/assets/javascripts/ckeditor/_source/skins/v2/reset.css +1 -1
  437. data/app/assets/javascripts/ckeditor/_source/skins/v2/skin.js +1 -1
  438. data/app/assets/javascripts/ckeditor/_source/skins/v2/templates.css +1 -1
  439. data/app/assets/javascripts/ckeditor/_source/skins/v2/toolbar.css +1 -1
  440. data/app/assets/javascripts/ckeditor/_source/themes/default/theme.js +1 -1
  441. data/app/assets/javascripts/ckeditor/adapters/jquery.js +1 -1
  442. data/app/assets/javascripts/ckeditor/ckeditor.asp +4 -4
  443. data/app/assets/javascripts/ckeditor/ckeditor.js +119 -117
  444. data/app/assets/javascripts/ckeditor/ckeditor.pack +1 -1
  445. data/app/assets/javascripts/ckeditor/ckeditor.php +1 -1
  446. data/app/assets/javascripts/ckeditor/ckeditor_basic.js +3 -3
  447. data/app/assets/javascripts/ckeditor/ckeditor_basic_source.js +2 -2
  448. data/app/assets/javascripts/ckeditor/ckeditor_php4.php +4 -4
  449. data/app/assets/javascripts/ckeditor/ckeditor_php5.php +4 -4
  450. data/app/assets/javascripts/ckeditor/ckeditor_source.js +2 -2
  451. data/app/assets/javascripts/ckeditor/config.js +11 -11
  452. data/app/assets/javascripts/ckeditor/contents.css +1 -1
  453. data/app/assets/javascripts/ckeditor/lang/_languages.js +1 -1
  454. data/app/assets/javascripts/ckeditor/lang/_translationstatus.txt +25 -23
  455. data/app/assets/javascripts/ckeditor/lang/af.js +1 -1
  456. data/app/assets/javascripts/ckeditor/lang/ar.js +2 -2
  457. data/app/assets/javascripts/ckeditor/lang/bg.js +2 -2
  458. data/app/assets/javascripts/ckeditor/lang/bn.js +1 -1
  459. data/app/assets/javascripts/ckeditor/lang/bs.js +1 -1
  460. data/app/assets/javascripts/ckeditor/lang/ca.js +1 -1
  461. data/app/assets/javascripts/ckeditor/lang/cs.js +2 -2
  462. data/app/assets/javascripts/ckeditor/lang/cy.js +2 -2
  463. data/app/assets/javascripts/ckeditor/lang/da.js +2 -2
  464. data/app/assets/javascripts/ckeditor/lang/de.js +2 -2
  465. data/app/assets/javascripts/ckeditor/lang/el.js +2 -2
  466. data/app/assets/javascripts/ckeditor/lang/en-au.js +1 -1
  467. data/app/assets/javascripts/ckeditor/lang/en-ca.js +1 -1
  468. data/app/assets/javascripts/ckeditor/lang/en-gb.js +1 -1
  469. data/app/assets/javascripts/ckeditor/lang/en.js +1 -1
  470. data/app/assets/javascripts/ckeditor/lang/eo.js +2 -2
  471. data/app/assets/javascripts/ckeditor/lang/es.js +1 -1
  472. data/app/assets/javascripts/ckeditor/lang/et.js +2 -2
  473. data/app/assets/javascripts/ckeditor/lang/eu.js +1 -1
  474. data/app/assets/javascripts/ckeditor/lang/fa.js +1 -1
  475. data/app/assets/javascripts/ckeditor/lang/fi.js +1 -1
  476. data/app/assets/javascripts/ckeditor/lang/fo.js +2 -2
  477. data/app/assets/javascripts/ckeditor/lang/fr-ca.js +1 -1
  478. data/app/assets/javascripts/ckeditor/lang/fr.js +2 -2
  479. data/app/assets/javascripts/ckeditor/lang/gl.js +1 -1
  480. data/app/assets/javascripts/ckeditor/lang/gu.js +2 -2
  481. data/app/assets/javascripts/ckeditor/lang/he.js +1 -1
  482. data/app/assets/javascripts/ckeditor/lang/hi.js +2 -2
  483. data/app/assets/javascripts/ckeditor/lang/hr.js +2 -2
  484. data/app/assets/javascripts/ckeditor/lang/hu.js +1 -1
  485. data/app/assets/javascripts/ckeditor/lang/is.js +1 -1
  486. data/app/assets/javascripts/ckeditor/lang/it.js +2 -2
  487. data/app/assets/javascripts/ckeditor/lang/ja.js +1 -1
  488. data/app/assets/javascripts/ckeditor/lang/ka.js +1 -1
  489. data/app/assets/javascripts/ckeditor/lang/km.js +1 -1
  490. data/app/assets/javascripts/ckeditor/lang/ko.js +1 -1
  491. data/app/assets/javascripts/ckeditor/lang/lt.js +1 -1
  492. data/app/assets/javascripts/ckeditor/lang/lv.js +1 -1
  493. data/app/assets/javascripts/ckeditor/lang/mk.js +6 -0
  494. data/app/assets/javascripts/ckeditor/lang/mn.js +1 -1
  495. data/app/assets/javascripts/ckeditor/lang/ms.js +1 -1
  496. data/app/assets/javascripts/ckeditor/lang/nb.js +2 -2
  497. data/app/assets/javascripts/ckeditor/lang/nl.js +2 -2
  498. data/app/assets/javascripts/ckeditor/lang/no.js +2 -2
  499. data/app/assets/javascripts/ckeditor/lang/pl.js +2 -2
  500. data/app/assets/javascripts/ckeditor/lang/pt-br.js +1 -1
  501. data/app/assets/javascripts/ckeditor/lang/pt.js +2 -2
  502. data/app/assets/javascripts/ckeditor/lang/ro.js +1 -1
  503. data/app/assets/javascripts/ckeditor/lang/ru.js +1 -1
  504. data/app/assets/javascripts/ckeditor/lang/sk.js +1 -1
  505. data/app/assets/javascripts/ckeditor/lang/sl.js +1 -1
  506. data/app/assets/javascripts/ckeditor/lang/sr-latn.js +1 -1
  507. data/app/assets/javascripts/ckeditor/lang/sr.js +1 -1
  508. data/app/assets/javascripts/ckeditor/lang/sv.js +1 -1
  509. data/app/assets/javascripts/ckeditor/lang/th.js +1 -1
  510. data/app/assets/javascripts/ckeditor/lang/tr.js +2 -2
  511. data/app/assets/javascripts/ckeditor/lang/ug.js +6 -0
  512. data/app/assets/javascripts/ckeditor/lang/uk.js +2 -2
  513. data/app/assets/javascripts/ckeditor/lang/vi.js +2 -2
  514. data/app/assets/javascripts/ckeditor/lang/zh-cn.js +2 -2
  515. data/app/assets/javascripts/ckeditor/lang/zh.js +2 -2
  516. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js +1 -1
  517. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt +23 -0
  518. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cs.js +6 -0
  519. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/cy.js +6 -0
  520. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/da.js +6 -0
  521. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/de.js +6 -0
  522. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/el.js +6 -0
  523. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/en.js +2 -2
  524. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/eo.js +6 -0
  525. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fa.js +6 -0
  526. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fi.js +6 -0
  527. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/fr.js +6 -0
  528. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/gu.js +6 -0
  529. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/he.js +2 -2
  530. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/it.js +6 -0
  531. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/mk.js +6 -0
  532. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nb.js +6 -0
  533. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/nl.js +6 -0
  534. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/no.js +6 -0
  535. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/tr.js +6 -0
  536. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/ug.js +6 -0
  537. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/vi.js +6 -0
  538. data/app/assets/javascripts/ckeditor/plugins/a11yhelp/lang/zh-cn.js +6 -0
  539. data/app/assets/javascripts/ckeditor/plugins/about/dialogs/about.js +1 -1
  540. data/app/assets/javascripts/ckeditor/plugins/adobeair/plugin.js +1 -1
  541. data/app/assets/javascripts/ckeditor/plugins/ajax/plugin.js +1 -1
  542. data/app/assets/javascripts/ckeditor/plugins/autogrow/plugin.js +2 -2
  543. data/app/assets/javascripts/ckeditor/plugins/bbcode/plugin.js +1 -1
  544. data/app/assets/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +2 -2
  545. data/app/assets/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +3 -3
  546. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/_translationstatus.txt +27 -0
  547. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/bg.js +6 -0
  548. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/cs.js +6 -0
  549. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/cy.js +6 -0
  550. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/da.js +6 -0
  551. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/de.js +6 -0
  552. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/el.js +6 -0
  553. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/en.js +1 -1
  554. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/eo.js +6 -0
  555. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/et.js +6 -0
  556. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fa.js +6 -0
  557. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fi.js +6 -0
  558. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/fr.js +6 -0
  559. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/gu.js +6 -0
  560. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/he.js +6 -0
  561. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/hr.js +6 -0
  562. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/it.js +6 -0
  563. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/nb.js +6 -0
  564. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/nl.js +6 -0
  565. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/no.js +6 -0
  566. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/pl.js +6 -0
  567. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/tr.js +6 -0
  568. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/ug.js +6 -0
  569. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/uk.js +6 -0
  570. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/vi.js +6 -0
  571. data/app/assets/javascripts/ckeditor/plugins/devtools/lang/zh-cn.js +6 -0
  572. data/app/assets/javascripts/ckeditor/plugins/devtools/plugin.js +2 -2
  573. data/app/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +1 -1
  574. data/app/assets/javascripts/ckeditor/plugins/div/dialogs/div.js +1 -1
  575. data/app/assets/javascripts/ckeditor/plugins/docprops/dialogs/docprops.js +1 -1
  576. data/app/assets/javascripts/ckeditor/plugins/docprops/plugin.js +1 -1
  577. data/app/assets/javascripts/ckeditor/plugins/find/dialogs/find.js +1 -1
  578. data/app/assets/javascripts/ckeditor/plugins/flash/dialogs/flash.js +1 -1
  579. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/button.js +1 -1
  580. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +1 -1
  581. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/form.js +1 -1
  582. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +1 -1
  583. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/radio.js +1 -1
  584. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/select.js +1 -1
  585. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +1 -1
  586. data/app/assets/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +1 -1
  587. data/app/assets/javascripts/ckeditor/plugins/iframe/dialogs/iframe.js +1 -1
  588. data/app/assets/javascripts/ckeditor/plugins/iframedialog/plugin.js +1 -1
  589. data/app/assets/javascripts/ckeditor/plugins/image/dialogs/image.js +9 -9
  590. data/app/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js +1 -1
  591. data/app/assets/javascripts/ckeditor/plugins/link/dialogs/link.js +5 -5
  592. data/app/assets/javascripts/ckeditor/plugins/liststyle/dialogs/liststyle.js +1 -1
  593. data/app/assets/javascripts/ckeditor/plugins/pastefromword/filter/default.js +1 -1
  594. data/app/assets/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +1 -1
  595. data/app/assets/javascripts/ckeditor/plugins/placeholder/dialogs/placeholder.js +1 -1
  596. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/_translationstatus.txt +26 -0
  597. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/bg.js +6 -0
  598. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/cs.js +6 -0
  599. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/cy.js +6 -0
  600. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/da.js +6 -0
  601. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/de.js +6 -0
  602. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/el.js +6 -0
  603. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/en.js +1 -1
  604. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/eo.js +6 -0
  605. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/et.js +6 -0
  606. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fa.js +6 -0
  607. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fi.js +6 -0
  608. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/fr.js +6 -0
  609. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/he.js +1 -1
  610. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/hr.js +6 -0
  611. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/it.js +6 -0
  612. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/nb.js +6 -0
  613. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/nl.js +6 -0
  614. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/no.js +6 -0
  615. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/pl.js +6 -0
  616. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/tr.js +6 -0
  617. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/ug.js +6 -0
  618. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/uk.js +6 -0
  619. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/vi.js +6 -0
  620. data/app/assets/javascripts/ckeditor/plugins/placeholder/lang/zh-cn.js +6 -0
  621. data/app/assets/javascripts/ckeditor/plugins/placeholder/plugin.js +2 -2
  622. data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/options.js +1 -1
  623. data/app/assets/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +1 -1
  624. data/app/assets/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +1 -1
  625. data/app/assets/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +1 -1
  626. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/_translationstatus.txt +19 -0
  627. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/cs.js +6 -0
  628. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/cy.js +6 -0
  629. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/de.js +6 -0
  630. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/en.js +1 -1
  631. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/eo.js +6 -0
  632. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/et.js +6 -0
  633. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fa.js +6 -0
  634. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fi.js +6 -0
  635. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/fr.js +6 -0
  636. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/hr.js +6 -0
  637. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/it.js +6 -0
  638. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/nb.js +6 -0
  639. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/nl.js +6 -0
  640. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/no.js +6 -0
  641. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/tr.js +6 -0
  642. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/ug.js +6 -0
  643. data/app/assets/javascripts/ckeditor/plugins/specialchar/lang/zh-cn.js +6 -0
  644. data/app/assets/javascripts/ckeditor/plugins/styles/styles/default.js +1 -1
  645. data/app/assets/javascripts/ckeditor/plugins/stylesheetparser/plugin.js +1 -1
  646. data/app/assets/javascripts/ckeditor/plugins/table/dialogs/table.js +5 -5
  647. data/app/assets/javascripts/ckeditor/plugins/tableresize/plugin.js +1 -1
  648. data/app/assets/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +3 -3
  649. data/app/assets/javascripts/ckeditor/plugins/templates/dialogs/templates.js +1 -1
  650. data/app/assets/javascripts/ckeditor/plugins/templates/templates/default.js +1 -1
  651. data/app/assets/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +1 -1
  652. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/_translationstatus.txt +27 -0
  653. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/bg.js +6 -0
  654. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/cs.js +6 -0
  655. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/cy.js +6 -0
  656. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/da.js +6 -0
  657. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/de.js +6 -0
  658. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/el.js +6 -0
  659. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/en.js +1 -1
  660. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/eo.js +6 -0
  661. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/et.js +6 -0
  662. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fa.js +6 -0
  663. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fi.js +6 -0
  664. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/fr.js +6 -0
  665. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/he.js +1 -1
  666. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/hr.js +6 -0
  667. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/it.js +6 -0
  668. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/mk.js +6 -0
  669. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/nb.js +6 -0
  670. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/nl.js +6 -0
  671. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/no.js +6 -0
  672. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/pl.js +6 -0
  673. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/tr.js +6 -0
  674. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/ug.js +6 -0
  675. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/uk.js +6 -0
  676. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/vi.js +6 -0
  677. data/app/assets/javascripts/ckeditor/plugins/uicolor/lang/zh-cn.js +6 -0
  678. data/app/assets/javascripts/ckeditor/plugins/uicolor/plugin.js +2 -2
  679. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +1 -1
  680. data/app/assets/javascripts/ckeditor/plugins/uicolor/yui/yui.js +1 -1
  681. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +1 -1
  682. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +1 -1
  683. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +1 -1
  684. data/app/assets/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +1 -1
  685. data/app/assets/javascripts/ckeditor/plugins/xml/plugin.js +1 -1
  686. data/app/assets/javascripts/ckeditor/skins/kama/dialog.css +2 -2
  687. data/app/assets/javascripts/ckeditor/skins/kama/editor.css +3 -3
  688. data/app/assets/javascripts/ckeditor/skins/kama/skin.js +1 -1
  689. data/app/assets/javascripts/ckeditor/skins/kama/templates.css +1 -1
  690. data/app/assets/javascripts/ckeditor/skins/office2003/dialog.css +1 -1
  691. data/app/assets/javascripts/ckeditor/skins/office2003/editor.css +1 -1
  692. data/app/assets/javascripts/ckeditor/skins/office2003/skin.js +1 -1
  693. data/app/assets/javascripts/ckeditor/skins/office2003/templates.css +1 -1
  694. data/app/assets/javascripts/ckeditor/skins/v2/dialog.css +1 -1
  695. data/app/assets/javascripts/ckeditor/skins/v2/editor.css +1 -1
  696. data/app/assets/javascripts/ckeditor/skins/v2/skin.js +1 -1
  697. data/app/assets/javascripts/ckeditor/skins/v2/templates.css +1 -1
  698. data/app/assets/javascripts/ckeditor/themes/default/theme.js +1 -1
  699. data/lib/refinery/ckeditor/version.rb +1 -1
  700. metadata +262 -21
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,13 +1,13 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
6
- (function(){var a=function(b,c){var d=1,e=2,f=4,g=8,h=/^\s*(\d+)((px)|\%)?\s*$/i,i=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,j=/^\d+px$/,k=function(){var C=this.getValue(),D=this.getDialog(),E=C.match(h);if(E){if(E[2]=='%')p(D,false);C=E[1];}if(D.lockRatio){var F=D.originalElement;if(F.getCustomData('isReady')=='true')if(this.id=='txtHeight'){if(C&&C!='0')C=Math.round(F.$.width*(C/F.$.height));if(!isNaN(C))D.setValueOf('info','txtWidth',C);}else{if(C&&C!='0')C=Math.round(F.$.height*(C/F.$.width));if(!isNaN(C))D.setValueOf('info','txtHeight',C);}}l(D);},l=function(C){if(!C.originalElement||!C.preview)return 1;C.commitContent(f,C.preview);return 0;};function m(){var C=arguments,D=this.getContentElement('advanced','txtdlgGenStyle');D&&D.commit.apply(D,C);this.foreach(function(E){if(E.commit&&E.id!='txtdlgGenStyle')E.commit.apply(E,C);});};var n;function o(C){if(n)return;n=1;var D=this.getDialog(),E=D.imageElement;if(E){this.commit(d,E);C=[].concat(C);var F=C.length,G;for(var H=0;H<F;H++){G=D.getContentElement.apply(D,C[H].split(':'));G&&G.setup(d,E);}}n=0;};var p=function(C,D){if(!C.getContentElement('info','ratioLock'))return null;var E=C.originalElement;if(!E)return null;if(D=='check'){if(!C.userlockRatio&&E.getCustomData('isReady')=='true'){var F=C.getValueOf('info','txtWidth'),G=C.getValueOf('info','txtHeight'),H=E.$.width*1000/E.$.height,I=F*1000/G;C.lockRatio=false;if(!F&&!G)C.lockRatio=true;else if(!isNaN(H)&&!isNaN(I))if(Math.round(H)==Math.round(I))C.lockRatio=true;}}else if(D!=undefined)C.lockRatio=D;else{C.userlockRatio=1;C.lockRatio=!C.lockRatio;}var J=CKEDITOR.document.getById(w);if(C.lockRatio)J.removeClass('cke_btn_unlocked');else J.addClass('cke_btn_unlocked');J.setAttribute('aria-checked',C.lockRatio);if(CKEDITOR.env.hc){var K=J.getChild(0);K.setHtml(C.lockRatio?CKEDITOR.env.ie?'■':'▣':CKEDITOR.env.ie?'□':'▢');}return C.lockRatio;},q=function(C){var D=C.originalElement;if(D.getCustomData('isReady')=='true'){var E=C.getContentElement('info','txtWidth'),F=C.getContentElement('info','txtHeight');E&&E.setValue(D.$.width);F&&F.setValue(D.$.height);}l(C);},r=function(C,D){if(C!=d)return;function E(J,K){var L=J.match(h);if(L){if(L[2]=='%'){L[1]+='%';p(F,false);}return L[1];}return K;};var F=this.getDialog(),G='',H=this.id=='txtWidth'?'width':'height',I=D.getAttribute(H);if(I)G=E(I,G);G=E(D.getStyle(H),G);this.setValue(G);},s,t=function(){var C=this.originalElement;C.setCustomData('isReady','true');C.removeListener('load',t);C.removeListener('error',u);C.removeListener('abort',u);
7
- CKEDITOR.document.getById(y).setStyle('display','none');if(!this.dontResetSize)q(this);if(this.firstLoad)CKEDITOR.tools.setTimeout(function(){p(this,'check');},0,this);this.firstLoad=false;this.dontResetSize=false;},u=function(){var E=this;var C=E.originalElement;C.removeListener('load',t);C.removeListener('error',u);C.removeListener('abort',u);var D=CKEDITOR.getUrl(b.skinPath+'images/noimage.png');if(E.preview)E.preview.setAttribute('src',D);CKEDITOR.document.getById(y).setStyle('display','none');p(E,false);},v=function(C){return CKEDITOR.tools.getNextId()+'_'+C;},w=v('btnLockSizes'),x=v('btnResetSize'),y=v('ImagePreviewLoader'),z=v('ImagePreviewBox'),A=v('previewLink'),B=v('previewImage');return{title:b.lang.image[c=='image'?'title':'titleButton'],minWidth:420,minHeight:360,onShow:function(){var I=this;I.imageElement=false;I.linkElement=false;I.imageEditMode=false;I.linkEditMode=false;I.lockRatio=true;I.userlockRatio=0;I.dontResetSize=false;I.firstLoad=true;I.addLink=false;var C=I.getParentEditor(),D=I.getParentEditor().getSelection(),E=D.getSelectedElement(),F=E&&E.getAscendant('a');CKEDITOR.document.getById(y).setStyle('display','none');s=new CKEDITOR.dom.element('img',C.document);I.preview=CKEDITOR.document.getById(B);I.originalElement=C.document.createElement('img');I.originalElement.setAttribute('alt','');I.originalElement.setCustomData('isReady','false');if(F){I.linkElement=F;I.linkEditMode=true;var G=F.getChildren();if(G.count()==1){var H=G.getItem(0).getName();if(H=='img'||H=='input'){I.imageElement=G.getItem(0);if(I.imageElement.getName()=='img')I.imageEditMode='img';else if(I.imageElement.getName()=='input')I.imageEditMode='input';}}if(c=='image')I.setupContent(e,F);}if(E&&E.getName()=='img'&&!E.data('cke-realelement')||E&&E.getName()=='input'&&E.getAttribute('type')=='image'){I.imageEditMode=E.getName();I.imageElement=E;}if(I.imageEditMode){I.cleanImageElement=I.imageElement;I.imageElement=I.cleanImageElement.clone(true,true);I.setupContent(d,I.imageElement);}else I.imageElement=C.document.createElement('img');p(I,true);if(!CKEDITOR.tools.trim(I.getValueOf('info','txtUrl'))){I.preview.removeAttribute('src');I.preview.setStyle('display','none');}},onOk:function(){var D=this;if(D.imageEditMode){var C=D.imageEditMode;if(c=='image'&&C=='input'&&confirm(b.lang.image.button2Img)){C='img';D.imageElement=b.document.createElement('img');D.imageElement.setAttribute('alt','');b.insertElement(D.imageElement);}else if(c!='image'&&C=='img'&&confirm(b.lang.image.img2Button)){C='input';
8
- D.imageElement=b.document.createElement('input');D.imageElement.setAttributes({type:'image',alt:''});b.insertElement(D.imageElement);}else{D.imageElement=D.cleanImageElement;delete D.cleanImageElement;}}else{if(c=='image')D.imageElement=b.document.createElement('img');else{D.imageElement=b.document.createElement('input');D.imageElement.setAttribute('type','image');}D.imageElement.setAttribute('alt','');}if(!D.linkEditMode)D.linkElement=b.document.createElement('a');D.commitContent(d,D.imageElement);D.commitContent(e,D.linkElement);if(!D.imageElement.getAttribute('style'))D.imageElement.removeAttribute('style');if(!D.imageEditMode){if(D.addLink){if(!D.linkEditMode){b.insertElement(D.linkElement);D.linkElement.append(D.imageElement,false);}else b.insertElement(D.imageElement);}else b.insertElement(D.imageElement);}else if(!D.linkEditMode&&D.addLink){b.insertElement(D.linkElement);D.imageElement.appendTo(D.linkElement);}else if(D.linkEditMode&&!D.addLink){b.getSelection().selectElement(D.linkElement);b.insertElement(D.imageElement);}},onLoad:function(){var D=this;if(c!='image')D.hidePage('Link');var C=D._.element.getDocument();if(D.getContentElement('info','ratioLock')){D.addFocusable(C.getById(x),5);D.addFocusable(C.getById(w),5);}D.commitContent=m;},onHide:function(){var C=this;if(C.preview)C.commitContent(g,C.preview);if(C.originalElement){C.originalElement.removeListener('load',t);C.originalElement.removeListener('error',u);C.originalElement.removeListener('abort',u);C.originalElement.remove();C.originalElement=false;}delete C.imageElement;},contents:[{id:'info',label:b.lang.image.infoTab,accessKey:'I',elements:[{type:'vbox',padding:0,children:[{type:'hbox',widths:['280px','110px'],align:'right',children:[{id:'txtUrl',type:'text',label:b.lang.common.url,required:true,onChange:function(){var C=this.getDialog(),D=this.getValue();if(D.length>0){C=this.getDialog();var E=C.originalElement;C.preview.removeStyle('display');E.setCustomData('isReady','false');var F=CKEDITOR.document.getById(y);if(F)F.setStyle('display','');E.on('load',t,C);E.on('error',u,C);E.on('abort',u,C);E.setAttribute('src',D);s.setAttribute('src',D);C.preview.setAttribute('src',s.$.src);l(C);}else if(C.preview){C.preview.removeAttribute('src');C.preview.setStyle('display','none');}},setup:function(C,D){if(C==d){var E=D.data('cke-saved-src')||D.getAttribute('src'),F=this;this.getDialog().dontResetSize=true;F.setValue(E);F.setInitValue();}},commit:function(C,D){var E=this;if(C==d&&(E.getValue()||E.isChanged())){D.data('cke-saved-src',E.getValue());
9
- D.setAttribute('src',E.getValue());}else if(C==g){D.setAttribute('src','');D.removeAttribute('src');}},validate:CKEDITOR.dialog.validate.notEmpty(b.lang.image.urlMissing)},{type:'button',id:'browse',style:'display:inline-block;margin-top:10px;',align:'center',label:b.lang.common.browseServer,hidden:true,filebrowser:'info:txtUrl'}]}]},{id:'txtAlt',type:'text',label:b.lang.image.alt,accessKey:'T','default':'',onChange:function(){l(this.getDialog());},setup:function(C,D){if(C==d)this.setValue(D.getAttribute('alt'));},commit:function(C,D){var E=this;if(C==d){if(E.getValue()||E.isChanged())D.setAttribute('alt',E.getValue());}else if(C==f)D.setAttribute('alt',E.getValue());else if(C==g)D.removeAttribute('alt');}},{type:'hbox',children:[{id:'basic',type:'vbox',children:[{type:'hbox',widths:['50%','50%'],children:[{type:'vbox',padding:1,children:[{type:'text',width:'40px',id:'txtWidth',label:b.lang.common.width,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var C=this.getValue().match(i),D=!!(C&&parseInt(C[1],10)!==0);if(!D)alert(b.lang.common.invalidWidth);return D;},setup:r,commit:function(C,D,E){var F=this.getValue();if(C==d){if(F)D.setStyle('width',CKEDITOR.tools.cssLength(F));else D.removeStyle('width');!E&&D.removeAttribute('width');}else if(C==f){var G=F.match(h);if(!G){var H=this.getDialog().originalElement;if(H.getCustomData('isReady')=='true')D.setStyle('width',H.$.width+'px');}else D.setStyle('width',CKEDITOR.tools.cssLength(F));}else if(C==g){D.removeAttribute('width');D.removeStyle('width');}}},{type:'text',id:'txtHeight',width:'40px',label:b.lang.common.height,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var C=this.getValue().match(i),D=!!(C&&parseInt(C[1],10)!==0);if(!D)alert(b.lang.common.invalidHeight);return D;},setup:r,commit:function(C,D,E){var F=this.getValue();if(C==d){if(F)D.setStyle('height',CKEDITOR.tools.cssLength(F));else D.removeStyle('height');!E&&D.removeAttribute('height');}else if(C==f){var G=F.match(h);if(!G){var H=this.getDialog().originalElement;if(H.getCustomData('isReady')=='true')D.setStyle('height',H.$.height+'px');}else D.setStyle('height',CKEDITOR.tools.cssLength(F));}else if(C==g){D.removeAttribute('height');D.removeStyle('height');}}}]},{id:'ratioLock',type:'html',style:'margin-top:30px;width:40px;height:40px;',onLoad:function(){var C=CKEDITOR.document.getById(x),D=CKEDITOR.document.getById(w);if(C){C.on('click',function(E){q(this);E.data&&E.data.preventDefault();
10
- },this.getDialog());C.on('mouseover',function(){this.addClass('cke_btn_over');},C);C.on('mouseout',function(){this.removeClass('cke_btn_over');},C);}if(D){D.on('click',function(E){var J=this;var F=p(J),G=J.originalElement,H=J.getValueOf('info','txtWidth');if(G.getCustomData('isReady')=='true'&&H){var I=G.$.height/G.$.width*H;if(!isNaN(I)){J.setValueOf('info','txtHeight',Math.round(I));l(J);}}E.data&&E.data.preventDefault();},this.getDialog());D.on('mouseover',function(){this.addClass('cke_btn_over');},D);D.on('mouseout',function(){this.removeClass('cke_btn_over');},D);}},html:'<div><a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.lockRatio+'" class="cke_btn_locked" id="'+w+'" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+b.lang.image.lockRatio+'</span></a>'+'<a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.resetSize+'" class="cke_btn_reset" id="'+x+'" role="button"><span class="cke_label">'+b.lang.image.resetSize+'</span></a>'+'</div>'}]},{type:'vbox',padding:1,children:[{type:'text',id:'txtBorder',width:'60px',label:b.lang.image.border,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateBorder),setup:function(C,D){if(C==d){var E,F=D.getStyle('border-width');F=F&&F.match(/^(\d+px)(?: \1 \1 \1)?$/);E=F&&parseInt(F[1],10);isNaN(parseInt(E,10))&&(E=D.getAttribute('border'));this.setValue(E);}},commit:function(C,D,E){var F=parseInt(this.getValue(),10);if(C==d||C==f){if(!isNaN(F)){D.setStyle('border-width',CKEDITOR.tools.cssLength(F));D.setStyle('border-style','solid');}else if(!F&&this.isChanged()){D.removeStyle('border-width');D.removeStyle('border-style');D.removeStyle('border-color');}if(!E&&C==d)D.removeAttribute('border');}else if(C==g){D.removeAttribute('border');D.removeStyle('border-width');D.removeStyle('border-style');D.removeStyle('border-color');}}},{type:'text',id:'txtHSpace',width:'60px',label:b.lang.image.hSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateHSpace),setup:function(C,D){if(C==d){var E,F,G,H=D.getStyle('margin-left'),I=D.getStyle('margin-right');H=H&&H.match(j);I=I&&I.match(j);F=parseInt(H,10);G=parseInt(I,10);E=F==G&&F;isNaN(parseInt(E,10))&&(E=D.getAttribute('hspace'));this.setValue(E);}},commit:function(C,D,E){var F=parseInt(this.getValue(),10);
11
- if(C==d||C==f){if(!isNaN(F)){D.setStyle('margin-left',CKEDITOR.tools.cssLength(F));D.setStyle('margin-right',CKEDITOR.tools.cssLength(F));}else if(!F&&this.isChanged()){D.removeStyle('margin-left');D.removeStyle('margin-right');}if(!E&&C==d)D.removeAttribute('hspace');}else if(C==g){D.removeAttribute('hspace');D.removeStyle('margin-left');D.removeStyle('margin-right');}}},{type:'text',id:'txtVSpace',width:'60px',label:b.lang.image.vSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateVSpace),setup:function(C,D){if(C==d){var E,F,G,H=D.getStyle('margin-top'),I=D.getStyle('margin-bottom');H=H&&H.match(j);I=I&&I.match(j);F=parseInt(H,10);G=parseInt(I,10);E=F==G&&F;isNaN(parseInt(E,10))&&(E=D.getAttribute('vspace'));this.setValue(E);}},commit:function(C,D,E){var F=parseInt(this.getValue(),10);if(C==d||C==f){if(!isNaN(F)){D.setStyle('margin-top',CKEDITOR.tools.cssLength(F));D.setStyle('margin-bottom',CKEDITOR.tools.cssLength(F));}else if(!F&&this.isChanged()){D.removeStyle('margin-top');D.removeStyle('margin-bottom');}if(!E&&C==d)D.removeAttribute('vspace');}else if(C==g){D.removeAttribute('vspace');D.removeStyle('margin-top');D.removeStyle('margin-bottom');}}},{id:'cmbAlign',type:'select',widths:['35%','65%'],style:'width:90px',label:b.lang.common.align,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.alignLeft,'left'],[b.lang.common.alignRight,'right']],onChange:function(){l(this.getDialog());o.call(this,'advanced:txtdlgGenStyle');},setup:function(C,D){if(C==d){var E=D.getStyle('float');switch(E){case 'inherit':case 'none':E='';}!E&&(E=(D.getAttribute('align')||'').toLowerCase());this.setValue(E);}},commit:function(C,D,E){var F=this.getValue();if(C==d||C==f){if(F)D.setStyle('float',F);else D.removeStyle('float');if(!E&&C==d){F=(D.getAttribute('align')||'').toLowerCase();switch(F){case 'left':case 'right':D.removeAttribute('align');}}}else if(C==g)D.removeStyle('float');}}]}]},{type:'vbox',height:'250px',children:[{type:'html',id:'htmlPreview',style:'width:95%;',html:'<div>'+CKEDITOR.tools.htmlEncode(b.lang.common.preview)+'<br>'+'<div id="'+y+'" class="ImagePreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div>'+'<div id="'+z+'" class="ImagePreviewBox"><table><tr><td>'+'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="'+A+'">'+'<img id="'+B+'" alt="" /></a>'+(b.config.image_previewText||'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.')+'</td></tr></table></div></div>'}]}]}]},{id:'Link',label:b.lang.link.title,padding:0,elements:[{id:'txtUrl',type:'text',label:b.lang.common.url,style:'width: 100%','default':'',setup:function(C,D){if(C==e){var E=D.data('cke-saved-href');
12
- if(!E)E=D.getAttribute('href');this.setValue(E);}},commit:function(C,D){var F=this;if(C==e)if(F.getValue()||F.isChanged()){var E=decodeURI(F.getValue());D.data('cke-saved-href',E);D.setAttribute('href',E);if(F.getValue()||!b.config.image_removeLinkByEmptyURL)F.getDialog().addLink=true;}}},{type:'button',id:'browse',filebrowser:{action:'Browse',target:'Link:txtUrl',url:b.config.filebrowserImageBrowseLinkUrl},style:'float:right',hidden:true,label:b.lang.common.browseServer},{id:'cmbTarget',type:'select',label:b.lang.common.target,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.targetNew,'_blank'],[b.lang.common.targetTop,'_top'],[b.lang.common.targetSelf,'_self'],[b.lang.common.targetParent,'_parent']],setup:function(C,D){if(C==e)this.setValue(D.getAttribute('target')||'');},commit:function(C,D){if(C==e)if(this.getValue()||this.isChanged())D.setAttribute('target',this.getValue());}}]},{id:'Upload',hidden:true,filebrowser:'uploadButton',label:b.lang.image.upload,elements:[{type:'file',id:'upload',label:b.lang.image.btnUpload,style:'height:40px',size:38},{type:'fileButton',id:'uploadButton',filebrowser:'info:txtUrl',label:b.lang.image.btnUpload,'for':['Upload','upload']}]},{id:'advanced',label:b.lang.common.advancedTab,elements:[{type:'hbox',widths:['50%','25%','25%'],children:[{type:'text',id:'linkId',label:b.lang.common.id,setup:function(C,D){if(C==d)this.setValue(D.getAttribute('id'));},commit:function(C,D){if(C==d)if(this.getValue()||this.isChanged())D.setAttribute('id',this.getValue());}},{id:'cmbLangDir',type:'select',style:'width : 100px;',label:b.lang.common.langDir,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.langDirLtr,'ltr'],[b.lang.common.langDirRtl,'rtl']],setup:function(C,D){if(C==d)this.setValue(D.getAttribute('dir'));},commit:function(C,D){if(C==d)if(this.getValue()||this.isChanged())D.setAttribute('dir',this.getValue());}},{type:'text',id:'txtLangCode',label:b.lang.common.langCode,'default':'',setup:function(C,D){if(C==d)this.setValue(D.getAttribute('lang'));},commit:function(C,D){if(C==d)if(this.getValue()||this.isChanged())D.setAttribute('lang',this.getValue());}}]},{type:'text',id:'txtGenLongDescr',label:b.lang.common.longDescr,setup:function(C,D){if(C==d)this.setValue(D.getAttribute('longDesc'));},commit:function(C,D){if(C==d)if(this.getValue()||this.isChanged())D.setAttribute('longDesc',this.getValue());}},{type:'hbox',widths:['50%','50%'],children:[{type:'text',id:'txtGenClass',label:b.lang.common.cssClass,'default':'',setup:function(C,D){if(C==d)this.setValue(D.getAttribute('class'));
13
- },commit:function(C,D){if(C==d)if(this.getValue()||this.isChanged())D.setAttribute('class',this.getValue());}},{type:'text',id:'txtGenTitle',label:b.lang.common.advisoryTitle,'default':'',onChange:function(){l(this.getDialog());},setup:function(C,D){if(C==d)this.setValue(D.getAttribute('title'));},commit:function(C,D){var E=this;if(C==d){if(E.getValue()||E.isChanged())D.setAttribute('title',E.getValue());}else if(C==f)D.setAttribute('title',E.getValue());else if(C==g)D.removeAttribute('title');}}]},{type:'text',id:'txtdlgGenStyle',label:b.lang.common.cssStyle,validate:CKEDITOR.dialog.validate.inlineStyle(b.lang.common.invalidInlineStyle),'default':'',setup:function(C,D){if(C==d){var E=D.getAttribute('style');if(!E&&D.$.style.cssText)E=D.$.style.cssText;this.setValue(E);var F=D.$.style.height,G=D.$.style.width,H=(F?F:'').match(h),I=(G?G:'').match(h);this.attributesInStyle={height:!!H,width:!!I};}},onChange:function(){o.call(this,['info:cmbFloat','info:cmbAlign','info:txtVSpace','info:txtHSpace','info:txtBorder','info:txtWidth','info:txtHeight']);l(this);},commit:function(C,D){if(C==d&&(this.getValue()||this.isChanged()))D.setAttribute('style',this.getValue());}}]}]};};CKEDITOR.dialog.add('image',function(b){return a(b,'image');});CKEDITOR.dialog.add('imagebutton',function(b){return a(b,'imagebutton');});})();
6
+ (function(){var a=function(b,c){var d=1,e=2,f=4,g=8,h=/^\s*(\d+)((px)|\%)?\s*$/i,i=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,j=/^\d+px$/,k=function(){var B=this.getValue(),C=this.getDialog(),D=B.match(h);if(D){if(D[2]=='%')p(C,false);B=D[1];}if(C.lockRatio){var E=C.originalElement;if(E.getCustomData('isReady')=='true')if(this.id=='txtHeight'){if(B&&B!='0')B=Math.round(E.$.width*(B/E.$.height));if(!isNaN(B))C.setValueOf('info','txtWidth',B);}else{if(B&&B!='0')B=Math.round(E.$.height*(B/E.$.width));if(!isNaN(B))C.setValueOf('info','txtHeight',B);}}l(C);},l=function(B){if(!B.originalElement||!B.preview)return 1;B.commitContent(f,B.preview);return 0;};function m(){var B=arguments,C=this.getContentElement('advanced','txtdlgGenStyle');C&&C.commit.apply(C,B);this.foreach(function(D){if(D.commit&&D.id!='txtdlgGenStyle')D.commit.apply(D,B);});};var n;function o(B){if(n)return;n=1;var C=this.getDialog(),D=C.imageElement;if(D){this.commit(d,D);B=[].concat(B);var E=B.length,F;for(var G=0;G<E;G++){F=C.getContentElement.apply(C,B[G].split(':'));F&&F.setup(d,D);}}n=0;};var p=function(B,C){if(!B.getContentElement('info','ratioLock'))return null;var D=B.originalElement;if(!D)return null;if(C=='check'){if(!B.userlockRatio&&D.getCustomData('isReady')=='true'){var E=B.getValueOf('info','txtWidth'),F=B.getValueOf('info','txtHeight'),G=D.$.width*1000/D.$.height,H=E*1000/F;B.lockRatio=false;if(!E&&!F)B.lockRatio=true;else if(!isNaN(G)&&!isNaN(H))if(Math.round(G)==Math.round(H))B.lockRatio=true;}}else if(C!=undefined)B.lockRatio=C;else{B.userlockRatio=1;B.lockRatio=!B.lockRatio;}var I=CKEDITOR.document.getById(w);if(B.lockRatio)I.removeClass('cke_btn_unlocked');else I.addClass('cke_btn_unlocked');I.setAttribute('aria-checked',B.lockRatio);if(CKEDITOR.env.hc){var J=I.getChild(0);J.setHtml(B.lockRatio?CKEDITOR.env.ie?'■':'▣':CKEDITOR.env.ie?'□':'▢');}return B.lockRatio;},q=function(B){var C=B.originalElement;if(C.getCustomData('isReady')=='true'){var D=B.getContentElement('info','txtWidth'),E=B.getContentElement('info','txtHeight');D&&D.setValue(C.$.width);E&&E.setValue(C.$.height);}l(B);},r=function(B,C){if(B!=d)return;function D(I,J){var K=I.match(h);if(K){if(K[2]=='%'){K[1]+='%';p(E,false);}return K[1];}return J;};var E=this.getDialog(),F='',G=this.id=='txtWidth'?'width':'height',H=C.getAttribute(G);if(H)F=D(H,F);F=D(C.getStyle(G),F);this.setValue(F);},s,t=function(){var B=this.originalElement;B.setCustomData('isReady','true');B.removeListener('load',t);B.removeListener('error',u);B.removeListener('abort',u);
7
+ CKEDITOR.document.getById(y).setStyle('display','none');if(!this.dontResetSize)q(this);if(this.firstLoad)CKEDITOR.tools.setTimeout(function(){p(this,'check');},0,this);this.firstLoad=false;this.dontResetSize=false;},u=function(){var D=this;var B=D.originalElement;B.removeListener('load',t);B.removeListener('error',u);B.removeListener('abort',u);var C=CKEDITOR.getUrl(b.skinPath+'images/noimage.png');if(D.preview)D.preview.setAttribute('src',C);CKEDITOR.document.getById(y).setStyle('display','none');p(D,false);},v=function(B){return CKEDITOR.tools.getNextId()+'_'+B;},w=v('btnLockSizes'),x=v('btnResetSize'),y=v('ImagePreviewLoader'),z=v('previewLink'),A=v('previewImage');return{title:b.lang.image[c=='image'?'title':'titleButton'],minWidth:420,minHeight:360,onShow:function(){var H=this;H.imageElement=false;H.linkElement=false;H.imageEditMode=false;H.linkEditMode=false;H.lockRatio=true;H.userlockRatio=0;H.dontResetSize=false;H.firstLoad=true;H.addLink=false;var B=H.getParentEditor(),C=B.getSelection(),D=C&&C.getSelectedElement(),E=D&&D.getAscendant('a');CKEDITOR.document.getById(y).setStyle('display','none');s=new CKEDITOR.dom.element('img',B.document);H.preview=CKEDITOR.document.getById(A);H.originalElement=B.document.createElement('img');H.originalElement.setAttribute('alt','');H.originalElement.setCustomData('isReady','false');if(E){H.linkElement=E;H.linkEditMode=true;var F=E.getChildren();if(F.count()==1){var G=F.getItem(0).getName();if(G=='img'||G=='input'){H.imageElement=F.getItem(0);if(H.imageElement.getName()=='img')H.imageEditMode='img';else if(H.imageElement.getName()=='input')H.imageEditMode='input';}}if(c=='image')H.setupContent(e,E);}if(D&&D.getName()=='img'&&!D.data('cke-realelement')||D&&D.getName()=='input'&&D.getAttribute('type')=='image'){H.imageEditMode=D.getName();H.imageElement=D;}if(H.imageEditMode){H.cleanImageElement=H.imageElement;H.imageElement=H.cleanImageElement.clone(true,true);H.setupContent(d,H.imageElement);}else H.imageElement=B.document.createElement('img');p(H,true);if(!CKEDITOR.tools.trim(H.getValueOf('info','txtUrl'))){H.preview.removeAttribute('src');H.preview.setStyle('display','none');}},onOk:function(){var C=this;if(C.imageEditMode){var B=C.imageEditMode;if(c=='image'&&B=='input'&&confirm(b.lang.image.button2Img)){B='img';C.imageElement=b.document.createElement('img');C.imageElement.setAttribute('alt','');b.insertElement(C.imageElement);}else if(c!='image'&&B=='img'&&confirm(b.lang.image.img2Button)){B='input';C.imageElement=b.document.createElement('input');
8
+ C.imageElement.setAttributes({type:'image',alt:''});b.insertElement(C.imageElement);}else{C.imageElement=C.cleanImageElement;delete C.cleanImageElement;}}else{if(c=='image')C.imageElement=b.document.createElement('img');else{C.imageElement=b.document.createElement('input');C.imageElement.setAttribute('type','image');}C.imageElement.setAttribute('alt','');}if(!C.linkEditMode)C.linkElement=b.document.createElement('a');C.commitContent(d,C.imageElement);C.commitContent(e,C.linkElement);if(!C.imageElement.getAttribute('style'))C.imageElement.removeAttribute('style');if(!C.imageEditMode){if(C.addLink){if(!C.linkEditMode){b.insertElement(C.linkElement);C.linkElement.append(C.imageElement,false);}else b.insertElement(C.imageElement);}else b.insertElement(C.imageElement);}else if(!C.linkEditMode&&C.addLink){b.insertElement(C.linkElement);C.imageElement.appendTo(C.linkElement);}else if(C.linkEditMode&&!C.addLink){b.getSelection().selectElement(C.linkElement);b.insertElement(C.imageElement);}},onLoad:function(){var C=this;if(c!='image')C.hidePage('Link');var B=C._.element.getDocument();if(C.getContentElement('info','ratioLock')){C.addFocusable(B.getById(x),5);C.addFocusable(B.getById(w),5);}C.commitContent=m;},onHide:function(){var B=this;if(B.preview)B.commitContent(g,B.preview);if(B.originalElement){B.originalElement.removeListener('load',t);B.originalElement.removeListener('error',u);B.originalElement.removeListener('abort',u);B.originalElement.remove();B.originalElement=false;}delete B.imageElement;},contents:[{id:'info',label:b.lang.image.infoTab,accessKey:'I',elements:[{type:'vbox',padding:0,children:[{type:'hbox',widths:['280px','110px'],align:'right',children:[{id:'txtUrl',type:'text',label:b.lang.common.url,required:true,onChange:function(){var B=this.getDialog(),C=this.getValue();if(C.length>0){B=this.getDialog();var D=B.originalElement;B.preview.removeStyle('display');D.setCustomData('isReady','false');var E=CKEDITOR.document.getById(y);if(E)E.setStyle('display','');D.on('load',t,B);D.on('error',u,B);D.on('abort',u,B);D.setAttribute('src',C);s.setAttribute('src',C);B.preview.setAttribute('src',s.$.src);l(B);}else if(B.preview){B.preview.removeAttribute('src');B.preview.setStyle('display','none');}},setup:function(B,C){if(B==d){var D=C.data('cke-saved-src')||C.getAttribute('src'),E=this;this.getDialog().dontResetSize=true;E.setValue(D);E.setInitValue();}},commit:function(B,C){var D=this;if(B==d&&(D.getValue()||D.isChanged())){C.data('cke-saved-src',D.getValue());
9
+ C.setAttribute('src',D.getValue());}else if(B==g){C.setAttribute('src','');C.removeAttribute('src');}},validate:CKEDITOR.dialog.validate.notEmpty(b.lang.image.urlMissing)},{type:'button',id:'browse',style:'display:inline-block;margin-top:10px;',align:'center',label:b.lang.common.browseServer,hidden:true,filebrowser:'info:txtUrl'}]}]},{id:'txtAlt',type:'text',label:b.lang.image.alt,accessKey:'T','default':'',onChange:function(){l(this.getDialog());},setup:function(B,C){if(B==d)this.setValue(C.getAttribute('alt'));},commit:function(B,C){var D=this;if(B==d){if(D.getValue()||D.isChanged())C.setAttribute('alt',D.getValue());}else if(B==f)C.setAttribute('alt',D.getValue());else if(B==g)C.removeAttribute('alt');}},{type:'hbox',children:[{id:'basic',type:'vbox',children:[{type:'hbox',widths:['50%','50%'],children:[{type:'vbox',padding:1,children:[{type:'text',width:'40px',id:'txtWidth',label:b.lang.common.width,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var B=this.getValue().match(i),C=!!(B&&parseInt(B[1],10)!==0);if(!C)alert(b.lang.common.invalidWidth);return C;},setup:r,commit:function(B,C,D){var E=this.getValue();if(B==d){if(E)C.setStyle('width',CKEDITOR.tools.cssLength(E));else C.removeStyle('width');!D&&C.removeAttribute('width');}else if(B==f){var F=E.match(h);if(!F){var G=this.getDialog().originalElement;if(G.getCustomData('isReady')=='true')C.setStyle('width',G.$.width+'px');}else C.setStyle('width',CKEDITOR.tools.cssLength(E));}else if(B==g){C.removeAttribute('width');C.removeStyle('width');}}},{type:'text',id:'txtHeight',width:'40px',label:b.lang.common.height,onKeyUp:k,onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:function(){var B=this.getValue().match(i),C=!!(B&&parseInt(B[1],10)!==0);if(!C)alert(b.lang.common.invalidHeight);return C;},setup:r,commit:function(B,C,D){var E=this.getValue();if(B==d){if(E)C.setStyle('height',CKEDITOR.tools.cssLength(E));else C.removeStyle('height');!D&&C.removeAttribute('height');}else if(B==f){var F=E.match(h);if(!F){var G=this.getDialog().originalElement;if(G.getCustomData('isReady')=='true')C.setStyle('height',G.$.height+'px');}else C.setStyle('height',CKEDITOR.tools.cssLength(E));}else if(B==g){C.removeAttribute('height');C.removeStyle('height');}}}]},{id:'ratioLock',type:'html',style:'margin-top:30px;width:40px;height:40px;',onLoad:function(){var B=CKEDITOR.document.getById(x),C=CKEDITOR.document.getById(w);if(B){B.on('click',function(D){q(this);D.data&&D.data.preventDefault();
10
+ },this.getDialog());B.on('mouseover',function(){this.addClass('cke_btn_over');},B);B.on('mouseout',function(){this.removeClass('cke_btn_over');},B);}if(C){C.on('click',function(D){var I=this;var E=p(I),F=I.originalElement,G=I.getValueOf('info','txtWidth');if(F.getCustomData('isReady')=='true'&&G){var H=F.$.height/F.$.width*G;if(!isNaN(H)){I.setValueOf('info','txtHeight',Math.round(H));l(I);}}D.data&&D.data.preventDefault();},this.getDialog());C.on('mouseover',function(){this.addClass('cke_btn_over');},C);C.on('mouseout',function(){this.removeClass('cke_btn_over');},C);}},html:'<div><a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.lockRatio+'" class="cke_btn_locked" id="'+w+'" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+b.lang.image.lockRatio+'</span></a>'+'<a href="javascript:void(0)" tabindex="-1" title="'+b.lang.image.resetSize+'" class="cke_btn_reset" id="'+x+'" role="button"><span class="cke_label">'+b.lang.image.resetSize+'</span></a>'+'</div>'}]},{type:'vbox',padding:1,children:[{type:'text',id:'txtBorder',width:'60px',label:b.lang.image.border,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateBorder),setup:function(B,C){if(B==d){var D,E=C.getStyle('border-width');E=E&&E.match(/^(\d+px)(?: \1 \1 \1)?$/);D=E&&parseInt(E[1],10);isNaN(parseInt(D,10))&&(D=C.getAttribute('border'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);if(B==d||B==f){if(!isNaN(E)){C.setStyle('border-width',CKEDITOR.tools.cssLength(E));C.setStyle('border-style','solid');}else if(!E&&this.isChanged()){C.removeStyle('border-width');C.removeStyle('border-style');C.removeStyle('border-color');}if(!D&&B==d)C.removeAttribute('border');}else if(B==g){C.removeAttribute('border');C.removeStyle('border-width');C.removeStyle('border-style');C.removeStyle('border-color');}}},{type:'text',id:'txtHSpace',width:'60px',label:b.lang.image.hSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateHSpace),setup:function(B,C){if(B==d){var D,E,F,G=C.getStyle('margin-left'),H=C.getStyle('margin-right');G=G&&G.match(j);H=H&&H.match(j);E=parseInt(G,10);F=parseInt(H,10);D=E==F&&E;isNaN(parseInt(D,10))&&(D=C.getAttribute('hspace'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);
11
+ if(B==d||B==f){if(!isNaN(E)){C.setStyle('margin-left',CKEDITOR.tools.cssLength(E));C.setStyle('margin-right',CKEDITOR.tools.cssLength(E));}else if(!E&&this.isChanged()){C.removeStyle('margin-left');C.removeStyle('margin-right');}if(!D&&B==d)C.removeAttribute('hspace');}else if(B==g){C.removeAttribute('hspace');C.removeStyle('margin-left');C.removeStyle('margin-right');}}},{type:'text',id:'txtVSpace',width:'60px',label:b.lang.image.vSpace,'default':'',onKeyUp:function(){l(this.getDialog());},onChange:function(){o.call(this,'advanced:txtdlgGenStyle');},validate:CKEDITOR.dialog.validate.integer(b.lang.image.validateVSpace),setup:function(B,C){if(B==d){var D,E,F,G=C.getStyle('margin-top'),H=C.getStyle('margin-bottom');G=G&&G.match(j);H=H&&H.match(j);E=parseInt(G,10);F=parseInt(H,10);D=E==F&&E;isNaN(parseInt(D,10))&&(D=C.getAttribute('vspace'));this.setValue(D);}},commit:function(B,C,D){var E=parseInt(this.getValue(),10);if(B==d||B==f){if(!isNaN(E)){C.setStyle('margin-top',CKEDITOR.tools.cssLength(E));C.setStyle('margin-bottom',CKEDITOR.tools.cssLength(E));}else if(!E&&this.isChanged()){C.removeStyle('margin-top');C.removeStyle('margin-bottom');}if(!D&&B==d)C.removeAttribute('vspace');}else if(B==g){C.removeAttribute('vspace');C.removeStyle('margin-top');C.removeStyle('margin-bottom');}}},{id:'cmbAlign',type:'select',widths:['35%','65%'],style:'width:90px',label:b.lang.common.align,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.alignLeft,'left'],[b.lang.common.alignRight,'right']],onChange:function(){l(this.getDialog());o.call(this,'advanced:txtdlgGenStyle');},setup:function(B,C){if(B==d){var D=C.getStyle('float');switch(D){case 'inherit':case 'none':D='';}!D&&(D=(C.getAttribute('align')||'').toLowerCase());this.setValue(D);}},commit:function(B,C,D){var E=this.getValue();if(B==d||B==f){if(E)C.setStyle('float',E);else C.removeStyle('float');if(!D&&B==d){E=(C.getAttribute('align')||'').toLowerCase();switch(E){case 'left':case 'right':C.removeAttribute('align');}}}else if(B==g)C.removeStyle('float');}}]}]},{type:'vbox',height:'250px',children:[{type:'html',id:'htmlPreview',style:'width:95%;',html:'<div>'+CKEDITOR.tools.htmlEncode(b.lang.common.preview)+'<br>'+'<div id="'+y+'" class="ImagePreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div>'+'<div class="ImagePreviewBox"><table><tr><td>'+'<a href="javascript:void(0)" target="_blank" onclick="return false;" id="'+z+'">'+'<img id="'+A+'" alt="" /></a>'+(b.config.image_previewText||'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.')+'</td></tr></table></div></div>'}]}]}]},{id:'Link',label:b.lang.link.title,padding:0,elements:[{id:'txtUrl',type:'text',label:b.lang.common.url,style:'width: 100%','default':'',setup:function(B,C){if(B==e){var D=C.data('cke-saved-href');
12
+ if(!D)D=C.getAttribute('href');this.setValue(D);}},commit:function(B,C){var E=this;if(B==e)if(E.getValue()||E.isChanged()){var D=decodeURI(E.getValue());C.data('cke-saved-href',D);C.setAttribute('href',D);if(E.getValue()||!b.config.image_removeLinkByEmptyURL)E.getDialog().addLink=true;}}},{type:'button',id:'browse',filebrowser:{action:'Browse',target:'Link:txtUrl',url:b.config.filebrowserImageBrowseLinkUrl},style:'float:right',hidden:true,label:b.lang.common.browseServer},{id:'cmbTarget',type:'select',label:b.lang.common.target,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.targetNew,'_blank'],[b.lang.common.targetTop,'_top'],[b.lang.common.targetSelf,'_self'],[b.lang.common.targetParent,'_parent']],setup:function(B,C){if(B==e)this.setValue(C.getAttribute('target')||'');},commit:function(B,C){if(B==e)if(this.getValue()||this.isChanged())C.setAttribute('target',this.getValue());}}]},{id:'Upload',hidden:true,filebrowser:'uploadButton',label:b.lang.image.upload,elements:[{type:'file',id:'upload',label:b.lang.image.btnUpload,style:'height:40px',size:38},{type:'fileButton',id:'uploadButton',filebrowser:'info:txtUrl',label:b.lang.image.btnUpload,'for':['Upload','upload']}]},{id:'advanced',label:b.lang.common.advancedTab,elements:[{type:'hbox',widths:['50%','25%','25%'],children:[{type:'text',id:'linkId',label:b.lang.common.id,setup:function(B,C){if(B==d)this.setValue(C.getAttribute('id'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('id',this.getValue());}},{id:'cmbLangDir',type:'select',style:'width : 100px;',label:b.lang.common.langDir,'default':'',items:[[b.lang.common.notSet,''],[b.lang.common.langDirLtr,'ltr'],[b.lang.common.langDirRtl,'rtl']],setup:function(B,C){if(B==d)this.setValue(C.getAttribute('dir'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('dir',this.getValue());}},{type:'text',id:'txtLangCode',label:b.lang.common.langCode,'default':'',setup:function(B,C){if(B==d)this.setValue(C.getAttribute('lang'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('lang',this.getValue());}}]},{type:'text',id:'txtGenLongDescr',label:b.lang.common.longDescr,setup:function(B,C){if(B==d)this.setValue(C.getAttribute('longDesc'));},commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('longDesc',this.getValue());}},{type:'hbox',widths:['50%','50%'],children:[{type:'text',id:'txtGenClass',label:b.lang.common.cssClass,'default':'',setup:function(B,C){if(B==d)this.setValue(C.getAttribute('class'));
13
+ },commit:function(B,C){if(B==d)if(this.getValue()||this.isChanged())C.setAttribute('class',this.getValue());}},{type:'text',id:'txtGenTitle',label:b.lang.common.advisoryTitle,'default':'',onChange:function(){l(this.getDialog());},setup:function(B,C){if(B==d)this.setValue(C.getAttribute('title'));},commit:function(B,C){var D=this;if(B==d){if(D.getValue()||D.isChanged())C.setAttribute('title',D.getValue());}else if(B==f)C.setAttribute('title',D.getValue());else if(B==g)C.removeAttribute('title');}}]},{type:'text',id:'txtdlgGenStyle',label:b.lang.common.cssStyle,validate:CKEDITOR.dialog.validate.inlineStyle(b.lang.common.invalidInlineStyle),'default':'',setup:function(B,C){if(B==d){var D=C.getAttribute('style');if(!D&&C.$.style.cssText)D=C.$.style.cssText;this.setValue(D);var E=C.$.style.height,F=C.$.style.width,G=(E?E:'').match(h),H=(F?F:'').match(h);this.attributesInStyle={height:!!G,width:!!H};}},onChange:function(){o.call(this,['info:cmbFloat','info:cmbAlign','info:txtVSpace','info:txtHSpace','info:txtBorder','info:txtWidth','info:txtHeight']);l(this);},commit:function(B,C){if(B==d&&(this.getValue()||this.isChanged()))C.setAttribute('style',this.getValue());}}]}]};};CKEDITOR.dialog.add('image',function(b){return a(b,'image');});CKEDITOR.dialog.add('imagebutton',function(b){return a(b,'imagebutton');});})();
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,12 +1,12 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
6
6
  CKEDITOR.dialog.add('link',function(a){var b=CKEDITOR.plugins.link,c=function(){var F=this.getDialog(),G=F.getContentElement('target','popupFeatures'),H=F.getContentElement('target','linkTargetName'),I=this.getValue();if(!G||!H)return;G=G.getElement();G.hide();H.setValue('');switch(I){case 'frame':H.setLabel(a.lang.link.targetFrameName);H.getElement().show();break;case 'popup':G.show();H.setLabel(a.lang.link.targetPopupName);H.getElement().show();break;default:H.setValue(I);H.getElement().hide();break;}},d=function(){var F=this.getDialog(),G=['urlOptions','anchorOptions','emailOptions'],H=this.getValue(),I=F.definition.getContents('upload'),J=I&&I.hidden;if(H=='url'){if(a.config.linkShowTargetTab)F.showPage('target');if(!J)F.showPage('upload');}else{F.hidePage('target');if(!J)F.hidePage('upload');}for(var K=0;K<G.length;K++){var L=F.getContentElement('info',G[K]);if(!L)continue;L=L.getElement().getParent().getParent();if(G[K]==H+'Options')L.show();else L.hide();}F.layout();},e=/^javascript:/,f=/^mailto:([^?]+)(?:\?(.+))?$/,g=/subject=([^;?:@&=$,\/]*)/,h=/body=([^;?:@&=$,\/]*)/,i=/^#(.*)$/,j=/^((?:http|https|ftp|news):\/\/)?(.*)$/,k=/^(_(?:self|top|parent|blank))$/,l=/^javascript:void\(location\.href='mailto:'\+String\.fromCharCode\(([^)]+)\)(?:\+'(.*)')?\)$/,m=/^javascript:([^(]+)\(([^)]+)\)$/,n=/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/,o=/(?:^|,)([^=]+)=(\d+|yes|no)/gi,p=function(F,G){var H=G&&(G.data('cke-saved-href')||G.getAttribute('href'))||'',I,J,K,L,M={};if(I=H.match(e))if(y=='encode')H=H.replace(l,function(ae,af,ag){return 'mailto:'+String.fromCharCode.apply(String,af.split(','))+(ag&&w(ag));});else if(y)H.replace(m,function(ae,af,ag){if(af==z.name){M.type='email';var ah=M.email={},ai=/[^,\s]+/g,aj=/(^')|('$)/g,ak=ag.match(ai),al=ak.length,am,an;for(var ao=0;ao<al;ao++){an=decodeURIComponent(w(ak[ao].replace(aj,'')));am=z.params[ao].toLowerCase();ah[am]=an;}ah.address=[ah.name,ah.domain].join('@');}});if(!M.type)if(K=H.match(i)){M.type='anchor';M.anchor={};M.anchor.name=M.anchor.id=K[1];}else if(J=H.match(f)){var N=H.match(g),O=H.match(h);M.type='email';var P=M.email={};P.address=J[1];N&&(P.subject=decodeURIComponent(N[1]));O&&(P.body=decodeURIComponent(O[1]));}else if(H&&(L=H.match(j))){M.type='url';M.url={};M.url.protocol=L[1];M.url.url=L[2];}else M.type='url';if(G){var Q=G.getAttribute('target');M.target={};M.adv={};if(!Q){var R=G.data('cke-pa-onclick')||G.getAttribute('onclick'),S=R&&R.match(n);
7
- if(S){M.target.type='popup';M.target.name=S[1];var T;while(T=o.exec(S[2])){if((T[2]=='yes'||T[2]=='1')&&!(T[1] in {height:1,width:1,top:1,left:1}))M.target[T[1]]=true;else if(isFinite(T[2]))M.target[T[1]]=T[2];}}}else{var U=Q.match(k);if(U)M.target.type=M.target.name=Q;else{M.target.type='frame';M.target.name=Q;}}var V=this,W=function(ae,af){var ag=G.getAttribute(af);if(ag!==null)M.adv[ae]=ag||'';};W('advId','id');W('advLangDir','dir');W('advAccessKey','accessKey');M.adv.advName=G.data('cke-saved-name')||G.getAttribute('name')||'';W('advLangCode','lang');W('advTabIndex','tabindex');W('advTitle','title');W('advContentType','type');CKEDITOR.plugins.link.synAnchorSelector?M.adv.advCSSClasses=C(G):W('advCSSClasses','class');W('advCharset','charset');W('advStyles','style');W('advRel','rel');}var X=M.anchors=[],Y;if(CKEDITOR.plugins.link.emptyAnchorFix){var Z=F.document.getElementsByTag('a');for(i=0,count=Z.count();i<count;i++){Y=Z.getItem(i);if(Y.data('cke-saved-name')||Y.hasAttribute('name'))X.push({name:Y.data('cke-saved-name')||Y.getAttribute('name'),id:Y.getAttribute('id')});}}else{var aa=new CKEDITOR.dom.nodeList(F.document.$.anchors);for(var ab=0,ac=aa.count();ab<ac;ab++){Y=aa.getItem(ab);X[ab]={name:Y.getAttribute('name'),id:Y.getAttribute('id')};}}if(CKEDITOR.plugins.link.fakeAnchor){var ad=F.document.getElementsByTag('img');for(ab=0,ac=ad.count();ab<ac;ab++){if(Y=CKEDITOR.plugins.link.tryRestoreFakeAnchor(F,ad.getItem(ab)))X.push({name:Y.getAttribute('name'),id:Y.getAttribute('id')});}}this._.selectedElement=G;return M;},q=function(F,G){if(G[F])this.setValue(G[F][this.id]||'');},r=function(F){return q.call(this,'target',F);},s=function(F){return q.call(this,'adv',F);},t=function(F,G){if(!G[F])G[F]={};G[F][this.id]=this.getValue()||'';},u=function(F){return t.call(this,'target',F);},v=function(F){return t.call(this,'adv',F);};function w(F){return F.replace(/\\'/g,"'");};function x(F){return F.replace(/'/g,'\\$&');};var y=a.config.emailProtection||'';if(y&&y!='encode'){var z={};y.replace(/^([^(]+)\(([^)]+)\)$/,function(F,G,H){z.name=G;z.params=[];H.replace(/[^,\s]+/g,function(I){z.params.push(I);});});}function A(F){var G,H=z.name,I=z.params,J,K;G=[H,'('];for(var L=0;L<I.length;L++){J=I[L].toLowerCase();K=F[J];L>0&&G.push(',');G.push("'",K?x(encodeURIComponent(F[J])):'',"'");}G.push(')');return G.join('');};function B(F){var G,H=F.length,I=[];for(var J=0;J<H;J++){G=F.charCodeAt(J);I.push(G);}return 'String.fromCharCode('+I.join(',')+')';};function C(F){var G=F.getAttribute('class');
7
+ if(S){M.target.type='popup';M.target.name=S[1];var T;while(T=o.exec(S[2])){if((T[2]=='yes'||T[2]=='1')&&!(T[1] in {height:1,width:1,top:1,left:1}))M.target[T[1]]=true;else if(isFinite(T[2]))M.target[T[1]]=T[2];}}}else{var U=Q.match(k);if(U)M.target.type=M.target.name=Q;else{M.target.type='frame';M.target.name=Q;}}var V=this,W=function(ae,af){var ag=G.getAttribute(af);if(ag!==null)M.adv[ae]=ag||'';};W('advId','id');W('advLangDir','dir');W('advAccessKey','accessKey');M.adv.advName=G.data('cke-saved-name')||G.getAttribute('name')||'';W('advLangCode','lang');W('advTabIndex','tabindex');W('advTitle','title');W('advContentType','type');CKEDITOR.plugins.link.synAnchorSelector?M.adv.advCSSClasses=C(G):W('advCSSClasses','class');W('advCharset','charset');W('advStyles','style');W('advRel','rel');}var X=M.anchors=[],Y,Z,aa;if(CKEDITOR.plugins.link.emptyAnchorFix){var ab=F.document.getElementsByTag('a');for(Y=0,Z=ab.count();Y<Z;Y++){aa=ab.getItem(Y);if(aa.data('cke-saved-name')||aa.hasAttribute('name'))X.push({name:aa.data('cke-saved-name')||aa.getAttribute('name'),id:aa.getAttribute('id')});}}else{var ac=new CKEDITOR.dom.nodeList(F.document.$.anchors);for(Y=0,Z=ac.count();Y<Z;Y++){aa=ac.getItem(Y);X[Y]={name:aa.getAttribute('name'),id:aa.getAttribute('id')};}}if(CKEDITOR.plugins.link.fakeAnchor){var ad=F.document.getElementsByTag('img');for(Y=0,Z=ad.count();Y<Z;Y++){if(aa=CKEDITOR.plugins.link.tryRestoreFakeAnchor(F,ad.getItem(Y)))X.push({name:aa.getAttribute('name'),id:aa.getAttribute('id')});}}this._.selectedElement=G;return M;},q=function(F,G){if(G[F])this.setValue(G[F][this.id]||'');},r=function(F){return q.call(this,'target',F);},s=function(F){return q.call(this,'adv',F);},t=function(F,G){if(!G[F])G[F]={};G[F][this.id]=this.getValue()||'';},u=function(F){return t.call(this,'target',F);},v=function(F){return t.call(this,'adv',F);};function w(F){return F.replace(/\\'/g,"'");};function x(F){return F.replace(/'/g,'\\$&');};var y=a.config.emailProtection||'';if(y&&y!='encode'){var z={};y.replace(/^([^(]+)\(([^)]+)\)$/,function(F,G,H){z.name=G;z.params=[];H.replace(/[^,\s]+/g,function(I){z.params.push(I);});});}function A(F){var G,H=z.name,I=z.params,J,K;G=[H,'('];for(var L=0;L<I.length;L++){J=I[L].toLowerCase();K=F[J];L>0&&G.push(',');G.push("'",K?x(encodeURIComponent(F[J])):'',"'");}G.push(')');return G.join('');};function B(F){var G,H=F.length,I=[];for(var J=0;J<H;J++){G=F.charCodeAt(J);I.push(G);}return 'String.fromCharCode('+I.join(',')+')';};function C(F){var G=F.getAttribute('class');
8
8
  return G?G.replace(/\s*(?:cke_anchor_empty|cke_anchor)(?:\s*$)?/g,''):'';};var D=a.lang.common,E=a.lang.link;return{title:E.title,minWidth:350,minHeight:230,contents:[{id:'info',label:E.info,title:E.info,elements:[{id:'linkType',type:'select',label:E.type,'default':'url',items:[[E.toUrl,'url'],[E.toAnchor,'anchor'],[E.toEmail,'email']],onChange:d,setup:function(F){if(F.type)this.setValue(F.type);},commit:function(F){F.type=this.getValue();}},{type:'vbox',id:'urlOptions',children:[{type:'hbox',widths:['25%','75%'],children:[{id:'protocol',type:'select',label:D.protocol,'default':'http://',items:[['http://‎','http://'],['https://‎','https://'],['ftp://‎','ftp://'],['news://‎','news://'],[E.other,'']],setup:function(F){if(F.url)this.setValue(F.url.protocol||'');},commit:function(F){if(!F.url)F.url={};F.url.protocol=this.getValue();}},{type:'text',id:'url',label:D.url,required:true,onLoad:function(){this.allowOnChange=true;},onKeyUp:function(){var K=this;K.allowOnChange=false;var F=K.getDialog().getContentElement('info','protocol'),G=K.getValue(),H=/^(http|https|ftp|news):\/\/(?=.)/i,I=/^((javascript:)|[#\/\.\?])/i,J=H.exec(G);if(J){K.setValue(G.substr(J[0].length));F.setValue(J[0].toLowerCase());}else if(I.test(G))F.setValue('');K.allowOnChange=true;},onChange:function(){if(this.allowOnChange)this.onKeyUp();},validate:function(){var F=this.getDialog();if(F.getContentElement('info','linkType')&&F.getValueOf('info','linkType')!='url')return true;if(this.getDialog().fakeObj)return true;var G=CKEDITOR.dialog.validate.notEmpty(E.noUrl);return G.apply(this);},setup:function(F){this.allowOnChange=false;if(F.url)this.setValue(F.url.url);this.allowOnChange=true;},commit:function(F){this.onChange();if(!F.url)F.url={};F.url.url=this.getValue();this.allowOnChange=false;}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().show();}},{type:'button',id:'browse',hidden:'true',filebrowser:'info:url',label:D.browseServer}]},{type:'vbox',id:'anchorOptions',width:260,align:'center',padding:0,children:[{type:'fieldset',id:'selectAnchorText',label:E.selectAnchor,setup:function(F){if(F.anchors.length>0)this.getElement().show();else this.getElement().hide();},children:[{type:'hbox',id:'selectAnchor',children:[{type:'select',id:'anchorName','default':'',label:E.anchorName,style:'width: 100%;',items:[['']],setup:function(F){var I=this;I.clear();I.add('');for(var G=0;G<F.anchors.length;G++){if(F.anchors[G].name)I.add(F.anchors[G].name);}if(F.anchor)I.setValue(F.anchor.name);
9
- var H=I.getDialog().getContentElement('info','linkType');if(H&&H.getValue()=='email')I.focus();},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.name=this.getValue();}},{type:'select',id:'anchorId','default':'',label:E.anchorId,style:'width: 100%;',items:[['']],setup:function(F){var H=this;H.clear();H.add('');for(var G=0;G<F.anchors.length;G++){if(F.anchors[G].id)H.add(F.anchors[G].id);}if(F.anchor)H.setValue(F.anchor.id);},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.id=this.getValue();}}],setup:function(F){if(F.anchors.length>0)this.getElement().show();else this.getElement().hide();}}]},{type:'html',id:'noAnchors',style:'text-align: center;',html:'<div role="label" tabIndex="-1">'+CKEDITOR.tools.htmlEncode(E.noAnchors)+'</div>',focus:true,setup:function(F){if(F.anchors.length<1)this.getElement().show();else this.getElement().hide();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}},{type:'vbox',id:'emailOptions',padding:1,children:[{type:'text',id:'emailAddress',label:E.emailAddress,required:true,validate:function(){var F=this.getDialog();if(!F.getContentElement('info','linkType')||F.getValueOf('info','linkType')!='email')return true;var G=CKEDITOR.dialog.validate.notEmpty(E.noEmail);return G.apply(this);},setup:function(F){if(F.email)this.setValue(F.email.address);var G=this.getDialog().getContentElement('info','linkType');if(G&&G.getValue()=='email')this.select();},commit:function(F){if(!F.email)F.email={};F.email.address=this.getValue();}},{type:'text',id:'emailSubject',label:E.emailSubject,setup:function(F){if(F.email)this.setValue(F.email.subject);},commit:function(F){if(!F.email)F.email={};F.email.subject=this.getValue();}},{type:'textarea',id:'emailBody',label:E.emailBody,rows:3,'default':'',setup:function(F){if(F.email)this.setValue(F.email.body);},commit:function(F){if(!F.email)F.email={};F.email.body=this.getValue();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}}]},{id:'target',label:E.target,title:E.target,elements:[{type:'hbox',widths:['50%','50%'],children:[{type:'select',id:'linkTargetType',label:D.target,'default':'notSet',style:'width : 100%;',items:[[D.notSet,'notSet'],[E.targetFrame,'frame'],[E.targetPopup,'popup'],[D.targetNew,'_blank'],[D.targetTop,'_top'],[D.targetSelf,'_self'],[D.targetParent,'_parent']],onChange:c,setup:function(F){if(F.target)this.setValue(F.target.type||'notSet');c.call(this);},commit:function(F){if(!F.target)F.target={};
9
+ var H=I.getDialog().getContentElement('info','linkType');if(H&&H.getValue()=='email')I.focus();},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.name=this.getValue();}},{type:'select',id:'anchorId','default':'',label:E.anchorId,style:'width: 100%;',items:[['']],setup:function(F){var H=this;H.clear();H.add('');for(var G=0;G<F.anchors.length;G++){if(F.anchors[G].id)H.add(F.anchors[G].id);}if(F.anchor)H.setValue(F.anchor.id);},commit:function(F){if(!F.anchor)F.anchor={};F.anchor.id=this.getValue();}}],setup:function(F){if(F.anchors.length>0)this.getElement().show();else this.getElement().hide();}}]},{type:'html',id:'noAnchors',style:'text-align: center;',html:'<div role="note" tabIndex="-1">'+CKEDITOR.tools.htmlEncode(E.noAnchors)+'</div>',focus:true,setup:function(F){if(F.anchors.length<1)this.getElement().show();else this.getElement().hide();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}},{type:'vbox',id:'emailOptions',padding:1,children:[{type:'text',id:'emailAddress',label:E.emailAddress,required:true,validate:function(){var F=this.getDialog();if(!F.getContentElement('info','linkType')||F.getValueOf('info','linkType')!='email')return true;var G=CKEDITOR.dialog.validate.notEmpty(E.noEmail);return G.apply(this);},setup:function(F){if(F.email)this.setValue(F.email.address);var G=this.getDialog().getContentElement('info','linkType');if(G&&G.getValue()=='email')this.select();},commit:function(F){if(!F.email)F.email={};F.email.address=this.getValue();}},{type:'text',id:'emailSubject',label:E.emailSubject,setup:function(F){if(F.email)this.setValue(F.email.subject);},commit:function(F){if(!F.email)F.email={};F.email.subject=this.getValue();}},{type:'textarea',id:'emailBody',label:E.emailBody,rows:3,'default':'',setup:function(F){if(F.email)this.setValue(F.email.body);},commit:function(F){if(!F.email)F.email={};F.email.body=this.getValue();}}],setup:function(F){if(!this.getDialog().getContentElement('info','linkType'))this.getElement().hide();}}]},{id:'target',label:E.target,title:E.target,elements:[{type:'hbox',widths:['50%','50%'],children:[{type:'select',id:'linkTargetType',label:D.target,'default':'notSet',style:'width : 100%;',items:[[D.notSet,'notSet'],[E.targetFrame,'frame'],[E.targetPopup,'popup'],[D.targetNew,'_blank'],[D.targetTop,'_top'],[D.targetSelf,'_self'],[D.targetParent,'_parent']],onChange:c,setup:function(F){if(F.target)this.setValue(F.target.type||'notSet');c.call(this);},commit:function(F){if(!F.target)F.target={};
10
10
  F.target.type=this.getValue();}},{type:'text',id:'linkTargetName',label:E.targetFrameName,'default':'',setup:function(F){if(F.target)this.setValue(F.target.name);},commit:function(F){if(!F.target)F.target={};F.target.name=this.getValue().replace(/\W/gi,'');}}]},{type:'vbox',width:'100%',align:'center',padding:2,id:'popupFeatures',children:[{type:'fieldset',label:E.popupFeatures,children:[{type:'hbox',children:[{type:'checkbox',id:'resizable',label:E.popupResizable,setup:r,commit:u},{type:'checkbox',id:'status',label:E.popupStatusBar,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'location',label:E.popupLocationBar,setup:r,commit:u},{type:'checkbox',id:'toolbar',label:E.popupToolbar,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'menubar',label:E.popupMenuBar,setup:r,commit:u},{type:'checkbox',id:'fullscreen',label:E.popupFullScreen,setup:r,commit:u}]},{type:'hbox',children:[{type:'checkbox',id:'scrollbars',label:E.popupScrollBars,setup:r,commit:u},{type:'checkbox',id:'dependent',label:E.popupDependent,setup:r,commit:u}]},{type:'hbox',children:[{type:'text',widths:['50%','50%'],labelLayout:'horizontal',label:D.width,id:'width',setup:r,commit:u},{type:'text',labelLayout:'horizontal',widths:['50%','50%'],label:E.popupLeft,id:'left',setup:r,commit:u}]},{type:'hbox',children:[{type:'text',labelLayout:'horizontal',widths:['50%','50%'],label:D.height,id:'height',setup:r,commit:u},{type:'text',labelLayout:'horizontal',label:E.popupTop,widths:['50%','50%'],id:'top',setup:r,commit:u}]}]}]}]},{id:'upload',label:E.upload,title:E.upload,hidden:true,filebrowser:'uploadButton',elements:[{type:'file',id:'upload',label:D.upload,style:'height:40px',size:29},{type:'fileButton',id:'uploadButton',label:D.uploadSubmit,filebrowser:'info:url','for':['upload','upload']}]},{id:'advanced',label:E.advanced,title:E.advanced,elements:[{type:'vbox',padding:1,children:[{type:'hbox',widths:['45%','35%','20%'],children:[{type:'text',id:'advId',label:E.id,setup:s,commit:v},{type:'select',id:'advLangDir',label:E.langDir,'default':'',style:'width:110px',items:[[D.notSet,''],[E.langDirLTR,'ltr'],[E.langDirRTL,'rtl']],setup:s,commit:v},{type:'text',id:'advAccessKey',width:'80px',label:E.acccessKey,maxLength:1,setup:s,commit:v}]},{type:'hbox',widths:['45%','35%','20%'],children:[{type:'text',label:E.name,id:'advName',setup:s,commit:v},{type:'text',label:E.langCode,id:'advLangCode',width:'110px','default':'',setup:s,commit:v},{type:'text',label:E.tabIndex,id:'advTabIndex',width:'80px',maxLength:5,setup:s,commit:v}]}]},{type:'vbox',padding:1,children:[{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.advisoryTitle,'default':'',id:'advTitle',setup:s,commit:v},{type:'text',label:E.advisoryContentType,'default':'',id:'advContentType',setup:s,commit:v}]},{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.cssClasses,'default':'',id:'advCSSClasses',setup:s,commit:v},{type:'text',label:E.charset,'default':'',id:'advCharset',setup:s,commit:v}]},{type:'hbox',widths:['45%','55%'],children:[{type:'text',label:E.rel,'default':'',id:'advRel',setup:s,commit:v},{type:'text',label:E.styles,'default':'',id:'advStyles',validate:CKEDITOR.dialog.validate.inlineStyle(a.lang.common.invalidInlineStyle),setup:s,commit:v}]}]}]}],onShow:function(){var F=this.getParentEditor(),G=F.getSelection(),H=null;
11
- if((H=b.getSelectedLink(F))&&H.hasAttribute('href'))G.selectElement(H);else H=null;this.setupContent(p.apply(this,[F,H]));},onOk:function(){var F={},G=[],H={},I=this,J=this.getParentEditor();this.commitContent(H);switch(H.type||'url'){case 'url':var K=H.url&&H.url.protocol!=undefined?H.url.protocol:'http://',L=H.url&&CKEDITOR.tools.trim(H.url.url)||'';F['data-cke-saved-href']=L.indexOf('/')===0?L:K+L;break;case 'anchor':var M=H.anchor&&H.anchor.name,N=H.anchor&&H.anchor.id;F['data-cke-saved-href']='#'+(M||N||'');break;case 'email':var O,P=H.email,Q=P.address;switch(y){case '':case 'encode':var R=encodeURIComponent(P.subject||''),S=encodeURIComponent(P.body||''),T=[];R&&T.push('subject='+R);S&&T.push('body='+S);T=T.length?'?'+T.join('&'):'';if(y=='encode'){O=["javascript:void(location.href='mailto:'+",B(Q)];T&&O.push("+'",x(T),"'");O.push(')');}else O=['mailto:',Q,T];break;default:var U=Q.split('@',2);P.name=U[0];P.domain=U[1];O=['javascript:',A(P)];}F['data-cke-saved-href']=O.join('');break;}if(H.target)if(H.target.type=='popup'){var V=["window.open(this.href, '",H.target.name||'',"', '"],W=['resizable','status','location','toolbar','menubar','fullscreen','scrollbars','dependent'],X=W.length,Y=function(ai){if(H.target[ai])W.push(ai+'='+H.target[ai]);};for(var Z=0;Z<X;Z++)W[Z]=W[Z]+(H.target[W[Z]]?'=yes':'=no');Y('width');Y('left');Y('height');Y('top');V.push(W.join(','),"'); return false;");F['data-cke-pa-onclick']=V.join('');G.push('target');}else{if(H.target.type!='notSet'&&H.target.name)F.target=H.target.name;else G.push('target');G.push('data-cke-pa-onclick','onclick');}if(H.adv){var aa=function(ai,aj){var ak=H.adv[ai];if(ak)F[aj]=ak;else G.push(aj);};aa('advId','id');aa('advLangDir','dir');aa('advAccessKey','accessKey');if(H.adv.advName)F.name=F['data-cke-saved-name']=H.adv.advName;else G=G.concat(['data-cke-saved-name','name']);aa('advLangCode','lang');aa('advTabIndex','tabindex');aa('advTitle','title');aa('advContentType','type');aa('advCSSClasses','class');aa('advCharset','charset');aa('advStyles','style');aa('advRel','rel');}F.href=F['data-cke-saved-href'];if(!this._.selectedElement){var ab=J.getSelection(),ac=ab.getRanges(true);if(ac.length==1&&ac[0].collapsed){var ad=new CKEDITOR.dom.text(H.type=='email'?H.email.address:F['data-cke-saved-href'],J.document);ac[0].insertNode(ad);ac[0].selectNodeContents(ad);ab.selectRanges(ac);}var ae=new CKEDITOR.style({element:'a',attributes:F});ae.type=CKEDITOR.STYLE_INLINE;ae.apply(J.document);}else{var af=this._.selectedElement,ag=af.data('cke-saved-href'),ah=af.getHtml();
12
- af.setAttributes(F);af.removeAttributes(G);if(H.adv&&H.adv.advName&&CKEDITOR.plugins.link.synAnchorSelector)af.addClass(af.getChildCount()?'cke_anchor':'cke_anchor_empty');if(ag==ah||H.type=='email'&&ah.indexOf('@')!=-1)af.setHtml(H.type=='email'?H.email.address:F['data-cke-saved-href']);delete this._.selectedElement;}},onLoad:function(){if(!a.config.linkShowAdvancedTab)this.hidePage('advanced');if(!a.config.linkShowTargetTab)this.hidePage('target');},onFocus:function(){var F=this.getContentElement('info','linkType'),G;if(F&&F.getValue()=='url'){G=this.getContentElement('info','url');G.select();}}};});
11
+ if((H=b.getSelectedLink(F))&&H.hasAttribute('href'))G.selectElement(H);else H=null;this.setupContent(p.apply(this,[F,H]));},onOk:function(){var F={},G=[],H={},I=this,J=this.getParentEditor();this.commitContent(H);switch(H.type||'url'){case 'url':var K=H.url&&H.url.protocol!=undefined?H.url.protocol:'http://',L=H.url&&CKEDITOR.tools.trim(H.url.url)||'';F['data-cke-saved-href']=L.indexOf('/')===0?L:K+L;break;case 'anchor':var M=H.anchor&&H.anchor.name,N=H.anchor&&H.anchor.id;F['data-cke-saved-href']='#'+(M||N||'');break;case 'email':var O,P=H.email,Q=P.address;switch(y){case '':case 'encode':var R=encodeURIComponent(P.subject||''),S=encodeURIComponent(P.body||''),T=[];R&&T.push('subject='+R);S&&T.push('body='+S);T=T.length?'?'+T.join('&'):'';if(y=='encode'){O=["javascript:void(location.href='mailto:'+",B(Q)];T&&O.push("+'",x(T),"'");O.push(')');}else O=['mailto:',Q,T];break;default:var U=Q.split('@',2);P.name=U[0];P.domain=U[1];O=['javascript:',A(P)];}F['data-cke-saved-href']=O.join('');break;}if(H.target)if(H.target.type=='popup'){var V=["window.open(this.href, '",H.target.name||'',"', '"],W=['resizable','status','location','toolbar','menubar','fullscreen','scrollbars','dependent'],X=W.length,Y=function(ai){if(H.target[ai])W.push(ai+'='+H.target[ai]);};for(var Z=0;Z<X;Z++)W[Z]=W[Z]+(H.target[W[Z]]?'=yes':'=no');Y('width');Y('left');Y('height');Y('top');V.push(W.join(','),"'); return false;");F['data-cke-pa-onclick']=V.join('');G.push('target');}else{if(H.target.type!='notSet'&&H.target.name)F.target=H.target.name;else G.push('target');G.push('data-cke-pa-onclick','onclick');}if(H.adv){var aa=function(ai,aj){var ak=H.adv[ai];if(ak)F[aj]=ak;else G.push(aj);};aa('advId','id');aa('advLangDir','dir');aa('advAccessKey','accessKey');if(H.adv.advName)F.name=F['data-cke-saved-name']=H.adv.advName;else G=G.concat(['data-cke-saved-name','name']);aa('advLangCode','lang');aa('advTabIndex','tabindex');aa('advTitle','title');aa('advContentType','type');aa('advCSSClasses','class');aa('advCharset','charset');aa('advStyles','style');aa('advRel','rel');}var ab=J.getSelection();F.href=F['data-cke-saved-href'];if(!this._.selectedElement){var ac=ab.getRanges(true);if(ac.length==1&&ac[0].collapsed){var ad=new CKEDITOR.dom.text(H.type=='email'?H.email.address:F['data-cke-saved-href'],J.document);ac[0].insertNode(ad);ac[0].selectNodeContents(ad);ab.selectRanges(ac);}var ae=new CKEDITOR.style({element:'a',attributes:F});ae.type=CKEDITOR.STYLE_INLINE;ae.apply(J.document);}else{var af=this._.selectedElement,ag=af.data('cke-saved-href'),ah=af.getHtml();
12
+ af.setAttributes(F);af.removeAttributes(G);if(H.adv&&H.adv.advName&&CKEDITOR.plugins.link.synAnchorSelector)af.addClass(af.getChildCount()?'cke_anchor':'cke_anchor_empty');if(ag==ah||H.type=='email'&&ah.indexOf('@')!=-1)af.setHtml(H.type=='email'?H.email.address:F['data-cke-saved-href']);ab.selectElement(af);delete this._.selectedElement;}},onLoad:function(){if(!a.config.linkShowAdvancedTab)this.hidePage('advanced');if(!a.config.linkShowTargetTab)this.hidePage('target');},onFocus:function(){var F=this.getContentElement('info','linkType'),G;if(F&&F.getValue()=='url'){G=this.getContentElement('info','url');G.select();}}};});
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -0,0 +1,26 @@
1
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
2
+ For licensing, see LICENSE.html or http://ckeditor.com/license
3
+
4
+ bg.js Found: 5 Missing: 0
5
+ cs.js Found: 5 Missing: 0
6
+ cy.js Found: 5 Missing: 0
7
+ da.js Found: 5 Missing: 0
8
+ de.js Found: 5 Missing: 0
9
+ el.js Found: 5 Missing: 0
10
+ eo.js Found: 5 Missing: 0
11
+ et.js Found: 5 Missing: 0
12
+ fa.js Found: 5 Missing: 0
13
+ fi.js Found: 5 Missing: 0
14
+ fr.js Found: 5 Missing: 0
15
+ he.js Found: 5 Missing: 0
16
+ hr.js Found: 5 Missing: 0
17
+ it.js Found: 5 Missing: 0
18
+ nb.js Found: 5 Missing: 0
19
+ nl.js Found: 5 Missing: 0
20
+ no.js Found: 5 Missing: 0
21
+ pl.js Found: 5 Missing: 0
22
+ tr.js Found: 5 Missing: 0
23
+ ug.js Found: 5 Missing: 0
24
+ uk.js Found: 5 Missing: 0
25
+ vi.js Found: 3 Missing: 2
26
+ zh-cn.js Found: 5 Missing: 0
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','bg',{placeholder:{title:'Настройки на контейнера',toolbar:'Нов контейнер',text:'Текст за контейнера',edit:'Промяна на контейнер',textMissing:'Контейнера трябва да съдържа текст.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','cs',{placeholder:{title:'Vlastnosti vyhrazeného prostoru',toolbar:'Vytvořit vyhrazený prostor',text:'Vyhrazený text',edit:'Upravit vyhrazený prostor',textMissing:'Vyhrazený prostor musí obsahovat text.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','cy',{placeholder:{title:"Priodweddau'r Daliwr Geiriau",toolbar:'Creu Daliwr Geiriau',text:'Testun y Daliwr Geiriau',edit:"Golygu'r Dailwr Geiriau",textMissing:"Mae'n rhaid i'r daliwr geiriau gynnwys testun."}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','da',{placeholder:{title:'Egenskaber for pladsholder',toolbar:'Opret pladsholder',text:'Tekst til pladsholder',edit:'Rediger pladsholder',textMissing:'Pladsholder skal indeholde tekst'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','de',{placeholder:{title:'Platzhalter Einstellungen',toolbar:'Platzhalter erstellen',text:'Platzhalter Text',edit:'Platzhalter bearbeiten',textMissing:'Der Platzhalter muss einen Text beinhalten.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','el',{placeholder:{title:'Ιδιότητες Υποκατάστατου Κειμένου',toolbar:'Δημιουργία Υποκατάσταστου Κειμένου',text:'Υποκαθιστόμενο Κείμενο',edit:'Επεξεργασία Υποκατάσταστου Κειμένου',textMissing:'Πρέπει να υπάρχει υποκαθιστόμενο κείμενο.'}});
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','eo',{placeholder:{title:'Atributoj de la rezervita spaco',toolbar:'Krei la rezervitan spacon',text:'Texto de la rezervita spaco',edit:'Modifi la rezervitan spacon',textMissing:'La rezervita spaco devas enteni tekston.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','et',{placeholder:{title:'Kohahoidja omadused',toolbar:'Kohahoidja loomine',text:'Kohahoidja tekst',edit:'Kohahoidja muutmine',textMissing:'Kohahoidja peab sisaldama teksti.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','fa',{placeholder:{title:'ویژگیهای محل نگهداری',toolbar:'ایجاد یک محل نگهداری',text:'متن محل نگهداری',edit:'ویرایش محل نگهداری',textMissing:'محل نگهداری باید محتوی متن باشد.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','fi',{placeholder:{title:'Paikkamerkin ominaisuudet',toolbar:'Luo paikkamerkki',text:'Paikkamerkin teksti',edit:'Muokkaa paikkamerkkiä',textMissing:'Paikkamerkin täytyy sisältää tekstiä'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','fr',{placeholder:{title:"Propriétés de l'Espace réservé",toolbar:"Créer l'Espace réservé",text:"Texte de l'Espace réservé",edit:"Modifier l'Espace réservé",textMissing:"L'Espace réservé doit contenir du texte."}});
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','hr',{placeholder:{title:'Svojstva rezerviranog mjesta',toolbar:'Napravi rezervirano mjesto',text:'Tekst rezerviranog mjesta',edit:'Uredi rezervirano mjesto',textMissing:'Rezervirano mjesto mora sadržavati tekst.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','it',{placeholder:{title:'Proprietà segnaposto',toolbar:'Crea segnaposto',text:'Testo segnaposto',edit:'Modifica segnaposto',textMissing:'Il segnaposto deve contenere del testo.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','nb',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','nl',{placeholder:{title:'Eigenschappen placeholder',toolbar:'Placeholder aanmaken',text:'Placeholder tekst',edit:'Placeholder wijzigen',textMissing:'De placeholder moet tekst bevatten.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','no',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','pl',{placeholder:{title:'Właściwości wypełniacza',toolbar:'Utwórz wypełniacz',text:'Tekst wypełnienia',edit:'Edytuj wypełnienie',textMissing:'Wypełnienie musi posiadać jakiś tekst.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','tr',{placeholder:{title:'Yer tutucu özellikleri',toolbar:'Yer tutucu oluşturun',text:'Yer tutucu metini',edit:'Yer tutucuyu düzenle',textMissing:'Yer tutucu metin içermelidir.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','ug',{placeholder:{title:'ئورۇن بەلگە خاسلىقى',toolbar:'ئورۇن بەلگە قۇر',text:'ئورۇن بەلگە تېكىستى',edit:'ئورۇن بەلگە تەھرىر',textMissing:'ئورۇن بەلگىسىدە چوقۇم تېكىست بولۇشى لازىم'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','uk',{placeholder:{title:'Налаштування Заповнювача',toolbar:'Створити Заповнювач',text:'Текст Заповнювача',edit:'Редагувати Заповнювач',textMissing:'Заповнювач повинен містити текст.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','vi',{placeholder:{title:'Thuộc tính đặt chỗ',toolbar:'Tạo đặt chỗ',text:'Văn bản đặt chỗ',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('placeholder','zh-cn',{placeholder:{title:'占位符属性',toolbar:'创建占位符',text:'占位符文字',edit:'编辑占位符',textMissing:'占位符必需包含有文字'}});
@@ -1,6 +1,6 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
6
- (function(){var a=/\[\[[^\]]+\]\]/g;CKEDITOR.plugins.add('placeholder',{requires:['dialog'],lang:['en','he'],init:function(b){var c=b.lang.placeholder;b.addCommand('createplaceholder',new CKEDITOR.dialogCommand('createplaceholder'));b.addCommand('editplaceholder',new CKEDITOR.dialogCommand('editplaceholder'));b.ui.addButton('CreatePlaceholder',{label:c.toolbar,command:'createplaceholder',icon:this.path+'placeholder.gif'});if(b.addMenuItems){b.addMenuGroup('placeholder',20);b.addMenuItems({editplaceholder:{label:c.edit,command:'editplaceholder',group:'placeholder',order:1,icon:this.path+'placeholder.gif'}});if(b.contextMenu)b.contextMenu.addListener(function(d,e){if(!d||!d.data('cke-placeholder'))return null;return{editplaceholder:CKEDITOR.TRISTATE_OFF};});}b.on('doubleclick',function(d){if(CKEDITOR.plugins.placeholder.getSelectedPlaceHoder(b))d.data.dialog='editplaceholder';});b.addCss('.cke_placeholder{background-color: #ffff00;'+(CKEDITOR.env.gecko?'cursor: default;':'')+'}');b.on('contentDom',function(){b.document.getBody().on('resizestart',function(d){if(b.getSelection().getSelectedElement().data('cke-placeholder'))d.data.preventDefault();});});CKEDITOR.dialog.add('createplaceholder',this.path+'dialogs/placeholder.js');CKEDITOR.dialog.add('editplaceholder',this.path+'dialogs/placeholder.js');},afterInit:function(b){var c=b.dataProcessor,d=c&&c.dataFilter,e=c&&c.htmlFilter;if(d)d.addRules({text:function(f){return f.replace(a,function(g){return CKEDITOR.plugins.placeholder.createPlaceholder(b,null,g,1);});}});if(e)e.addRules({elements:{span:function(f){if(f.attributes&&f.attributes['data-cke-placeholder'])delete f.name;}}});}});})();CKEDITOR.plugins.placeholder={createPlaceholder:function(a,b,c,d){var e=new CKEDITOR.dom.element('span',a.document);e.setAttributes({contentEditable:'false','data-cke-placeholder':1,'class':'cke_placeholder'});c&&e.setText(c);if(d)return e.getOuterHtml();if(b){if(CKEDITOR.env.ie){e.insertAfter(b);setTimeout(function(){b.remove();e.focus();},10);}else e.replace(b);}else a.insertElement(e);return null;},getSelectedPlaceHoder:function(a){var b=a.getSelection().getRanges()[0];b.shrink(CKEDITOR.SHRINK_TEXT);var c=b.startContainer;while(c&&!(c.type==CKEDITOR.NODE_ELEMENT&&c.data('cke-placeholder')))c=c.getParent();return c;}};
6
+ (function(){var a=/\[\[[^\]]+\]\]/g;CKEDITOR.plugins.add('placeholder',{requires:['dialog'],lang:['bg','cs','cy','da','de','el','en','eo','et','fa','fi','fr','he','hr','it','nb','nl','no','pl','tr','ug','uk','vi','zh-cn'],init:function(b){var c=b.lang.placeholder;b.addCommand('createplaceholder',new CKEDITOR.dialogCommand('createplaceholder'));b.addCommand('editplaceholder',new CKEDITOR.dialogCommand('editplaceholder'));b.ui.addButton('CreatePlaceholder',{label:c.toolbar,command:'createplaceholder',icon:this.path+'placeholder.gif'});if(b.addMenuItems){b.addMenuGroup('placeholder',20);b.addMenuItems({editplaceholder:{label:c.edit,command:'editplaceholder',group:'placeholder',order:1,icon:this.path+'placeholder.gif'}});if(b.contextMenu)b.contextMenu.addListener(function(d,e){if(!d||!d.data('cke-placeholder'))return null;return{editplaceholder:CKEDITOR.TRISTATE_OFF};});}b.on('doubleclick',function(d){if(CKEDITOR.plugins.placeholder.getSelectedPlaceHoder(b))d.data.dialog='editplaceholder';});b.addCss('.cke_placeholder{background-color: #ffff00;'+(CKEDITOR.env.gecko?'cursor: default;':'')+'}');b.on('contentDom',function(){b.document.getBody().on('resizestart',function(d){if(b.getSelection().getSelectedElement().data('cke-placeholder'))d.data.preventDefault();});});CKEDITOR.dialog.add('createplaceholder',this.path+'dialogs/placeholder.js');CKEDITOR.dialog.add('editplaceholder',this.path+'dialogs/placeholder.js');},afterInit:function(b){var c=b.dataProcessor,d=c&&c.dataFilter,e=c&&c.htmlFilter;if(d)d.addRules({text:function(f){return f.replace(a,function(g){return CKEDITOR.plugins.placeholder.createPlaceholder(b,null,g,1);});}});if(e)e.addRules({elements:{span:function(f){if(f.attributes&&f.attributes['data-cke-placeholder'])delete f.name;}}});}});})();CKEDITOR.plugins.placeholder={createPlaceholder:function(a,b,c,d){var e=new CKEDITOR.dom.element('span',a.document);e.setAttributes({contentEditable:'false','data-cke-placeholder':1,'class':'cke_placeholder'});c&&e.setText(c);if(d)return e.getOuterHtml();if(b){if(CKEDITOR.env.ie){e.insertAfter(b);setTimeout(function(){b.remove();e.focus();},10);}else e.replace(b);}else a.insertElement(e);return null;},getSelectedPlaceHoder:function(a){var b=a.getSelection().getRanges()[0];b.shrink(CKEDITOR.SHRINK_TEXT);var c=b.startContainer;while(c&&!(c.type==CKEDITOR.NODE_ELEMENT&&c.data('cke-placeholder')))c=c.getParent();return c;}};
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5
 
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
2
+ For licensing, see LICENSE.html or http://ckeditor.com/license
3
+
4
+ cs.js Found: 118 Missing: 0
5
+ cy.js Found: 118 Missing: 0
6
+ de.js Found: 118 Missing: 0
7
+ eo.js Found: 118 Missing: 0
8
+ et.js Found: 31 Missing: 87
9
+ fa.js Found: 24 Missing: 94
10
+ fi.js Found: 23 Missing: 95
11
+ fr.js Found: 118 Missing: 0
12
+ hr.js Found: 23 Missing: 95
13
+ it.js Found: 118 Missing: 0
14
+ nb.js Found: 118 Missing: 0
15
+ nl.js Found: 118 Missing: 0
16
+ no.js Found: 118 Missing: 0
17
+ tr.js Found: 118 Missing: 0
18
+ ug.js Found: 39 Missing: 79
19
+ zh-cn.js Found: 118 Missing: 0
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('specialchar','cs',{euro:'Znak eura',lsquo:'Počáteční uvozovka jednoduchá',rsquo:'Koncová uvozovka jednoduchá',ldquo:'Počáteční uvozovka dvojitá',rdquo:'Koncová uvozovka dvojitá',ndash:'En pomlčka',mdash:'Em pomlčka',iexcl:'Obrácený vykřičník',cent:'Znak centu',pound:'Znak libry',curren:'Znak měny',yen:'Znak jenu',brvbar:'Přerušená svislá čára',sect:'Znak oddílu',uml:'Přehláska',copy:'Znak copyrightu',ordf:'Ženský indikátor rodu',laquo:'Znak dvojitých lomených uvozovek vlevo',not:'Logistický zápor',reg:'Znak registrace',macr:'Pomlčka nad',deg:'Znak stupně',sup2:'Dvojka jako horní index',sup3:'Trojka jako horní index',acute:'Čárka nad vpravo',micro:'Znak mikro',para:'Znak odstavce',middot:'Tečka uprostřed',cedil:'Ocásek vlevo',sup1:'Jednička jako horní index',ordm:'Mužský indikátor rodu',raquo:'Znak dvojitých lomených uvozovek vpravo',frac14:'Obyčejný zlomek jedna čtvrtina',frac12:'Obyčejný zlomek jedna polovina',frac34:'Obyčejný zlomek tři čtvrtiny',iquest:'Znak obráceného otazníku',Agrave:'Velké písmeno latinky A s čárkou nad vlevo',Aacute:'Velké písmeno latinky A s čárkou nad vpravo',Acirc:'Velké písmeno latinky A s vokáněm',Atilde:'Velké písmeno latinky A s tildou',Auml:'Velké písmeno latinky A s dvěma tečkami',Aring:'Velké písmeno latinky A s kroužkem nad',AElig:'Velké písmeno latinky Ae',Ccedil:'Velké písmeno latinky C s ocáskem vlevo',Egrave:'Velké písmeno latinky E s čárkou nad vlevo',Eacute:'Velké písmeno latinky E s čárkou nad vpravo',Ecirc:'Velké písmeno latinky E s vokáněm',Euml:'Velké písmeno latinky E s dvěma tečkami',Igrave:'Velké písmeno latinky I s čárkou nad vlevo',Iacute:'Velké písmeno latinky I s čárkou nad vpravo',Icirc:'Velké písmeno latinky I s vokáněm',Iuml:'Velké písmeno latinky I s dvěma tečkami',ETH:'Velké písmeno latinky Eth',Ntilde:'Velké písmeno latinky N s tildou',Ograve:'Velké písmeno latinky O s čárkou nad vlevo',Oacute:'Velké písmeno latinky O s čárkou nad vpravo',Ocirc:'Velké písmeno latinky O s vokáněm',Otilde:'Velké písmeno latinky O s tildou',Ouml:'Velké písmeno latinky O s dvěma tečkami',times:'Znak násobení',Oslash:'Velké písmeno latinky O přeškrtnuté',Ugrave:'Velké písmeno latinky U s čárkou nad vlevo',Uacute:'Velké písmeno latinky U s čárkou nad vpravo',Ucirc:'Velké písmeno latinky U s vokáněm',Uuml:'Velké písmeno latinky U s dvěma tečkami',Yacute:'Velké písmeno latinky Y s čárkou nad vpravo',THORN:'Velké písmeno latinky Thorn',szlig:'Malé písmeno latinky ostré s',agrave:'Malé písmeno latinky a s čárkou nad vlevo',aacute:'Malé písmeno latinky a s čárkou nad vpravo',acirc:'Malé písmeno latinky a s vokáněm',atilde:'Malé písmeno latinky a s tildou',auml:'Malé písmeno latinky a s dvěma tečkami',aring:'Malé písmeno latinky a s kroužkem nad',aelig:'Malé písmeno latinky ae',ccedil:'Malé písmeno latinky c s ocáskem vlevo',egrave:'Malé písmeno latinky e s čárkou nad vlevo',eacute:'Malé písmeno latinky e s čárkou nad vpravo',ecirc:'Malé písmeno latinky e s vokáněm',euml:'Malé písmeno latinky e s dvěma tečkami',igrave:'Malé písmeno latinky i s čárkou nad vlevo',iacute:'Malé písmeno latinky i s čárkou nad vpravo',icirc:'Malé písmeno latinky i s vokáněm',iuml:'Malé písmeno latinky i s dvěma tečkami',eth:'Malé písmeno latinky eth',ntilde:'Malé písmeno latinky n s tildou',ograve:'Malé písmeno latinky o s čárkou nad vlevo',oacute:'Malé písmeno latinky o s čárkou nad vpravo',ocirc:'Malé písmeno latinky o s vokáněm',otilde:'Malé písmeno latinky o s tildou',ouml:'Malé písmeno latinky o s dvěma tečkami',divide:'Znak dělení',oslash:'Malé písmeno latinky o přeškrtnuté',ugrave:'Malé písmeno latinky u s čárkou nad vlevo',uacute:'Malé písmeno latinky u s čárkou nad vpravo',ucirc:'Malé písmeno latinky u s vokáněm',uuml:'Malé písmeno latinky u s dvěma tečkami',yacute:'Malé písmeno latinky y s čárkou nad vpravo',thorn:'Malé písmeno latinky thorn',yuml:'Malé písmeno latinky y s dvěma tečkami',OElig:'Velká ligatura latinky OE',oelig:'Malá ligatura latinky OE',372:'Velké písmeno latinky W s vokáněm',374:'Velké písmeno latinky Y s vokáněm',373:'Malé písmeno latinky w s vokáněm',375:'Malé písmeno latinky y s vokáněm',sbquo:'Dolní 9 uvozovka jednoduchá',8219:'Horní obrácená 9 uvozovka jednoduchá',bdquo:'Dolní 9 uvozovka dvojitá',hellip:'Trojtečkový úvod',trade:'Obchodní značka',9658:'Černý ukazatel směřující vpravo',bull:'Kolečko',rarr:'Šipka vpravo',rArr:'Dvojitá šipka vpravo',hArr:'Dvojitá šipka vlevo a vpravo',diams:'Černé piky',asymp:'Téměř se rovná'});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('specialchar','cy',{euro:'Arwydd yr Ewro',lsquo:'Dyfynnod chwith unigol',rsquo:'Dyfynnod dde unigol',ldquo:'Dyfynnod chwith dwbl',rdquo:'Dyfynnod dde dwbl',ndash:'Cysylltnod en',mdash:'Cysylltnod em',iexcl:'Ebychnod gwrthdro',cent:'Arwydd sent',pound:'Arwydd punt',curren:'Arwydd arian cyfred',yen:'Arwydd yen',brvbar:'Bar toriedig',sect:'Arwydd adran',uml:'Didolnod',copy:'Arwydd hawlfraint',ordf:'Dangosydd benywaidd',laquo:"Dyfynnod dwbl ar ongl i'r chwith",not:'Arwydd Nid',reg:'Arwydd cofrestredig',macr:'Macron',deg:'Arwydd gradd',sup2:'Dau uwchsgript',sup3:'Tri uwchsgript',acute:'Acen ddyrchafedig',micro:'Arwydd micro',para:'Arwydd pilcrow',middot:'Dot canol',cedil:'Sedila',sup1:'Un uwchsgript',ordm:'Dangosydd gwrywaidd',raquo:"Dyfynnod dwbl ar ongl i'r dde",frac14:'Ffracsiwn cyffredin un cwarter',frac12:'Ffracsiwn cyffredin un hanner',frac34:'Ffracsiwn cyffredin tri chwarter',iquest:'Marc cwestiwn gwrthdroëdig',Agrave:'Priflythyren A Lladinaidd gydag acen ddisgynedig',Aacute:'Priflythyren A Lladinaidd gydag acen ddyrchafedig',Acirc:'Priflythyren A Lladinaidd gydag acen grom',Atilde:'Priflythyren A Lladinaidd gyda thild',Auml:'Priflythyren A Lladinaidd gyda didolnod',Aring:'Priflythyren A Lladinaidd gyda chylch uwchben',AElig:'Priflythyren Æ Lladinaidd',Ccedil:'Priflythyren C Lladinaidd gyda sedila',Egrave:'Priflythyren E Lladinaidd gydag acen ddisgynedig',Eacute:'Priflythyren E Lladinaidd gydag acen ddyrchafedig',Ecirc:'Priflythyren E Lladinaidd gydag acen grom',Euml:'Priflythyren E Lladinaidd gyda didolnod',Igrave:'Priflythyren I Lladinaidd gydag acen ddisgynedig',Iacute:'Priflythyren I Lladinaidd gydag acen ddyrchafedig',Icirc:'Priflythyren I Lladinaidd gydag acen grom',Iuml:'Priflythyren I Lladinaidd gyda didolnod',ETH:'Priflythyren Eth',Ntilde:'Priflythyren N Lladinaidd gyda thild',Ograve:'Priflythyren O Lladinaidd gydag acen ddisgynedig',Oacute:'Priflythyren O Lladinaidd gydag acen ddyrchafedig',Ocirc:'Priflythyren O Lladinaidd gydag acen grom',Otilde:'Priflythyren O Lladinaidd gyda thild',Ouml:'Priflythyren O Lladinaidd gyda didolnod',times:'Arwydd lluosi',Oslash:'Priflythyren O Lladinaidd gyda strôc',Ugrave:'Priflythyren U Lladinaidd gydag acen ddisgynedig',Uacute:'Priflythyren U Lladinaidd gydag acen ddyrchafedig',Ucirc:'Priflythyren U Lladinaidd gydag acen grom',Uuml:'Priflythyren U Lladinaidd gyda didolnod',Yacute:'Priflythyren Y Lladinaidd gydag acen ddyrchafedig',THORN:'Priflythyren Thorn',szlig:'Llythyren s fach Lladinaidd siarp ',agrave:'Llythyren a fach Lladinaidd gydag acen ddisgynedig',aacute:'Llythyren a fach Lladinaidd gydag acen ddyrchafedig',acirc:'Llythyren a fach Lladinaidd gydag acen grom',atilde:'Llythyren a fach Lladinaidd gyda thild',auml:'Llythyren a fach Lladinaidd gyda didolnod',aring:'Llythyren a fach Lladinaidd gyda chylch uwchben',aelig:'Llythyren æ fach Lladinaidd',ccedil:'Llythyren c fach Lladinaidd gyda sedila',egrave:'Llythyren e fach Lladinaidd gydag acen ddisgynedig',eacute:'Llythyren e fach Lladinaidd gydag acen ddyrchafedig',ecirc:'Llythyren e fach Lladinaidd gydag acen grom',euml:'Llythyren e fach Lladinaidd gyda didolnod',igrave:'Llythyren i fach Lladinaidd gydag acen ddisgynedig',iacute:'Llythyren i fach Lladinaidd gydag acen ddyrchafedig',icirc:'Llythyren i fach Lladinaidd gydag acen grom',iuml:'Llythyren i fach Lladinaidd gyda didolnod',eth:'Llythyren eth fach',ntilde:'Llythyren n fach Lladinaidd gyda thild',ograve:'Llythyren o fach Lladinaidd gydag acen ddisgynedig',oacute:'Llythyren o fach Lladinaidd gydag acen ddyrchafedig',ocirc:'Llythyren o fach Lladinaidd gydag acen grom',otilde:'Llythyren o fach Lladinaidd gyda thild',ouml:'Llythyren o fach Lladinaidd gyda didolnod',divide:'Arwydd rhannu',oslash:'Llyth',ugrave:'Llythyren u fach Lladinaidd gydag acen ddisgynedig',uacute:'Llythyren u fach Lladinaidd gydag acen ddyrchafedig',ucirc:'Llythyren u fach Lladinaidd gydag acen grom',uuml:'Llythyren u fach Lladinaidd gyda didolnod',yacute:'Llythyren y fach Lladinaidd gydag acen ddisgynedig',thorn:'Llythyren o fach Lladinaidd gyda strôc',yuml:'Llythyren y fach Lladinaidd gyda didolnod',OElig:'Priflythyren cwlwm OE Lladinaidd ',oelig:'Priflythyren cwlwm oe Lladinaidd ',372:'Priflythyren W gydag acen grom',374:'Priflythyren Y gydag acen grom',373:'Llythyren w fach gydag acen grom',375:'Llythyren y fach gydag acen grom',sbquo:'Dyfynnod sengl 9-isel',8219:'Dyfynnod sengl 9-uchel cildro',bdquo:'Dyfynnod dwbl 9-isel',hellip:'Coll geiriau llorweddol',trade:'Arwydd marc masnachol',9658:"Pwyntydd du i'r dde",bull:'Bwled',rarr:"Saeth i'r dde",rArr:"Saeth ddwbl i'r dde",hArr:"Saeth ddwbl i'r chwith",diams:'Siwt diemwnt du',asymp:'Bron yn hafal iddo'});
@@ -0,0 +1,6 @@
1
+ /*
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
+ For licensing, see LICENSE.html or http://ckeditor.com/license
4
+ */
5
+
6
+ CKEDITOR.plugins.setLang('specialchar','de',{euro:'Euro Zeichen',lsquo:'Hochkomma links',rsquo:'Hochkomma rechts',ldquo:'Anführungszeichen links',rdquo:'Anführungszeichen rechts',ndash:'kleiner Strich',mdash:'mittlerer Strich',iexcl:'invertiertes Ausrufezeichen',cent:'Cent',pound:'Pfund',curren:'Währung',yen:'Yen',brvbar:'gestrichelte Linie',sect:'§ Zeichen',uml:'Diäresis',copy:'Copyright',ordf:'Feminine ordinal Anzeige',laquo:'Nach links zeigenden Doppel-Winkel Anführungszeichen',not:'Not-Zeichen',reg:'Registriert',macr:'Längezeichen',deg:'Grad',sup2:'Hoch 2',sup3:'Hoch 3',acute:'Akzentzeichen ',micro:'Micro',para:'Pilcrow-Zeichen',middot:'Mittelpunkt',cedil:'Cedilla',sup1:'Hoch 1',ordm:'Männliche Ordnungszahl Anzeige',raquo:'Nach rechts zeigenden Doppel-Winkel Anführungszeichen',frac14:'ein Viertel',frac12:'Hälfte',frac34:'Dreiviertel',iquest:'Umgekehrtes Fragezeichen',Agrave:'Lateinischer Buchstabe A mit AkzentGrave',Aacute:'Lateinischer Buchstabe A mit Akutakzent',Acirc:'Lateinischer Buchstabe A mit Zirkumflex',Atilde:'Lateinischer Buchstabe A mit Tilde',Auml:'Lateinischer Buchstabe A mit Trema',Aring:'Lateinischer Buchstabe A mit Ring oben',AElig:'Lateinischer Buchstabe Æ',Ccedil:'Lateinischer Buchstabe C mit Cedille',Egrave:'Lateinischer Buchstabe E mit AkzentGrave',Eacute:'Lateinischer Buchstabe E mit Akutakzent',Ecirc:'Lateinischer Buchstabe E mit Zirkumflex',Euml:'Lateinischer Buchstabe E Trema',Igrave:'Lateinischer Buchstabe I mit AkzentGrave',Iacute:'Lateinischer Buchstabe I mit Akutakzent',Icirc:'Lateinischer Buchstabe I mit Zirkumflex',Iuml:'Lateinischer Buchstabe I mit Trema',ETH:'Lateinischer Buchstabe Eth',Ntilde:'Lateinischer Buchstabe N mit Tilde',Ograve:'Lateinischer Buchstabe O mit AkzentGrave',Oacute:'Lateinischer Buchstabe O mit Akutakzent',Ocirc:'Lateinischer Buchstabe O mit Zirkumflex',Otilde:'Lateinischer Buchstabe O mit Tilde',Ouml:'Lateinischer Buchstabe O mit Trema',times:'Multiplikation',Oslash:'Lateinischer Buchstabe O durchgestrichen',Ugrave:'Lateinischer Buchstabe U mit Akzentgrave',Uacute:'Lateinischer Buchstabe U mit Akutakzent',Ucirc:'Lateinischer Buchstabe U mit Zirkumflex',Uuml:'Lateinischer Buchstabe a mit Trema',Yacute:'Lateinischer Buchstabe a mit Akzent',THORN:'Lateinischer Buchstabe mit Dorn',szlig:'Kleiner lateinischer Buchstabe scharfe s',agrave:'Kleiner lateinischer Buchstabe a mit Accent grave',aacute:'Kleiner lateinischer Buchstabe a mit Akut',acirc:'Lateinischer Buchstabe a mit Zirkumflex',atilde:'Lateinischer Buchstabe a mit Tilde',auml:'Kleiner lateinischer Buchstabe a mit Trema',aring:'Kleiner lateinischer Buchstabe a mit Ring oben',aelig:'Lateinischer Buchstabe æ',ccedil:'Kleiner lateinischer Buchstabe c mit Cedille',egrave:'Kleiner lateinischer Buchstabe e mit Accent grave',eacute:'Kleiner lateinischer Buchstabe e mit Akut',ecirc:'Kleiner lateinischer Buchstabe e mit Zirkumflex',euml:'Kleiner lateinischer Buchstabe e mit Trema',igrave:'Kleiner lateinischer Buchstabe i mit AkzentGrave',iacute:'Kleiner lateinischer Buchstabe i mit Akzent',icirc:'Kleiner lateinischer Buchstabe i mit Zirkumflex',iuml:'Kleiner lateinischer Buchstabe i mit Trema',eth:'Kleiner lateinischer Buchstabe eth',ntilde:'Kleiner lateinischer Buchstabe n mit Tilde',ograve:'Kleiner lateinischer Buchstabe o mit Accent grave',oacute:'Kleiner lateinischer Buchstabe o mit Akzent',ocirc:'Kleiner lateinischer Buchstabe o mit Zirkumflex',otilde:'Lateinischer Buchstabe i mit Tilde',ouml:'Kleiner lateinischer Buchstabe o mit Trema',divide:'Divisionszeichen',oslash:'Kleiner lateinischer Buchstabe o durchgestrichen',ugrave:'Kleiner lateinischer Buchstabe u mit Accent grave',uacute:'Kleiner lateinischer Buchstabe u mit Akut',ucirc:'Kleiner lateinischer Buchstabe u mit Zirkumflex',uuml:'Kleiner lateinischer Buchstabe u mit Trema',yacute:'Kleiner lateinischer Buchstabe y mit Akut',thorn:'Kleiner lateinischer Buchstabe Dorn',yuml:'Kleiner lateinischer Buchstabe y mit Trema',OElig:'Lateinischer Buchstabe Ligatur OE',oelig:'Kleiner lateinischer Buchstabe Ligatur OE',372:'Lateinischer Buchstabe W mit Zirkumflex',374:'Lateinischer Buchstabe Y mit Zirkumflex',373:'Kleiner lateinischer Buchstabe w mit Zirkumflex',375:'Kleiner lateinischer Buchstabe y mit Zirkumflex',sbquo:'Tiefergestelltes Komma',8219:'Rumgedrehtes Komma',bdquo:'Doppeltes Anführungszeichen unten',hellip:'horizontale Auslassungspunkte',trade:'Handelszeichen',9658:'Dreickspfeil rechts',bull:'Bullet',rarr:'Pfeil rechts',rArr:'Doppelpfeil rechts',hArr:'Doppelpfeil links',diams:'Karo',asymp:'Ungefähr'});
@@ -1,5 +1,5 @@
1
1
  /*
2
- Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
2
+ Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3
3
  For licensing, see LICENSE.html or http://ckeditor.com/license
4
4
  */
5
5