[Rt-commit] rt branch, master, updated. rt-4.1.6-330-gbe5e81c

Alex Vandiver alexmv at bestpractical.com
Mon Mar 11 16:03:07 EDT 2013


The branch, master has been updated
       via  be5e81c9ff0fc1b96210b47aa0e498fcc9ad5147 (commit)
       via  62b66a4738fc7a14792994485b3219c95c46aea1 (commit)
       via  02bb63619b4d84221166bab70a0eac753eac8b21 (commit)
       via  a2cff714b3edb40e051ae2d6f94ba75599b172ac (commit)
      from  c1577c502679940c48e4a47fd043fdf019706428 (commit)

Summary of changes:
 devel/third-party/README                           |    2 +-
 devel/third-party/ckeditor/LICENSE.md              | 1274 ++++++
 devel/third-party/ckeditor/adapters/jquery.js      |  297 --
 devel/third-party/ckeditor/build-config.js         |  161 +
 devel/third-party/ckeditor/ckeditor.js             |   42 +
 .../third-party/ckeditor/ckeditor_basic_source.js  |   20 -
 devel/third-party/ckeditor/ckeditor_source.js      |   25 -
 devel/third-party/ckeditor/config.js               |   17 +
 devel/third-party/ckeditor/contents.css            |   99 +
 devel/third-party/ckeditor/core/_bootstrap.js      |  160 +-
 devel/third-party/ckeditor/core/ajax.js            |  143 -
 devel/third-party/ckeditor/core/ckeditor.js        |  317 +-
 devel/third-party/ckeditor/core/ckeditor_base.js   |  510 ++-
 devel/third-party/ckeditor/core/ckeditor_basic.js  |  336 +-
 devel/third-party/ckeditor/core/command.js         |  310 +-
 .../third-party/ckeditor/core/commanddefinition.js |  241 +-
 devel/third-party/ckeditor/core/config.js          |  768 ++--
 devel/third-party/ckeditor/core/creators/inline.js |  118 +
 .../third-party/ckeditor/core/creators/themedui.js |  457 +++
 devel/third-party/ckeditor/core/dataprocessor.js   |  136 +-
 devel/third-party/ckeditor/core/dom.js             |   34 +-
 devel/third-party/ckeditor/core/dom/comment.js     |   85 +-
 devel/third-party/ckeditor/core/dom/document.js    |  493 +--
 .../ckeditor/core/dom/documentfragment.js          |   94 +-
 devel/third-party/ckeditor/core/dom/domobject.js   |  509 +--
 devel/third-party/ckeditor/core/dom/element.js     | 3425 ++++++++--------
 devel/third-party/ckeditor/core/dom/elementpath.js |  338 +-
 devel/third-party/ckeditor/core/dom/event.js       |  348 +-
 devel/third-party/ckeditor/core/dom/iterator.js    |  335 ++
 devel/third-party/ckeditor/core/dom/node.js        | 1420 +++----
 devel/third-party/ckeditor/core/dom/nodelist.js    |   66 +-
 devel/third-party/ckeditor/core/dom/range.js       | 4074 +++++++++++---------
 devel/third-party/ckeditor/core/dom/rangelist.js   |  364 +-
 devel/third-party/ckeditor/core/dom/text.js        |  262 +-
 devel/third-party/ckeditor/core/dom/walker.js      |  922 ++---
 devel/third-party/ckeditor/core/dom/window.js      |  191 +-
 devel/third-party/ckeditor/core/dtd.js             |  535 +--
 devel/third-party/ckeditor/core/editable.js        | 1662 ++++++++
 devel/third-party/ckeditor/core/editor.js          | 2055 ++++++----
 devel/third-party/ckeditor/core/editor_basic.js    |  218 +-
 devel/third-party/ckeditor/core/env.js             |  543 +--
 devel/third-party/ckeditor/core/event.js           |  723 ++--
 devel/third-party/ckeditor/core/eventInfo.js       |  235 +-
 devel/third-party/ckeditor/core/focusmanager.js    |  390 +-
 .../third-party/ckeditor/core/htmldataprocessor.js |  765 ++++
 devel/third-party/ckeditor/core/htmlparser.js      |  425 +-
 .../ckeditor/core/htmlparser/basicwriter.js        |  297 +-
 .../third-party/ckeditor/core/htmlparser/cdata.js  |   86 +-
 .../ckeditor/core/htmlparser/comment.js            |  117 +-
 .../ckeditor/core/htmlparser/element.js            |  524 +--
 .../third-party/ckeditor/core/htmlparser/filter.js |  539 ++-
 .../ckeditor/core/htmlparser/fragment.js           | 1024 ++---
 devel/third-party/ckeditor/core/htmlparser/text.js |  107 +-
 devel/third-party/ckeditor/core/imagecacher.js     |   59 -
 .../third-party/ckeditor/core/keystrokehandler.js  |  153 +
 devel/third-party/ckeditor/core/lang.js            |  241 +-
 devel/third-party/ckeditor/core/loader.js          |  487 +--
 .../third-party/ckeditor/core/plugindefinition.js  |  145 +-
 devel/third-party/ckeditor/core/plugins.js         |  199 +-
 devel/third-party/ckeditor/core/resourcemanager.js |  453 ++-
 devel/third-party/ckeditor/core/scriptloader.js    |  355 +-
 devel/third-party/ckeditor/core/selection.js       | 1658 ++++++++
 devel/third-party/ckeditor/core/skin.js            |  321 ++
 devel/third-party/ckeditor/core/skins.js           |  204 -
 devel/third-party/ckeditor/core/style.js           | 1558 ++++++++
 devel/third-party/ckeditor/core/template.js        |   62 +
 devel/third-party/ckeditor/core/themes.js          |   19 -
 devel/third-party/ckeditor/core/tools.js           | 1600 ++++----
 devel/third-party/ckeditor/core/ui.js              |  284 +-
 devel/third-party/ckeditor/core/xml.js             |  165 -
 devel/third-party/ckeditor/lang/_languages.js      |   83 -
 .../ckeditor/lang/_translationstatus.txt           |  123 +-
 devel/third-party/ckeditor/lang/af.js              |  863 +----
 devel/third-party/ckeditor/lang/ar.js              |  863 +----
 devel/third-party/ckeditor/lang/bg.js              |  863 +----
 devel/third-party/ckeditor/lang/bn.js              |  863 +----
 devel/third-party/ckeditor/lang/bs.js              |  863 +----
 devel/third-party/ckeditor/lang/ca.js              |  863 +----
 devel/third-party/ckeditor/lang/cs.js              |  863 +----
 devel/third-party/ckeditor/lang/cy.js              |  863 +----
 devel/third-party/ckeditor/lang/da.js              |  863 +----
 devel/third-party/ckeditor/lang/de.js              |  863 +----
 devel/third-party/ckeditor/lang/el.js              |  863 +----
 devel/third-party/ckeditor/lang/en-au.js           |  863 +----
 devel/third-party/ckeditor/lang/en-ca.js           |  863 +----
 devel/third-party/ckeditor/lang/en-gb.js           |  863 +----
 devel/third-party/ckeditor/lang/en.js              |  863 +----
 devel/third-party/ckeditor/lang/eo.js              |  863 +----
 devel/third-party/ckeditor/lang/es.js              |  863 +----
 devel/third-party/ckeditor/lang/et.js              |  863 +----
 devel/third-party/ckeditor/lang/eu.js              |  863 +----
 devel/third-party/ckeditor/lang/fa.js              |  863 +----
 devel/third-party/ckeditor/lang/fi.js              |  863 +----
 devel/third-party/ckeditor/lang/fo.js              |  863 +----
 devel/third-party/ckeditor/lang/fr-ca.js           |  863 +----
 devel/third-party/ckeditor/lang/fr.js              |  863 +----
 devel/third-party/ckeditor/lang/gl.js              |  863 +----
 devel/third-party/ckeditor/lang/gu.js              |  863 +----
 devel/third-party/ckeditor/lang/he.js              |  863 +----
 devel/third-party/ckeditor/lang/hi.js              |  863 +----
 devel/third-party/ckeditor/lang/hr.js              |  863 +----
 devel/third-party/ckeditor/lang/hu.js              |  863 +----
 devel/third-party/ckeditor/lang/is.js              |  863 +----
 devel/third-party/ckeditor/lang/it.js              |  863 +----
 devel/third-party/ckeditor/lang/ja.js              |  863 +----
 devel/third-party/ckeditor/lang/ka.js              |  105 +
 devel/third-party/ckeditor/lang/km.js              |  863 +----
 devel/third-party/ckeditor/lang/ko.js              |  863 +----
 devel/third-party/ckeditor/lang/ku.js              |  104 +
 devel/third-party/ckeditor/lang/lt.js              |  863 +----
 devel/third-party/ckeditor/lang/lv.js              |  863 +----
 devel/third-party/ckeditor/lang/mk.js              |  104 +
 devel/third-party/ckeditor/lang/mn.js              |  863 +----
 devel/third-party/ckeditor/lang/ms.js              |  863 +----
 devel/third-party/ckeditor/lang/nb.js              |  863 +----
 devel/third-party/ckeditor/lang/nl.js              |  863 +----
 devel/third-party/ckeditor/lang/no.js              |  863 +----
 devel/third-party/ckeditor/lang/pl.js              |  863 +----
 devel/third-party/ckeditor/lang/pt-br.js           |  861 +----
 devel/third-party/ckeditor/lang/pt.js              |  863 +----
 devel/third-party/ckeditor/lang/ro.js              |  863 +----
 devel/third-party/ckeditor/lang/ru.js              |  863 +----
 devel/third-party/ckeditor/lang/sk.js              |  863 +----
 devel/third-party/ckeditor/lang/sl.js              |  863 +----
 devel/third-party/ckeditor/lang/sr-latn.js         |  863 +----
 devel/third-party/ckeditor/lang/sr.js              |  863 +----
 devel/third-party/ckeditor/lang/sv.js              |  862 +----
 devel/third-party/ckeditor/lang/th.js              |  863 +----
 devel/third-party/ckeditor/lang/tr.js              |  861 +----
 devel/third-party/ckeditor/lang/ug.js              |  104 +
 devel/third-party/ckeditor/lang/uk.js              |  863 +----
 devel/third-party/ckeditor/lang/vi.js              |  863 +----
 devel/third-party/ckeditor/lang/zh-cn.js           |  863 +----
 devel/third-party/ckeditor/lang/zh.js              |  863 +----
 .../ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js  |  318 +-
 .../a11yhelp/dialogs/lang/_translationstatus.txt   |   25 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ar.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/bg.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ca.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/cs.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/cy.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/da.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/de.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/el.js   |   86 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/en.js   |  106 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/eo.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/es.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/et.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/fa.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/fi.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/fr.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/gu.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/he.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/hi.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/hr.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/hu.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/it.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ja.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ku.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/lt.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/lv.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/mk.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/mn.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/nb.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/nl.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/no.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/pl.js   |   85 +
 .../plugins/a11yhelp/dialogs/lang/pt-br.js         |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/pt.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ro.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ru.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/sk.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/sl.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/sv.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/tr.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/ug.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/uk.js   |   85 +
 .../ckeditor/plugins/a11yhelp/dialogs/lang/vi.js   |   85 +
 .../plugins/a11yhelp/dialogs/lang/zh-cn.js         |   85 +
 .../ckeditor/plugins/a11yhelp/lang/en.js           |  108 -
 .../ckeditor/plugins/a11yhelp/lang/he.js           |  216 --
 .../ckeditor/plugins/a11yhelp/plugin.js            |   55 +-
 .../ckeditor/plugins/about/dialogs/about.js        |  130 +-
 .../plugins/about/dialogs/logo_ckeditor.png        |  Bin
 .../ckeditor/plugins/about/icons/about.png         |  Bin 0 -> 842 bytes
 .../third-party/ckeditor/plugins/about/lang/af.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ar.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/bg.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/bn.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/bs.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ca.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/cs.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/cy.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/da.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/de.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/el.js  |   12 +
 .../ckeditor/plugins/about/lang/en-au.js           |   12 +
 .../ckeditor/plugins/about/lang/en-ca.js           |   12 +
 .../ckeditor/plugins/about/lang/en-gb.js           |   12 +
 .../third-party/ckeditor/plugins/about/lang/en.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/eo.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/es.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/et.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/eu.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/fa.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/fi.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/fo.js  |   12 +
 .../ckeditor/plugins/about/lang/fr-ca.js           |   12 +
 .../third-party/ckeditor/plugins/about/lang/fr.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/gl.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/gu.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/he.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/hi.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/hr.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/hu.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/is.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/it.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ja.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ka.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/km.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ko.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ku.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/lt.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/lv.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/mk.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/mn.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ms.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/nb.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/nl.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/no.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/pl.js  |   12 +
 .../ckeditor/plugins/about/lang/pt-br.js           |   12 +
 .../third-party/ckeditor/plugins/about/lang/pt.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ro.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ru.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/sk.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/sl.js  |   12 +
 .../ckeditor/plugins/about/lang/sr-latn.js         |   12 +
 .../third-party/ckeditor/plugins/about/lang/sr.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/sv.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/th.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/tr.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/ug.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/uk.js  |   12 +
 .../third-party/ckeditor/plugins/about/lang/vi.js  |   12 +
 .../ckeditor/plugins/about/lang/zh-cn.js           |   12 +
 .../third-party/ckeditor/plugins/about/lang/zh.js  |   12 +
 devel/third-party/ckeditor/plugins/about/plugin.js |   31 +-
 .../ckeditor/plugins/autogrow/plugin.js            |   79 -
 .../ckeditor/plugins/basicstyles/icons/bold.png    |  Bin 0 -> 839 bytes
 .../ckeditor/plugins/basicstyles/icons/italic.png  |  Bin 0 -> 728 bytes
 .../ckeditor/plugins/basicstyles/icons/strike.png  |  Bin 0 -> 890 bytes
 .../plugins/basicstyles/icons/subscript.png        |  Bin 0 -> 811 bytes
 .../plugins/basicstyles/icons/superscript.png      |  Bin 0 -> 853 bytes
 .../plugins/basicstyles/icons/underline.png        |  Bin 0 -> 753 bytes
 .../ckeditor/plugins/basicstyles/lang/af.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ar.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/bg.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/bn.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/bs.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ca.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/cs.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/cy.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/da.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/de.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/el.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/en-au.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/en-ca.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/en-gb.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/en.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/eo.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/es.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/et.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/eu.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/fa.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/fi.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/fo.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/fr-ca.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/fr.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/gl.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/gu.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/he.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/hi.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/hr.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/hu.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/is.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/it.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ja.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ka.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/km.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ko.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ku.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/lt.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/lv.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/mk.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/mn.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ms.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/nb.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/nl.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/no.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/pl.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/pt-br.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/pt.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ro.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ru.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/sk.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/sl.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/sr-latn.js   |   12 +
 .../ckeditor/plugins/basicstyles/lang/sr.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/sv.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/th.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/tr.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/ug.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/uk.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/vi.js        |   12 +
 .../ckeditor/plugins/basicstyles/lang/zh-cn.js     |   12 +
 .../ckeditor/plugins/basicstyles/lang/zh.js        |   12 +
 .../ckeditor/plugins/basicstyles/plugin.js         |  180 +-
 .../ckeditor/plugins/bidi/icons/bidiltr.png        |  Bin 0 -> 770 bytes
 .../ckeditor/plugins/bidi/icons/bidirtl.png        |  Bin 0 -> 768 bytes
 devel/third-party/ckeditor/plugins/bidi/lang/af.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ar.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/bg.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/bn.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/bs.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ca.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/cs.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/cy.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/da.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/de.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/el.js |    8 +
 .../ckeditor/plugins/bidi/lang/en-au.js            |    8 +
 .../ckeditor/plugins/bidi/lang/en-ca.js            |    8 +
 .../ckeditor/plugins/bidi/lang/en-gb.js            |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/en.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/eo.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/es.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/et.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/eu.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/fa.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/fi.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/fo.js |    8 +
 .../ckeditor/plugins/bidi/lang/fr-ca.js            |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/fr.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/gl.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/gu.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/he.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/hi.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/hr.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/hu.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/is.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/it.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ja.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ka.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/km.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ko.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ku.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/lt.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/lv.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/mk.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/mn.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ms.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/nb.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/nl.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/no.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/pl.js |    8 +
 .../ckeditor/plugins/bidi/lang/pt-br.js            |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/pt.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ro.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ru.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/sk.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/sl.js |    8 +
 .../ckeditor/plugins/bidi/lang/sr-latn.js          |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/sr.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/sv.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/th.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/tr.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/ug.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/uk.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/vi.js |    8 +
 .../ckeditor/plugins/bidi/lang/zh-cn.js            |    8 +
 devel/third-party/ckeditor/plugins/bidi/lang/zh.js |    8 +
 devel/third-party/ckeditor/plugins/bidi/plugin.js  |  419 +-
 .../plugins/blockquote/icons/blockquote.png        |  Bin 0 -> 930 bytes
 .../ckeditor/plugins/blockquote/lang/af.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ar.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/bg.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/bn.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/bs.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ca.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/cs.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/cy.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/da.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/de.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/el.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/en-au.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/en-ca.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/en-gb.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/en.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/eo.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/es.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/et.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/eu.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/fa.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/fi.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/fo.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/fr-ca.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/fr.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/gl.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/gu.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/he.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/hi.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/hr.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/hu.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/is.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/it.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ja.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ka.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/km.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ko.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ku.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/lt.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/lv.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/mk.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/mn.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ms.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/nb.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/nl.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/no.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/pl.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/pt-br.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/pt.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ro.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ru.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/sk.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/sl.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/sr-latn.js    |    7 +
 .../ckeditor/plugins/blockquote/lang/sr.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/sv.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/th.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/tr.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/ug.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/uk.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/vi.js         |    7 +
 .../ckeditor/plugins/blockquote/lang/zh-cn.js      |    7 +
 .../ckeditor/plugins/blockquote/lang/zh.js         |    7 +
 .../ckeditor/plugins/blockquote/plugin.js          |  197 +-
 .../third-party/ckeditor/plugins/button/plugin.js  |  542 +--
 .../ckeditor/plugins/clipboard/dev/clipboard.html  |  210 +
 .../ckeditor/plugins/clipboard/dialogs/paste.js    |  318 +-
 .../ckeditor/plugins/clipboard/icons/copy-rtl.png  |  Bin 0 -> 683 bytes
 .../ckeditor/plugins/clipboard/icons/copy.png      |  Bin 0 -> 683 bytes
 .../ckeditor/plugins/clipboard/icons/cut-rtl.png   |  Bin 0 -> 1034 bytes
 .../ckeditor/plugins/clipboard/icons/cut.png       |  Bin 0 -> 1034 bytes
 .../ckeditor/plugins/clipboard/icons/paste-rtl.png |  Bin 0 -> 735 bytes
 .../ckeditor/plugins/clipboard/icons/paste.png     |  Bin 0 -> 735 bytes
 .../ckeditor/plugins/clipboard/lang/af.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ar.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/bg.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/bn.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/bs.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ca.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/cs.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/cy.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/da.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/de.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/el.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/en-au.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/en-ca.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/en-gb.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/en.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/eo.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/es.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/et.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/eu.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/fa.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/fi.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/fo.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/fr-ca.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/fr.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/gl.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/gu.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/he.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/hi.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/hr.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/hu.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/is.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/it.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ja.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ka.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/km.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ko.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ku.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/lt.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/lv.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/mk.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/mn.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ms.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/nb.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/nl.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/no.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/pl.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/pt-br.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/pt.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ro.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ru.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/sk.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/sl.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/sr-latn.js     |   15 +
 .../ckeditor/plugins/clipboard/lang/sr.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/sv.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/th.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/tr.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/ug.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/uk.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/vi.js          |   15 +
 .../ckeditor/plugins/clipboard/lang/zh-cn.js       |   15 +
 .../ckeditor/plugins/clipboard/lang/zh.js          |   15 +
 .../ckeditor/plugins/clipboard/plugin.js           | 1493 +++++--
 .../ckeditor/plugins/colorbutton/icons/bgcolor.png |  Bin 0 -> 907 bytes
 .../plugins/colorbutton/icons/textcolor.png        |  Bin 0 -> 811 bytes
 .../ckeditor/plugins/colorbutton/lang/af.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ar.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/bg.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/bn.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/bs.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ca.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/cs.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/cy.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/da.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/de.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/el.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/en-au.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/en-ca.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/en-gb.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/en.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/eo.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/es.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/et.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/eu.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/fa.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/fi.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/fo.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/fr-ca.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/fr.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/gl.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/gu.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/he.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/hi.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/hr.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/hu.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/is.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/it.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ja.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ka.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/km.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ko.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ku.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/lt.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/lv.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/mk.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/mn.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ms.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/nb.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/nl.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/no.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/pl.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/pt-br.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/pt.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ro.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ru.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/sk.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/sl.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/sr-latn.js   |   53 +
 .../ckeditor/plugins/colorbutton/lang/sr.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/sv.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/th.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/tr.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/ug.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/uk.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/vi.js        |   53 +
 .../ckeditor/plugins/colorbutton/lang/zh-cn.js     |   53 +
 .../ckeditor/plugins/colorbutton/lang/zh.js        |   53 +
 .../ckeditor/plugins/colorbutton/plugin.js         |  376 +-
 .../plugins/colordialog/dialogs/colordialog.js     |  580 +--
 .../ckeditor/plugins/colordialog/lang/af.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ar.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/bg.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/bn.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/bs.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ca.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/cs.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/cy.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/da.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/de.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/el.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/en-au.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/en-ca.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/en-gb.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/en.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/eo.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/es.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/et.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/eu.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/fa.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/fi.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/fo.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/fr-ca.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/fr.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/gl.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/gu.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/he.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/hi.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/hr.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/hu.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/is.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/it.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ja.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ka.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/km.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ko.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ku.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/lt.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/lv.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/mk.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/mn.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ms.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/nb.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/nl.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/no.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/pl.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/pt-br.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/pt.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ro.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ru.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/sk.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/sl.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/sr-latn.js   |   11 +
 .../ckeditor/plugins/colordialog/lang/sr.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/sv.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/th.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/tr.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/ug.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/uk.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/vi.js        |   11 +
 .../ckeditor/plugins/colordialog/lang/zh-cn.js     |   11 +
 .../ckeditor/plugins/colordialog/lang/zh.js        |   11 +
 .../ckeditor/plugins/colordialog/plugin.js         |   78 +-
 .../ckeditor/plugins/contextmenu/lang/af.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ar.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/bg.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/bn.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/bs.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ca.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/cs.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/cy.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/da.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/de.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/el.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/en-au.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/en-ca.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/en-gb.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/en.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/eo.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/es.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/et.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/eu.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/fa.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/fi.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/fo.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/fr-ca.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/fr.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/gl.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/gu.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/he.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/hi.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/hr.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/hu.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/is.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/it.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ja.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ka.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/km.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ko.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ku.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/lt.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/lv.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/mk.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/mn.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ms.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/nb.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/nl.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/no.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/pl.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/pt-br.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/pt.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ro.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ru.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/sk.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/sl.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/sr-latn.js   |    7 +
 .../ckeditor/plugins/contextmenu/lang/sr.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/sv.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/th.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/tr.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/ug.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/uk.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/vi.js        |    7 +
 .../ckeditor/plugins/contextmenu/lang/zh-cn.js     |    7 +
 .../ckeditor/plugins/contextmenu/lang/zh.js        |    7 +
 .../ckeditor/plugins/contextmenu/plugin.js         |  376 +-
 .../ckeditor/plugins/dialog/dialogDefinition.js    | 1068 ++++-
 .../third-party/ckeditor/plugins/dialog/plugin.js  | 3623 ++++++++---------
 .../plugins/dialog/samples/assets/my_dialog.js     |   49 +
 .../ckeditor/plugins/dialog/samples/dialog.html    |  187 +
 .../ckeditor/plugins/dialogadvtab/plugin.js        |  300 +-
 .../ckeditor/plugins/dialogui/plugin.js            | 2231 +++++------
 .../ckeditor/plugins/div/dialogs/div.js            |  546 ++-
 .../ckeditor/plugins/div/icons/creatediv.png       |  Bin 0 -> 868 bytes
 devel/third-party/ckeditor/plugins/div/lang/af.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ar.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/bg.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/bn.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/bs.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ca.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/cs.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/cy.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/da.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/de.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/el.js  |   19 +
 .../third-party/ckeditor/plugins/div/lang/en-au.js |   19 +
 .../third-party/ckeditor/plugins/div/lang/en-ca.js |   19 +
 .../third-party/ckeditor/plugins/div/lang/en-gb.js |   19 +
 devel/third-party/ckeditor/plugins/div/lang/en.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/eo.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/es.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/et.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/eu.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/fa.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/fi.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/fo.js  |   19 +
 .../third-party/ckeditor/plugins/div/lang/fr-ca.js |   19 +
 devel/third-party/ckeditor/plugins/div/lang/fr.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/gl.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/gu.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/he.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/hi.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/hr.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/hu.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/is.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/it.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ja.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ka.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/km.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ko.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ku.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/lt.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/lv.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/mk.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/mn.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ms.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/nb.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/nl.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/no.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/pl.js  |   19 +
 .../third-party/ckeditor/plugins/div/lang/pt-br.js |   19 +
 devel/third-party/ckeditor/plugins/div/lang/pt.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ro.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ru.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/sk.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/sl.js  |   19 +
 .../ckeditor/plugins/div/lang/sr-latn.js           |   19 +
 devel/third-party/ckeditor/plugins/div/lang/sr.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/sv.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/th.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/tr.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/ug.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/uk.js  |   19 +
 devel/third-party/ckeditor/plugins/div/lang/vi.js  |   19 +
 .../third-party/ckeditor/plugins/div/lang/zh-cn.js |   19 +
 devel/third-party/ckeditor/plugins/div/lang/zh.js  |   19 +
 devel/third-party/ckeditor/plugins/div/plugin.js   |  189 +-
 .../ckeditor/plugins/domiterator/plugin.js         |  350 --
 .../ckeditor/plugins/editingblock/plugin.js        |  230 --
 .../ckeditor/plugins/elementspath/lang/af.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ar.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/bg.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/bn.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/bs.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ca.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/cs.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/cy.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/da.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/de.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/el.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/en-au.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/en-ca.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/en-gb.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/en.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/eo.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/es.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/et.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/eu.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/fa.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/fi.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/fo.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/fr-ca.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/fr.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/gl.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/gu.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/he.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/hi.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/hr.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/hu.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/is.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/it.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ja.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ka.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/km.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ko.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ku.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/lt.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/lv.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/mk.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/mn.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ms.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/nb.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/nl.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/no.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/pl.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/pt-br.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/pt.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ro.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ru.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/sk.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/sl.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/sr-latn.js  |    8 +
 .../ckeditor/plugins/elementspath/lang/sr.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/sv.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/th.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/tr.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/ug.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/uk.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/vi.js       |    8 +
 .../ckeditor/plugins/elementspath/lang/zh-cn.js    |    8 +
 .../ckeditor/plugins/elementspath/lang/zh.js       |    8 +
 .../ckeditor/plugins/elementspath/plugin.js        |  358 +-
 .../ckeditor/plugins/enterkey/plugin.js            |  349 +-
 .../plugins/enterkey/samples/enterkey.html         |  103 +
 .../ckeditor/plugins/entities/plugin.js            |  227 +-
 .../plugins/fakeobjects}/images/spacer.gif         |  Bin
 .../ckeditor/plugins/fakeobjects/lang/af.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ar.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/bg.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/bn.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/bs.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ca.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/cs.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/cy.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/da.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/de.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/el.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/en-au.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/en-ca.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/en-gb.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/en.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/eo.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/es.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/et.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/eu.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/fa.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/fi.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/fo.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/fr-ca.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/fr.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/gl.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/gu.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/he.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/hi.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/hr.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/hu.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/is.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/it.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ja.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ka.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/km.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ko.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ku.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/lt.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/lv.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/mk.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/mn.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ms.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/nb.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/nl.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/no.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/pl.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/pt-br.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/pt.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ro.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ru.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/sk.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/sl.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/sr-latn.js   |   11 +
 .../ckeditor/plugins/fakeobjects/lang/sr.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/sv.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/th.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/tr.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/ug.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/uk.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/vi.js        |   11 +
 .../ckeditor/plugins/fakeobjects/lang/zh-cn.js     |   11 +
 .../ckeditor/plugins/fakeobjects/lang/zh.js        |   11 +
 .../ckeditor/plugins/fakeobjects/plugin.js         |  234 +-
 .../ckeditor/plugins/filebrowser/plugin.js         |  487 +--
 .../ckeditor/plugins/find/dialogs/find.js          | 1418 ++++---
 .../ckeditor/plugins/find/icons/find-rtl.png       |  Bin 0 -> 980 bytes
 .../ckeditor/plugins/find/icons/find.png           |  Bin 0 -> 980 bytes
 .../ckeditor/plugins/find/icons/replace.png        |  Bin 0 -> 956 bytes
 devel/third-party/ckeditor/plugins/find/lang/af.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ar.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/bg.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/bn.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/bs.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ca.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/cs.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/cy.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/da.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/de.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/el.js |   18 +
 .../ckeditor/plugins/find/lang/en-au.js            |   18 +
 .../ckeditor/plugins/find/lang/en-ca.js            |   18 +
 .../ckeditor/plugins/find/lang/en-gb.js            |   18 +
 devel/third-party/ckeditor/plugins/find/lang/en.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/eo.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/es.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/et.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/eu.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/fa.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/fi.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/fo.js |   18 +
 .../ckeditor/plugins/find/lang/fr-ca.js            |   18 +
 devel/third-party/ckeditor/plugins/find/lang/fr.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/gl.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/gu.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/he.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/hi.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/hr.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/hu.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/is.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/it.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ja.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ka.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/km.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ko.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ku.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/lt.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/lv.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/mk.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/mn.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ms.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/nb.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/nl.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/no.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/pl.js |   18 +
 .../ckeditor/plugins/find/lang/pt-br.js            |   18 +
 devel/third-party/ckeditor/plugins/find/lang/pt.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ro.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ru.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/sk.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/sl.js |   18 +
 .../ckeditor/plugins/find/lang/sr-latn.js          |   18 +
 devel/third-party/ckeditor/plugins/find/lang/sr.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/sv.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/th.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/tr.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/ug.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/uk.js |   18 +
 devel/third-party/ckeditor/plugins/find/lang/vi.js |   18 +
 .../ckeditor/plugins/find/lang/zh-cn.js            |   18 +
 devel/third-party/ckeditor/plugins/find/lang/zh.js |   18 +
 devel/third-party/ckeditor/plugins/find/plugin.js  |   72 +-
 .../ckeditor/plugins/flash/dialogs/flash.js        |  951 +++--
 .../ckeditor/plugins/flash/icons/flash.png         |  Bin 0 -> 1015 bytes
 .../ckeditor}/plugins/flash/images/placeholder.png |  Bin
 .../third-party/ckeditor/plugins/flash/lang/af.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ar.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/bg.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/bn.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/bs.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ca.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/cs.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/cy.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/da.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/de.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/el.js  |   43 +
 .../ckeditor/plugins/flash/lang/en-au.js           |   43 +
 .../ckeditor/plugins/flash/lang/en-ca.js           |   43 +
 .../ckeditor/plugins/flash/lang/en-gb.js           |   43 +
 .../third-party/ckeditor/plugins/flash/lang/en.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/eo.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/es.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/et.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/eu.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/fa.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/fi.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/fo.js  |   43 +
 .../ckeditor/plugins/flash/lang/fr-ca.js           |   43 +
 .../third-party/ckeditor/plugins/flash/lang/fr.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/gl.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/gu.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/he.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/hi.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/hr.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/hu.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/is.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/it.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ja.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ka.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/km.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ko.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ku.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/lt.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/lv.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/mk.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/mn.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ms.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/nb.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/nl.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/no.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/pl.js  |   43 +
 .../ckeditor/plugins/flash/lang/pt-br.js           |   43 +
 .../third-party/ckeditor/plugins/flash/lang/pt.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ro.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ru.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/sk.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/sl.js  |   43 +
 .../ckeditor/plugins/flash/lang/sr-latn.js         |   43 +
 .../third-party/ckeditor/plugins/flash/lang/sr.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/sv.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/th.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/tr.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/ug.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/uk.js  |   43 +
 .../third-party/ckeditor/plugins/flash/lang/vi.js  |   43 +
 .../ckeditor/plugins/flash/lang/zh-cn.js           |   43 +
 .../third-party/ckeditor/plugins/flash/lang/zh.js  |   43 +
 devel/third-party/ckeditor/plugins/flash/plugin.js |  214 +-
 .../ckeditor/plugins/floatingspace/plugin.js       |  332 ++
 .../ckeditor/plugins/floatpanel/plugin.js          |  640 +--
 devel/third-party/ckeditor/plugins/font/lang/af.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ar.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/bg.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/bn.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/bs.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ca.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/cs.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/cy.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/da.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/de.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/el.js |   14 +
 .../ckeditor/plugins/font/lang/en-au.js            |   14 +
 .../ckeditor/plugins/font/lang/en-ca.js            |   14 +
 .../ckeditor/plugins/font/lang/en-gb.js            |   14 +
 devel/third-party/ckeditor/plugins/font/lang/en.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/eo.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/es.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/et.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/eu.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/fa.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/fi.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/fo.js |   14 +
 .../ckeditor/plugins/font/lang/fr-ca.js            |   14 +
 devel/third-party/ckeditor/plugins/font/lang/fr.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/gl.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/gu.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/he.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/hi.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/hr.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/hu.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/is.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/it.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ja.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ka.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/km.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ko.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ku.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/lt.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/lv.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/mk.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/mn.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ms.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/nb.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/nl.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/no.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/pl.js |   14 +
 .../ckeditor/plugins/font/lang/pt-br.js            |   14 +
 devel/third-party/ckeditor/plugins/font/lang/pt.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ro.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ru.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/sk.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/sl.js |   14 +
 .../ckeditor/plugins/font/lang/sr-latn.js          |   14 +
 devel/third-party/ckeditor/plugins/font/lang/sr.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/sv.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/th.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/tr.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/ug.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/uk.js |   14 +
 devel/third-party/ckeditor/plugins/font/lang/vi.js |   14 +
 .../ckeditor/plugins/font/lang/zh-cn.js            |   14 +
 devel/third-party/ckeditor/plugins/font/lang/zh.js |   14 +
 devel/third-party/ckeditor/plugins/font/plugin.js  |  308 +-
 .../third-party/ckeditor/plugins/format/lang/af.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ar.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/bg.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/bn.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/bs.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ca.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/cs.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/cy.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/da.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/de.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/el.js |   18 +
 .../ckeditor/plugins/format/lang/en-au.js          |   18 +
 .../ckeditor/plugins/format/lang/en-ca.js          |   18 +
 .../ckeditor/plugins/format/lang/en-gb.js          |   18 +
 .../third-party/ckeditor/plugins/format/lang/en.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/eo.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/es.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/et.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/eu.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/fa.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/fi.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/fo.js |   18 +
 .../ckeditor/plugins/format/lang/fr-ca.js          |   18 +
 .../third-party/ckeditor/plugins/format/lang/fr.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/gl.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/gu.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/he.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/hi.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/hr.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/hu.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/is.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/it.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ja.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ka.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/km.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ko.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ku.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/lt.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/lv.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/mk.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/mn.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ms.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/nb.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/nl.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/no.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/pl.js |   18 +
 .../ckeditor/plugins/format/lang/pt-br.js          |   18 +
 .../third-party/ckeditor/plugins/format/lang/pt.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ro.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ru.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/sk.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/sl.js |   18 +
 .../ckeditor/plugins/format/lang/sr-latn.js        |   18 +
 .../third-party/ckeditor/plugins/format/lang/sr.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/sv.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/th.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/tr.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/ug.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/uk.js |   18 +
 .../third-party/ckeditor/plugins/format/lang/vi.js |   18 +
 .../ckeditor/plugins/format/lang/zh-cn.js          |   18 +
 .../third-party/ckeditor/plugins/format/lang/zh.js |   18 +
 .../third-party/ckeditor/plugins/format/plugin.js  |  281 +-
 .../ckeditor/plugins/forms/dialogs/button.js       |  195 +-
 .../ckeditor/plugins/forms/dialogs/checkbox.js     |  225 +-
 .../ckeditor/plugins/forms/dialogs/form.js         |  244 +-
 .../ckeditor/plugins/forms/dialogs/hiddenfield.js  |  117 +-
 .../ckeditor/plugins/forms/dialogs/radio.js        |  188 +-
 .../ckeditor/plugins/forms/dialogs/select.js       |  775 ++--
 .../ckeditor/plugins/forms/dialogs/textarea.js     |  170 +-
 .../ckeditor/plugins/forms/dialogs/textfield.js    |  311 +-
 .../ckeditor/plugins/forms/icons/button.png        |  Bin 0 -> 531 bytes
 .../ckeditor/plugins/forms/icons/checkbox.png      |  Bin 0 -> 787 bytes
 .../ckeditor/plugins/forms/icons/form.png          |  Bin 0 -> 599 bytes
 .../ckeditor/plugins/forms/icons/hiddenfield.png   |  Bin 0 -> 789 bytes
 .../ckeditor/plugins/forms/icons/imagebutton.png   |  Bin 0 -> 680 bytes
 .../ckeditor/plugins/forms/icons/radio.png         |  Bin 0 -> 873 bytes
 .../ckeditor/plugins/forms/icons/select-rtl.png    |  Bin 0 -> 613 bytes
 .../ckeditor/plugins/forms/icons/select.png        |  Bin 0 -> 611 bytes
 .../ckeditor/plugins/forms/icons/textarea-rtl.png  |  Bin 0 -> 711 bytes
 .../ckeditor/plugins/forms/icons/textarea.png      |  Bin 0 -> 680 bytes
 .../ckeditor/plugins/forms/icons/textfield-rtl.png |  Bin 0 -> 584 bytes
 .../ckeditor/plugins/forms/icons/textfield.png     |  Bin 0 -> 584 bytes
 .../ckeditor}/plugins/forms/images/hiddenfield.gif |  Bin
 .../third-party/ckeditor/plugins/forms/lang/af.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ar.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/bg.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/bn.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/bs.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ca.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/cs.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/cy.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/da.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/de.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/el.js  |   68 +
 .../ckeditor/plugins/forms/lang/en-au.js           |   68 +
 .../ckeditor/plugins/forms/lang/en-ca.js           |   68 +
 .../ckeditor/plugins/forms/lang/en-gb.js           |   68 +
 .../third-party/ckeditor/plugins/forms/lang/en.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/eo.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/es.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/et.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/eu.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/fa.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/fi.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/fo.js  |   68 +
 .../ckeditor/plugins/forms/lang/fr-ca.js           |   68 +
 .../third-party/ckeditor/plugins/forms/lang/fr.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/gl.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/gu.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/he.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/hi.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/hr.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/hu.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/is.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/it.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ja.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ka.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/km.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ko.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ku.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/lt.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/lv.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/mk.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/mn.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ms.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/nb.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/nl.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/no.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/pl.js  |   68 +
 .../ckeditor/plugins/forms/lang/pt-br.js           |   68 +
 .../third-party/ckeditor/plugins/forms/lang/pt.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ro.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ru.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/sk.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/sl.js  |   68 +
 .../ckeditor/plugins/forms/lang/sr-latn.js         |   68 +
 .../third-party/ckeditor/plugins/forms/lang/sr.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/sv.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/th.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/tr.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/ug.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/uk.js  |   68 +
 .../third-party/ckeditor/plugins/forms/lang/vi.js  |   68 +
 .../ckeditor/plugins/forms/lang/zh-cn.js           |   68 +
 .../third-party/ckeditor/plugins/forms/lang/zh.js  |   68 +
 devel/third-party/ckeditor/plugins/forms/plugin.js |  419 +-
 .../horizontalrule/icons/horizontalrule.png        |  Bin 0 -> 542 bytes
 .../ckeditor/plugins/horizontalrule/lang/af.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ar.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/bg.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/bn.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/bs.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ca.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/cs.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/cy.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/da.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/de.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/el.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/en-au.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/en-ca.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/en-gb.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/en.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/eo.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/es.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/et.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/eu.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/fa.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/fi.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/fo.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/fr-ca.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/fr.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/gl.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/gu.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/he.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/hi.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/hr.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/hu.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/is.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/it.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ja.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ka.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/km.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ko.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ku.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/lt.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/lv.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/mk.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/mn.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ms.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/nb.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/nl.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/no.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/pl.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/pt-br.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/pt.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ro.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ru.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/sk.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/sl.js     |    7 +
 .../plugins/horizontalrule/lang/sr-latn.js         |    7 +
 .../ckeditor/plugins/horizontalrule/lang/sr.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/sv.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/th.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/tr.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/ug.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/uk.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/vi.js     |    7 +
 .../ckeditor/plugins/horizontalrule/lang/zh-cn.js  |    7 +
 .../ckeditor/plugins/horizontalrule/lang/zh.js     |    7 +
 .../ckeditor/plugins/horizontalrule/plugin.js      |   45 +-
 .../ckeditor/plugins/htmldataprocessor/plugin.js   |  494 ---
 .../ckeditor/plugins/htmlwriter/plugin.js          |  367 +-
 .../assets/outputforflash/outputforflash.fla       |  Bin 0 -> 85504 bytes
 .../assets/outputforflash/outputforflash.swf       |  Bin 0 -> 15571 bytes
 .../samples/assets/outputforflash/swfobject.js     |    5 +
 .../plugins/htmlwriter/samples/outputforflash.html |  280 ++
 .../plugins/htmlwriter/samples/outputhtml.html     |  237 ++
 .../ckeditor/plugins/iframe/dialogs/iframe.js      |  210 +
 .../ckeditor/plugins/iframe/icons/iframe.png       |  Bin 0 -> 999 bytes
 .../ckeditor/plugins/iframe/images/placeholder.png |  Bin 0 -> 449 bytes
 .../third-party/ckeditor/plugins/iframe/lang/af.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ar.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/bg.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/bn.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/bs.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ca.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/cs.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/cy.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/da.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/de.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/el.js |   11 +
 .../ckeditor/plugins/iframe/lang/en-au.js          |   11 +
 .../ckeditor/plugins/iframe/lang/en-ca.js          |   11 +
 .../ckeditor/plugins/iframe/lang/en-gb.js          |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/en.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/eo.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/es.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/et.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/eu.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/fa.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/fi.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/fo.js |   11 +
 .../ckeditor/plugins/iframe/lang/fr-ca.js          |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/fr.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/gl.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/gu.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/he.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/hi.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/hr.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/hu.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/is.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/it.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ja.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ka.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/km.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ko.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ku.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/lt.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/lv.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/mk.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/mn.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ms.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/nb.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/nl.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/no.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/pl.js |   11 +
 .../ckeditor/plugins/iframe/lang/pt-br.js          |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/pt.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ro.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ru.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/sk.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/sl.js |   11 +
 .../ckeditor/plugins/iframe/lang/sr-latn.js        |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/sr.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/sv.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/th.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/tr.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/ug.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/uk.js |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/vi.js |   11 +
 .../ckeditor/plugins/iframe/lang/zh-cn.js          |   11 +
 .../third-party/ckeditor/plugins/iframe/lang/zh.js |   11 +
 .../third-party/ckeditor/plugins/iframe/plugin.js  |   75 +
 .../ckeditor/plugins/iframedialog/plugin.js        |  136 -
 .../ckeditor/plugins/image/dialogs/image.js        | 2365 ++++++------
 .../ckeditor/plugins/image/icons/image.png         |  Bin 0 -> 761 bytes
 .../ckeditor/plugins/image}/images/noimage.png     |  Bin
 .../third-party/ckeditor/plugins/image/lang/af.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ar.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/bg.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/bn.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/bs.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ca.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/cs.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/cy.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/da.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/de.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/el.js  |   26 +
 .../ckeditor/plugins/image/lang/en-au.js           |   26 +
 .../ckeditor/plugins/image/lang/en-ca.js           |   26 +
 .../ckeditor/plugins/image/lang/en-gb.js           |   26 +
 .../third-party/ckeditor/plugins/image/lang/en.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/eo.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/es.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/et.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/eu.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/fa.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/fi.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/fo.js  |   26 +
 .../ckeditor/plugins/image/lang/fr-ca.js           |   26 +
 .../third-party/ckeditor/plugins/image/lang/fr.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/gl.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/gu.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/he.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/hi.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/hr.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/hu.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/is.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/it.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ja.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ka.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/km.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ko.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ku.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/lt.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/lv.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/mk.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/mn.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ms.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/nb.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/nl.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/no.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/pl.js  |   26 +
 .../ckeditor/plugins/image/lang/pt-br.js           |   26 +
 .../third-party/ckeditor/plugins/image/lang/pt.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ro.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ru.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/sk.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/sl.js  |   26 +
 .../ckeditor/plugins/image/lang/sr-latn.js         |   26 +
 .../third-party/ckeditor/plugins/image/lang/sr.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/sv.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/th.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/tr.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/ug.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/uk.js  |   26 +
 .../third-party/ckeditor/plugins/image/lang/vi.js  |   26 +
 .../ckeditor/plugins/image/lang/zh-cn.js           |   26 +
 .../third-party/ckeditor/plugins/image/lang/zh.js  |   26 +
 devel/third-party/ckeditor/plugins/image/plugin.js |  171 +-
 .../ckeditor/plugins/indent/icons/indent-rtl.png   |  Bin 0 -> 725 bytes
 .../ckeditor/plugins/indent/icons/indent.png       |  Bin 0 -> 705 bytes
 .../ckeditor/plugins/indent/icons/outdent-rtl.png  |  Bin 0 -> 703 bytes
 .../ckeditor/plugins/indent/icons/outdent.png      |  Bin 0 -> 697 bytes
 .../third-party/ckeditor/plugins/indent/lang/af.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ar.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/bg.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/bn.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/bs.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ca.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/cs.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/cy.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/da.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/de.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/el.js |    8 +
 .../ckeditor/plugins/indent/lang/en-au.js          |    8 +
 .../ckeditor/plugins/indent/lang/en-ca.js          |    8 +
 .../ckeditor/plugins/indent/lang/en-gb.js          |    8 +
 .../third-party/ckeditor/plugins/indent/lang/en.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/eo.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/es.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/et.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/eu.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/fa.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/fi.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/fo.js |    8 +
 .../ckeditor/plugins/indent/lang/fr-ca.js          |    8 +
 .../third-party/ckeditor/plugins/indent/lang/fr.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/gl.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/gu.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/he.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/hi.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/hr.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/hu.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/is.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/it.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ja.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ka.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/km.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ko.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ku.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/lt.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/lv.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/mk.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/mn.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ms.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/nb.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/nl.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/no.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/pl.js |    8 +
 .../ckeditor/plugins/indent/lang/pt-br.js          |    8 +
 .../third-party/ckeditor/plugins/indent/lang/pt.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ro.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ru.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/sk.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/sl.js |    8 +
 .../ckeditor/plugins/indent/lang/sr-latn.js        |    8 +
 .../third-party/ckeditor/plugins/indent/lang/sr.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/sv.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/th.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/tr.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/ug.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/uk.js |    8 +
 .../third-party/ckeditor/plugins/indent/lang/vi.js |    8 +
 .../ckeditor/plugins/indent/lang/zh-cn.js          |    8 +
 .../third-party/ckeditor/plugins/indent/lang/zh.js |    8 +
 .../third-party/ckeditor/plugins/indent/plugin.js  |  460 ++-
 .../plugins/justify/icons/justifyblock.png         |  Bin 0 -> 495 bytes
 .../plugins/justify/icons/justifycenter.png        |  Bin 0 -> 621 bytes
 .../ckeditor/plugins/justify/icons/justifyleft.png |  Bin 0 -> 558 bytes
 .../plugins/justify/icons/justifyright.png         |  Bin 0 -> 554 bytes
 .../ckeditor/plugins/justify/lang/af.js            |   10 +
 .../ckeditor/plugins/justify/lang/ar.js            |   10 +
 .../ckeditor/plugins/justify/lang/bg.js            |   10 +
 .../ckeditor/plugins/justify/lang/bn.js            |   10 +
 .../ckeditor/plugins/justify/lang/bs.js            |   10 +
 .../ckeditor/plugins/justify/lang/ca.js            |   10 +
 .../ckeditor/plugins/justify/lang/cs.js            |   10 +
 .../ckeditor/plugins/justify/lang/cy.js            |   10 +
 .../ckeditor/plugins/justify/lang/da.js            |   10 +
 .../ckeditor/plugins/justify/lang/de.js            |   10 +
 .../ckeditor/plugins/justify/lang/el.js            |   10 +
 .../ckeditor/plugins/justify/lang/en-au.js         |   10 +
 .../ckeditor/plugins/justify/lang/en-ca.js         |   10 +
 .../ckeditor/plugins/justify/lang/en-gb.js         |   10 +
 .../ckeditor/plugins/justify/lang/en.js            |   10 +
 .../ckeditor/plugins/justify/lang/eo.js            |   10 +
 .../ckeditor/plugins/justify/lang/es.js            |   10 +
 .../ckeditor/plugins/justify/lang/et.js            |   10 +
 .../ckeditor/plugins/justify/lang/eu.js            |   10 +
 .../ckeditor/plugins/justify/lang/fa.js            |   10 +
 .../ckeditor/plugins/justify/lang/fi.js            |   10 +
 .../ckeditor/plugins/justify/lang/fo.js            |   10 +
 .../ckeditor/plugins/justify/lang/fr-ca.js         |   10 +
 .../ckeditor/plugins/justify/lang/fr.js            |   10 +
 .../ckeditor/plugins/justify/lang/gl.js            |   10 +
 .../ckeditor/plugins/justify/lang/gu.js            |   10 +
 .../ckeditor/plugins/justify/lang/he.js            |   10 +
 .../ckeditor/plugins/justify/lang/hi.js            |   10 +
 .../ckeditor/plugins/justify/lang/hr.js            |   10 +
 .../ckeditor/plugins/justify/lang/hu.js            |   10 +
 .../ckeditor/plugins/justify/lang/is.js            |   10 +
 .../ckeditor/plugins/justify/lang/it.js            |   10 +
 .../ckeditor/plugins/justify/lang/ja.js            |   10 +
 .../ckeditor/plugins/justify/lang/ka.js            |   10 +
 .../ckeditor/plugins/justify/lang/km.js            |   10 +
 .../ckeditor/plugins/justify/lang/ko.js            |   10 +
 .../ckeditor/plugins/justify/lang/ku.js            |   10 +
 .../ckeditor/plugins/justify/lang/lt.js            |   10 +
 .../ckeditor/plugins/justify/lang/lv.js            |   10 +
 .../ckeditor/plugins/justify/lang/mk.js            |   10 +
 .../ckeditor/plugins/justify/lang/mn.js            |   10 +
 .../ckeditor/plugins/justify/lang/ms.js            |   10 +
 .../ckeditor/plugins/justify/lang/nb.js            |   10 +
 .../ckeditor/plugins/justify/lang/nl.js            |   10 +
 .../ckeditor/plugins/justify/lang/no.js            |   10 +
 .../ckeditor/plugins/justify/lang/pl.js            |   10 +
 .../ckeditor/plugins/justify/lang/pt-br.js         |   10 +
 .../ckeditor/plugins/justify/lang/pt.js            |   10 +
 .../ckeditor/plugins/justify/lang/ro.js            |   10 +
 .../ckeditor/plugins/justify/lang/ru.js            |   10 +
 .../ckeditor/plugins/justify/lang/sk.js            |   10 +
 .../ckeditor/plugins/justify/lang/sl.js            |   10 +
 .../ckeditor/plugins/justify/lang/sr-latn.js       |   10 +
 .../ckeditor/plugins/justify/lang/sr.js            |   10 +
 .../ckeditor/plugins/justify/lang/sv.js            |   10 +
 .../ckeditor/plugins/justify/lang/th.js            |   10 +
 .../ckeditor/plugins/justify/lang/tr.js            |   10 +
 .../ckeditor/plugins/justify/lang/ug.js            |   10 +
 .../ckeditor/plugins/justify/lang/uk.js            |   10 +
 .../ckeditor/plugins/justify/lang/vi.js            |   10 +
 .../ckeditor/plugins/justify/lang/zh-cn.js         |   10 +
 .../ckeditor/plugins/justify/lang/zh.js            |   10 +
 .../third-party/ckeditor/plugins/justify/plugin.js |  226 +-
 .../ckeditor/plugins/keystrokes/plugin.js          |  229 --
 .../ckeditor/plugins/link/dialogs/anchor.js        |  179 +-
 .../ckeditor/plugins/link/dialogs/link.js          | 2217 +++++------
 .../ckeditor/plugins/link/icons/anchor-rtl.png     |  Bin 0 -> 765 bytes
 .../ckeditor/plugins/link/icons/anchor.png         |  Bin 0 -> 758 bytes
 .../ckeditor/plugins/link/icons/link.png           |  Bin 0 -> 615 bytes
 .../ckeditor/plugins/link/icons/unlink.png         |  Bin 0 -> 779 bytes
 .../ckeditor/plugins/link/images/anchor.png        |  Bin 0 -> 566 bytes
 devel/third-party/ckeditor/plugins/link/lang/af.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ar.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/bg.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/bn.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/bs.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ca.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/cs.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/cy.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/da.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/de.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/el.js |   65 +
 .../ckeditor/plugins/link/lang/en-au.js            |   65 +
 .../ckeditor/plugins/link/lang/en-ca.js            |   65 +
 .../ckeditor/plugins/link/lang/en-gb.js            |   65 +
 devel/third-party/ckeditor/plugins/link/lang/en.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/eo.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/es.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/et.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/eu.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/fa.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/fi.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/fo.js |   65 +
 .../ckeditor/plugins/link/lang/fr-ca.js            |   65 +
 devel/third-party/ckeditor/plugins/link/lang/fr.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/gl.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/gu.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/he.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/hi.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/hr.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/hu.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/is.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/it.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ja.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ka.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/km.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ko.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ku.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/lt.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/lv.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/mk.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/mn.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ms.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/nb.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/nl.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/no.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/pl.js |   65 +
 .../ckeditor/plugins/link/lang/pt-br.js            |   65 +
 devel/third-party/ckeditor/plugins/link/lang/pt.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ro.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ru.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/sk.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/sl.js |   65 +
 .../ckeditor/plugins/link/lang/sr-latn.js          |   65 +
 devel/third-party/ckeditor/plugins/link/lang/sr.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/sv.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/th.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/tr.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/ug.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/uk.js |   65 +
 devel/third-party/ckeditor/plugins/link/lang/vi.js |   65 +
 .../ckeditor/plugins/link/lang/zh-cn.js            |   65 +
 devel/third-party/ckeditor/plugins/link/lang/zh.js |   65 +
 devel/third-party/ckeditor/plugins/link/plugin.js  |  504 ++-
 .../plugins/list/icons/bulletedlist-rtl.png        |  Bin 0 -> 661 bytes
 .../ckeditor/plugins/list/icons/bulletedlist.png   |  Bin 0 -> 642 bytes
 .../plugins/list/icons/numberedlist-rtl.png        |  Bin 0 -> 646 bytes
 .../ckeditor/plugins/list/icons/numberedlist.png   |  Bin 0 -> 634 bytes
 devel/third-party/ckeditor/plugins/list/lang/af.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ar.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/bg.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/bn.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/bs.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ca.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/cs.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/cy.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/da.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/de.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/el.js |    8 +
 .../ckeditor/plugins/list/lang/en-au.js            |    8 +
 .../ckeditor/plugins/list/lang/en-ca.js            |    8 +
 .../ckeditor/plugins/list/lang/en-gb.js            |    8 +
 devel/third-party/ckeditor/plugins/list/lang/en.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/eo.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/es.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/et.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/eu.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/fa.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/fi.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/fo.js |    8 +
 .../ckeditor/plugins/list/lang/fr-ca.js            |    8 +
 devel/third-party/ckeditor/plugins/list/lang/fr.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/gl.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/gu.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/he.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/hi.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/hr.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/hu.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/is.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/it.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ja.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ka.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/km.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ko.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ku.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/lt.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/lv.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/mk.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/mn.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ms.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/nb.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/nl.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/no.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/pl.js |    8 +
 .../ckeditor/plugins/list/lang/pt-br.js            |    8 +
 devel/third-party/ckeditor/plugins/list/lang/pt.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ro.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ru.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/sk.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/sl.js |    8 +
 .../ckeditor/plugins/list/lang/sr-latn.js          |    8 +
 devel/third-party/ckeditor/plugins/list/lang/sr.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/sv.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/th.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/tr.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/ug.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/uk.js |    8 +
 devel/third-party/ckeditor/plugins/list/lang/vi.js |    8 +
 .../ckeditor/plugins/list/lang/zh-cn.js            |    8 +
 devel/third-party/ckeditor/plugins/list/lang/zh.js |    8 +
 devel/third-party/ckeditor/plugins/list/plugin.js  |  974 +++--
 .../ckeditor/plugins/listblock/plugin.js           |  423 +-
 .../plugins/liststyle/dialogs/liststyle.js         |  296 +-
 .../ckeditor/plugins/liststyle/lang/af.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ar.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/bg.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/bn.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/bs.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ca.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/cs.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/cy.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/da.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/de.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/el.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/en-au.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/en-ca.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/en-gb.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/en.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/eo.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/es.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/et.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/eu.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/fa.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/fi.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/fo.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/fr-ca.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/fr.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/gl.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/gu.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/he.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/hi.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/hr.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/hu.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/is.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/it.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ja.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ka.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/km.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ko.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ku.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/lt.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/lv.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/mk.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/mn.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ms.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/nb.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/nl.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/no.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/pl.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/pt-br.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/pt.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ro.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ru.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/sk.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/sl.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/sr-latn.js     |   25 +
 .../ckeditor/plugins/liststyle/lang/sr.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/sv.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/th.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/tr.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/ug.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/uk.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/vi.js          |   25 +
 .../ckeditor/plugins/liststyle/lang/zh-cn.js       |   25 +
 .../ckeditor/plugins/liststyle/lang/zh.js          |   25 +
 .../ckeditor/plugins/liststyle/plugin.js           |   87 +-
 .../ckeditor/plugins/magicline/dev/magicline.html  |  594 +++
 .../ckeditor/plugins/magicline/images/icon.png     |  Bin 0 -> 172 bytes
 .../ckeditor/plugins/magicline/lang/en.js          |    8 +
 .../ckeditor/plugins/magicline/lang/pl.js          |    8 +
 .../ckeditor/plugins/magicline/plugin.js           | 1732 +++++++++
 .../plugins/magicline/samples/magicline.html       |  203 +
 .../ckeditor/plugins/maximize/icons/maximize.png   |  Bin 0 -> 928 bytes
 .../ckeditor/plugins/maximize/lang/af.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ar.js           |    8 +
 .../ckeditor/plugins/maximize/lang/bg.js           |    8 +
 .../ckeditor/plugins/maximize/lang/bn.js           |    8 +
 .../ckeditor/plugins/maximize/lang/bs.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ca.js           |    8 +
 .../ckeditor/plugins/maximize/lang/cs.js           |    8 +
 .../ckeditor/plugins/maximize/lang/cy.js           |    8 +
 .../ckeditor/plugins/maximize/lang/da.js           |    8 +
 .../ckeditor/plugins/maximize/lang/de.js           |    8 +
 .../ckeditor/plugins/maximize/lang/el.js           |    8 +
 .../ckeditor/plugins/maximize/lang/en-au.js        |    8 +
 .../ckeditor/plugins/maximize/lang/en-ca.js        |    8 +
 .../ckeditor/plugins/maximize/lang/en-gb.js        |    8 +
 .../ckeditor/plugins/maximize/lang/en.js           |    8 +
 .../ckeditor/plugins/maximize/lang/eo.js           |    8 +
 .../ckeditor/plugins/maximize/lang/es.js           |    8 +
 .../ckeditor/plugins/maximize/lang/et.js           |    8 +
 .../ckeditor/plugins/maximize/lang/eu.js           |    8 +
 .../ckeditor/plugins/maximize/lang/fa.js           |    8 +
 .../ckeditor/plugins/maximize/lang/fi.js           |    8 +
 .../ckeditor/plugins/maximize/lang/fo.js           |    8 +
 .../ckeditor/plugins/maximize/lang/fr-ca.js        |    8 +
 .../ckeditor/plugins/maximize/lang/fr.js           |    8 +
 .../ckeditor/plugins/maximize/lang/gl.js           |    8 +
 .../ckeditor/plugins/maximize/lang/gu.js           |    8 +
 .../ckeditor/plugins/maximize/lang/he.js           |    8 +
 .../ckeditor/plugins/maximize/lang/hi.js           |    8 +
 .../ckeditor/plugins/maximize/lang/hr.js           |    8 +
 .../ckeditor/plugins/maximize/lang/hu.js           |    8 +
 .../ckeditor/plugins/maximize/lang/is.js           |    8 +
 .../ckeditor/plugins/maximize/lang/it.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ja.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ka.js           |    8 +
 .../ckeditor/plugins/maximize/lang/km.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ko.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ku.js           |    8 +
 .../ckeditor/plugins/maximize/lang/lt.js           |    8 +
 .../ckeditor/plugins/maximize/lang/lv.js           |    8 +
 .../ckeditor/plugins/maximize/lang/mk.js           |    8 +
 .../ckeditor/plugins/maximize/lang/mn.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ms.js           |    8 +
 .../ckeditor/plugins/maximize/lang/nb.js           |    8 +
 .../ckeditor/plugins/maximize/lang/nl.js           |    8 +
 .../ckeditor/plugins/maximize/lang/no.js           |    8 +
 .../ckeditor/plugins/maximize/lang/pl.js           |    8 +
 .../ckeditor/plugins/maximize/lang/pt-br.js        |    8 +
 .../ckeditor/plugins/maximize/lang/pt.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ro.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ru.js           |    8 +
 .../ckeditor/plugins/maximize/lang/sk.js           |    8 +
 .../ckeditor/plugins/maximize/lang/sl.js           |    8 +
 .../ckeditor/plugins/maximize/lang/sr-latn.js      |    8 +
 .../ckeditor/plugins/maximize/lang/sr.js           |    8 +
 .../ckeditor/plugins/maximize/lang/sv.js           |    8 +
 .../ckeditor/plugins/maximize/lang/th.js           |    8 +
 .../ckeditor/plugins/maximize/lang/tr.js           |    8 +
 .../ckeditor/plugins/maximize/lang/ug.js           |    8 +
 .../ckeditor/plugins/maximize/lang/uk.js           |    8 +
 .../ckeditor/plugins/maximize/lang/vi.js           |    8 +
 .../ckeditor/plugins/maximize/lang/zh-cn.js        |    8 +
 .../ckeditor/plugins/maximize/lang/zh.js           |    8 +
 .../ckeditor/plugins/maximize/plugin.js            |  452 +--
 devel/third-party/ckeditor/plugins/menu/plugin.js  |  627 +--
 .../ckeditor/plugins/menubutton/plugin.js          |  179 +-
 .../ckeditor/plugins/newpage/icons/newpage-rtl.png |  Bin 0 -> 574 bytes
 .../ckeditor/plugins/newpage/icons/newpage.png     |  Bin 0 -> 584 bytes
 .../ckeditor/plugins/newpage/lang/af.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ar.js            |    7 +
 .../ckeditor/plugins/newpage/lang/bg.js            |    7 +
 .../ckeditor/plugins/newpage/lang/bn.js            |    7 +
 .../ckeditor/plugins/newpage/lang/bs.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ca.js            |    7 +
 .../ckeditor/plugins/newpage/lang/cs.js            |    7 +
 .../ckeditor/plugins/newpage/lang/cy.js            |    7 +
 .../ckeditor/plugins/newpage/lang/da.js            |    7 +
 .../ckeditor/plugins/newpage/lang/de.js            |    7 +
 .../ckeditor/plugins/newpage/lang/el.js            |    7 +
 .../ckeditor/plugins/newpage/lang/en-au.js         |    7 +
 .../ckeditor/plugins/newpage/lang/en-ca.js         |    7 +
 .../ckeditor/plugins/newpage/lang/en-gb.js         |    7 +
 .../ckeditor/plugins/newpage/lang/en.js            |    7 +
 .../ckeditor/plugins/newpage/lang/eo.js            |    7 +
 .../ckeditor/plugins/newpage/lang/es.js            |    7 +
 .../ckeditor/plugins/newpage/lang/et.js            |    7 +
 .../ckeditor/plugins/newpage/lang/eu.js            |    7 +
 .../ckeditor/plugins/newpage/lang/fa.js            |    7 +
 .../ckeditor/plugins/newpage/lang/fi.js            |    7 +
 .../ckeditor/plugins/newpage/lang/fo.js            |    7 +
 .../ckeditor/plugins/newpage/lang/fr-ca.js         |    7 +
 .../ckeditor/plugins/newpage/lang/fr.js            |    7 +
 .../ckeditor/plugins/newpage/lang/gl.js            |    7 +
 .../ckeditor/plugins/newpage/lang/gu.js            |    7 +
 .../ckeditor/plugins/newpage/lang/he.js            |    7 +
 .../ckeditor/plugins/newpage/lang/hi.js            |    7 +
 .../ckeditor/plugins/newpage/lang/hr.js            |    7 +
 .../ckeditor/plugins/newpage/lang/hu.js            |    7 +
 .../ckeditor/plugins/newpage/lang/is.js            |    7 +
 .../ckeditor/plugins/newpage/lang/it.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ja.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ka.js            |    7 +
 .../ckeditor/plugins/newpage/lang/km.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ko.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ku.js            |    7 +
 .../ckeditor/plugins/newpage/lang/lt.js            |    7 +
 .../ckeditor/plugins/newpage/lang/lv.js            |    7 +
 .../ckeditor/plugins/newpage/lang/mk.js            |    7 +
 .../ckeditor/plugins/newpage/lang/mn.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ms.js            |    7 +
 .../ckeditor/plugins/newpage/lang/nb.js            |    7 +
 .../ckeditor/plugins/newpage/lang/nl.js            |    7 +
 .../ckeditor/plugins/newpage/lang/no.js            |    7 +
 .../ckeditor/plugins/newpage/lang/pl.js            |    7 +
 .../ckeditor/plugins/newpage/lang/pt-br.js         |    7 +
 .../ckeditor/plugins/newpage/lang/pt.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ro.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ru.js            |    7 +
 .../ckeditor/plugins/newpage/lang/sk.js            |    7 +
 .../ckeditor/plugins/newpage/lang/sl.js            |    7 +
 .../ckeditor/plugins/newpage/lang/sr-latn.js       |    7 +
 .../ckeditor/plugins/newpage/lang/sr.js            |    7 +
 .../ckeditor/plugins/newpage/lang/sv.js            |    7 +
 .../ckeditor/plugins/newpage/lang/th.js            |    7 +
 .../ckeditor/plugins/newpage/lang/tr.js            |    7 +
 .../ckeditor/plugins/newpage/lang/ug.js            |    7 +
 .../ckeditor/plugins/newpage/lang/uk.js            |    7 +
 .../ckeditor/plugins/newpage/lang/vi.js            |    7 +
 .../ckeditor/plugins/newpage/lang/zh-cn.js         |    7 +
 .../ckeditor/plugins/newpage/lang/zh.js            |    7 +
 .../third-party/ckeditor/plugins/newpage/plugin.js |   78 +-
 .../plugins/pagebreak/icons/pagebreak-rtl.png      |  Bin 0 -> 628 bytes
 .../ckeditor/plugins/pagebreak/icons/pagebreak.png |  Bin 0 -> 603 bytes
 .../plugins/pagebreak/images/pagebreak.gif         |  Bin
 .../ckeditor/plugins/pagebreak/lang/af.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ar.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/bg.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/bn.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/bs.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ca.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/cs.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/cy.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/da.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/de.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/el.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/en-au.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/en-ca.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/en-gb.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/en.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/eo.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/es.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/et.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/eu.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/fa.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/fi.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/fo.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/fr-ca.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/fr.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/gl.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/gu.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/he.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/hi.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/hr.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/hu.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/is.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/it.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ja.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ka.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/km.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ko.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ku.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/lt.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/lv.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/mk.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/mn.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ms.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/nb.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/nl.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/no.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/pl.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/pt-br.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/pt.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ro.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ru.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/sk.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/sl.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/sr-latn.js     |    8 +
 .../ckeditor/plugins/pagebreak/lang/sr.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/sv.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/th.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/tr.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/ug.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/uk.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/vi.js          |    8 +
 .../ckeditor/plugins/pagebreak/lang/zh-cn.js       |    8 +
 .../ckeditor/plugins/pagebreak/lang/zh.js          |    8 +
 .../ckeditor/plugins/pagebreak/plugin.js           |  202 +-
 devel/third-party/ckeditor/plugins/panel/plugin.js |  685 ++--
 .../ckeditor/plugins/panelbutton/plugin.js         |  213 +-
 .../plugins/pastefromword/filter/default.js        | 1407 +++----
 .../pastefromword/icons/pastefromword-rtl.png      |  Bin 0 -> 730 bytes
 .../plugins/pastefromword/icons/pastefromword.png  |  Bin 0 -> 729 bytes
 .../ckeditor/plugins/pastefromword/lang/af.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ar.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/bg.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/bn.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/bs.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ca.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/cs.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/cy.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/da.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/de.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/el.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/en-au.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/en-ca.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/en-gb.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/en.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/eo.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/es.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/et.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/eu.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/fa.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/fi.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/fo.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/fr-ca.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/fr.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/gl.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/gu.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/he.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/hi.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/hr.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/hu.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/is.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/it.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ja.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ka.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/km.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ko.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ku.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/lt.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/lv.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/mk.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/mn.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ms.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/nb.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/nl.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/no.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/pl.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/pt-br.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/pt.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ro.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ru.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/sk.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/sl.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/sr-latn.js |   10 +
 .../ckeditor/plugins/pastefromword/lang/sr.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/sv.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/th.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/tr.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/ug.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/uk.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/vi.js      |   10 +
 .../ckeditor/plugins/pastefromword/lang/zh-cn.js   |   10 +
 .../ckeditor/plugins/pastefromword/lang/zh.js      |   10 +
 .../ckeditor/plugins/pastefromword/plugin.js       |  204 +-
 .../plugins/pastetext/dialogs/pastetext.js         |   70 -
 .../plugins/pastetext/icons/pastetext-rtl.png      |  Bin 0 -> 767 bytes
 .../ckeditor/plugins/pastetext/icons/pastetext.png |  Bin 0 -> 767 bytes
 .../ckeditor/plugins/pastetext/lang/af.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ar.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/bg.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/bn.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/bs.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ca.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/cs.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/cy.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/da.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/de.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/el.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/en-au.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/en-ca.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/en-gb.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/en.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/eo.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/es.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/et.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/eu.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/fa.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/fi.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/fo.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/fr-ca.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/fr.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/gl.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/gu.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/he.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/hi.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/hr.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/hu.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/is.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/it.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ja.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ka.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/km.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ko.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ku.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/lt.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/lv.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/mk.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/mn.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ms.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/nb.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/nl.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/no.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/pl.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/pt-br.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/pt.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ro.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ru.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/sk.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/sl.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/sr-latn.js     |    8 +
 .../ckeditor/plugins/pastetext/lang/sr.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/sv.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/th.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/tr.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/ug.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/uk.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/vi.js          |    8 +
 .../ckeditor/plugins/pastetext/lang/zh-cn.js       |    8 +
 .../ckeditor/plugins/pastetext/lang/zh.js          |    8 +
 .../ckeditor/plugins/pastetext/plugin.js           |  178 +-
 devel/third-party/ckeditor/plugins/popup/plugin.js |   47 +-
 .../ckeditor/plugins/preview/icons/preview-rtl.png |  Bin 0 -> 849 bytes
 .../ckeditor/plugins/preview/icons/preview.png     |  Bin 0 -> 858 bytes
 .../ckeditor/plugins/preview/lang/af.js            |    7 +
 .../ckeditor/plugins/preview/lang/ar.js            |    7 +
 .../ckeditor/plugins/preview/lang/bg.js            |    7 +
 .../ckeditor/plugins/preview/lang/bn.js            |    7 +
 .../ckeditor/plugins/preview/lang/bs.js            |    7 +
 .../ckeditor/plugins/preview/lang/ca.js            |    7 +
 .../ckeditor/plugins/preview/lang/cs.js            |    7 +
 .../ckeditor/plugins/preview/lang/cy.js            |    7 +
 .../ckeditor/plugins/preview/lang/da.js            |    7 +
 .../ckeditor/plugins/preview/lang/de.js            |    7 +
 .../ckeditor/plugins/preview/lang/el.js            |    7 +
 .../ckeditor/plugins/preview/lang/en-au.js         |    7 +
 .../ckeditor/plugins/preview/lang/en-ca.js         |    7 +
 .../ckeditor/plugins/preview/lang/en-gb.js         |    7 +
 .../ckeditor/plugins/preview/lang/en.js            |    7 +
 .../ckeditor/plugins/preview/lang/eo.js            |    7 +
 .../ckeditor/plugins/preview/lang/es.js            |    7 +
 .../ckeditor/plugins/preview/lang/et.js            |    7 +
 .../ckeditor/plugins/preview/lang/eu.js            |    7 +
 .../ckeditor/plugins/preview/lang/fa.js            |    7 +
 .../ckeditor/plugins/preview/lang/fi.js            |    7 +
 .../ckeditor/plugins/preview/lang/fo.js            |    7 +
 .../ckeditor/plugins/preview/lang/fr-ca.js         |    7 +
 .../ckeditor/plugins/preview/lang/fr.js            |    7 +
 .../ckeditor/plugins/preview/lang/gl.js            |    7 +
 .../ckeditor/plugins/preview/lang/gu.js            |    7 +
 .../ckeditor/plugins/preview/lang/he.js            |    7 +
 .../ckeditor/plugins/preview/lang/hi.js            |    7 +
 .../ckeditor/plugins/preview/lang/hr.js            |    7 +
 .../ckeditor/plugins/preview/lang/hu.js            |    7 +
 .../ckeditor/plugins/preview/lang/is.js            |    7 +
 .../ckeditor/plugins/preview/lang/it.js            |    7 +
 .../ckeditor/plugins/preview/lang/ja.js            |    7 +
 .../ckeditor/plugins/preview/lang/ka.js            |    7 +
 .../ckeditor/plugins/preview/lang/km.js            |    7 +
 .../ckeditor/plugins/preview/lang/ko.js            |    7 +
 .../ckeditor/plugins/preview/lang/ku.js            |    7 +
 .../ckeditor/plugins/preview/lang/lt.js            |    7 +
 .../ckeditor/plugins/preview/lang/lv.js            |    7 +
 .../ckeditor/plugins/preview/lang/mk.js            |    7 +
 .../ckeditor/plugins/preview/lang/mn.js            |    7 +
 .../ckeditor/plugins/preview/lang/ms.js            |    7 +
 .../ckeditor/plugins/preview/lang/nb.js            |    7 +
 .../ckeditor/plugins/preview/lang/nl.js            |    7 +
 .../ckeditor/plugins/preview/lang/no.js            |    7 +
 .../ckeditor/plugins/preview/lang/pl.js            |    7 +
 .../ckeditor/plugins/preview/lang/pt-br.js         |    7 +
 .../ckeditor/plugins/preview/lang/pt.js            |    7 +
 .../ckeditor/plugins/preview/lang/ro.js            |    7 +
 .../ckeditor/plugins/preview/lang/ru.js            |    7 +
 .../ckeditor/plugins/preview/lang/sk.js            |    7 +
 .../ckeditor/plugins/preview/lang/sl.js            |    7 +
 .../ckeditor/plugins/preview/lang/sr-latn.js       |    7 +
 .../ckeditor/plugins/preview/lang/sr.js            |    7 +
 .../ckeditor/plugins/preview/lang/sv.js            |    7 +
 .../ckeditor/plugins/preview/lang/th.js            |    7 +
 .../ckeditor/plugins/preview/lang/tr.js            |    7 +
 .../ckeditor/plugins/preview/lang/ug.js            |    7 +
 .../ckeditor/plugins/preview/lang/uk.js            |    7 +
 .../ckeditor/plugins/preview/lang/vi.js            |    7 +
 .../ckeditor/plugins/preview/lang/zh-cn.js         |    7 +
 .../ckeditor/plugins/preview/lang/zh.js            |    7 +
 .../third-party/ckeditor/plugins/preview/plugin.js |  117 +-
 .../ckeditor/plugins/preview/preview.html          |   10 +
 .../ckeditor/plugins/print/icons/print.png         |  Bin 0 -> 763 bytes
 .../third-party/ckeditor/plugins/print/lang/af.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ar.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/bg.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/bn.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/bs.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ca.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/cs.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/cy.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/da.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/de.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/el.js  |    7 +
 .../ckeditor/plugins/print/lang/en-au.js           |    7 +
 .../ckeditor/plugins/print/lang/en-ca.js           |    7 +
 .../ckeditor/plugins/print/lang/en-gb.js           |    7 +
 .../third-party/ckeditor/plugins/print/lang/en.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/eo.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/es.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/et.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/eu.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/fa.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/fi.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/fo.js  |    7 +
 .../ckeditor/plugins/print/lang/fr-ca.js           |    7 +
 .../third-party/ckeditor/plugins/print/lang/fr.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/gl.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/gu.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/he.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/hi.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/hr.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/hu.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/is.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/it.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ja.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ka.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/km.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ko.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ku.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/lt.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/lv.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/mk.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/mn.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ms.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/nb.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/nl.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/no.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/pl.js  |    7 +
 .../ckeditor/plugins/print/lang/pt-br.js           |    7 +
 .../third-party/ckeditor/plugins/print/lang/pt.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ro.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ru.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/sk.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/sl.js  |    7 +
 .../ckeditor/plugins/print/lang/sr-latn.js         |    7 +
 .../third-party/ckeditor/plugins/print/lang/sr.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/sv.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/th.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/tr.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/ug.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/uk.js  |    7 +
 .../third-party/ckeditor/plugins/print/lang/vi.js  |    7 +
 .../ckeditor/plugins/print/lang/zh-cn.js           |    7 +
 .../third-party/ckeditor/plugins/print/lang/zh.js  |    7 +
 devel/third-party/ckeditor/plugins/print/plugin.js |   45 +-
 .../plugins/removeformat/icons/removeformat.png    |  Bin 0 -> 889 bytes
 .../ckeditor/plugins/removeformat/lang/af.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ar.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/bg.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/bn.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/bs.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ca.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/cs.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/cy.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/da.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/de.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/el.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/en-au.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/en-ca.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/en-gb.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/en.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/eo.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/es.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/et.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/eu.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/fa.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/fi.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/fo.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/fr-ca.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/fr.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/gl.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/gu.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/he.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/hi.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/hr.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/hu.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/is.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/it.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ja.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ka.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/km.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ko.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ku.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/lt.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/lv.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/mk.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/mn.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ms.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/nb.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/nl.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/no.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/pl.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/pt-br.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/pt.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ro.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ru.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/sk.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/sl.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/sr-latn.js  |    7 +
 .../ckeditor/plugins/removeformat/lang/sr.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/sv.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/th.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/tr.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/ug.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/uk.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/vi.js       |    7 +
 .../ckeditor/plugins/removeformat/lang/zh-cn.js    |    7 +
 .../ckeditor/plugins/removeformat/lang/zh.js       |    7 +
 .../ckeditor/plugins/removeformat/plugin.js        |  223 +-
 .../third-party/ckeditor/plugins/resize/plugin.js  |  228 +-
 .../ckeditor/plugins/richcombo/plugin.js           |  636 +--
 .../ckeditor/plugins/save/icons/save.png           |  Bin 0 -> 717 bytes
 devel/third-party/ckeditor/plugins/save/lang/af.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ar.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/bg.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/bn.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/bs.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ca.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/cs.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/cy.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/da.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/de.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/el.js |    7 +
 .../ckeditor/plugins/save/lang/en-au.js            |    7 +
 .../ckeditor/plugins/save/lang/en-ca.js            |    7 +
 .../ckeditor/plugins/save/lang/en-gb.js            |    7 +
 devel/third-party/ckeditor/plugins/save/lang/en.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/eo.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/es.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/et.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/eu.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/fa.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/fi.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/fo.js |    7 +
 .../ckeditor/plugins/save/lang/fr-ca.js            |    7 +
 devel/third-party/ckeditor/plugins/save/lang/fr.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/gl.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/gu.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/he.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/hi.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/hr.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/hu.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/is.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/it.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ja.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ka.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/km.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ko.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ku.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/lt.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/lv.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/mk.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/mn.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ms.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/nb.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/nl.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/no.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/pl.js |    7 +
 .../ckeditor/plugins/save/lang/pt-br.js            |    7 +
 devel/third-party/ckeditor/plugins/save/lang/pt.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ro.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ru.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/sk.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/sl.js |    7 +
 .../ckeditor/plugins/save/lang/sr-latn.js          |    7 +
 devel/third-party/ckeditor/plugins/save/lang/sr.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/sv.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/th.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/tr.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/ug.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/uk.js |    7 +
 devel/third-party/ckeditor/plugins/save/lang/vi.js |    7 +
 .../ckeditor/plugins/save/lang/zh-cn.js            |    7 +
 devel/third-party/ckeditor/plugins/save/lang/zh.js |    7 +
 devel/third-party/ckeditor/plugins/save/plugin.js  |   56 +-
 .../third-party/ckeditor/plugins/scayt/LICENSE.md  |   28 +
 devel/third-party/ckeditor/plugins/scayt/README.md |   25 +
 .../ckeditor/plugins/scayt/dialogs/options.js      |  769 ++--
 .../ckeditor/plugins/scayt/icons/scayt.png         |  Bin 0 -> 839 bytes
 .../third-party/ckeditor/plugins/scayt/lang/af.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ar.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/bg.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/bn.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/bs.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ca.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/cs.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/cy.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/da.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/de.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/el.js  |   34 +
 .../ckeditor/plugins/scayt/lang/en-au.js           |   34 +
 .../ckeditor/plugins/scayt/lang/en-ca.js           |   34 +
 .../ckeditor/plugins/scayt/lang/en-gb.js           |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/en.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/eo.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/es.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/et.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/eu.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/fa.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/fi.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/fo.js  |   34 +
 .../ckeditor/plugins/scayt/lang/fr-ca.js           |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/fr.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/gl.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/gu.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/he.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/hi.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/hr.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/hu.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/is.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/it.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ja.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ka.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/km.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ko.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ku.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/lt.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/lv.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/mk.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/mn.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ms.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/nb.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/nl.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/no.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/pl.js  |   34 +
 .../ckeditor/plugins/scayt/lang/pt-br.js           |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/pt.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ro.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ru.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/sk.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/sl.js  |   34 +
 .../ckeditor/plugins/scayt/lang/sr-latn.js         |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/sr.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/sv.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/th.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/tr.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/ug.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/uk.js  |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/vi.js  |   34 +
 .../ckeditor/plugins/scayt/lang/zh-cn.js           |   34 +
 .../third-party/ckeditor/plugins/scayt/lang/zh.js  |   34 +
 devel/third-party/ckeditor/plugins/scayt/plugin.js | 1229 +++---
 .../ckeditor/plugins/selectall/icons/selectall.png |  Bin 0 -> 710 bytes
 .../ckeditor/plugins/selectall/lang/af.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ar.js          |    7 +
 .../ckeditor/plugins/selectall/lang/bg.js          |    7 +
 .../ckeditor/plugins/selectall/lang/bn.js          |    7 +
 .../ckeditor/plugins/selectall/lang/bs.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ca.js          |    7 +
 .../ckeditor/plugins/selectall/lang/cs.js          |    7 +
 .../ckeditor/plugins/selectall/lang/cy.js          |    7 +
 .../ckeditor/plugins/selectall/lang/da.js          |    7 +
 .../ckeditor/plugins/selectall/lang/de.js          |    7 +
 .../ckeditor/plugins/selectall/lang/el.js          |    7 +
 .../ckeditor/plugins/selectall/lang/en-au.js       |    7 +
 .../ckeditor/plugins/selectall/lang/en-ca.js       |    7 +
 .../ckeditor/plugins/selectall/lang/en-gb.js       |    7 +
 .../ckeditor/plugins/selectall/lang/en.js          |    7 +
 .../ckeditor/plugins/selectall/lang/eo.js          |    7 +
 .../ckeditor/plugins/selectall/lang/es.js          |    7 +
 .../ckeditor/plugins/selectall/lang/et.js          |    7 +
 .../ckeditor/plugins/selectall/lang/eu.js          |    7 +
 .../ckeditor/plugins/selectall/lang/fa.js          |    7 +
 .../ckeditor/plugins/selectall/lang/fi.js          |    7 +
 .../ckeditor/plugins/selectall/lang/fo.js          |    7 +
 .../ckeditor/plugins/selectall/lang/fr-ca.js       |    7 +
 .../ckeditor/plugins/selectall/lang/fr.js          |    7 +
 .../ckeditor/plugins/selectall/lang/gl.js          |    7 +
 .../ckeditor/plugins/selectall/lang/gu.js          |    7 +
 .../ckeditor/plugins/selectall/lang/he.js          |    7 +
 .../ckeditor/plugins/selectall/lang/hi.js          |    7 +
 .../ckeditor/plugins/selectall/lang/hr.js          |    7 +
 .../ckeditor/plugins/selectall/lang/hu.js          |    7 +
 .../ckeditor/plugins/selectall/lang/is.js          |    7 +
 .../ckeditor/plugins/selectall/lang/it.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ja.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ka.js          |    7 +
 .../ckeditor/plugins/selectall/lang/km.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ko.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ku.js          |    7 +
 .../ckeditor/plugins/selectall/lang/lt.js          |    7 +
 .../ckeditor/plugins/selectall/lang/lv.js          |    7 +
 .../ckeditor/plugins/selectall/lang/mk.js          |    7 +
 .../ckeditor/plugins/selectall/lang/mn.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ms.js          |    7 +
 .../ckeditor/plugins/selectall/lang/nb.js          |    7 +
 .../ckeditor/plugins/selectall/lang/nl.js          |    7 +
 .../ckeditor/plugins/selectall/lang/no.js          |    7 +
 .../ckeditor/plugins/selectall/lang/pl.js          |    7 +
 .../ckeditor/plugins/selectall/lang/pt-br.js       |    7 +
 .../ckeditor/plugins/selectall/lang/pt.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ro.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ru.js          |    7 +
 .../ckeditor/plugins/selectall/lang/sk.js          |    7 +
 .../ckeditor/plugins/selectall/lang/sl.js          |    7 +
 .../ckeditor/plugins/selectall/lang/sr-latn.js     |    7 +
 .../ckeditor/plugins/selectall/lang/sr.js          |    7 +
 .../ckeditor/plugins/selectall/lang/sv.js          |    7 +
 .../ckeditor/plugins/selectall/lang/th.js          |    7 +
 .../ckeditor/plugins/selectall/lang/tr.js          |    7 +
 .../ckeditor/plugins/selectall/lang/ug.js          |    7 +
 .../ckeditor/plugins/selectall/lang/uk.js          |    7 +
 .../ckeditor/plugins/selectall/lang/vi.js          |    7 +
 .../ckeditor/plugins/selectall/lang/zh-cn.js       |    7 +
 .../ckeditor/plugins/selectall/lang/zh.js          |    7 +
 .../ckeditor/plugins/selectall/plugin.js           |   57 +
 .../ckeditor/plugins/selection/plugin.js           | 1367 -------
 .../plugins/showblocks/icons/showblocks-rtl.png    |  Bin 0 -> 681 bytes
 .../plugins/showblocks/icons/showblocks.png        |  Bin 0 -> 692 bytes
 .../plugins/showblocks/images/block_address.png    |  Bin
 .../plugins/showblocks/images/block_blockquote.png |  Bin
 .../plugins/showblocks/images/block_div.png        |  Bin
 .../plugins/showblocks/images/block_h1.png         |  Bin
 .../plugins/showblocks/images/block_h2.png         |  Bin
 .../plugins/showblocks/images/block_h3.png         |  Bin
 .../plugins/showblocks/images/block_h4.png         |  Bin
 .../plugins/showblocks/images/block_h5.png         |  Bin
 .../plugins/showblocks/images/block_h6.png         |  Bin
 .../plugins/showblocks/images/block_p.png          |  Bin
 .../plugins/showblocks/images/block_pre.png        |  Bin
 .../ckeditor/plugins/showblocks/lang/af.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ar.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/bg.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/bn.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/bs.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ca.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/cs.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/cy.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/da.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/de.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/el.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/en-au.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/en-ca.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/en-gb.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/en.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/eo.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/es.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/et.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/eu.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/fa.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/fi.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/fo.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/fr-ca.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/fr.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/gl.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/gu.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/he.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/hi.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/hr.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/hu.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/is.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/it.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ja.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ka.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/km.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ko.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ku.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/lt.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/lv.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/mk.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/mn.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ms.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/nb.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/nl.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/no.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/pl.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/pt-br.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/pt.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ro.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ru.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/sk.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/sl.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/sr-latn.js    |    7 +
 .../ckeditor/plugins/showblocks/lang/sr.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/sv.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/th.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/tr.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/ug.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/uk.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/vi.js         |    7 +
 .../ckeditor/plugins/showblocks/lang/zh-cn.js      |    7 +
 .../ckeditor/plugins/showblocks/lang/zh.js         |    7 +
 .../ckeditor/plugins/showblocks/plugin.js          |  278 +-
 .../ckeditor/plugins/showborders/plugin.js         |  251 +-
 .../ckeditor/plugins/smiley/dialogs/smiley.js      |  234 +-
 .../ckeditor/plugins/smiley/icons/smiley.png       |  Bin 0 -> 921 bytes
 .../plugins/smiley/images/angel_smile.gif          |  Bin
 .../plugins/smiley/images/angry_smile.gif          |  Bin
 .../plugins/smiley/images/broken_heart.gif         |  Bin
 .../plugins/smiley/images/confused_smile.gif       |  Bin
 .../ckeditor}/plugins/smiley/images/cry_smile.gif  |  Bin
 .../plugins/smiley/images/devil_smile.gif          |  Bin
 .../plugins/smiley/images/embaressed_smile.gif     |  Bin
 .../plugins/smiley/images/embarrassed_smile.gif    |  Bin
 .../ckeditor}/plugins/smiley/images/envelope.gif   |  Bin
 .../ckeditor}/plugins/smiley/images/heart.gif      |  Bin
 .../ckeditor}/plugins/smiley/images/kiss.gif       |  Bin
 .../ckeditor}/plugins/smiley/images/lightbulb.gif  |  Bin
 .../ckeditor}/plugins/smiley/images/omg_smile.gif  |  Bin
 .../plugins/smiley/images/regular_smile.gif        |  Bin
 .../ckeditor}/plugins/smiley/images/sad_smile.gif  |  Bin
 .../plugins/smiley/images/shades_smile.gif         |  Bin
 .../plugins/smiley/images/teeth_smile.gif          |  Bin
 .../plugins/smiley/images/thumbs_down.gif          |  Bin
 .../ckeditor}/plugins/smiley/images/thumbs_up.gif  |  Bin
 .../plugins/smiley/images/tongue_smile.gif         |  Bin
 .../plugins/smiley/images/tounge_smile.gif         |  Bin
 .../smiley/images/whatchutalkingabout_smile.gif    |  Bin
 .../ckeditor}/plugins/smiley/images/wink_smile.gif |  Bin
 .../third-party/ckeditor/plugins/smiley/lang/af.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ar.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/bg.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/bn.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/bs.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ca.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/cs.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/cy.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/da.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/de.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/el.js |    9 +
 .../ckeditor/plugins/smiley/lang/en-au.js          |    9 +
 .../ckeditor/plugins/smiley/lang/en-ca.js          |    9 +
 .../ckeditor/plugins/smiley/lang/en-gb.js          |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/en.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/eo.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/es.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/et.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/eu.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/fa.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/fi.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/fo.js |    9 +
 .../ckeditor/plugins/smiley/lang/fr-ca.js          |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/fr.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/gl.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/gu.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/he.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/hi.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/hr.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/hu.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/is.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/it.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ja.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ka.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/km.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ko.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ku.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/lt.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/lv.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/mk.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/mn.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ms.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/nb.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/nl.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/no.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/pl.js |    9 +
 .../ckeditor/plugins/smiley/lang/pt-br.js          |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/pt.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ro.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ru.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/sk.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/sl.js |    9 +
 .../ckeditor/plugins/smiley/lang/sr-latn.js        |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/sr.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/sv.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/th.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/tr.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/ug.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/uk.js |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/vi.js |    9 +
 .../ckeditor/plugins/smiley/lang/zh-cn.js          |    9 +
 .../third-party/ckeditor/plugins/smiley/lang/zh.js |    9 +
 .../third-party/ckeditor/plugins/smiley/plugin.js  |  139 +-
 .../plugins/sourcearea/icons/source-rtl.png        |  Bin 0 -> 760 bytes
 .../ckeditor/plugins/sourcearea/icons/source.png   |  Bin 0 -> 768 bytes
 .../ckeditor/plugins/sourcearea/lang/af.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ar.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/bg.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/bn.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/bs.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ca.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/cs.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/cy.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/da.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/de.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/el.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/en-au.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/en-ca.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/en-gb.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/en.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/eo.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/es.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/et.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/eu.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/fa.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/fi.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/fo.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/fr-ca.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/fr.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/gl.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/gu.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/he.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/hi.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/hr.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/hu.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/is.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/it.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ja.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ka.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/km.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ko.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ku.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/lt.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/lv.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/mk.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/mn.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ms.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/nb.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/nl.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/no.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/pl.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/pt-br.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/pt.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ro.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ru.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/sk.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/sl.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/sr-latn.js    |    7 +
 .../ckeditor/plugins/sourcearea/lang/sr.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/sv.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/th.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/tr.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/ug.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/uk.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/vi.js         |    7 +
 .../ckeditor/plugins/sourcearea/lang/zh-cn.js      |    7 +
 .../ckeditor/plugins/sourcearea/lang/zh.js         |    7 +
 .../ckeditor/plugins/sourcearea/plugin.js          |  312 +-
 .../dialogs/lang/_translationstatus.txt            |   20 +
 .../plugins/specialchar/dialogs/lang/ca.js         |  125 +
 .../plugins/specialchar/dialogs/lang/cs.js         |  125 +
 .../plugins/specialchar/dialogs/lang/cy.js         |  125 +
 .../plugins/specialchar/dialogs/lang/de.js         |  125 +
 .../plugins/specialchar/dialogs/lang/el.js         |  125 +
 .../plugins/specialchar/dialogs/lang/en.js         |  125 +
 .../plugins/specialchar/dialogs/lang/eo.js         |  125 +
 .../plugins/specialchar/dialogs/lang/et.js         |  125 +
 .../plugins/specialchar/dialogs/lang/fa.js         |  125 +
 .../plugins/specialchar/dialogs/lang/fi.js         |  125 +
 .../plugins/specialchar/dialogs/lang/fr.js         |  125 +
 .../plugins/specialchar/dialogs/lang/he.js         |  125 +
 .../plugins/specialchar/dialogs/lang/hr.js         |  125 +
 .../plugins/specialchar/dialogs/lang/it.js         |  125 +
 .../plugins/specialchar/dialogs/lang/ku.js         |  125 +
 .../plugins/specialchar/dialogs/lang/lv.js         |  125 +
 .../plugins/specialchar/dialogs/lang/nb.js         |  125 +
 .../plugins/specialchar/dialogs/lang/nl.js         |  125 +
 .../plugins/specialchar/dialogs/lang/no.js         |  125 +
 .../plugins/specialchar/dialogs/lang/pt-br.js      |  125 +
 .../plugins/specialchar/dialogs/lang/sk.js         |  125 +
 .../plugins/specialchar/dialogs/lang/sv.js         |  125 +
 .../plugins/specialchar/dialogs/lang/tr.js         |  125 +
 .../plugins/specialchar/dialogs/lang/ug.js         |  125 +
 .../plugins/specialchar/dialogs/lang/zh-cn.js      |  125 +
 .../plugins/specialchar/dialogs/specialchar.js     |  463 +--
 .../plugins/specialchar/icons/specialchar.png      |  Bin 0 -> 974 bytes
 .../specialchar/lang/_translationstatus.txt        |   63 +
 .../ckeditor/plugins/specialchar/lang/af.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ar.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/bg.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/bn.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/bs.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ca.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/cs.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/cy.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/da.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/de.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/el.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/en-au.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/en-ca.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/en-gb.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/en.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/eo.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/es.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/et.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/eu.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/fa.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/fi.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/fo.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/fr-ca.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/fr.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/gl.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/gu.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/he.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/hi.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/hr.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/hu.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/is.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/it.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ja.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ka.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/km.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ko.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ku.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/lt.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/lv.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/mk.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/mn.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ms.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/nb.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/nl.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/no.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/pl.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/pt-br.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/pt.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ro.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ru.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/sk.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/sl.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/sr-latn.js   |    9 +
 .../ckeditor/plugins/specialchar/lang/sr.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/sv.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/th.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/tr.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/ug.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/uk.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/vi.js        |    9 +
 .../ckeditor/plugins/specialchar/lang/zh-cn.js     |    9 +
 .../ckeditor/plugins/specialchar/lang/zh.js        |    9 +
 .../ckeditor/plugins/specialchar/plugin.js         |   76 +-
 .../third-party/ckeditor/plugins/styles/plugin.js  | 1445 -------
 .../ckeditor/plugins/styles/styles/default.js      |   88 -
 .../ckeditor/plugins/stylescombo/lang/af.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ar.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/bg.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/bn.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/bs.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ca.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/cs.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/cy.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/da.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/de.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/el.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/en-au.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/en-ca.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/en-gb.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/en.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/eo.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/es.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/et.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/eu.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/fa.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/fi.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/fo.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/fr-ca.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/fr.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/gl.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/gu.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/he.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/hi.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/hr.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/hu.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/is.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/it.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ja.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ka.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/km.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ko.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ku.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/lt.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/lv.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/mk.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/mn.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ms.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/nb.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/nl.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/no.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/pl.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/pt-br.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/pt.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ro.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ru.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/sk.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/sl.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/sr-latn.js   |   11 +
 .../ckeditor/plugins/stylescombo/lang/sr.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/sv.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/th.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/tr.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/ug.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/uk.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/vi.js        |   11 +
 .../ckeditor/plugins/stylescombo/lang/zh-cn.js     |   11 +
 .../ckeditor/plugins/stylescombo/lang/zh.js        |   11 +
 .../ckeditor/plugins/stylescombo/plugin.js         |  311 +-
 devel/third-party/ckeditor/plugins/tab/plugin.js   |  320 +-
 .../ckeditor/plugins/table/dialogs/table.js        |  923 ++---
 .../ckeditor/plugins/table/icons/table.png         |  Bin 0 -> 536 bytes
 .../third-party/ckeditor/plugins/table/lang/af.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ar.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/bg.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/bn.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/bs.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ca.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/cs.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/cy.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/da.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/de.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/el.js  |   74 +
 .../ckeditor/plugins/table/lang/en-au.js           |   74 +
 .../ckeditor/plugins/table/lang/en-ca.js           |   74 +
 .../ckeditor/plugins/table/lang/en-gb.js           |   74 +
 .../third-party/ckeditor/plugins/table/lang/en.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/eo.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/es.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/et.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/eu.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/fa.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/fi.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/fo.js  |   74 +
 .../ckeditor/plugins/table/lang/fr-ca.js           |   74 +
 .../third-party/ckeditor/plugins/table/lang/fr.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/gl.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/gu.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/he.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/hi.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/hr.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/hu.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/is.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/it.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ja.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ka.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/km.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ko.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ku.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/lt.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/lv.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/mk.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/mn.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ms.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/nb.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/nl.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/no.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/pl.js  |   74 +
 .../ckeditor/plugins/table/lang/pt-br.js           |   74 +
 .../third-party/ckeditor/plugins/table/lang/pt.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ro.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ru.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/sk.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/sl.js  |   74 +
 .../ckeditor/plugins/table/lang/sr-latn.js         |   74 +
 .../third-party/ckeditor/plugins/table/lang/sr.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/sv.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/th.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/tr.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/ug.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/uk.js  |   74 +
 .../third-party/ckeditor/plugins/table/lang/vi.js  |   74 +
 .../ckeditor/plugins/table/lang/zh-cn.js           |   74 +
 .../third-party/ckeditor/plugins/table/lang/zh.js  |   74 +
 devel/third-party/ckeditor/plugins/table/plugin.js |  135 +-
 .../ckeditor/plugins/tableresize/plugin.js         |  450 ---
 .../plugins/tabletools/dialogs/tableCell.js        |  931 ++---
 .../ckeditor/plugins/tabletools/plugin.js          | 1250 +++---
 .../plugins/templates/dialogs/templates.css        |   84 +
 .../plugins/templates/dialogs/templates.js         |  362 +-
 .../plugins/templates/icons/templates-rtl.png      |  Bin 0 -> 643 bytes
 .../ckeditor/plugins/templates/icons/templates.png |  Bin 0 -> 643 bytes
 .../ckeditor/plugins/templates/lang/af.js          |   12 +
 .../ckeditor/plugins/templates/lang/ar.js          |   12 +
 .../ckeditor/plugins/templates/lang/bg.js          |   12 +
 .../ckeditor/plugins/templates/lang/bn.js          |   12 +
 .../ckeditor/plugins/templates/lang/bs.js          |   12 +
 .../ckeditor/plugins/templates/lang/ca.js          |   12 +
 .../ckeditor/plugins/templates/lang/cs.js          |   12 +
 .../ckeditor/plugins/templates/lang/cy.js          |   12 +
 .../ckeditor/plugins/templates/lang/da.js          |   12 +
 .../ckeditor/plugins/templates/lang/de.js          |   12 +
 .../ckeditor/plugins/templates/lang/el.js          |   12 +
 .../ckeditor/plugins/templates/lang/en-au.js       |   12 +
 .../ckeditor/plugins/templates/lang/en-ca.js       |   12 +
 .../ckeditor/plugins/templates/lang/en-gb.js       |   12 +
 .../ckeditor/plugins/templates/lang/en.js          |   12 +
 .../ckeditor/plugins/templates/lang/eo.js          |   12 +
 .../ckeditor/plugins/templates/lang/es.js          |   12 +
 .../ckeditor/plugins/templates/lang/et.js          |   12 +
 .../ckeditor/plugins/templates/lang/eu.js          |   12 +
 .../ckeditor/plugins/templates/lang/fa.js          |   12 +
 .../ckeditor/plugins/templates/lang/fi.js          |   12 +
 .../ckeditor/plugins/templates/lang/fo.js          |   12 +
 .../ckeditor/plugins/templates/lang/fr-ca.js       |   12 +
 .../ckeditor/plugins/templates/lang/fr.js          |   12 +
 .../ckeditor/plugins/templates/lang/gl.js          |   12 +
 .../ckeditor/plugins/templates/lang/gu.js          |   12 +
 .../ckeditor/plugins/templates/lang/he.js          |   12 +
 .../ckeditor/plugins/templates/lang/hi.js          |   12 +
 .../ckeditor/plugins/templates/lang/hr.js          |   12 +
 .../ckeditor/plugins/templates/lang/hu.js          |   12 +
 .../ckeditor/plugins/templates/lang/is.js          |   12 +
 .../ckeditor/plugins/templates/lang/it.js          |   12 +
 .../ckeditor/plugins/templates/lang/ja.js          |   12 +
 .../ckeditor/plugins/templates/lang/ka.js          |   12 +
 .../ckeditor/plugins/templates/lang/km.js          |   12 +
 .../ckeditor/plugins/templates/lang/ko.js          |   12 +
 .../ckeditor/plugins/templates/lang/ku.js          |   12 +
 .../ckeditor/plugins/templates/lang/lt.js          |   12 +
 .../ckeditor/plugins/templates/lang/lv.js          |   12 +
 .../ckeditor/plugins/templates/lang/mk.js          |   12 +
 .../ckeditor/plugins/templates/lang/mn.js          |   12 +
 .../ckeditor/plugins/templates/lang/ms.js          |   12 +
 .../ckeditor/plugins/templates/lang/nb.js          |   12 +
 .../ckeditor/plugins/templates/lang/nl.js          |   12 +
 .../ckeditor/plugins/templates/lang/no.js          |   12 +
 .../ckeditor/plugins/templates/lang/pl.js          |   12 +
 .../ckeditor/plugins/templates/lang/pt-br.js       |   12 +
 .../ckeditor/plugins/templates/lang/pt.js          |   12 +
 .../ckeditor/plugins/templates/lang/ro.js          |   12 +
 .../ckeditor/plugins/templates/lang/ru.js          |   12 +
 .../ckeditor/plugins/templates/lang/sk.js          |   12 +
 .../ckeditor/plugins/templates/lang/sl.js          |   12 +
 .../ckeditor/plugins/templates/lang/sr-latn.js     |   12 +
 .../ckeditor/plugins/templates/lang/sr.js          |   12 +
 .../ckeditor/plugins/templates/lang/sv.js          |   12 +
 .../ckeditor/plugins/templates/lang/th.js          |   12 +
 .../ckeditor/plugins/templates/lang/tr.js          |   12 +
 .../ckeditor/plugins/templates/lang/ug.js          |   12 +
 .../ckeditor/plugins/templates/lang/uk.js          |   12 +
 .../ckeditor/plugins/templates/lang/vi.js          |   12 +
 .../ckeditor/plugins/templates/lang/zh-cn.js       |   12 +
 .../ckeditor/plugins/templates/lang/zh.js          |   12 +
 .../ckeditor/plugins/templates/plugin.js           |  100 +-
 .../plugins/templates/templates/default.js         |  169 +-
 .../templates/templates/images/template1.gif       |  Bin
 .../templates/templates/images/template2.gif       |  Bin
 .../templates/templates/images/template3.gif       |  Bin
 .../ckeditor/plugins/toolbar/lang/af.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ar.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/bg.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/bn.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/bs.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ca.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/cs.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/cy.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/da.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/de.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/el.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/en-au.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/en-ca.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/en-gb.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/en.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/eo.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/es.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/et.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/eu.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/fa.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/fi.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/fo.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/fr-ca.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/fr.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/gl.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/gu.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/he.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/hi.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/hr.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/hu.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/is.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/it.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ja.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ka.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/km.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ko.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ku.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/lt.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/lv.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/mk.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/mn.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ms.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/nb.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/nl.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/no.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/pl.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/pt-br.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/pt.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ro.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ru.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/sk.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/sl.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/sr-latn.js       |   22 +
 .../ckeditor/plugins/toolbar/lang/sr.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/sv.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/th.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/tr.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/ug.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/uk.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/vi.js            |   22 +
 .../ckeditor/plugins/toolbar/lang/zh-cn.js         |   22 +
 .../ckeditor/plugins/toolbar/lang/zh.js            |   22 +
 .../third-party/ckeditor/plugins/toolbar/plugin.js | 1024 +++--
 .../ckeditor/plugins/toolbar/samples/toolbar.html  |  200 +
 .../ckeditor/plugins/uicolor/dialogs/uicolor.js    |  205 -
 .../ckeditor/plugins/uicolor/lang/en.js            |   15 -
 .../third-party/ckeditor/plugins/uicolor/plugin.js |   37 -
 .../ckeditor/plugins/uicolor/yui/assets/yui.css    |   15 -
 .../ckeditor/plugins/uicolor/yui/yui.js            |   71 -
 .../ckeditor/plugins/undo/icons/redo-rtl.png       |  Bin 0 -> 846 bytes
 .../ckeditor/plugins/undo/icons/redo.png           |  Bin 0 -> 835 bytes
 .../ckeditor/plugins/undo/icons/undo-rtl.png       |  Bin 0 -> 835 bytes
 .../ckeditor/plugins/undo/icons/undo.png           |  Bin 0 -> 844 bytes
 devel/third-party/ckeditor/plugins/undo/lang/af.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ar.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/bg.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/bn.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/bs.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ca.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/cs.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/cy.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/da.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/de.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/el.js |    8 +
 .../ckeditor/plugins/undo/lang/en-au.js            |    8 +
 .../ckeditor/plugins/undo/lang/en-ca.js            |    8 +
 .../ckeditor/plugins/undo/lang/en-gb.js            |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/en.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/eo.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/es.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/et.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/eu.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/fa.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/fi.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/fo.js |    8 +
 .../ckeditor/plugins/undo/lang/fr-ca.js            |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/fr.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/gl.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/gu.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/he.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/hi.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/hr.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/hu.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/is.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/it.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ja.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ka.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/km.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ko.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ku.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/lt.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/lv.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/mk.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/mn.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ms.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/nb.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/nl.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/no.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/pl.js |    8 +
 .../ckeditor/plugins/undo/lang/pt-br.js            |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/pt.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ro.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ru.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/sk.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/sl.js |    8 +
 .../ckeditor/plugins/undo/lang/sr-latn.js          |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/sr.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/sv.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/th.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/tr.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/ug.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/uk.js |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/vi.js |    8 +
 .../ckeditor/plugins/undo/lang/zh-cn.js            |    8 +
 devel/third-party/ckeditor/plugins/undo/lang/zh.js |    8 +
 devel/third-party/ckeditor/plugins/undo/plugin.js  |  554 +--
 devel/third-party/ckeditor/plugins/wsc/LICENSE.md  |   28 +
 devel/third-party/ckeditor/plugins/wsc/README.md   |   25 +
 .../ckeditor/plugins/wsc/dialogs/ciframe.html      |    2 +-
 .../ckeditor/plugins/wsc/dialogs/tmpFrameset.html  |    2 +-
 .../ckeditor/plugins/wsc/dialogs/wsc.css           |    2 +-
 .../ckeditor/plugins/wsc/dialogs/wsc.js            |  161 +-
 .../ckeditor/plugins/wsc/icons/spellchecker.png    |  Bin 0 -> 839 bytes
 devel/third-party/ckeditor/plugins/wsc/lang/af.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ar.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/bg.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/bn.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/bs.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ca.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/cs.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/cy.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/da.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/de.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/el.js  |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/en-au.js |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/en-ca.js |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/en-gb.js |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/en.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/eo.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/es.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/et.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/eu.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/fa.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/fi.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/fo.js  |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/fr-ca.js |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/fr.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/gl.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/gu.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/he.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/hi.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/hr.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/hu.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/is.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/it.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ja.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ka.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/km.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ko.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ku.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/lt.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/lv.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/mk.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/mn.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ms.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/nb.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/nl.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/no.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/pl.js  |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/pt-br.js |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/pt.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ro.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ru.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/sk.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/sl.js  |   24 +
 .../ckeditor/plugins/wsc/lang/sr-latn.js           |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/sr.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/sv.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/th.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/tr.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/ug.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/uk.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/vi.js  |   24 +
 .../third-party/ckeditor/plugins/wsc/lang/zh-cn.js |   24 +
 devel/third-party/ckeditor/plugins/wsc/lang/zh.js  |   24 +
 devel/third-party/ckeditor/plugins/wsc/plugin.js   |   36 +-
 .../ckeditor/plugins/wysiwygarea/plugin.js         | 1600 +++-----
 .../plugins/wysiwygarea/samples/fullpage.html      |   71 +
 devel/third-party/ckeditor/skins/kama/dialog.css   |  915 ++---
 .../third-party/ckeditor/skins/kama/dialog_ie.css  |  593 +++
 .../third-party/ckeditor/skins/kama/dialog_ie7.css |  658 ++++
 .../third-party/ckeditor/skins/kama/dialog_ie8.css |  599 +++
 .../ckeditor/skins/kama/dialog_iequirks.css        |  684 ++++
 .../ckeditor/skins/kama/dialog_opera.css           |  583 +++
 devel/third-party/ckeditor/skins/kama/editor.css   |  897 ++++-
 .../third-party/ckeditor/skins/kama/editor_ie.css  |  948 +++++
 .../third-party/ckeditor/skins/kama/editor_ie7.css | 1106 ++++++
 .../third-party/ckeditor/skins/kama/editor_ie8.css |  952 +++++
 .../ckeditor/skins/kama/editor_iequirks.css        | 1150 ++++++
 .../ckeditor/skins/kama/elementspath.css           |   73 -
 devel/third-party/ckeditor/skins/kama/icons.css    |  357 --
 .../ckeditor/skins/kama/icons/about.png            |  Bin 0 -> 386 bytes
 .../ckeditor/skins/kama/icons/anchor-rtl.png       |  Bin 0 -> 977 bytes
 .../ckeditor/skins/kama/icons/anchor.png           |  Bin 0 -> 979 bytes
 .../ckeditor/skins/kama/icons/bgcolor.png          |  Bin 0 -> 1045 bytes
 .../ckeditor/skins/kama/icons/bidiltr.png          |  Bin 0 -> 151 bytes
 .../ckeditor/skins/kama/icons/bidirtl.png          |  Bin 0 -> 927 bytes
 .../ckeditor/skins/kama/icons/blockquote.png       |  Bin 0 -> 972 bytes
 .../third-party/ckeditor/skins/kama/icons/bold.png |  Bin 0 -> 371 bytes
 .../ckeditor/skins/kama/icons/bulletedlist-rtl.png |  Bin 0 -> 198 bytes
 .../ckeditor/skins/kama/icons/bulletedlist.png     |  Bin 0 -> 217 bytes
 .../ckeditor/skins/kama/icons/button.png           |  Bin 0 -> 326 bytes
 .../ckeditor/skins/kama/icons/checkbox.png         |  Bin 0 -> 950 bytes
 .../ckeditor/skins/kama/icons/copy-rtl.png         |  Bin 0 -> 965 bytes
 .../third-party/ckeditor/skins/kama/icons/copy.png |  Bin 0 -> 1001 bytes
 .../ckeditor/skins/kama/icons/creatediv.png        |  Bin 0 -> 975 bytes
 .../ckeditor/skins/kama/icons/cut-rtl.png          |  Bin 0 -> 1042 bytes
 .../third-party/ckeditor/skins/kama/icons/cut.png  |  Bin 0 -> 1043 bytes
 .../ckeditor/skins/kama/icons/docprops-rtl.png     |  Bin 0 -> 949 bytes
 .../ckeditor/skins/kama/icons/docprops.png         |  Bin 0 -> 979 bytes
 .../ckeditor/skins/kama/icons/find-rtl.png         |  Bin 0 -> 343 bytes
 .../third-party/ckeditor/skins/kama/icons/find.png |  Bin 0 -> 340 bytes
 .../ckeditor/skins/kama/icons/flash.png            |  Bin 0 -> 485 bytes
 .../third-party/ckeditor/skins/kama/icons/form.png |  Bin 0 -> 919 bytes
 .../ckeditor/skins/kama/icons/hiddenfield.png      |  Bin 0 -> 561 bytes
 .../ckeditor/skins/kama/icons/horizontalrule.png   |  Bin 0 -> 406 bytes
 .../ckeditor/skins/kama/icons/icons.png            |  Bin 0 -> 5598 bytes
 .../ckeditor/skins/kama/icons/iframe.png           |  Bin 0 -> 1092 bytes
 .../ckeditor/skins/kama/icons/image.png            |  Bin 0 -> 587 bytes
 .../ckeditor/skins/kama/icons/imagebutton.png      |  Bin 0 -> 358 bytes
 .../ckeditor/skins/kama/icons/indent-rtl.png       |  Bin 0 -> 931 bytes
 .../ckeditor/skins/kama/icons/indent.png           |  Bin 0 -> 961 bytes
 .../ckeditor/skins/kama/icons/italic.png           |  Bin 0 -> 363 bytes
 .../ckeditor/skins/kama/icons/justifyblock.png     |  Bin 0 -> 932 bytes
 .../ckeditor/skins/kama/icons/justifycenter.png    |  Bin 0 -> 936 bytes
 .../ckeditor/skins/kama/icons/justifyleft.png      |  Bin 0 -> 936 bytes
 .../ckeditor/skins/kama/icons/justifyright.png     |  Bin 0 -> 936 bytes
 .../third-party/ckeditor/skins/kama/icons/link.png |  Bin 0 -> 995 bytes
 .../ckeditor/skins/kama/icons/maximize.png         |  Bin 0 -> 315 bytes
 .../ckeditor/skins/kama/icons/newpage-rtl.png      |  Bin 0 -> 209 bytes
 .../ckeditor/skins/kama/icons/newpage.png          |  Bin 0 -> 221 bytes
 .../ckeditor/skins/kama/icons/numberedlist-rtl.png |  Bin 0 -> 241 bytes
 .../ckeditor/skins/kama/icons/numberedlist.png     |  Bin 0 -> 240 bytes
 .../ckeditor/skins/kama/icons/outdent-rtl.png      |  Bin 0 -> 928 bytes
 .../ckeditor/skins/kama/icons/outdent.png          |  Bin 0 -> 957 bytes
 .../ckeditor/skins/kama/icons/pagebreak-rtl.png    |  Bin 0 -> 295 bytes
 .../ckeditor/skins/kama/icons/pagebreak.png        |  Bin 0 -> 433 bytes
 .../ckeditor/skins/kama/icons/paste-rtl.png        |  Bin 0 -> 991 bytes
 .../ckeditor/skins/kama/icons/paste.png            |  Bin 0 -> 1032 bytes
 .../skins/kama/icons/pastefromword-rtl.png         |  Bin 0 -> 412 bytes
 .../ckeditor/skins/kama/icons/pastefromword.png    |  Bin 0 -> 532 bytes
 .../ckeditor/skins/kama/icons/pastetext-rtl.png    |  Bin 0 -> 1050 bytes
 .../ckeditor/skins/kama/icons/pastetext.png        |  Bin 0 -> 1054 bytes
 .../ckeditor/skins/kama/icons/placeholder.png      |  Bin 0 -> 132 bytes
 .../ckeditor/skins/kama/icons/preview-rtl.png      |  Bin 0 -> 313 bytes
 .../ckeditor/skins/kama/icons/preview.png          |  Bin 0 -> 311 bytes
 .../ckeditor/skins/kama/icons/print.png            |  Bin 0 -> 293 bytes
 .../ckeditor/skins/kama/icons/radio.png            |  Bin 0 -> 972 bytes
 .../ckeditor/skins/kama/icons/redo-rtl.png         |  Bin 0 -> 299 bytes
 .../third-party/ckeditor/skins/kama/icons/redo.png |  Bin 0 -> 393 bytes
 .../ckeditor/skins/kama/icons/removeformat.png     |  Bin 0 -> 949 bytes
 .../ckeditor/skins/kama/icons/replace.png          |  Bin 0 -> 951 bytes
 .../third-party/ckeditor/skins/kama/icons/save.png |  Bin 0 -> 310 bytes
 .../ckeditor/skins/kama/icons/scayt.png            |  Bin 0 -> 334 bytes
 .../ckeditor/skins/kama/icons/select-rtl.png       |  Bin 0 -> 292 bytes
 .../ckeditor/skins/kama/icons/select.png           |  Bin 0 -> 284 bytes
 .../ckeditor/skins/kama/icons/selectall.png        |  Bin 0 -> 975 bytes
 .../ckeditor/skins/kama/icons/showblocks-rtl.png   |  Bin 0 -> 336 bytes
 .../ckeditor/skins/kama/icons/showblocks.png       |  Bin 0 -> 335 bytes
 .../ckeditor/skins/kama/icons/smiley.png           |  Bin 0 -> 473 bytes
 .../ckeditor/skins/kama/icons/source-rtl.png       |  Bin 0 -> 263 bytes
 .../ckeditor/skins/kama/icons/source.png           |  Bin 0 -> 382 bytes
 .../ckeditor/skins/kama/icons/specialchar.png      |  Bin 0 -> 407 bytes
 .../ckeditor/skins/kama/icons/spellchecker.png     |  Bin 0 -> 419 bytes
 .../ckeditor/skins/kama/icons/strike.png           |  Bin 0 -> 194 bytes
 .../ckeditor/skins/kama/icons/subscript.png        |  Bin 0 -> 293 bytes
 .../ckeditor/skins/kama/icons/superscript.png      |  Bin 0 -> 385 bytes
 .../ckeditor/skins/kama/icons/table.png            |  Bin 0 -> 434 bytes
 .../ckeditor/skins/kama/icons/templates-rtl.png    |  Bin 0 -> 262 bytes
 .../ckeditor/skins/kama/icons/templates.png        |  Bin 0 -> 261 bytes
 .../ckeditor/skins/kama/icons/textarea-rtl.png     |  Bin 0 -> 443 bytes
 .../ckeditor/skins/kama/icons/textarea.png         |  Bin 0 -> 426 bytes
 .../ckeditor/skins/kama/icons/textcolor.png        |  Bin 0 -> 346 bytes
 .../ckeditor/skins/kama/icons/textfield.png        |  Bin 0 -> 959 bytes
 .../ckeditor/skins/kama/icons/underline.png        |  Bin 0 -> 922 bytes
 .../ckeditor/skins/kama/icons/undo-rtl.png         |  Bin 0 -> 289 bytes
 .../third-party/ckeditor/skins/kama/icons/undo.png |  Bin 0 -> 397 bytes
 .../ckeditor/skins/kama/icons/unlink.png           |  Bin 0 -> 1027 bytes
 .../ckeditor/skins/kama}/images/dialog_sides.gif   |  Bin
 .../ckeditor/skins/kama}/images/dialog_sides.png   |  Bin
 .../skins/kama}/images/dialog_sides_rtl.png        |  Bin
 .../ckeditor/skins/kama}/images/mini.gif           |  Bin
 .../ckeditor}/skins/kama/images/sprites.png        |  Bin
 .../ckeditor}/skins/kama/images/sprites_ie6.png    |  Bin
 .../ckeditor/skins/kama}/images/toolbar_start.gif  |  Bin
 devel/third-party/ckeditor/skins/kama/mainui.css   |  195 -
 devel/third-party/ckeditor/skins/kama/menu.css     |  202 -
 devel/third-party/ckeditor/skins/kama/panel.css    |  217 --
 devel/third-party/ckeditor/skins/kama/presets.css  |   49 -
 devel/third-party/ckeditor/skins/kama/readme.md    |   40 +
 devel/third-party/ckeditor/skins/kama/reset.css    |   84 -
 .../third-party/ckeditor/skins/kama/richcombo.css  |  277 --
 devel/third-party/ckeditor/skins/kama/skin.js      |  512 ++-
 .../third-party/ckeditor/skins/kama/templates.css  |   88 -
 devel/third-party/ckeditor/skins/kama/toolbar.css  |  409 --
 .../ckeditor/skins/office2003/dialog.css           |  765 ----
 .../ckeditor/skins/office2003/editor.css           |   25 -
 .../ckeditor/skins/office2003/elementspath.css     |   74 -
 .../ckeditor/skins/office2003/icons.css            |  354 --
 .../ckeditor/skins/office2003/mainui.css           |  145 -
 .../third-party/ckeditor/skins/office2003/menu.css |  199 -
 .../ckeditor/skins/office2003/panel.css            |  212 -
 .../ckeditor/skins/office2003/presets.css          |   49 -
 .../ckeditor/skins/office2003/reset.css            |   84 -
 .../ckeditor/skins/office2003/richcombo.css        |  297 --
 .../third-party/ckeditor/skins/office2003/skin.js  |   81 -
 .../ckeditor/skins/office2003/templates.css        |   87 -
 .../ckeditor/skins/office2003/toolbar.css          |  470 ---
 devel/third-party/ckeditor/skins/v2/dialog.css     |  780 ----
 devel/third-party/ckeditor/skins/v2/editor.css     |   25 -
 .../third-party/ckeditor/skins/v2/elementspath.css |   74 -
 devel/third-party/ckeditor/skins/v2/icons.css      |  354 --
 devel/third-party/ckeditor/skins/v2/mainui.css     |  154 -
 devel/third-party/ckeditor/skins/v2/menu.css       |  201 -
 devel/third-party/ckeditor/skins/v2/panel.css      |  212 -
 devel/third-party/ckeditor/skins/v2/presets.css    |   50 -
 devel/third-party/ckeditor/skins/v2/reset.css      |   84 -
 devel/third-party/ckeditor/skins/v2/richcombo.css  |  297 --
 devel/third-party/ckeditor/skins/v2/skin.js        |   77 -
 devel/third-party/ckeditor/skins/v2/templates.css  |   87 -
 devel/third-party/ckeditor/skins/v2/toolbar.css    |  423 --
 devel/third-party/ckeditor/styles.js               |  113 +
 devel/third-party/ckeditor/themes/default/theme.js |  356 --
 share/static/RichText/LICENSE.html                 | 1334 -------
 share/static/RichText/LICENSE.md                   | 1264 ++++++
 share/static/RichText/adapters/jquery.js           |    6 -
 share/static/RichText/ckeditor.js                  | 1000 ++++-
 share/static/RichText/config.js                    |   12 +-
 share/static/RichText/contents.css                 |  134 +-
 share/static/RichText/lang/_languages.js           |    6 -
 share/static/RichText/lang/_translationstatus.txt  |   60 -
 share/static/RichText/lang/af.js                   |    9 +-
 share/static/RichText/lang/ar.js                   |    9 +-
 share/static/RichText/lang/bg.js                   |    9 +-
 share/static/RichText/lang/bn.js                   |    9 +-
 share/static/RichText/lang/bs.js                   |    9 +-
 share/static/RichText/lang/ca.js                   |    9 +-
 share/static/RichText/lang/cs.js                   |    9 +-
 share/static/RichText/lang/cy.js                   |    9 +-
 share/static/RichText/lang/da.js                   |    9 +-
 share/static/RichText/lang/de.js                   |    9 +-
 share/static/RichText/lang/el.js                   |    9 +-
 share/static/RichText/lang/en-au.js                |    9 +-
 share/static/RichText/lang/en-ca.js                |    9 +-
 share/static/RichText/lang/en-gb.js                |    9 +-
 share/static/RichText/lang/en.js                   |    9 +-
 share/static/RichText/lang/eo.js                   |    9 +-
 share/static/RichText/lang/es.js                   |    9 +-
 share/static/RichText/lang/et.js                   |    9 +-
 share/static/RichText/lang/eu.js                   |    9 +-
 share/static/RichText/lang/fa.js                   |    9 +-
 share/static/RichText/lang/fi.js                   |    9 +-
 share/static/RichText/lang/fo.js                   |    9 +-
 share/static/RichText/lang/fr-ca.js                |    9 +-
 share/static/RichText/lang/fr.js                   |    9 +-
 share/static/RichText/lang/gl.js                   |    9 +-
 share/static/RichText/lang/gu.js                   |    9 +-
 share/static/RichText/lang/he.js                   |    9 +-
 share/static/RichText/lang/hi.js                   |    9 +-
 share/static/RichText/lang/hr.js                   |    9 +-
 share/static/RichText/lang/hu.js                   |    9 +-
 share/static/RichText/lang/is.js                   |    9 +-
 share/static/RichText/lang/it.js                   |    9 +-
 share/static/RichText/lang/ja.js                   |    9 +-
 share/static/RichText/lang/ka.js                   |    5 +
 share/static/RichText/lang/km.js                   |    9 +-
 share/static/RichText/lang/ko.js                   |    9 +-
 share/static/RichText/lang/ku.js                   |    5 +
 share/static/RichText/lang/lt.js                   |    9 +-
 share/static/RichText/lang/lv.js                   |    9 +-
 share/static/RichText/lang/mk.js                   |    5 +
 share/static/RichText/lang/mn.js                   |    9 +-
 share/static/RichText/lang/ms.js                   |    9 +-
 share/static/RichText/lang/nb.js                   |    9 +-
 share/static/RichText/lang/nl.js                   |    9 +-
 share/static/RichText/lang/no.js                   |    9 +-
 share/static/RichText/lang/pl.js                   |    9 +-
 share/static/RichText/lang/pt-br.js                |    9 +-
 share/static/RichText/lang/pt.js                   |    9 +-
 share/static/RichText/lang/ro.js                   |    9 +-
 share/static/RichText/lang/ru.js                   |    9 +-
 share/static/RichText/lang/sk.js                   |    9 +-
 share/static/RichText/lang/sl.js                   |    9 +-
 share/static/RichText/lang/sr-latn.js              |    9 +-
 share/static/RichText/lang/sr.js                   |    9 +-
 share/static/RichText/lang/sv.js                   |    9 +-
 share/static/RichText/lang/th.js                   |    9 +-
 share/static/RichText/lang/tr.js                   |    9 +-
 share/static/RichText/lang/ug.js                   |    5 +
 share/static/RichText/lang/uk.js                   |    9 +-
 share/static/RichText/lang/vi.js                   |    9 +-
 share/static/RichText/lang/zh-cn.js                |    9 +-
 share/static/RichText/lang/zh.js                   |    9 +-
 .../RichText/plugins/a11yhelp/dialogs/a11yhelp.js  |   13 +-
 .../a11yhelp/dialogs/lang/_translationstatus.txt   |   25 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ar.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/bg.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ca.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/cs.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/cy.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/da.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/de.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/el.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/en.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/eo.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/es.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/et.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/fa.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/fi.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/fr.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/gu.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/he.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/hi.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/hr.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/hu.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/it.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ja.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ku.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/lt.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/lv.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/mk.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/mn.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/nb.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/nl.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/no.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/pl.js   |    9 +
 .../plugins/a11yhelp/dialogs/lang/pt-br.js         |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/pt.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ro.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ru.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/sk.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/sl.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/sv.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/tr.js   |   10 +
 .../RichText/plugins/a11yhelp/dialogs/lang/ug.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/uk.js   |    9 +
 .../RichText/plugins/a11yhelp/dialogs/lang/vi.js   |    9 +
 .../plugins/a11yhelp/dialogs/lang/zh-cn.js         |    7 +
 share/static/RichText/plugins/a11yhelp/lang/en.js  |    6 -
 share/static/RichText/plugins/a11yhelp/lang/he.js  |    6 -
 .../static/RichText/plugins/about/dialogs/about.js |    8 +-
 share/static/RichText/plugins/autogrow/plugin.js   |    6 -
 .../RichText/plugins/clipboard/dialogs/paste.js    |   14 +-
 .../plugins/colordialog/dialogs/colordialog.js     |   16 +-
 .../RichText/plugins/dialog/dialogDefinition.js    |    4 +-
 share/static/RichText/plugins/div/dialogs/div.js   |   17 +-
 .../{ => plugins/fakeobjects}/images/spacer.gif    |  Bin
 share/static/RichText/plugins/find/dialogs/find.js |   29 +-
 .../static/RichText/plugins/flash/dialogs/flash.js |   28 +-
 .../RichText/plugins/forms/dialogs/button.js       |   10 +-
 .../RichText/plugins/forms/dialogs/checkbox.js     |   10 +-
 .../static/RichText/plugins/forms/dialogs/form.js  |   10 +-
 .../RichText/plugins/forms/dialogs/hiddenfield.js  |   10 +-
 .../static/RichText/plugins/forms/dialogs/radio.js |   10 +-
 .../RichText/plugins/forms/dialogs/select.js       |   25 +-
 .../RichText/plugins/forms/dialogs/textarea.js     |   10 +-
 .../RichText/plugins/forms/dialogs/textfield.js    |   13 +-
 share/static/RichText/plugins/icons.png            |  Bin 0 -> 20881 bytes
 .../RichText/plugins/iframe/dialogs/iframe.js      |   10 +
 .../RichText/plugins/iframe/images/placeholder.png |  Bin 0 -> 449 bytes
 .../static/RichText/plugins/iframedialog/plugin.js |    6 -
 .../static/RichText/plugins/image/dialogs/image.js |   50 +-
 .../image}/images/noimage.png                      |  Bin
 .../static/RichText/plugins/link/dialogs/anchor.js |   10 +-
 share/static/RichText/plugins/link/dialogs/link.js |   43 +-
 .../static/RichText/plugins/link/images/anchor.gif |  Bin 184 -> 0 bytes
 .../static/RichText/plugins/link/images/anchor.png |  Bin 0 -> 566 bytes
 .../plugins/liststyle/dialogs/liststyle.js         |   13 +-
 .../RichText/plugins/magicline/images/icon.png     |  Bin 0 -> 172 bytes
 .../plugins/pastefromword/filter/default.js        |   37 +-
 .../plugins/pastetext/dialogs/pastetext.js         |    6 -
 share/static/RichText/plugins/preview/preview.html |   10 +
 share/static/RichText/plugins/scayt/LICENSE.md     |   28 +
 share/static/RichText/plugins/scayt/README.md      |   25 +
 .../RichText/plugins/scayt/dialogs/options.js      |   23 +-
 .../RichText/plugins/scayt/dialogs/toolbar.css     |   77 +-
 .../RichText/plugins/smiley/dialogs/smiley.js      |   13 +-
 ...{embaressed_smile.gif => embarrassed_smile.gif} |  Bin
 .../images/{tounge_smile.gif => tongue_smile.gif}  |  Bin
 .../dialogs/lang/_translationstatus.txt            |   20 +
 .../plugins/specialchar/dialogs/lang/ca.js         |   13 +
 .../plugins/specialchar/dialogs/lang/cs.js         |   13 +
 .../plugins/specialchar/dialogs/lang/cy.js         |   14 +
 .../plugins/specialchar/dialogs/lang/de.js         |   13 +
 .../plugins/specialchar/dialogs/lang/el.js         |   13 +
 .../plugins/specialchar/dialogs/lang/en.js         |   13 +
 .../plugins/specialchar/dialogs/lang/eo.js         |   12 +
 .../plugins/specialchar/dialogs/lang/et.js         |   13 +
 .../plugins/specialchar/dialogs/lang/fa.js         |   13 +
 .../plugins/specialchar/dialogs/lang/fi.js         |   13 +
 .../plugins/specialchar/dialogs/lang/fr.js         |   11 +
 .../plugins/specialchar/dialogs/lang/he.js         |   13 +
 .../plugins/specialchar/dialogs/lang/hr.js         |   13 +
 .../plugins/specialchar/dialogs/lang/it.js         |   14 +
 .../plugins/specialchar/dialogs/lang/ku.js         |   14 +
 .../plugins/specialchar/dialogs/lang/lv.js         |   13 +
 .../plugins/specialchar/dialogs/lang/nb.js         |   11 +
 .../plugins/specialchar/dialogs/lang/nl.js         |   13 +
 .../plugins/specialchar/dialogs/lang/no.js         |   11 +
 .../plugins/specialchar/dialogs/lang/pt-br.js      |   11 +
 .../plugins/specialchar/dialogs/lang/sk.js         |   13 +
 .../plugins/specialchar/dialogs/lang/sv.js         |   11 +
 .../plugins/specialchar/dialogs/lang/tr.js         |   12 +
 .../plugins/specialchar/dialogs/lang/ug.js         |   13 +
 .../plugins/specialchar/dialogs/lang/zh-cn.js      |    9 +
 .../plugins/specialchar/dialogs/specialchar.js     |   17 +-
 .../RichText/plugins/styles/styles/default.js      |    6 -
 .../static/RichText/plugins/table/dialogs/table.js |   25 +-
 .../static/RichText/plugins/tableresize/plugin.js  |    7 -
 .../plugins/tabletools/dialogs/tableCell.js        |   20 +-
 .../plugins/templates/dialogs/templates.css        |   84 +
 .../plugins/templates/dialogs/templates.js         |   13 +-
 .../plugins/templates/templates/default.js         |    8 +-
 .../RichText/plugins/uicolor/dialogs/uicolor.js    |    7 -
 share/static/RichText/plugins/uicolor/lang/en.js   |    6 -
 share/static/RichText/plugins/uicolor/plugin.js    |    6 -
 share/static/RichText/plugins/uicolor/uicolor.gif  |  Bin 1108 -> 0 bytes
 .../RichText/plugins/uicolor/yui/assets/hue_bg.png |  Bin 1120 -> 0 bytes
 .../plugins/uicolor/yui/assets/hue_thumb.png       |  Bin 195 -> 0 bytes
 .../plugins/uicolor/yui/assets/picker_mask.png     |  Bin 12174 -> 0 bytes
 .../plugins/uicolor/yui/assets/picker_thumb.png    |  Bin 192 -> 0 bytes
 .../RichText/plugins/uicolor/yui/assets/yui.css    |    6 -
 share/static/RichText/plugins/uicolor/yui/yui.js   |   76 -
 share/static/RichText/plugins/wsc/LICENSE.md       |   28 +
 share/static/RichText/plugins/wsc/README.md        |   25 +
 .../RichText/plugins/wsc/dialogs/ciframe.html      |   98 +-
 .../RichText/plugins/wsc/dialogs/tmpFrameset.html  |  104 +-
 share/static/RichText/plugins/wsc/dialogs/wsc.css  |   88 +-
 share/static/RichText/plugins/wsc/dialogs/wsc.js   |   14 +-
 share/static/RichText/skins/kama/dialog.css        |   14 +-
 share/static/RichText/skins/kama/dialog_ie.css     |    5 +
 share/static/RichText/skins/kama/dialog_ie7.css    |    5 +
 share/static/RichText/skins/kama/dialog_ie8.css    |    5 +
 .../static/RichText/skins/kama/dialog_iequirks.css |    5 +
 share/static/RichText/skins/kama/dialog_opera.css  |    5 +
 share/static/RichText/skins/kama/editor.css        |   17 +-
 share/static/RichText/skins/kama/editor_ie.css     |    5 +
 share/static/RichText/skins/kama/editor_ie7.css    |    5 +
 share/static/RichText/skins/kama/editor_ie8.css    |    5 +
 .../static/RichText/skins/kama/editor_iequirks.css |    5 +
 share/static/RichText/skins/kama/icons.png         |  Bin 4918 -> 13244 bytes
 share/static/RichText/skins/kama/icons_rtl.png     |  Bin 4935 -> 0 bytes
 share/static/RichText/skins/kama/readme.md         |   40 +
 share/static/RichText/skins/kama/skin.js           |    7 -
 share/static/RichText/skins/kama/templates.css     |    6 -
 share/static/RichText/skins/office2003/dialog.css  |    9 -
 share/static/RichText/skins/office2003/editor.css  |   13 -
 share/static/RichText/skins/office2003/icons.png   |  Bin 4918 -> 0 bytes
 .../static/RichText/skins/office2003/icons_rtl.png |  Bin 4935 -> 0 bytes
 .../skins/office2003/images/dialog_sides.gif       |  Bin 48 -> 0 bytes
 .../skins/office2003/images/dialog_sides.png       |  Bin 178 -> 0 bytes
 .../skins/office2003/images/dialog_sides_rtl.png   |  Bin 181 -> 0 bytes
 .../RichText/skins/office2003/images/sprites.png   |  Bin 6119 -> 0 bytes
 .../skins/office2003/images/sprites_ie6.png        |  Bin 2715 -> 0 bytes
 share/static/RichText/skins/office2003/skin.js     |    6 -
 .../static/RichText/skins/office2003/templates.css |    6 -
 share/static/RichText/skins/v2/dialog.css          |    8 -
 share/static/RichText/skins/v2/editor.css          |   12 -
 share/static/RichText/skins/v2/icons.png           |  Bin 4918 -> 0 bytes
 share/static/RichText/skins/v2/icons_rtl.png       |  Bin 4935 -> 0 bytes
 share/static/RichText/skins/v2/images/mini.gif     |  Bin 183 -> 0 bytes
 share/static/RichText/skins/v2/images/noimage.png  |  Bin 2115 -> 0 bytes
 share/static/RichText/skins/v2/images/sprites.png  |  Bin 5389 -> 0 bytes
 .../RichText/skins/v2/images/sprites_ie6.png       |  Bin 492 -> 0 bytes
 share/static/RichText/skins/v2/skin.js             |    6 -
 share/static/RichText/skins/v2/templates.css       |    6 -
 share/static/RichText/styles.js                    |  112 +
 share/static/RichText/themes/default/theme.js      |    8 -
 3656 files changed, 126529 insertions(+), 97331 deletions(-)
 create mode 100644 devel/third-party/ckeditor/LICENSE.md
 delete mode 100644 devel/third-party/ckeditor/adapters/jquery.js
 create mode 100644 devel/third-party/ckeditor/build-config.js
 create mode 100644 devel/third-party/ckeditor/ckeditor.js
 delete mode 100644 devel/third-party/ckeditor/ckeditor_basic_source.js
 delete mode 100644 devel/third-party/ckeditor/ckeditor_source.js
 create mode 100644 devel/third-party/ckeditor/config.js
 create mode 100644 devel/third-party/ckeditor/contents.css
 delete mode 100644 devel/third-party/ckeditor/core/ajax.js
 create mode 100644 devel/third-party/ckeditor/core/creators/inline.js
 create mode 100644 devel/third-party/ckeditor/core/creators/themedui.js
 create mode 100644 devel/third-party/ckeditor/core/dom/iterator.js
 create mode 100644 devel/third-party/ckeditor/core/editable.js
 create mode 100644 devel/third-party/ckeditor/core/htmldataprocessor.js
 delete mode 100644 devel/third-party/ckeditor/core/imagecacher.js
 create mode 100644 devel/third-party/ckeditor/core/keystrokehandler.js
 create mode 100644 devel/third-party/ckeditor/core/selection.js
 create mode 100644 devel/third-party/ckeditor/core/skin.js
 delete mode 100644 devel/third-party/ckeditor/core/skins.js
 create mode 100644 devel/third-party/ckeditor/core/style.js
 create mode 100644 devel/third-party/ckeditor/core/template.js
 delete mode 100644 devel/third-party/ckeditor/core/themes.js
 delete mode 100644 devel/third-party/ckeditor/core/xml.js
 delete mode 100644 devel/third-party/ckeditor/lang/_languages.js
 create mode 100644 devel/third-party/ckeditor/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
 delete mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/lang/en.js
 delete mode 100644 devel/third-party/ckeditor/plugins/a11yhelp/lang/he.js
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/about/dialogs/logo_ckeditor.png (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/about/icons/about.png
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/about/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/autogrow/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/bold.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/italic.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/strike.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/subscript.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/superscript.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/icons/underline.png
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/basicstyles/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/icons/bidiltr.png
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/icons/bidirtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/bidi/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/icons/blockquote.png
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/blockquote/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/dev/clipboard.html
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/copy-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/copy.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/cut-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/cut.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/paste-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/icons/paste.png
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/clipboard/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/icons/bgcolor.png
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/icons/textcolor.png
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colorbutton/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/colordialog/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/contextmenu/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/dialog/samples/assets/my_dialog.js
 create mode 100644 devel/third-party/ckeditor/plugins/dialog/samples/dialog.html
 create mode 100644 devel/third-party/ckeditor/plugins/div/icons/creatediv.png
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/div/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/domiterator/plugin.js
 delete mode 100644 devel/third-party/ckeditor/plugins/editingblock/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/elementspath/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/enterkey/samples/enterkey.html
 copy {share/static/RichText => devel/third-party/ckeditor/plugins/fakeobjects}/images/spacer.gif (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/fakeobjects/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/icons/find-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/find/icons/find.png
 create mode 100644 devel/third-party/ckeditor/plugins/find/icons/replace.png
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/find/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/icons/flash.png
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/flash/images/placeholder.png (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/flash/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/floatingspace/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/font/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/format/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/button.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/checkbox.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/form.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/hiddenfield.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/imagebutton.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/radio.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/select-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/select.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/textarea-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/textarea.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/textfield-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/forms/icons/textfield.png
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/forms/images/hiddenfield.gif (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/forms/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/icons/horizontalrule.png
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/horizontalrule/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/htmldataprocessor/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/htmlwriter/samples/assets/outputforflash/outputforflash.fla
 create mode 100644 devel/third-party/ckeditor/plugins/htmlwriter/samples/assets/outputforflash/outputforflash.swf
 create mode 100644 devel/third-party/ckeditor/plugins/htmlwriter/samples/assets/outputforflash/swfobject.js
 create mode 100644 devel/third-party/ckeditor/plugins/htmlwriter/samples/outputforflash.html
 create mode 100644 devel/third-party/ckeditor/plugins/htmlwriter/samples/outputhtml.html
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/dialogs/iframe.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/icons/iframe.png
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/images/placeholder.png
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/iframe/plugin.js
 delete mode 100644 devel/third-party/ckeditor/plugins/iframedialog/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/icons/image.png
 rename {share/static/RichText/skins/kama => devel/third-party/ckeditor/plugins/image}/images/noimage.png (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/image/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/icons/indent-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/indent/icons/indent.png
 create mode 100644 devel/third-party/ckeditor/plugins/indent/icons/outdent-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/indent/icons/outdent.png
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/indent/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/icons/justifyblock.png
 create mode 100644 devel/third-party/ckeditor/plugins/justify/icons/justifycenter.png
 create mode 100644 devel/third-party/ckeditor/plugins/justify/icons/justifyleft.png
 create mode 100644 devel/third-party/ckeditor/plugins/justify/icons/justifyright.png
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/justify/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/keystrokes/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/icons/anchor-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/link/icons/anchor.png
 create mode 100644 devel/third-party/ckeditor/plugins/link/icons/link.png
 create mode 100644 devel/third-party/ckeditor/plugins/link/icons/unlink.png
 create mode 100644 devel/third-party/ckeditor/plugins/link/images/anchor.png
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/link/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/icons/bulletedlist-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/list/icons/bulletedlist.png
 create mode 100644 devel/third-party/ckeditor/plugins/list/icons/numberedlist-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/list/icons/numberedlist.png
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/list/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/liststyle/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/dev/magicline.html
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/images/icon.png
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/magicline/samples/magicline.html
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/icons/maximize.png
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/maximize/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/icons/newpage-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/icons/newpage.png
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/newpage/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/icons/pagebreak-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/icons/pagebreak.png
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/pagebreak/images/pagebreak.gif (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pagebreak/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/icons/pastefromword-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/icons/pastefromword.png
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastefromword/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/pastetext/dialogs/pastetext.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/icons/pastetext-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/icons/pastetext.png
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/pastetext/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/icons/preview-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/preview/icons/preview.png
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/preview/preview.html
 create mode 100644 devel/third-party/ckeditor/plugins/print/icons/print.png
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/print/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/icons/removeformat.png
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/removeformat/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/icons/save.png
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/save/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/LICENSE.md
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/README.md
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/icons/scayt.png
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/scayt/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/icons/selectall.png
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/selectall/plugin.js
 delete mode 100644 devel/third-party/ckeditor/plugins/selection/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/icons/showblocks-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/icons/showblocks.png
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_address.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_blockquote.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_div.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h1.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h2.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h3.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h4.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h5.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_h6.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_p.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/showblocks/images/block_pre.png (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/showblocks/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/icons/smiley.png
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/angel_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/angry_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/broken_heart.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/confused_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/cry_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/devil_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/embaressed_smile.gif (100%)
 copy share/static/RichText/plugins/smiley/images/embaressed_smile.gif => devel/third-party/ckeditor/plugins/smiley/images/embarrassed_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/envelope.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/heart.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/kiss.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/lightbulb.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/omg_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/regular_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/sad_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/shades_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/teeth_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/thumbs_down.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/thumbs_up.gif (100%)
 copy share/static/RichText/plugins/smiley/images/tounge_smile.gif => devel/third-party/ckeditor/plugins/smiley/images/tongue_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/tounge_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/whatchutalkingabout_smile.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/smiley/images/wink_smile.gif (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/smiley/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/icons/source-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/icons/source.png
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/sourcearea/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/icons/specialchar.png
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/_translationstatus.txt
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/specialchar/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/styles/plugin.js
 delete mode 100644 devel/third-party/ckeditor/plugins/styles/styles/default.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/stylescombo/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/icons/table.png
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/table/lang/zh.js
 delete mode 100644 devel/third-party/ckeditor/plugins/tableresize/plugin.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/dialogs/templates.css
 create mode 100644 devel/third-party/ckeditor/plugins/templates/icons/templates-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/templates/icons/templates.png
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/templates/lang/zh.js
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/templates/templates/images/template1.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/templates/templates/images/template2.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/plugins/templates/templates/images/template3.gif (100%)
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/toolbar/samples/toolbar.html
 delete mode 100644 devel/third-party/ckeditor/plugins/uicolor/dialogs/uicolor.js
 delete mode 100644 devel/third-party/ckeditor/plugins/uicolor/lang/en.js
 delete mode 100644 devel/third-party/ckeditor/plugins/uicolor/plugin.js
 delete mode 100644 devel/third-party/ckeditor/plugins/uicolor/yui/assets/yui.css
 delete mode 100644 devel/third-party/ckeditor/plugins/uicolor/yui/yui.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/icons/redo-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/undo/icons/redo.png
 create mode 100644 devel/third-party/ckeditor/plugins/undo/icons/undo-rtl.png
 create mode 100644 devel/third-party/ckeditor/plugins/undo/icons/undo.png
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/undo/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/LICENSE.md
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/README.md
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/icons/spellchecker.png
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/af.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ar.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/bg.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/bn.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/bs.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/cs.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/cy.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/da.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/de.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/el.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/en-au.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/en-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/en-gb.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/en.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/eo.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/es.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/et.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/eu.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/fa.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/fi.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/fo.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/fr-ca.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/fr.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/gl.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/gu.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/he.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/hi.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/hr.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/hu.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/is.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/it.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ja.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ka.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/km.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ko.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ku.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/lt.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/lv.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/mk.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/mn.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ms.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/nb.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/nl.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/no.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/pl.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/pt-br.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/pt.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ro.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ru.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/sk.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/sl.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/sr-latn.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/sr.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/sv.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/th.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/tr.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/ug.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/uk.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/vi.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/zh-cn.js
 create mode 100644 devel/third-party/ckeditor/plugins/wsc/lang/zh.js
 create mode 100644 devel/third-party/ckeditor/plugins/wysiwygarea/samples/fullpage.html
 create mode 100644 devel/third-party/ckeditor/skins/kama/dialog_ie.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/dialog_ie7.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/dialog_ie8.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/dialog_iequirks.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/dialog_opera.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/editor_ie.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/editor_ie7.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/editor_ie8.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/editor_iequirks.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/elementspath.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/icons.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/about.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/anchor-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/anchor.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bgcolor.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bidiltr.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bidirtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/blockquote.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bold.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bulletedlist-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/bulletedlist.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/button.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/checkbox.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/copy-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/copy.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/creatediv.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/cut-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/cut.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/docprops-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/docprops.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/find-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/find.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/flash.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/form.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/hiddenfield.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/horizontalrule.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/icons.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/iframe.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/image.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/imagebutton.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/indent-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/indent.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/italic.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/justifyblock.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/justifycenter.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/justifyleft.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/justifyright.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/link.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/maximize.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/newpage-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/newpage.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/numberedlist-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/numberedlist.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/outdent-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/outdent.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pagebreak-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pagebreak.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/paste-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/paste.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pastefromword-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pastefromword.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pastetext-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/pastetext.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/placeholder.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/preview-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/preview.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/print.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/radio.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/redo-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/redo.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/removeformat.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/replace.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/save.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/scayt.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/select-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/select.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/selectall.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/showblocks-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/showblocks.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/smiley.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/source-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/source.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/specialchar.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/spellchecker.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/strike.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/subscript.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/superscript.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/table.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/templates-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/templates.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/textarea-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/textarea.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/textcolor.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/textfield.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/underline.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/undo-rtl.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/undo.png
 create mode 100644 devel/third-party/ckeditor/skins/kama/icons/unlink.png
 rename {share/static/RichText/skins/v2 => devel/third-party/ckeditor/skins/kama}/images/dialog_sides.gif (100%)
 rename {share/static/RichText/skins/v2 => devel/third-party/ckeditor/skins/kama}/images/dialog_sides.png (100%)
 rename {share/static/RichText/skins/v2 => devel/third-party/ckeditor/skins/kama}/images/dialog_sides_rtl.png (100%)
 rename {share/static/RichText/skins/office2003 => devel/third-party/ckeditor/skins/kama}/images/mini.gif (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/skins/kama/images/sprites.png (100%)
 copy {share/static/RichText => devel/third-party/ckeditor}/skins/kama/images/sprites_ie6.png (100%)
 rename {share/static/RichText/skins/v2 => devel/third-party/ckeditor/skins/kama}/images/toolbar_start.gif (100%)
 delete mode 100644 devel/third-party/ckeditor/skins/kama/mainui.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/menu.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/panel.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/presets.css
 create mode 100644 devel/third-party/ckeditor/skins/kama/readme.md
 delete mode 100644 devel/third-party/ckeditor/skins/kama/reset.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/richcombo.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/templates.css
 delete mode 100644 devel/third-party/ckeditor/skins/kama/toolbar.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/dialog.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/editor.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/elementspath.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/icons.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/mainui.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/menu.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/panel.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/presets.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/reset.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/richcombo.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/skin.js
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/templates.css
 delete mode 100644 devel/third-party/ckeditor/skins/office2003/toolbar.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/dialog.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/editor.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/elementspath.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/icons.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/mainui.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/menu.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/panel.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/presets.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/reset.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/richcombo.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/skin.js
 delete mode 100644 devel/third-party/ckeditor/skins/v2/templates.css
 delete mode 100644 devel/third-party/ckeditor/skins/v2/toolbar.css
 create mode 100644 devel/third-party/ckeditor/styles.js
 delete mode 100644 devel/third-party/ckeditor/themes/default/theme.js
 delete mode 100644 share/static/RichText/LICENSE.html
 create mode 100644 share/static/RichText/LICENSE.md
 delete mode 100644 share/static/RichText/adapters/jquery.js
 delete mode 100644 share/static/RichText/lang/_languages.js
 delete mode 100644 share/static/RichText/lang/_translationstatus.txt
 create mode 100644 share/static/RichText/lang/ka.js
 create mode 100644 share/static/RichText/lang/ku.js
 create mode 100644 share/static/RichText/lang/mk.js
 create mode 100644 share/static/RichText/lang/ug.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ar.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/bg.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ca.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/cs.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/cy.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/da.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/de.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/el.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/en.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/eo.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/es.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/et.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/fa.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/fi.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/fr.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/gu.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/he.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/hi.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/hr.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/hu.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/it.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ja.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ku.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/lt.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/lv.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/mk.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/mn.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/nb.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/nl.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/no.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/pl.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/pt-br.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/pt.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ro.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ru.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/sk.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/sl.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/sv.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/tr.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/ug.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/uk.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/vi.js
 create mode 100644 share/static/RichText/plugins/a11yhelp/dialogs/lang/zh-cn.js
 delete mode 100644 share/static/RichText/plugins/a11yhelp/lang/en.js
 delete mode 100644 share/static/RichText/plugins/a11yhelp/lang/he.js
 delete mode 100644 share/static/RichText/plugins/autogrow/plugin.js
 rename share/static/RichText/{ => plugins/fakeobjects}/images/spacer.gif (100%)
 create mode 100644 share/static/RichText/plugins/icons.png
 create mode 100644 share/static/RichText/plugins/iframe/dialogs/iframe.js
 create mode 100644 share/static/RichText/plugins/iframe/images/placeholder.png
 delete mode 100644 share/static/RichText/plugins/iframedialog/plugin.js
 rename share/static/RichText/{skins/office2003 => plugins/image}/images/noimage.png (100%)
 delete mode 100644 share/static/RichText/plugins/link/images/anchor.gif
 create mode 100644 share/static/RichText/plugins/link/images/anchor.png
 create mode 100644 share/static/RichText/plugins/magicline/images/icon.png
 delete mode 100644 share/static/RichText/plugins/pastetext/dialogs/pastetext.js
 create mode 100644 share/static/RichText/plugins/preview/preview.html
 create mode 100644 share/static/RichText/plugins/scayt/LICENSE.md
 create mode 100644 share/static/RichText/plugins/scayt/README.md
 copy share/static/RichText/plugins/smiley/images/{embaressed_smile.gif => embarrassed_smile.gif} (100%)
 copy share/static/RichText/plugins/smiley/images/{tounge_smile.gif => tongue_smile.gif} (100%)
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/_translationstatus.txt
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/ca.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/cs.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/cy.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/de.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/el.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/en.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/eo.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/et.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/fa.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/fi.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/fr.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/he.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/hr.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/it.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/ku.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/lv.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/nb.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/nl.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/no.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/pt-br.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/sk.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/sv.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/tr.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/ug.js
 create mode 100644 share/static/RichText/plugins/specialchar/dialogs/lang/zh-cn.js
 delete mode 100644 share/static/RichText/plugins/styles/styles/default.js
 delete mode 100644 share/static/RichText/plugins/tableresize/plugin.js
 create mode 100644 share/static/RichText/plugins/templates/dialogs/templates.css
 delete mode 100644 share/static/RichText/plugins/uicolor/dialogs/uicolor.js
 delete mode 100644 share/static/RichText/plugins/uicolor/lang/en.js
 delete mode 100644 share/static/RichText/plugins/uicolor/plugin.js
 delete mode 100644 share/static/RichText/plugins/uicolor/uicolor.gif
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/assets/hue_bg.png
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/assets/hue_thumb.png
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/assets/picker_mask.png
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/assets/picker_thumb.png
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/assets/yui.css
 delete mode 100644 share/static/RichText/plugins/uicolor/yui/yui.js
 create mode 100644 share/static/RichText/plugins/wsc/LICENSE.md
 create mode 100644 share/static/RichText/plugins/wsc/README.md
 create mode 100644 share/static/RichText/skins/kama/dialog_ie.css
 create mode 100644 share/static/RichText/skins/kama/dialog_ie7.css
 create mode 100644 share/static/RichText/skins/kama/dialog_ie8.css
 create mode 100644 share/static/RichText/skins/kama/dialog_iequirks.css
 create mode 100644 share/static/RichText/skins/kama/dialog_opera.css
 create mode 100644 share/static/RichText/skins/kama/editor_ie.css
 create mode 100644 share/static/RichText/skins/kama/editor_ie7.css
 create mode 100644 share/static/RichText/skins/kama/editor_ie8.css
 create mode 100644 share/static/RichText/skins/kama/editor_iequirks.css
 delete mode 100644 share/static/RichText/skins/kama/icons_rtl.png
 create mode 100644 share/static/RichText/skins/kama/readme.md
 delete mode 100644 share/static/RichText/skins/kama/skin.js
 delete mode 100644 share/static/RichText/skins/kama/templates.css
 delete mode 100644 share/static/RichText/skins/office2003/dialog.css
 delete mode 100644 share/static/RichText/skins/office2003/editor.css
 delete mode 100644 share/static/RichText/skins/office2003/icons.png
 delete mode 100644 share/static/RichText/skins/office2003/icons_rtl.png
 delete mode 100644 share/static/RichText/skins/office2003/images/dialog_sides.gif
 delete mode 100644 share/static/RichText/skins/office2003/images/dialog_sides.png
 delete mode 100644 share/static/RichText/skins/office2003/images/dialog_sides_rtl.png
 delete mode 100644 share/static/RichText/skins/office2003/images/sprites.png
 delete mode 100644 share/static/RichText/skins/office2003/images/sprites_ie6.png
 delete mode 100644 share/static/RichText/skins/office2003/skin.js
 delete mode 100644 share/static/RichText/skins/office2003/templates.css
 delete mode 100644 share/static/RichText/skins/v2/dialog.css
 delete mode 100644 share/static/RichText/skins/v2/editor.css
 delete mode 100644 share/static/RichText/skins/v2/icons.png
 delete mode 100644 share/static/RichText/skins/v2/icons_rtl.png
 delete mode 100644 share/static/RichText/skins/v2/images/mini.gif
 delete mode 100644 share/static/RichText/skins/v2/images/noimage.png
 delete mode 100644 share/static/RichText/skins/v2/images/sprites.png
 delete mode 100644 share/static/RichText/skins/v2/images/sprites_ie6.png
 delete mode 100644 share/static/RichText/skins/v2/skin.js
 delete mode 100644 share/static/RichText/skins/v2/templates.css
 create mode 100644 share/static/RichText/styles.js
 delete mode 100644 share/static/RichText/themes/default/theme.js

- Log -----------------------------------------------------------------
commit be5e81c9ff0fc1b96210b47aa0e498fcc9ad5147
Merge: c1577c5 62b66a4
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Mon Mar 11 16:01:55 2013 -0400

    Merge branch '4.2/update-ckeditor'


-----------------------------------------------------------------------


More information about the Rt-commit mailing list