From 5cfa6a2bfe5a2602978de03c75a3917af729a626 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 7 Jul 2014 12:29:58 +0200 Subject: [PATCH 1/6] add standard files --- .coveragerc | 19 ++++++++++++++++++ .gitignore | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ .travis.yml | 44 +++++++++++++++++++++++++++++++++++++++++ README.md | 12 ++++++++++++ 4 files changed, 131 insertions(+) create mode 100644 .coveragerc create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 README.md diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..a06f8bfe --- /dev/null +++ b/.coveragerc @@ -0,0 +1,19 @@ +# Config file .coveragerc + +[report] +omit = + /usr/* + */bin/* + */lib/* + */odoo/* + */openerp/* + */tests/* + *__init__.py + +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about null context checking + if context is None: diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..890ff010 --- /dev/null +++ b/.gitignore @@ -0,0 +1,56 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Pycharm +.idea + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Sphinx documentation +docs/_build/ + +# Backup files +*~ +*.swp diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..50be0b23 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,44 @@ +# Config file .travis.yml + +language: python + +python: +# - "pypy" # not supported by odoo 8 +# - "3.4" # not supported by odoo 8 +# - "3.3" # not supported by odoo 8 + - "2.7" +# - "2.6" # not supported by odoo 8 + +env: + - ODOO="https://github.com/savoirfairelinux/odoo/archive/setuptools-addons.tar.gz" # Temp until https://github.com/odoo/odoo/issues/185 or https://github.com/odoo/odoo/issues/441 is fixed +# - ODOO="https://github.com/odoo/odoo/archive/master.tar.gz" +# - ODOO="https://github.com/OCA/OCB/archive/master.zip" + +# Need coveralls for coverage reports +# Need flake8 for pep8 testing +# Manually get PyChart +# Install tested version of odoo (official or ocb) +# Get modules from other repos which have dependencies (in this case travel requires modules from lp:partner-contact-management and lp:openerp-hr +install: + - pip install coveralls flake8 + - pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz + - pip install ${ODOO} + +# Create databae +# Pre-install modules and dependencies +before_script: + - createdb test + +# Test with flake, ignore F401 for __init__.py files, use a max length of 120 +# Run tests with coverage +# Only test modules in repo (list populated by directories in repo) +# Preload modules before testing to only run tests of repo's modules +# Include current directory and dependent repos in addons-path as well as official addons +script: + - flake8 . --max-line-length=120 --exclude=__unported__ --filename=__init__.py --ignore=F401 + - flake8 . --max-line-length=120 --exclude=__unported__,__init__.py + - odoo.py -d test --stop-after-init --init=$(python -c 'import os; print(",".join(x for x in os.listdir(".") if os.path.isdir(x) and not x.startswith(".") and x != "__unported__"))') --addons-path=$(pwd),`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`/addons + - coverage run $(which odoo.py) -d test --test-enable --log-level=test --stop-after-init --init=$(python -c 'import os; print(",".join(x for x in os.listdir(".") if os.path.isdir(x) and not x.startswith(".") and x != "__unported__"))') --addons-path=$(pwd),`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"`/addons + +after_success: + coveralls diff --git a/README.md b/README.md new file mode 100644 index 00000000..df3f2a6c --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +[![Build Status](https://travis-ci.org/OCA/web.svg?branch=master)](https://travis-ci.org/OCA/web) +[![Coverage Status](https://img.shields.io/coveralls/OCA/web.svg)](https://coveralls.io/r/OCA/web?branch=master) + +Web addons for Odoo +=================== + +This project aims to deal with modules related to the webclient of Odoo. You'll find modules that: + +- Add facilities to the UI +- Add widgets +- Ease the import/export features +- Generally add clientside functionality From 9972de3b4403b319585862b38a91b8ecbd690324 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 7 Jul 2014 13:11:28 +0200 Subject: [PATCH 2/6] move all addons to __unported__, set all addons as not installable --- .../web_ckeditor4}/__init__.py | 0 .../web_ckeditor4}/__openerp__.py | 2 +- .../web_ckeditor4}/static/lib/ckeditor/CHANGES.md | 0 .../web_ckeditor4}/static/lib/ckeditor/LICENSE.md | 0 .../web_ckeditor4}/static/lib/ckeditor/README.md | 0 .../static/lib/ckeditor/adapters/jquery.js | 0 .../static/lib/ckeditor/build-config.js | 0 .../web_ckeditor4}/static/lib/ckeditor/ckeditor.js | 0 .../web_ckeditor4}/static/lib/ckeditor/config.js | 0 .../web_ckeditor4}/static/lib/ckeditor/contents.css | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/af.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ar.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/bg.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/bn.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/bs.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ca.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/cs.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/cy.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/da.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/de.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/el.js | 0 .../static/lib/ckeditor/lang/en-au.js | 0 .../static/lib/ckeditor/lang/en-ca.js | 0 .../static/lib/ckeditor/lang/en-gb.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/en.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/eo.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/es.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/et.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/eu.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/fa.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/fi.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/fo.js | 0 .../static/lib/ckeditor/lang/fr-ca.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/fr.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/gl.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/gu.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/he.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/hi.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/hr.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/hu.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/id.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/is.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/it.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ja.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ka.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/km.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ko.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ku.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/lt.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/lv.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/mk.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/mn.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ms.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/nb.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/nl.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/no.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/pl.js | 0 .../static/lib/ckeditor/lang/pt-br.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/pt.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ro.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ru.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/si.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/sk.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/sl.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/sq.js | 0 .../static/lib/ckeditor/lang/sr-latn.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/sr.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/sv.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/th.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/tr.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/ug.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/uk.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/vi.js | 0 .../static/lib/ckeditor/lang/zh-cn.js | 0 .../web_ckeditor4}/static/lib/ckeditor/lang/zh.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../a11yhelp/dialogs/lang/_translationstatus.txt | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ar.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/bg.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ca.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/cs.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/cy.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/da.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/de.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/el.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/en.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/eo.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/es.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/et.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/fa.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/fi.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/fr.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/gl.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/gu.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/he.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/hi.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/hr.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/hu.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/id.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/it.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ja.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/km.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ko.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ku.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/lt.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/lv.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/mk.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/mn.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/nb.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/nl.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/no.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/pl.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/pt.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ro.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ru.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/si.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/sk.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/sl.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/sq.js | 0 .../plugins/a11yhelp/dialogs/lang/sr-latn.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/sr.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/sv.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/th.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/tr.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/ug.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/uk.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/vi.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js | 0 .../ckeditor/plugins/a11yhelp/dialogs/lang/zh.js | 0 .../lib/ckeditor/plugins/about/dialogs/about.js | 0 .../plugins/about/dialogs/hidpi/logo_ckeditor.png | Bin .../plugins/about/dialogs/logo_ckeditor.png | Bin .../lib/ckeditor/plugins/clipboard/dialogs/paste.js | 0 .../plugins/colordialog/dialogs/colordialog.js | 0 .../lib/ckeditor/plugins/dialog/dialogDefinition.js | 0 .../static/lib/ckeditor/plugins/div/dialogs/div.js | 0 .../ckeditor/plugins/fakeobjects/images/spacer.gif | Bin .../lib/ckeditor/plugins/find/dialogs/find.js | 0 .../lib/ckeditor/plugins/flash/dialogs/flash.js | 0 .../ckeditor/plugins/flash/images/placeholder.png | Bin .../lib/ckeditor/plugins/forms/dialogs/button.js | 0 .../lib/ckeditor/plugins/forms/dialogs/checkbox.js | 0 .../lib/ckeditor/plugins/forms/dialogs/form.js | 0 .../ckeditor/plugins/forms/dialogs/hiddenfield.js | 0 .../lib/ckeditor/plugins/forms/dialogs/radio.js | 0 .../lib/ckeditor/plugins/forms/dialogs/select.js | 0 .../lib/ckeditor/plugins/forms/dialogs/textarea.js | 0 .../lib/ckeditor/plugins/forms/dialogs/textfield.js | 0 .../ckeditor/plugins/forms/images/hiddenfield.gif | Bin .../static/lib/ckeditor/plugins/icons.png | Bin .../static/lib/ckeditor/plugins/icons_hidpi.png | Bin .../lib/ckeditor/plugins/iframe/dialogs/iframe.js | 0 .../ckeditor/plugins/iframe/images/placeholder.png | Bin .../lib/ckeditor/plugins/image/dialogs/image.js | 0 .../lib/ckeditor/plugins/image/images/noimage.png | Bin .../lib/ckeditor/plugins/link/dialogs/anchor.js | 0 .../lib/ckeditor/plugins/link/dialogs/link.js | 0 .../lib/ckeditor/plugins/link/images/anchor.png | Bin .../ckeditor/plugins/link/images/hidpi/anchor.png | Bin .../ckeditor/plugins/liststyle/dialogs/liststyle.js | 0 .../plugins/magicline/images/hidpi/icon.png | Bin .../lib/ckeditor/plugins/magicline/images/icon.png | Bin .../ckeditor/plugins/pagebreak/images/pagebreak.gif | Bin .../plugins/pastefromword/filter/default.js | 0 .../lib/ckeditor/plugins/preview/preview.html | 0 .../static/lib/ckeditor/plugins/scayt/LICENSE.md | 0 .../static/lib/ckeditor/plugins/scayt/README.md | 0 .../lib/ckeditor/plugins/scayt/dialogs/options.js | 0 .../lib/ckeditor/plugins/scayt/dialogs/toolbar.css | 0 .../plugins/showblocks/images/block_address.png | Bin .../plugins/showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../ckeditor/plugins/showblocks/images/block_h1.png | Bin .../ckeditor/plugins/showblocks/images/block_h2.png | Bin .../ckeditor/plugins/showblocks/images/block_h3.png | Bin .../ckeditor/plugins/showblocks/images/block_h4.png | Bin .../ckeditor/plugins/showblocks/images/block_h5.png | Bin .../ckeditor/plugins/showblocks/images/block_h6.png | Bin .../ckeditor/plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../lib/ckeditor/plugins/smiley/dialogs/smiley.js | 0 .../ckeditor/plugins/smiley/images/angel_smile.gif | Bin .../ckeditor/plugins/smiley/images/angel_smile.png | Bin .../ckeditor/plugins/smiley/images/angry_smile.gif | Bin .../ckeditor/plugins/smiley/images/angry_smile.png | Bin .../ckeditor/plugins/smiley/images/broken_heart.gif | Bin .../ckeditor/plugins/smiley/images/broken_heart.png | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../plugins/smiley/images/confused_smile.png | Bin .../ckeditor/plugins/smiley/images/cry_smile.gif | Bin .../ckeditor/plugins/smiley/images/cry_smile.png | Bin .../ckeditor/plugins/smiley/images/devil_smile.gif | Bin .../ckeditor/plugins/smiley/images/devil_smile.png | Bin .../plugins/smiley/images/embaressed_smile.gif | Bin .../plugins/smiley/images/embarrassed_smile.gif | Bin .../plugins/smiley/images/embarrassed_smile.png | Bin .../lib/ckeditor/plugins/smiley/images/envelope.gif | Bin .../lib/ckeditor/plugins/smiley/images/envelope.png | Bin .../lib/ckeditor/plugins/smiley/images/heart.gif | Bin .../lib/ckeditor/plugins/smiley/images/heart.png | Bin .../lib/ckeditor/plugins/smiley/images/kiss.gif | Bin .../lib/ckeditor/plugins/smiley/images/kiss.png | Bin .../ckeditor/plugins/smiley/images/lightbulb.gif | Bin .../ckeditor/plugins/smiley/images/lightbulb.png | Bin .../ckeditor/plugins/smiley/images/omg_smile.gif | Bin .../ckeditor/plugins/smiley/images/omg_smile.png | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../plugins/smiley/images/regular_smile.png | Bin .../ckeditor/plugins/smiley/images/sad_smile.gif | Bin .../ckeditor/plugins/smiley/images/sad_smile.png | Bin .../ckeditor/plugins/smiley/images/shades_smile.gif | Bin .../ckeditor/plugins/smiley/images/shades_smile.png | Bin .../ckeditor/plugins/smiley/images/teeth_smile.gif | Bin .../ckeditor/plugins/smiley/images/teeth_smile.png | Bin .../ckeditor/plugins/smiley/images/thumbs_down.gif | Bin .../ckeditor/plugins/smiley/images/thumbs_down.png | Bin .../ckeditor/plugins/smiley/images/thumbs_up.gif | Bin .../ckeditor/plugins/smiley/images/thumbs_up.png | Bin .../ckeditor/plugins/smiley/images/tongue_smile.gif | Bin .../ckeditor/plugins/smiley/images/tongue_smile.png | Bin .../ckeditor/plugins/smiley/images/tounge_smile.gif | Bin .../smiley/images/whatchutalkingabout_smile.gif | Bin .../smiley/images/whatchutalkingabout_smile.png | Bin .../ckeditor/plugins/smiley/images/wink_smile.gif | Bin .../ckeditor/plugins/smiley/images/wink_smile.png | Bin .../specialchar/dialogs/lang/_translationstatus.txt | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ar.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/bg.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ca.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/cs.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/cy.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/de.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/el.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/en.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/eo.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/es.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/et.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fa.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fi.js | 0 .../plugins/specialchar/dialogs/lang/fr-ca.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/fr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/gl.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/he.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/hr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/hu.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/id.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/it.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ja.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/km.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ku.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/lv.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/nb.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/nl.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/no.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/pl.js | 0 .../plugins/specialchar/dialogs/lang/pt-br.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/pt.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ru.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/si.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/sk.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/sl.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/sq.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/sv.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/th.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/tr.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/ug.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/uk.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/vi.js | 0 .../plugins/specialchar/dialogs/lang/zh-cn.js | 0 .../ckeditor/plugins/specialchar/dialogs/lang/zh.js | 0 .../plugins/specialchar/dialogs/specialchar.js | 0 .../lib/ckeditor/plugins/table/dialogs/table.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../plugins/templates/dialogs/templates.css | 0 .../ckeditor/plugins/templates/dialogs/templates.js | 0 .../ckeditor/plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../static/lib/ckeditor/plugins/wsc/LICENSE.md | 0 .../static/lib/ckeditor/plugins/wsc/README.md | 0 .../lib/ckeditor/plugins/wsc/dialogs/ciframe.html | 0 .../lib/ckeditor/plugins/wsc/dialogs/tmp.html | 0 .../ckeditor/plugins/wsc/dialogs/tmpFrameset.html | 0 .../static/lib/ckeditor/plugins/wsc/dialogs/wsc.css | 0 .../static/lib/ckeditor/plugins/wsc/dialogs/wsc.js | 0 .../lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js | 0 .../static/lib/ckeditor/samples/ajax.html | 0 .../static/lib/ckeditor/samples/api.html | 0 .../static/lib/ckeditor/samples/appendto.html | 0 .../lib/ckeditor/samples/assets/inlineall/logo.png | Bin .../samples/assets/outputxhtml/outputxhtml.css | 0 .../lib/ckeditor/samples/assets/posteddata.php | 0 .../static/lib/ckeditor/samples/assets/sample.css | 0 .../static/lib/ckeditor/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../static/lib/ckeditor/samples/datafiltering.html | 0 .../static/lib/ckeditor/samples/divreplace.html | 0 .../static/lib/ckeditor/samples/index.html | 0 .../static/lib/ckeditor/samples/inlineall.html | 0 .../static/lib/ckeditor/samples/inlinebycode.html | 0 .../static/lib/ckeditor/samples/inlinetextarea.html | 0 .../static/lib/ckeditor/samples/jquery.html | 0 .../samples/plugins/dialog/assets/my_dialog.js | 0 .../lib/ckeditor/samples/plugins/dialog/dialog.html | 0 .../ckeditor/samples/plugins/enterkey/enterkey.html | 0 .../assets/outputforflash/outputforflash.fla | Bin .../assets/outputforflash/outputforflash.swf | Bin .../htmlwriter/assets/outputforflash/swfobject.js | 0 .../samples/plugins/htmlwriter/outputforflash.html | 0 .../samples/plugins/htmlwriter/outputhtml.html | 0 .../samples/plugins/magicline/magicline.html | 0 .../ckeditor/samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 .../static/lib/ckeditor/samples/readonly.html | 0 .../static/lib/ckeditor/samples/replacebyclass.html | 0 .../static/lib/ckeditor/samples/replacebycode.html | 0 .../static/lib/ckeditor/samples/sample.css | 0 .../static/lib/ckeditor/samples/sample.js | 0 .../lib/ckeditor/samples/sample_posteddata.php | 0 .../static/lib/ckeditor/samples/tabindex.html | 0 .../static/lib/ckeditor/samples/uicolor.html | 0 .../static/lib/ckeditor/samples/uilanguages.html | 0 .../static/lib/ckeditor/samples/xhtmlstyle.html | 0 .../static/lib/ckeditor/skins/moono/dialog.css | 0 .../static/lib/ckeditor/skins/moono/dialog_ie.css | 0 .../static/lib/ckeditor/skins/moono/dialog_ie7.css | 0 .../static/lib/ckeditor/skins/moono/dialog_ie8.css | 0 .../lib/ckeditor/skins/moono/dialog_iequirks.css | 0 .../lib/ckeditor/skins/moono/dialog_opera.css | 0 .../static/lib/ckeditor/skins/moono/editor.css | 0 .../lib/ckeditor/skins/moono/editor_gecko.css | 0 .../static/lib/ckeditor/skins/moono/editor_ie.css | 0 .../static/lib/ckeditor/skins/moono/editor_ie7.css | 0 .../static/lib/ckeditor/skins/moono/editor_ie8.css | 0 .../lib/ckeditor/skins/moono/editor_iequirks.css | 0 .../static/lib/ckeditor/skins/moono/icons.png | Bin .../static/lib/ckeditor/skins/moono/icons_hidpi.png | Bin .../lib/ckeditor/skins/moono/images/arrow.png | Bin .../lib/ckeditor/skins/moono/images/close.png | Bin .../lib/ckeditor/skins/moono/images/hidpi/close.png | Bin .../ckeditor/skins/moono/images/hidpi/lock-open.png | Bin .../lib/ckeditor/skins/moono/images/hidpi/lock.png | Bin .../ckeditor/skins/moono/images/hidpi/refresh.png | Bin .../lib/ckeditor/skins/moono/images/lock-open.png | Bin .../static/lib/ckeditor/skins/moono/images/lock.png | Bin .../lib/ckeditor/skins/moono/images/refresh.png | Bin .../static/lib/ckeditor/skins/moono/readme.md | 0 .../web_ckeditor4}/static/lib/ckeditor/styles.js | 0 .../web_ckeditor4}/static/src/css/web_ckeditor4.css | 0 .../web_ckeditor4}/static/src/img/icon.png | Bin .../static/src/js/ckeditor_basepath.js | 0 .../web_ckeditor4}/static/src/js/web_ckeditor4.js | 0 {web_color => __unported__/web_color}/__init__.py | 0 .../web_color}/__openerp__.py | 2 +- {web_color => __unported__/web_color}/i18n/fr_CA.po | 0 .../static/lib/really-simple-color-picker/LICENSE | 0 .../static/lib/really-simple-color-picker/README.md | 0 .../static/lib/really-simple-color-picker/arrow.gif | Bin .../static/lib/really-simple-color-picker/arrow.png | Bin .../lib/really-simple-color-picker/colorPicker.css | 0 .../static/lib/really-simple-color-picker/demo.html | 0 .../jquery.colorPicker.js | 0 .../jquery.colorPicker.min.js | 0 .../lib/really-simple-color-picker/screenshot.png | Bin .../static/lib/really-simple-color-picker/test.html | 0 .../web_color}/static/src/css/color.css | 0 .../web_color}/static/src/img/icon.png | Bin .../web_color}/static/src/js/lib.js | 0 .../web_color}/static/src/xml/lib.xml | 0 .../web_confirm_window_close}/__init__.py | 0 .../web_confirm_window_close}/__openerp__.py | 1 + .../static/src/js/web_confirm_window_close.js | 0 .../web_easy_switch_company}/__init__.py | 0 .../web_easy_switch_company}/__openerp__.py | 2 +- .../controllers/__init__.py | 0 .../web_easy_switch_company}/controllers/main.py | 0 .../web_easy_switch_company}/model/__init__.py | 0 .../web_easy_switch_company}/model/res_company.py | 0 .../web_easy_switch_company}/model/res_users.py | 0 .../static/src/img/icon.png | Bin .../static/src/img/selection-off.png | Bin .../static/src/img/selection-on.png | Bin .../static/src/js/switch_company.js | 0 .../static/src/xml/switch_company.xml | 0 .../view/res_users_view.xml | 0 .../web_export_view}/AUTHORS.txt | 0 .../web_export_view}/__init__.py | 0 .../web_export_view}/__openerp__.py | 2 +- .../web_export_view}/controllers.py | 0 .../web_export_view}/i18n/de.po | 0 .../web_export_view}/i18n/es.po | 0 .../web_export_view}/i18n/fr.po | 0 .../web_export_view}/i18n/is.po | 0 .../web_export_view}/i18n/nl.po | 0 .../web_export_view}/i18n/web_export_view.pot | 0 .../static/js/web_advanced_export.js | 0 .../static/xml/web_advanced_export.xml | 0 .../web_ir_actions_act_window_page}/__init__.py | 0 .../web_ir_actions_act_window_page}/__openerp__.py | 2 +- .../static/src/img/icon.png | Bin .../static/src/js/web_ir_actions_act_window_page.js | 0 .../web_m2x_options}/README.rst | 0 .../web_m2x_options}/__init__.py | 0 .../web_m2x_options}/__openerp__.py | 2 +- .../web_m2x_options}/static/description/index.html | 0 .../web_m2x_options}/static/src/js/form.js | 0 .../web_nocreatedb}/__init__.py | 0 .../web_nocreatedb}/__openerp__.py | 2 +- .../web_nocreatedb}/static/src/img/screen.png | Bin .../static/src/xml/web_nocreatedb.xml | 0 .../web_polymorphic_many2one}/__init__.py | 0 .../web_polymorphic_many2one}/__openerp__.py | 2 +- .../static/src/js/view_form.js | 0 .../web_popup_large}/__init__.py | 0 .../web_popup_large}/__openerp__.py | 1 + .../static/src/js/web_popup_large.js | 0 .../web_search_alphabetic}/__init__.py | 0 .../web_search_alphabetic}/__openerp__.py | 1 + .../static/src/css/web_search.css | 0 .../web_search_alphabetic}/static/src/img/icon.png | Bin .../static/src/js/web_search.js | 0 .../static/src/xml/web_search.xml | 0 .../web_send_message_popup}/__init__.py | 0 .../web_send_message_popup}/__openerp__.py | 2 +- .../web_send_message_popup}/static/src/xml/mail.xml | 0 .../web_translate_dialog}/__init__.py | 0 .../web_translate_dialog}/__openerp__.py | 1 + .../web_translate_dialog}/i18n/es.po | 0 .../web_translate_dialog}/i18n/fr.po | 0 .../web_translate_dialog}/i18n/nl.po | 0 .../web_translate_dialog}/i18n/tr.po | 0 .../i18n/web_translate_dialog.pot | 0 .../web_translate_dialog}/static/src/css/base.css | 0 .../static/src/js/web_translate_dialog.js | 0 .../web_translate_dialog}/static/src/xml/base.xml | 0 .../web_widget_float_formula}/__init__.py | 0 .../web_widget_float_formula}/__openerp__.py | 2 +- .../static/src/img/icon.png | Bin .../static/src/js/models.js | 0 442 files changed, 14 insertions(+), 10 deletions(-) rename {web_ckeditor4 => __unported__/web_ckeditor4}/__init__.py (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/__openerp__.py (99%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/CHANGES.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/LICENSE.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/README.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/adapters/jquery.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/build-config.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/ckeditor.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/config.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/contents.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/af.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ar.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/bg.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/bn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/bs.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/cs.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/cy.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/da.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/de.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/el.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/en-au.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/en-ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/en-gb.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/en.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/eo.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/es.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/et.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/eu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/fa.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/fi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/fo.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/fr-ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/fr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/gl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/gu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/he.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/hi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/hr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/hu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/id.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/is.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/it.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ja.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ka.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/km.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ko.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ku.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/lt.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/lv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/mk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/mn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ms.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/nb.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/nl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/no.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/pl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/pt-br.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/pt.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ro.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ru.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/si.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sq.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sr-latn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/sv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/th.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/tr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/ug.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/uk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/vi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/zh-cn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/lang/zh.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/da.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/de.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/el.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/en.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/es.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/et.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/he.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/id.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/it.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/km.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/no.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/si.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/th.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/about/dialogs/about.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/about/dialogs/logo_ckeditor.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/clipboard/dialogs/paste.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/colordialog/dialogs/colordialog.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/dialog/dialogDefinition.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/div/dialogs/div.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/fakeobjects/images/spacer.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/find/dialogs/find.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/flash/dialogs/flash.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/flash/images/placeholder.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/button.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/checkbox.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/form.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/hiddenfield.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/radio.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/select.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/textarea.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/dialogs/textfield.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/forms/images/hiddenfield.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/icons.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/icons_hidpi.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/iframe/dialogs/iframe.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/iframe/images/placeholder.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/image/dialogs/image.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/image/images/noimage.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/link/dialogs/anchor.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/link/dialogs/link.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/link/images/anchor.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/link/images/hidpi/anchor.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/liststyle/dialogs/liststyle.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/magicline/images/hidpi/icon.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/magicline/images/icon.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/pagebreak/images/pagebreak.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/pastefromword/filter/default.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/preview/preview.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/scayt/LICENSE.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/scayt/README.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/scayt/dialogs/options.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/scayt/dialogs/toolbar.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_address.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_blockquote.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_div.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h1.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h2.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h3.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h4.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h5.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_h6.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_p.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/showblocks/images/block_pre.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/dialogs/smiley.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/angel_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/angel_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/angry_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/angry_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/broken_heart.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/broken_heart.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/confused_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/confused_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/cry_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/cry_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/devil_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/devil_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/embaressed_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/envelope.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/envelope.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/heart.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/heart.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/kiss.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/kiss.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/lightbulb.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/lightbulb.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/omg_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/omg_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/regular_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/regular_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/sad_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/sad_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/shades_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/shades_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/teeth_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/teeth_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/thumbs_down.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/thumbs_down.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/thumbs_up.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/thumbs_up.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/tongue_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/tongue_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/tounge_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/wink_smile.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/smiley/images/wink_smile.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ar.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/bg.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cs.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cy.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/de.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/el.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/en.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/eo.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/es.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/et.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fa.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/gl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/he.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hu.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/id.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/it.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ja.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/km.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ku.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/lv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nb.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/no.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ru.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/si.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sl.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sq.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sv.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/th.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/tr.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ug.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/uk.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/vi.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/specialchar/dialogs/specialchar.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/table/dialogs/table.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/tabletools/dialogs/tableCell.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/dialogs/templates.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/dialogs/templates.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/templates/default.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/templates/images/template1.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/templates/images/template2.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/templates/templates/images/template3.gif (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/LICENSE.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/README.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/ciframe.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/tmp.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/tmpFrameset.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/wsc.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/wsc.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/ajax.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/api.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/appendto.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/inlineall/logo.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/outputxhtml/outputxhtml.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/posteddata.php (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/sample.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/sample.jpg (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/assets/uilanguages/languages.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/datafiltering.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/divreplace.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/index.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/inlineall.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/inlinebycode.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/inlinetextarea.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/jquery.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/dialog/assets/my_dialog.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/dialog/dialog.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/enterkey/enterkey.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/htmlwriter/outputforflash.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/magicline/magicline.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/readonly.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/replacebyclass.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/replacebycode.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/sample.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/sample.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/sample_posteddata.php (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/tabindex.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/uicolor.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/uilanguages.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/samples/xhtmlstyle.html (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog_ie.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog_ie7.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog_ie8.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog_iequirks.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/dialog_opera.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor_gecko.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor_ie.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor_ie7.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor_ie8.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/editor_iequirks.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/icons.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/icons_hidpi.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/arrow.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/close.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/hidpi/close.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/hidpi/lock-open.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/hidpi/lock.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/hidpi/refresh.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/lock-open.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/lock.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/images/refresh.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/skins/moono/readme.md (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/lib/ckeditor/styles.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/src/css/web_ckeditor4.css (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/src/img/icon.png (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/src/js/ckeditor_basepath.js (100%) rename {web_ckeditor4 => __unported__/web_ckeditor4}/static/src/js/web_ckeditor4.js (100%) rename {web_color => __unported__/web_color}/__init__.py (100%) rename {web_color => __unported__/web_color}/__openerp__.py (98%) rename {web_color => __unported__/web_color}/i18n/fr_CA.po (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/LICENSE (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/README.md (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/arrow.gif (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/arrow.png (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/colorPicker.css (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/demo.html (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/jquery.colorPicker.js (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/jquery.colorPicker.min.js (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/screenshot.png (100%) rename {web_color => __unported__/web_color}/static/lib/really-simple-color-picker/test.html (100%) rename {web_color => __unported__/web_color}/static/src/css/color.css (100%) rename {web_color => __unported__/web_color}/static/src/img/icon.png (100%) rename {web_color => __unported__/web_color}/static/src/js/lib.js (100%) rename {web_color => __unported__/web_color}/static/src/xml/lib.xml (100%) rename {web_confirm_window_close => __unported__/web_confirm_window_close}/__init__.py (100%) rename {web_confirm_window_close => __unported__/web_confirm_window_close}/__openerp__.py (98%) rename {web_confirm_window_close => __unported__/web_confirm_window_close}/static/src/js/web_confirm_window_close.js (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/__init__.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/__openerp__.py (98%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/controllers/__init__.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/controllers/main.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/model/__init__.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/model/res_company.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/model/res_users.py (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/static/src/img/icon.png (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/static/src/img/selection-off.png (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/static/src/img/selection-on.png (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/static/src/js/switch_company.js (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/static/src/xml/switch_company.xml (100%) rename {web_easy_switch_company => __unported__/web_easy_switch_company}/view/res_users_view.xml (100%) rename {web_export_view => __unported__/web_export_view}/AUTHORS.txt (100%) rename {web_export_view => __unported__/web_export_view}/__init__.py (100%) rename {web_export_view => __unported__/web_export_view}/__openerp__.py (98%) rename {web_export_view => __unported__/web_export_view}/controllers.py (100%) rename {web_export_view => __unported__/web_export_view}/i18n/de.po (100%) rename {web_export_view => __unported__/web_export_view}/i18n/es.po (100%) rename {web_export_view => __unported__/web_export_view}/i18n/fr.po (100%) rename {web_export_view => __unported__/web_export_view}/i18n/is.po (100%) rename {web_export_view => __unported__/web_export_view}/i18n/nl.po (100%) rename {web_export_view => __unported__/web_export_view}/i18n/web_export_view.pot (100%) rename {web_export_view => __unported__/web_export_view}/static/js/web_advanced_export.js (100%) rename {web_export_view => __unported__/web_export_view}/static/xml/web_advanced_export.xml (100%) rename {web_ir_actions_act_window_page => __unported__/web_ir_actions_act_window_page}/__init__.py (100%) rename {web_ir_actions_act_window_page => __unported__/web_ir_actions_act_window_page}/__openerp__.py (98%) rename {web_ir_actions_act_window_page => __unported__/web_ir_actions_act_window_page}/static/src/img/icon.png (100%) rename {web_ir_actions_act_window_page => __unported__/web_ir_actions_act_window_page}/static/src/js/web_ir_actions_act_window_page.js (100%) rename {web_m2x_options => __unported__/web_m2x_options}/README.rst (100%) rename {web_m2x_options => __unported__/web_m2x_options}/__init__.py (100%) rename {web_m2x_options => __unported__/web_m2x_options}/__openerp__.py (97%) rename {web_m2x_options => __unported__/web_m2x_options}/static/description/index.html (100%) rename {web_m2x_options => __unported__/web_m2x_options}/static/src/js/form.js (100%) rename {web_nocreatedb => __unported__/web_nocreatedb}/__init__.py (100%) rename {web_nocreatedb => __unported__/web_nocreatedb}/__openerp__.py (98%) rename {web_nocreatedb => __unported__/web_nocreatedb}/static/src/img/screen.png (100%) rename {web_nocreatedb => __unported__/web_nocreatedb}/static/src/xml/web_nocreatedb.xml (100%) rename {web_polymorphic_many2one => __unported__/web_polymorphic_many2one}/__init__.py (100%) rename {web_polymorphic_many2one => __unported__/web_polymorphic_many2one}/__openerp__.py (98%) rename {web_polymorphic_many2one => __unported__/web_polymorphic_many2one}/static/src/js/view_form.js (100%) rename {web_popup_large => __unported__/web_popup_large}/__init__.py (100%) rename {web_popup_large => __unported__/web_popup_large}/__openerp__.py (98%) rename {web_popup_large => __unported__/web_popup_large}/static/src/js/web_popup_large.js (100%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/__init__.py (100%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/__openerp__.py (98%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/static/src/css/web_search.css (100%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/static/src/img/icon.png (100%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/static/src/js/web_search.js (100%) rename {web_search_alphabetic => __unported__/web_search_alphabetic}/static/src/xml/web_search.xml (100%) rename {web_send_message_popup => __unported__/web_send_message_popup}/__init__.py (100%) rename {web_send_message_popup => __unported__/web_send_message_popup}/__openerp__.py (98%) rename {web_send_message_popup => __unported__/web_send_message_popup}/static/src/xml/mail.xml (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/__init__.py (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/__openerp__.py (98%) rename {web_translate_dialog => __unported__/web_translate_dialog}/i18n/es.po (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/i18n/fr.po (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/i18n/nl.po (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/i18n/tr.po (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/i18n/web_translate_dialog.pot (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/static/src/css/base.css (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/static/src/js/web_translate_dialog.js (100%) rename {web_translate_dialog => __unported__/web_translate_dialog}/static/src/xml/base.xml (100%) rename {web_widget_float_formula => __unported__/web_widget_float_formula}/__init__.py (100%) rename {web_widget_float_formula => __unported__/web_widget_float_formula}/__openerp__.py (98%) rename {web_widget_float_formula => __unported__/web_widget_float_formula}/static/src/img/icon.png (100%) rename {web_widget_float_formula => __unported__/web_widget_float_formula}/static/src/js/models.js (100%) diff --git a/web_ckeditor4/__init__.py b/__unported__/web_ckeditor4/__init__.py similarity index 100% rename from web_ckeditor4/__init__.py rename to __unported__/web_ckeditor4/__init__.py diff --git a/web_ckeditor4/__openerp__.py b/__unported__/web_ckeditor4/__openerp__.py similarity index 99% rename from web_ckeditor4/__openerp__.py rename to __unported__/web_ckeditor4/__openerp__.py index 6465c7e7..75a7915b 100644 --- a/web_ckeditor4/__openerp__.py +++ b/__unported__/web_ckeditor4/__openerp__.py @@ -108,7 +108,7 @@ #end of ckeditor debug 'static/src/js/web_ckeditor4.js', ], - 'installable': True, + 'installable': False, 'auto_install': False, 'certificate': '', } diff --git a/web_ckeditor4/static/lib/ckeditor/CHANGES.md b/__unported__/web_ckeditor4/static/lib/ckeditor/CHANGES.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/CHANGES.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/CHANGES.md diff --git a/web_ckeditor4/static/lib/ckeditor/LICENSE.md b/__unported__/web_ckeditor4/static/lib/ckeditor/LICENSE.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/LICENSE.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/LICENSE.md diff --git a/web_ckeditor4/static/lib/ckeditor/README.md b/__unported__/web_ckeditor4/static/lib/ckeditor/README.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/README.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/README.md diff --git a/web_ckeditor4/static/lib/ckeditor/adapters/jquery.js b/__unported__/web_ckeditor4/static/lib/ckeditor/adapters/jquery.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/adapters/jquery.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/adapters/jquery.js diff --git a/web_ckeditor4/static/lib/ckeditor/build-config.js b/__unported__/web_ckeditor4/static/lib/ckeditor/build-config.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/build-config.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/build-config.js diff --git a/web_ckeditor4/static/lib/ckeditor/ckeditor.js b/__unported__/web_ckeditor4/static/lib/ckeditor/ckeditor.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/ckeditor.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/ckeditor.js diff --git a/web_ckeditor4/static/lib/ckeditor/config.js b/__unported__/web_ckeditor4/static/lib/ckeditor/config.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/config.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/config.js diff --git a/web_ckeditor4/static/lib/ckeditor/contents.css b/__unported__/web_ckeditor4/static/lib/ckeditor/contents.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/contents.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/contents.css diff --git a/web_ckeditor4/static/lib/ckeditor/lang/af.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/af.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/af.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/af.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ar.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ar.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ar.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ar.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/bg.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/bg.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/bg.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/bg.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/bn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/bn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/bn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/bn.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/bs.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/bs.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/bs.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/bs.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/cs.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/cs.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/cs.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/cs.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/cy.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/cy.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/cy.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/cy.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/da.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/da.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/da.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/da.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/de.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/de.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/de.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/de.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/el.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/el.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/el.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/el.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/en-au.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/en-au.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/en-au.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/en-au.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/en-ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/en-ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/en-ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/en-ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/en-gb.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/en-gb.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/en-gb.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/en-gb.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/en.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/en.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/en.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/en.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/eo.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/eo.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/eo.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/eo.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/es.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/es.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/es.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/es.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/et.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/et.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/et.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/et.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/eu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/eu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/eu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/eu.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/fa.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/fa.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/fa.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/fa.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/fi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/fi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/fi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/fi.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/fo.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/fo.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/fo.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/fo.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/fr-ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/fr-ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/fr-ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/fr-ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/fr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/fr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/fr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/fr.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/gl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/gl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/gl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/gl.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/gu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/gu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/gu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/gu.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/he.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/he.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/he.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/he.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/hi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/hi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/hi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/hi.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/hr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/hr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/hr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/hr.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/hu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/hu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/hu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/hu.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/id.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/id.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/id.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/id.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/is.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/is.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/is.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/is.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/it.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/it.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/it.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/it.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ja.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ja.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ja.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ja.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ka.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ka.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ka.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ka.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/km.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/km.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/km.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/km.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ko.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ko.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ko.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ko.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ku.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ku.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ku.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ku.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/lt.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/lt.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/lt.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/lt.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/lv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/lv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/lv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/lv.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/mk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/mk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/mk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/mk.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/mn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/mn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/mn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/mn.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ms.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ms.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ms.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ms.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/nb.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/nb.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/nb.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/nb.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/nl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/nl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/nl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/nl.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/no.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/no.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/no.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/no.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/pl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/pl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/pl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/pl.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/pt-br.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/pt-br.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/pt-br.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/pt-br.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/pt.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/pt.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/pt.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/pt.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ro.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ro.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ro.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ro.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ru.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ru.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ru.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ru.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/si.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/si.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/si.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/si.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sk.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sl.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sq.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sq.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sq.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sq.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sr-latn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sr-latn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sr-latn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sr-latn.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sr.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/sv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/sv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/sv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/sv.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/th.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/th.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/th.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/th.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/tr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/tr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/tr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/tr.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/ug.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/ug.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/ug.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/ug.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/uk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/uk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/uk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/uk.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/vi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/vi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/vi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/vi.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/zh-cn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/zh-cn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/zh-cn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/zh-cn.js diff --git a/web_ckeditor4/static/lib/ckeditor/lang/zh.js b/__unported__/web_ckeditor4/static/lib/ckeditor/lang/zh.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/lang/zh.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/lang/zh.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/da.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/da.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/da.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/de.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/de.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/de.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/el.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/el.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/el.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/en.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/en.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/en.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/es.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/es.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/es.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/es.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/et.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/et.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/et.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/he.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/he.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/he.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/id.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/id.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/id.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/id.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/it.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/it.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/it.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/km.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/km.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/km.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/km.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/no.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/no.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/no.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/si.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/si.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/si.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/si.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/th.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/th.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/th.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/th.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/about.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/about.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/about.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/about.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/logo_ckeditor.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/logo_ckeditor.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/about/dialogs/logo_ckeditor.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/clipboard/dialogs/paste.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/clipboard/dialogs/paste.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/clipboard/dialogs/paste.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/clipboard/dialogs/paste.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/colordialog/dialogs/colordialog.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/colordialog/dialogs/colordialog.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/colordialog/dialogs/colordialog.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/colordialog/dialogs/colordialog.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/dialog/dialogDefinition.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/dialog/dialogDefinition.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/dialog/dialogDefinition.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/dialog/dialogDefinition.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/div/dialogs/div.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/div/dialogs/div.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/div/dialogs/div.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/div/dialogs/div.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/fakeobjects/images/spacer.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/fakeobjects/images/spacer.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/fakeobjects/images/spacer.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/fakeobjects/images/spacer.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/find/dialogs/find.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/find/dialogs/find.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/find/dialogs/find.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/find/dialogs/find.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/flash/dialogs/flash.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/flash/dialogs/flash.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/flash/dialogs/flash.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/flash/dialogs/flash.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/flash/images/placeholder.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/flash/images/placeholder.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/flash/images/placeholder.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/flash/images/placeholder.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/button.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/button.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/button.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/button.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/checkbox.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/checkbox.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/checkbox.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/checkbox.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/form.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/form.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/form.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/form.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/hiddenfield.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/hiddenfield.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/hiddenfield.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/hiddenfield.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/radio.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/radio.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/radio.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/radio.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/select.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/select.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/select.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/select.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textarea.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textarea.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textarea.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textarea.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textfield.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textfield.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textfield.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/dialogs/textfield.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/forms/images/hiddenfield.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/images/hiddenfield.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/forms/images/hiddenfield.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/forms/images/hiddenfield.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/icons.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/icons.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/icons.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/icons.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/icons_hidpi.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/icons_hidpi.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/icons_hidpi.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/icons_hidpi.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/iframe/dialogs/iframe.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/iframe/dialogs/iframe.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/iframe/dialogs/iframe.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/iframe/dialogs/iframe.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/iframe/images/placeholder.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/iframe/images/placeholder.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/iframe/images/placeholder.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/iframe/images/placeholder.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/image/dialogs/image.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/image/dialogs/image.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/image/dialogs/image.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/image/dialogs/image.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/image/images/noimage.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/image/images/noimage.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/image/images/noimage.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/image/images/noimage.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/anchor.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/anchor.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/anchor.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/anchor.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/link.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/link.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/link.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/dialogs/link.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/link/images/anchor.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/images/anchor.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/link/images/anchor.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/images/anchor.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/link/images/hidpi/anchor.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/images/hidpi/anchor.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/link/images/hidpi/anchor.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/link/images/hidpi/anchor.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/liststyle/dialogs/liststyle.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/liststyle/dialogs/liststyle.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/liststyle/dialogs/liststyle.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/liststyle/dialogs/liststyle.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/hidpi/icon.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/hidpi/icon.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/hidpi/icon.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/hidpi/icon.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/icon.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/icon.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/icon.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/magicline/images/icon.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/pagebreak/images/pagebreak.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/pagebreak/images/pagebreak.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/pagebreak/images/pagebreak.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/pagebreak/images/pagebreak.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/pastefromword/filter/default.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/pastefromword/filter/default.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/pastefromword/filter/default.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/pastefromword/filter/default.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/preview/preview.html b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/preview/preview.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/preview/preview.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/preview/preview.html diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/scayt/LICENSE.md b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/LICENSE.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/scayt/LICENSE.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/LICENSE.md diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/scayt/README.md b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/README.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/scayt/README.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/README.md diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/options.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/options.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/options.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/options.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/toolbar.css b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/toolbar.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/toolbar.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/scayt/dialogs/toolbar.css diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_address.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_address.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_address.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_address.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_blockquote.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_blockquote.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_blockquote.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_blockquote.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_div.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_div.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_div.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_div.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h1.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h1.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h1.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h1.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h2.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h2.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h2.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h2.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h3.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h3.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h3.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h3.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h4.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h4.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h4.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h4.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h5.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h5.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h5.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h5.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h6.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h6.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h6.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_h6.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_p.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_p.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_p.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_p.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_pre.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_pre.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_pre.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/showblocks/images/block_pre.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/dialogs/smiley.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/dialogs/smiley.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/dialogs/smiley.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/dialogs/smiley.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angel_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/angry_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/broken_heart.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/confused_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/cry_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/devil_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embaressed_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embaressed_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embaressed_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embaressed_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/embarrassed_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/envelope.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/heart.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/kiss.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/lightbulb.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/omg_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/regular_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/sad_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/shades_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/teeth_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_down.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/thumbs_up.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tongue_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tounge_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tounge_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tounge_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/tounge_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.png b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/smiley/images/wink_smile.png diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ar.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ar.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ar.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ar.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/bg.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/bg.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/bg.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/bg.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cs.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cs.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cs.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cy.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cy.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/cy.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/de.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/de.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/de.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/de.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/el.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/el.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/el.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/el.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/en.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/en.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/en.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/en.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/eo.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/eo.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/eo.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/es.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/es.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/es.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/es.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/et.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/et.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/et.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/et.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fa.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fa.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fa.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fi.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/fr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/gl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/gl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/gl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/gl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/he.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/he.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/he.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/he.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hu.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hu.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hu.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/hu.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/id.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/id.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/id.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/id.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/it.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/it.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/it.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/it.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ja.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ja.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ja.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ja.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/km.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/km.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/km.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/km.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ku.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ku.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ku.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/lv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/lv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/lv.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nb.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nb.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nb.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/nl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/no.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/no.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/no.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/no.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/pt.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ru.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ru.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ru.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ru.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/si.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/si.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/si.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/si.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sk.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sl.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sl.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sl.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sl.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sq.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sq.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sq.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sq.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sv.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sv.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sv.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/sv.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/th.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/th.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/th.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/th.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/tr.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/tr.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/tr.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ug.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ug.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/ug.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/uk.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/uk.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/uk.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/uk.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/vi.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/vi.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/vi.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/vi.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/lang/zh.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/specialchar.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/specialchar.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/specialchar.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/specialchar/dialogs/specialchar.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/table/dialogs/table.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/table/dialogs/table.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/table/dialogs/table.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/table/dialogs/table.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/tabletools/dialogs/tableCell.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/tabletools/dialogs/tableCell.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/tabletools/dialogs/tableCell.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/tabletools/dialogs/tableCell.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.css b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.css diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/dialogs/templates.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/default.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/default.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/default.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/default.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template1.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template1.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template1.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template1.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template2.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template2.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template2.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template2.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template3.gif b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template3.gif similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template3.gif rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/templates/templates/images/template3.gif diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/LICENSE.md b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/LICENSE.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/LICENSE.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/LICENSE.md diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/README.md b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/README.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/README.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/README.md diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/ciframe.html b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/ciframe.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/ciframe.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/ciframe.html diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmp.html b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmp.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmp.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmp.html diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmpFrameset.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmpFrameset.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/tmpFrameset.html diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.css b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.css diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc.js diff --git a/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js b/__unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/plugins/wsc/dialogs/wsc_ie.js diff --git a/web_ckeditor4/static/lib/ckeditor/samples/ajax.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/ajax.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/ajax.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/ajax.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/api.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/api.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/api.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/api.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/appendto.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/appendto.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/appendto.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/appendto.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/inlineall/logo.png b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/inlineall/logo.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/inlineall/logo.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/inlineall/logo.png diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/outputxhtml/outputxhtml.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/outputxhtml/outputxhtml.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/outputxhtml/outputxhtml.css diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/posteddata.php b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/posteddata.php similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/posteddata.php rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/posteddata.php diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.css b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/sample.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.css diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.jpg b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.jpg similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/sample.jpg rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/sample.jpg diff --git a/web_ckeditor4/static/lib/ckeditor/samples/assets/uilanguages/languages.js b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/uilanguages/languages.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/assets/uilanguages/languages.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/assets/uilanguages/languages.js diff --git a/web_ckeditor4/static/lib/ckeditor/samples/datafiltering.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/datafiltering.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/datafiltering.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/datafiltering.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/divreplace.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/divreplace.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/divreplace.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/divreplace.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/index.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/index.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/index.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/index.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/inlineall.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/inlineall.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/inlineall.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/inlineall.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/inlinebycode.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/inlinebycode.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/inlinebycode.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/inlinebycode.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/inlinetextarea.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/inlinetextarea.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/inlinetextarea.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/inlinetextarea.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/jquery.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/jquery.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/jquery.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/jquery.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/assets/my_dialog.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/assets/my_dialog.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/assets/my_dialog.js diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/dialog.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/dialog.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/dialog.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/dialog/dialog.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/enterkey/enterkey.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/enterkey/enterkey.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/enterkey/enterkey.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/enterkey/enterkey.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputforflash.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputforflash.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputforflash.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputforflash.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/readonly.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/readonly.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/readonly.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/readonly.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample.css b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/sample.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/sample.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/sample.css diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample.js b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/sample.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/sample.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/sample.js diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php diff --git a/web_ckeditor4/static/lib/ckeditor/samples/tabindex.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/tabindex.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/tabindex.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/tabindex.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/uicolor.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/uicolor.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/uicolor.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/uicolor.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/uilanguages.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/uilanguages.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/uilanguages.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/uilanguages.html diff --git a/web_ckeditor4/static/lib/ckeditor/samples/xhtmlstyle.html b/__unported__/web_ckeditor4/static/lib/ckeditor/samples/xhtmlstyle.html similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/samples/xhtmlstyle.html rename to __unported__/web_ckeditor4/static/lib/ckeditor/samples/xhtmlstyle.html diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie7.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie7.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie7.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie7.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie8.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie8.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie8.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_ie8.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_iequirks.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_iequirks.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_iequirks.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_iequirks.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_opera.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_opera.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_opera.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/dialog_opera.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_gecko.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_gecko.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor_gecko.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_gecko.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie7.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie7.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie7.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie7.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie8.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie8.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie8.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_ie8.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_iequirks.css b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_iequirks.css similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/editor_iequirks.css rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/editor_iequirks.css diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/icons.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/icons.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/icons.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/icons.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/icons_hidpi.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/icons_hidpi.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/icons_hidpi.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/icons_hidpi.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/arrow.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/arrow.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/arrow.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/arrow.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/close.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/close.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/close.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/close.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/close.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/close.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/close.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/close.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock-open.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock-open.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock-open.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock-open.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/lock.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/refresh.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/refresh.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/refresh.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/hidpi/refresh.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock-open.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock-open.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock-open.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock-open.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/lock.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/images/refresh.png b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/refresh.png similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/images/refresh.png rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/images/refresh.png diff --git a/web_ckeditor4/static/lib/ckeditor/skins/moono/readme.md b/__unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/readme.md similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/skins/moono/readme.md rename to __unported__/web_ckeditor4/static/lib/ckeditor/skins/moono/readme.md diff --git a/web_ckeditor4/static/lib/ckeditor/styles.js b/__unported__/web_ckeditor4/static/lib/ckeditor/styles.js similarity index 100% rename from web_ckeditor4/static/lib/ckeditor/styles.js rename to __unported__/web_ckeditor4/static/lib/ckeditor/styles.js diff --git a/web_ckeditor4/static/src/css/web_ckeditor4.css b/__unported__/web_ckeditor4/static/src/css/web_ckeditor4.css similarity index 100% rename from web_ckeditor4/static/src/css/web_ckeditor4.css rename to __unported__/web_ckeditor4/static/src/css/web_ckeditor4.css diff --git a/web_ckeditor4/static/src/img/icon.png b/__unported__/web_ckeditor4/static/src/img/icon.png similarity index 100% rename from web_ckeditor4/static/src/img/icon.png rename to __unported__/web_ckeditor4/static/src/img/icon.png diff --git a/web_ckeditor4/static/src/js/ckeditor_basepath.js b/__unported__/web_ckeditor4/static/src/js/ckeditor_basepath.js similarity index 100% rename from web_ckeditor4/static/src/js/ckeditor_basepath.js rename to __unported__/web_ckeditor4/static/src/js/ckeditor_basepath.js diff --git a/web_ckeditor4/static/src/js/web_ckeditor4.js b/__unported__/web_ckeditor4/static/src/js/web_ckeditor4.js similarity index 100% rename from web_ckeditor4/static/src/js/web_ckeditor4.js rename to __unported__/web_ckeditor4/static/src/js/web_ckeditor4.js diff --git a/web_color/__init__.py b/__unported__/web_color/__init__.py similarity index 100% rename from web_color/__init__.py rename to __unported__/web_color/__init__.py diff --git a/web_color/__openerp__.py b/__unported__/web_color/__openerp__.py similarity index 98% rename from web_color/__openerp__.py rename to __unported__/web_color/__openerp__.py index 9981c5dd..38b77cec 100644 --- a/web_color/__openerp__.py +++ b/__unported__/web_color/__openerp__.py @@ -39,7 +39,7 @@ 'static/lib/really-simple-color-picker/colorPicker.css', ], 'qweb' : ['static/src/xml/lib.xml'], - 'installable': True, + 'installable': False, 'auto_install': False, 'web_preload': False, } diff --git a/web_color/i18n/fr_CA.po b/__unported__/web_color/i18n/fr_CA.po similarity index 100% rename from web_color/i18n/fr_CA.po rename to __unported__/web_color/i18n/fr_CA.po diff --git a/web_color/static/lib/really-simple-color-picker/LICENSE b/__unported__/web_color/static/lib/really-simple-color-picker/LICENSE similarity index 100% rename from web_color/static/lib/really-simple-color-picker/LICENSE rename to __unported__/web_color/static/lib/really-simple-color-picker/LICENSE diff --git a/web_color/static/lib/really-simple-color-picker/README.md b/__unported__/web_color/static/lib/really-simple-color-picker/README.md similarity index 100% rename from web_color/static/lib/really-simple-color-picker/README.md rename to __unported__/web_color/static/lib/really-simple-color-picker/README.md diff --git a/web_color/static/lib/really-simple-color-picker/arrow.gif b/__unported__/web_color/static/lib/really-simple-color-picker/arrow.gif similarity index 100% rename from web_color/static/lib/really-simple-color-picker/arrow.gif rename to __unported__/web_color/static/lib/really-simple-color-picker/arrow.gif diff --git a/web_color/static/lib/really-simple-color-picker/arrow.png b/__unported__/web_color/static/lib/really-simple-color-picker/arrow.png similarity index 100% rename from web_color/static/lib/really-simple-color-picker/arrow.png rename to __unported__/web_color/static/lib/really-simple-color-picker/arrow.png diff --git a/web_color/static/lib/really-simple-color-picker/colorPicker.css b/__unported__/web_color/static/lib/really-simple-color-picker/colorPicker.css similarity index 100% rename from web_color/static/lib/really-simple-color-picker/colorPicker.css rename to __unported__/web_color/static/lib/really-simple-color-picker/colorPicker.css diff --git a/web_color/static/lib/really-simple-color-picker/demo.html b/__unported__/web_color/static/lib/really-simple-color-picker/demo.html similarity index 100% rename from web_color/static/lib/really-simple-color-picker/demo.html rename to __unported__/web_color/static/lib/really-simple-color-picker/demo.html diff --git a/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.js b/__unported__/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.js similarity index 100% rename from web_color/static/lib/really-simple-color-picker/jquery.colorPicker.js rename to __unported__/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.js diff --git a/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.min.js b/__unported__/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.min.js similarity index 100% rename from web_color/static/lib/really-simple-color-picker/jquery.colorPicker.min.js rename to __unported__/web_color/static/lib/really-simple-color-picker/jquery.colorPicker.min.js diff --git a/web_color/static/lib/really-simple-color-picker/screenshot.png b/__unported__/web_color/static/lib/really-simple-color-picker/screenshot.png similarity index 100% rename from web_color/static/lib/really-simple-color-picker/screenshot.png rename to __unported__/web_color/static/lib/really-simple-color-picker/screenshot.png diff --git a/web_color/static/lib/really-simple-color-picker/test.html b/__unported__/web_color/static/lib/really-simple-color-picker/test.html similarity index 100% rename from web_color/static/lib/really-simple-color-picker/test.html rename to __unported__/web_color/static/lib/really-simple-color-picker/test.html diff --git a/web_color/static/src/css/color.css b/__unported__/web_color/static/src/css/color.css similarity index 100% rename from web_color/static/src/css/color.css rename to __unported__/web_color/static/src/css/color.css diff --git a/web_color/static/src/img/icon.png b/__unported__/web_color/static/src/img/icon.png similarity index 100% rename from web_color/static/src/img/icon.png rename to __unported__/web_color/static/src/img/icon.png diff --git a/web_color/static/src/js/lib.js b/__unported__/web_color/static/src/js/lib.js similarity index 100% rename from web_color/static/src/js/lib.js rename to __unported__/web_color/static/src/js/lib.js diff --git a/web_color/static/src/xml/lib.xml b/__unported__/web_color/static/src/xml/lib.xml similarity index 100% rename from web_color/static/src/xml/lib.xml rename to __unported__/web_color/static/src/xml/lib.xml diff --git a/web_confirm_window_close/__init__.py b/__unported__/web_confirm_window_close/__init__.py similarity index 100% rename from web_confirm_window_close/__init__.py rename to __unported__/web_confirm_window_close/__init__.py diff --git a/web_confirm_window_close/__openerp__.py b/__unported__/web_confirm_window_close/__openerp__.py similarity index 98% rename from web_confirm_window_close/__openerp__.py rename to __unported__/web_confirm_window_close/__openerp__.py index 717a540b..7e7ab368 100644 --- a/web_confirm_window_close/__openerp__.py +++ b/__unported__/web_confirm_window_close/__openerp__.py @@ -35,6 +35,7 @@ This module is compatible with OpenERP 7.0. 'category': 'Usability', 'website': 'https://launchpad.net/web-addons', 'license': 'AGPL-3', + 'installable': False, 'depends': [ 'web', ], diff --git a/web_confirm_window_close/static/src/js/web_confirm_window_close.js b/__unported__/web_confirm_window_close/static/src/js/web_confirm_window_close.js similarity index 100% rename from web_confirm_window_close/static/src/js/web_confirm_window_close.js rename to __unported__/web_confirm_window_close/static/src/js/web_confirm_window_close.js diff --git a/web_easy_switch_company/__init__.py b/__unported__/web_easy_switch_company/__init__.py similarity index 100% rename from web_easy_switch_company/__init__.py rename to __unported__/web_easy_switch_company/__init__.py diff --git a/web_easy_switch_company/__openerp__.py b/__unported__/web_easy_switch_company/__openerp__.py similarity index 98% rename from web_easy_switch_company/__openerp__.py rename to __unported__/web_easy_switch_company/__openerp__.py index 05f0ea9d..81310f60 100644 --- a/web_easy_switch_company/__openerp__.py +++ b/__unported__/web_easy_switch_company/__openerp__.py @@ -66,6 +66,6 @@ Copyright, Author and Licence: 'qweb': [ 'static/src/xml/switch_company.xml', ], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/web_easy_switch_company/controllers/__init__.py b/__unported__/web_easy_switch_company/controllers/__init__.py similarity index 100% rename from web_easy_switch_company/controllers/__init__.py rename to __unported__/web_easy_switch_company/controllers/__init__.py diff --git a/web_easy_switch_company/controllers/main.py b/__unported__/web_easy_switch_company/controllers/main.py similarity index 100% rename from web_easy_switch_company/controllers/main.py rename to __unported__/web_easy_switch_company/controllers/main.py diff --git a/web_easy_switch_company/model/__init__.py b/__unported__/web_easy_switch_company/model/__init__.py similarity index 100% rename from web_easy_switch_company/model/__init__.py rename to __unported__/web_easy_switch_company/model/__init__.py diff --git a/web_easy_switch_company/model/res_company.py b/__unported__/web_easy_switch_company/model/res_company.py similarity index 100% rename from web_easy_switch_company/model/res_company.py rename to __unported__/web_easy_switch_company/model/res_company.py diff --git a/web_easy_switch_company/model/res_users.py b/__unported__/web_easy_switch_company/model/res_users.py similarity index 100% rename from web_easy_switch_company/model/res_users.py rename to __unported__/web_easy_switch_company/model/res_users.py diff --git a/web_easy_switch_company/static/src/img/icon.png b/__unported__/web_easy_switch_company/static/src/img/icon.png similarity index 100% rename from web_easy_switch_company/static/src/img/icon.png rename to __unported__/web_easy_switch_company/static/src/img/icon.png diff --git a/web_easy_switch_company/static/src/img/selection-off.png b/__unported__/web_easy_switch_company/static/src/img/selection-off.png similarity index 100% rename from web_easy_switch_company/static/src/img/selection-off.png rename to __unported__/web_easy_switch_company/static/src/img/selection-off.png diff --git a/web_easy_switch_company/static/src/img/selection-on.png b/__unported__/web_easy_switch_company/static/src/img/selection-on.png similarity index 100% rename from web_easy_switch_company/static/src/img/selection-on.png rename to __unported__/web_easy_switch_company/static/src/img/selection-on.png diff --git a/web_easy_switch_company/static/src/js/switch_company.js b/__unported__/web_easy_switch_company/static/src/js/switch_company.js similarity index 100% rename from web_easy_switch_company/static/src/js/switch_company.js rename to __unported__/web_easy_switch_company/static/src/js/switch_company.js diff --git a/web_easy_switch_company/static/src/xml/switch_company.xml b/__unported__/web_easy_switch_company/static/src/xml/switch_company.xml similarity index 100% rename from web_easy_switch_company/static/src/xml/switch_company.xml rename to __unported__/web_easy_switch_company/static/src/xml/switch_company.xml diff --git a/web_easy_switch_company/view/res_users_view.xml b/__unported__/web_easy_switch_company/view/res_users_view.xml similarity index 100% rename from web_easy_switch_company/view/res_users_view.xml rename to __unported__/web_easy_switch_company/view/res_users_view.xml diff --git a/web_export_view/AUTHORS.txt b/__unported__/web_export_view/AUTHORS.txt similarity index 100% rename from web_export_view/AUTHORS.txt rename to __unported__/web_export_view/AUTHORS.txt diff --git a/web_export_view/__init__.py b/__unported__/web_export_view/__init__.py similarity index 100% rename from web_export_view/__init__.py rename to __unported__/web_export_view/__init__.py diff --git a/web_export_view/__openerp__.py b/__unported__/web_export_view/__openerp__.py similarity index 98% rename from web_export_view/__openerp__.py rename to __unported__/web_export_view/__openerp__.py index 555f9b27..632c7ee4 100644 --- a/web_export_view/__openerp__.py +++ b/__unported__/web_export_view/__openerp__.py @@ -53,7 +53,7 @@ the same data of the tree view you are looking at, headers included. # }, 'js': ['static/*/*.js', 'static/*/js/*.js'], 'qweb': ['static/xml/web_advanced_export.xml'], - 'installable': True, + 'installable': False, 'auto_install': False, 'web_preload': False, } diff --git a/web_export_view/controllers.py b/__unported__/web_export_view/controllers.py similarity index 100% rename from web_export_view/controllers.py rename to __unported__/web_export_view/controllers.py diff --git a/web_export_view/i18n/de.po b/__unported__/web_export_view/i18n/de.po similarity index 100% rename from web_export_view/i18n/de.po rename to __unported__/web_export_view/i18n/de.po diff --git a/web_export_view/i18n/es.po b/__unported__/web_export_view/i18n/es.po similarity index 100% rename from web_export_view/i18n/es.po rename to __unported__/web_export_view/i18n/es.po diff --git a/web_export_view/i18n/fr.po b/__unported__/web_export_view/i18n/fr.po similarity index 100% rename from web_export_view/i18n/fr.po rename to __unported__/web_export_view/i18n/fr.po diff --git a/web_export_view/i18n/is.po b/__unported__/web_export_view/i18n/is.po similarity index 100% rename from web_export_view/i18n/is.po rename to __unported__/web_export_view/i18n/is.po diff --git a/web_export_view/i18n/nl.po b/__unported__/web_export_view/i18n/nl.po similarity index 100% rename from web_export_view/i18n/nl.po rename to __unported__/web_export_view/i18n/nl.po diff --git a/web_export_view/i18n/web_export_view.pot b/__unported__/web_export_view/i18n/web_export_view.pot similarity index 100% rename from web_export_view/i18n/web_export_view.pot rename to __unported__/web_export_view/i18n/web_export_view.pot diff --git a/web_export_view/static/js/web_advanced_export.js b/__unported__/web_export_view/static/js/web_advanced_export.js similarity index 100% rename from web_export_view/static/js/web_advanced_export.js rename to __unported__/web_export_view/static/js/web_advanced_export.js diff --git a/web_export_view/static/xml/web_advanced_export.xml b/__unported__/web_export_view/static/xml/web_advanced_export.xml similarity index 100% rename from web_export_view/static/xml/web_advanced_export.xml rename to __unported__/web_export_view/static/xml/web_advanced_export.xml diff --git a/web_ir_actions_act_window_page/__init__.py b/__unported__/web_ir_actions_act_window_page/__init__.py similarity index 100% rename from web_ir_actions_act_window_page/__init__.py rename to __unported__/web_ir_actions_act_window_page/__init__.py diff --git a/web_ir_actions_act_window_page/__openerp__.py b/__unported__/web_ir_actions_act_window_page/__openerp__.py similarity index 98% rename from web_ir_actions_act_window_page/__openerp__.py rename to __unported__/web_ir_actions_act_window_page/__openerp__.py index 31054808..546b1d6e 100644 --- a/web_ir_actions_act_window_page/__openerp__.py +++ b/__unported__/web_ir_actions_act_window_page/__openerp__.py @@ -50,7 +50,7 @@ which trigger the form's controller to page into the requested direction. "qweb": [ ], "auto_install": False, - "installable": True, + 'installable': False, "external_dependencies" : { 'python' : [], }, diff --git a/web_ir_actions_act_window_page/static/src/img/icon.png b/__unported__/web_ir_actions_act_window_page/static/src/img/icon.png similarity index 100% rename from web_ir_actions_act_window_page/static/src/img/icon.png rename to __unported__/web_ir_actions_act_window_page/static/src/img/icon.png diff --git a/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js b/__unported__/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js similarity index 100% rename from web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js rename to __unported__/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js diff --git a/web_m2x_options/README.rst b/__unported__/web_m2x_options/README.rst similarity index 100% rename from web_m2x_options/README.rst rename to __unported__/web_m2x_options/README.rst diff --git a/web_m2x_options/__init__.py b/__unported__/web_m2x_options/__init__.py similarity index 100% rename from web_m2x_options/__init__.py rename to __unported__/web_m2x_options/__init__.py diff --git a/web_m2x_options/__openerp__.py b/__unported__/web_m2x_options/__openerp__.py similarity index 97% rename from web_m2x_options/__openerp__.py rename to __unported__/web_m2x_options/__openerp__.py index f428885e..e6e7eb3b 100644 --- a/web_m2x_options/__openerp__.py +++ b/__unported__/web_m2x_options/__openerp__.py @@ -39,7 +39,7 @@ Thanks to: 'static/src/js/form.js', ], "author": "Tuxservices", - "installable" : True, + 'installable' : False, "active" : False, } diff --git a/web_m2x_options/static/description/index.html b/__unported__/web_m2x_options/static/description/index.html similarity index 100% rename from web_m2x_options/static/description/index.html rename to __unported__/web_m2x_options/static/description/index.html diff --git a/web_m2x_options/static/src/js/form.js b/__unported__/web_m2x_options/static/src/js/form.js similarity index 100% rename from web_m2x_options/static/src/js/form.js rename to __unported__/web_m2x_options/static/src/js/form.js diff --git a/web_nocreatedb/__init__.py b/__unported__/web_nocreatedb/__init__.py similarity index 100% rename from web_nocreatedb/__init__.py rename to __unported__/web_nocreatedb/__init__.py diff --git a/web_nocreatedb/__openerp__.py b/__unported__/web_nocreatedb/__openerp__.py similarity index 98% rename from web_nocreatedb/__openerp__.py rename to __unported__/web_nocreatedb/__openerp__.py index 55992b64..8a9c5560 100644 --- a/web_nocreatedb/__openerp__.py +++ b/__unported__/web_nocreatedb/__openerp__.py @@ -62,6 +62,6 @@ You should create a menu to see "All modules without filter. 'qweb': [ 'static/src/xml/web_nocreatedb.xml', ], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/web_nocreatedb/static/src/img/screen.png b/__unported__/web_nocreatedb/static/src/img/screen.png similarity index 100% rename from web_nocreatedb/static/src/img/screen.png rename to __unported__/web_nocreatedb/static/src/img/screen.png diff --git a/web_nocreatedb/static/src/xml/web_nocreatedb.xml b/__unported__/web_nocreatedb/static/src/xml/web_nocreatedb.xml similarity index 100% rename from web_nocreatedb/static/src/xml/web_nocreatedb.xml rename to __unported__/web_nocreatedb/static/src/xml/web_nocreatedb.xml diff --git a/web_polymorphic_many2one/__init__.py b/__unported__/web_polymorphic_many2one/__init__.py similarity index 100% rename from web_polymorphic_many2one/__init__.py rename to __unported__/web_polymorphic_many2one/__init__.py diff --git a/web_polymorphic_many2one/__openerp__.py b/__unported__/web_polymorphic_many2one/__openerp__.py similarity index 98% rename from web_polymorphic_many2one/__openerp__.py rename to __unported__/web_polymorphic_many2one/__openerp__.py index 7b372564..1efc6d71 100755 --- a/web_polymorphic_many2one/__openerp__.py +++ b/__unported__/web_polymorphic_many2one/__openerp__.py @@ -45,5 +45,5 @@ XML fields declaration: 'js': [ 'static/src/js/view_form.js' ], - 'installable': True, + 'installable': False, 'application': False} diff --git a/web_polymorphic_many2one/static/src/js/view_form.js b/__unported__/web_polymorphic_many2one/static/src/js/view_form.js similarity index 100% rename from web_polymorphic_many2one/static/src/js/view_form.js rename to __unported__/web_polymorphic_many2one/static/src/js/view_form.js diff --git a/web_popup_large/__init__.py b/__unported__/web_popup_large/__init__.py similarity index 100% rename from web_popup_large/__init__.py rename to __unported__/web_popup_large/__init__.py diff --git a/web_popup_large/__openerp__.py b/__unported__/web_popup_large/__openerp__.py similarity index 98% rename from web_popup_large/__openerp__.py rename to __unported__/web_popup_large/__openerp__.py index ab02cb8f..d96f5780 100644 --- a/web_popup_large/__openerp__.py +++ b/__unported__/web_popup_large/__openerp__.py @@ -31,4 +31,5 @@ This module changes this default width to 95% of the parent window. 'depends': ['web'], "license": 'AGPL-3', "js": ['static/src/js/web_popup_large.js'], + 'installable': False, } diff --git a/web_popup_large/static/src/js/web_popup_large.js b/__unported__/web_popup_large/static/src/js/web_popup_large.js similarity index 100% rename from web_popup_large/static/src/js/web_popup_large.js rename to __unported__/web_popup_large/static/src/js/web_popup_large.js diff --git a/web_search_alphabetic/__init__.py b/__unported__/web_search_alphabetic/__init__.py similarity index 100% rename from web_search_alphabetic/__init__.py rename to __unported__/web_search_alphabetic/__init__.py diff --git a/web_search_alphabetic/__openerp__.py b/__unported__/web_search_alphabetic/__openerp__.py similarity index 98% rename from web_search_alphabetic/__openerp__.py rename to __unported__/web_search_alphabetic/__openerp__.py index 818d0057..a9fd4638 100644 --- a/web_search_alphabetic/__openerp__.py +++ b/__unported__/web_search_alphabetic/__openerp__.py @@ -43,6 +43,7 @@ User also is able to change search field name instead of name field. 'qweb' : [ 'static/src/xml/web_search.xml', ], + 'installable': False, 'auto_install': False } diff --git a/web_search_alphabetic/static/src/css/web_search.css b/__unported__/web_search_alphabetic/static/src/css/web_search.css similarity index 100% rename from web_search_alphabetic/static/src/css/web_search.css rename to __unported__/web_search_alphabetic/static/src/css/web_search.css diff --git a/web_search_alphabetic/static/src/img/icon.png b/__unported__/web_search_alphabetic/static/src/img/icon.png similarity index 100% rename from web_search_alphabetic/static/src/img/icon.png rename to __unported__/web_search_alphabetic/static/src/img/icon.png diff --git a/web_search_alphabetic/static/src/js/web_search.js b/__unported__/web_search_alphabetic/static/src/js/web_search.js similarity index 100% rename from web_search_alphabetic/static/src/js/web_search.js rename to __unported__/web_search_alphabetic/static/src/js/web_search.js diff --git a/web_search_alphabetic/static/src/xml/web_search.xml b/__unported__/web_search_alphabetic/static/src/xml/web_search.xml similarity index 100% rename from web_search_alphabetic/static/src/xml/web_search.xml rename to __unported__/web_search_alphabetic/static/src/xml/web_search.xml diff --git a/web_send_message_popup/__init__.py b/__unported__/web_send_message_popup/__init__.py similarity index 100% rename from web_send_message_popup/__init__.py rename to __unported__/web_send_message_popup/__init__.py diff --git a/web_send_message_popup/__openerp__.py b/__unported__/web_send_message_popup/__openerp__.py similarity index 98% rename from web_send_message_popup/__openerp__.py rename to __unported__/web_send_message_popup/__openerp__.py index 2cbc0557..4277d31d 100644 --- a/web_send_message_popup/__openerp__.py +++ b/__unported__/web_send_message_popup/__openerp__.py @@ -44,6 +44,6 @@ if the popup is always wanted. 'website': 'http://www.camptocamp.com', 'qweb': ['static/src/xml/mail.xml', ], - 'installable': True, + 'installable': False, 'auto_install': False, } diff --git a/web_send_message_popup/static/src/xml/mail.xml b/__unported__/web_send_message_popup/static/src/xml/mail.xml similarity index 100% rename from web_send_message_popup/static/src/xml/mail.xml rename to __unported__/web_send_message_popup/static/src/xml/mail.xml diff --git a/web_translate_dialog/__init__.py b/__unported__/web_translate_dialog/__init__.py similarity index 100% rename from web_translate_dialog/__init__.py rename to __unported__/web_translate_dialog/__init__.py diff --git a/web_translate_dialog/__openerp__.py b/__unported__/web_translate_dialog/__openerp__.py similarity index 98% rename from web_translate_dialog/__openerp__.py rename to __unported__/web_translate_dialog/__openerp__.py index 9285e42b..95c0c9b1 100644 --- a/web_translate_dialog/__openerp__.py +++ b/__unported__/web_translate_dialog/__openerp__.py @@ -41,4 +41,5 @@ Replace the standard translation view by an alternative one: 'qweb': ["static/src/xml/base.xml", ], 'auto_install': False, + 'installable': False, } diff --git a/web_translate_dialog/i18n/es.po b/__unported__/web_translate_dialog/i18n/es.po similarity index 100% rename from web_translate_dialog/i18n/es.po rename to __unported__/web_translate_dialog/i18n/es.po diff --git a/web_translate_dialog/i18n/fr.po b/__unported__/web_translate_dialog/i18n/fr.po similarity index 100% rename from web_translate_dialog/i18n/fr.po rename to __unported__/web_translate_dialog/i18n/fr.po diff --git a/web_translate_dialog/i18n/nl.po b/__unported__/web_translate_dialog/i18n/nl.po similarity index 100% rename from web_translate_dialog/i18n/nl.po rename to __unported__/web_translate_dialog/i18n/nl.po diff --git a/web_translate_dialog/i18n/tr.po b/__unported__/web_translate_dialog/i18n/tr.po similarity index 100% rename from web_translate_dialog/i18n/tr.po rename to __unported__/web_translate_dialog/i18n/tr.po diff --git a/web_translate_dialog/i18n/web_translate_dialog.pot b/__unported__/web_translate_dialog/i18n/web_translate_dialog.pot similarity index 100% rename from web_translate_dialog/i18n/web_translate_dialog.pot rename to __unported__/web_translate_dialog/i18n/web_translate_dialog.pot diff --git a/web_translate_dialog/static/src/css/base.css b/__unported__/web_translate_dialog/static/src/css/base.css similarity index 100% rename from web_translate_dialog/static/src/css/base.css rename to __unported__/web_translate_dialog/static/src/css/base.css diff --git a/web_translate_dialog/static/src/js/web_translate_dialog.js b/__unported__/web_translate_dialog/static/src/js/web_translate_dialog.js similarity index 100% rename from web_translate_dialog/static/src/js/web_translate_dialog.js rename to __unported__/web_translate_dialog/static/src/js/web_translate_dialog.js diff --git a/web_translate_dialog/static/src/xml/base.xml b/__unported__/web_translate_dialog/static/src/xml/base.xml similarity index 100% rename from web_translate_dialog/static/src/xml/base.xml rename to __unported__/web_translate_dialog/static/src/xml/base.xml diff --git a/web_widget_float_formula/__init__.py b/__unported__/web_widget_float_formula/__init__.py similarity index 100% rename from web_widget_float_formula/__init__.py rename to __unported__/web_widget_float_formula/__init__.py diff --git a/web_widget_float_formula/__openerp__.py b/__unported__/web_widget_float_formula/__openerp__.py similarity index 98% rename from web_widget_float_formula/__openerp__.py rename to __unported__/web_widget_float_formula/__openerp__.py index 2cd5e8ab..e31650e7 100644 --- a/web_widget_float_formula/__openerp__.py +++ b/__unported__/web_widget_float_formula/__openerp__.py @@ -57,7 +57,7 @@ Contacts : 'images': [], 'post_load': '', 'application': False, - 'installable': True, + 'installable': False, 'auto_install': False, 'images': [], } diff --git a/web_widget_float_formula/static/src/img/icon.png b/__unported__/web_widget_float_formula/static/src/img/icon.png similarity index 100% rename from web_widget_float_formula/static/src/img/icon.png rename to __unported__/web_widget_float_formula/static/src/img/icon.png diff --git a/web_widget_float_formula/static/src/js/models.js b/__unported__/web_widget_float_formula/static/src/js/models.js similarity index 100% rename from web_widget_float_formula/static/src/js/models.js rename to __unported__/web_widget_float_formula/static/src/js/models.js From c7731064863a8fe4e000e2e9cd36da9cdb5be1e4 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 7 Jul 2014 13:59:08 +0200 Subject: [PATCH 3/6] add placeholder module for travis to succeed --- placeholder/__init__.py | 20 +++++++++++++++ placeholder/__openerp__.py | 51 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 placeholder/__init__.py create mode 100644 placeholder/__openerp__.py diff --git a/placeholder/__init__.py b/placeholder/__init__.py new file mode 100644 index 00000000..9dd152f9 --- /dev/null +++ b/placeholder/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright (C) 2014 Therp BV (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## diff --git a/placeholder/__openerp__.py b/placeholder/__openerp__.py new file mode 100644 index 00000000..473029a1 --- /dev/null +++ b/placeholder/__openerp__.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# This module copyright (C) 2014 Therp BV (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name": "placeholder", + "version": "1.0", + "author": "Therp BV", + "license": "AGPL-3", + "complexity": "normal", + "description": """ +This is a placeholder module because odoo checks if an addons path contains +addons at all. This makes travis fail, so we need this until the first addon is +ported. + +Please remove as soon as you commit your first port! + """, + "category": "", + "depends": [ + ], + "data": [ + ], + "js": [ + ], + "css": [ + ], + "qweb": [ + ], + "auto_install": False, + "installable": True, + "application": False, + "external_dependencies": { + 'python': [], + }, +} From 1d26c87a531390ead0ade67e50d428b70448df7d Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 7 Jul 2014 15:44:23 +0200 Subject: [PATCH 4/6] [IMP] Sandy's suggestions --- .coveragerc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.coveragerc b/.coveragerc index a06f8bfe..cbd4a493 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,12 +1,9 @@ # Config file .coveragerc [report] +include = + */OCA/web/* omit = - /usr/* - */bin/* - */lib/* - */odoo/* - */openerp/* */tests/* *__init__.py From 1ef13d025e500522456ab57912691048f2294e24 Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Mon, 7 Jul 2014 21:24:21 +0200 Subject: [PATCH 5/6] [FIX] install pypdf to run odoo --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 50be0b23..c8124844 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,7 @@ env: install: - pip install coveralls flake8 - pip install http://download.gna.org/pychart/PyChart-1.39.tar.gz + - pip install pypdf - pip install ${ODOO} # Create databae From dd0aa9e42cee31d481532ed188948a251ba394cb Mon Sep 17 00:00:00 2001 From: Holger Brunn Date: Tue, 8 Jul 2014 11:39:54 +0200 Subject: [PATCH 6/6] [ADD] comment --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index c8124844..d5237d14 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ env: # Need coveralls for coverage reports # Need flake8 for pep8 testing +# Need pypdf # Manually get PyChart # Install tested version of odoo (official or ocb) # Get modules from other repos which have dependencies (in this case travel requires modules from lp:partner-contact-management and lp:openerp-hr