diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..ddf7ed2 --- /dev/null +++ b/build/.gitignore @@ -0,0 +1,2 @@ +www-dev/ +www-prod/ diff --git a/build/compile-web b/build/compile-web index c30c5d7..899e21e 100755 --- a/build/compile-web +++ b/build/compile-web @@ -2,6 +2,9 @@ V=`date "+%Y%m%d_%H%M%S"` +rsync -avL --delete ../web/WebContent/ www-prod/ +rsync -avL --delete ../gwt/war/mailiverse_gwt www-prod/mailiverse_gwt + ./compile-web-html $V prod ./compile-web-js $V prod diff --git a/build/compile-web-html b/build/compile-web-html index 9c8dc65..1ab7cd1 100755 --- a/build/compile-web-html +++ b/build/compile-web-html @@ -1,4 +1,5 @@ #!/bin/bash +set -x V=$1 M=$2 @@ -8,9 +9,9 @@ HOST_PRIMARY=`cat ../deploy/config/hosts/$M` HOST_AUTH=`cat ../deploy/config/hosts/auth_$M` HOST_TOMCAT=`cat ../deploy/config/hosts/tomcat_$M` HOST_WEB=`cat ../deploy/config/hosts/web_$M` -` -dst=../gwt/war + +dst=www-$2 cmn_src=../web/common client_src=../web/client signup_src=../web/signup diff --git a/build/compile-web-js b/build/compile-web-js index 9dd0143..6b5023f 100755 --- a/build/compile-web-js +++ b/build/compile-web-js @@ -2,7 +2,7 @@ V=$1 M=$2 -dst=../gwt/war +dst=www-$M function replaceStrings() { sed -i '' -f replace_js_$M.sed $1 diff --git a/build/dev-compile-web b/build/dev-compile-web index f1b967a..a606302 100755 --- a/build/dev-compile-web +++ b/build/dev-compile-web @@ -2,6 +2,8 @@ V=`date "+%Y%m%d_%H%M%S"` +rsync -avL --exclude="WEB-INF" --delete ../gwt/war/ www-dev/ + ./compile-web-html $V dev ./compile-web-js $V dev diff --git a/deploy/web/resources/nginx.conf b/deploy/web/resources/nginx.conf index e810ce6..56ec0ac 100644 --- a/deploy/web/resources/nginx.conf +++ b/deploy/web/resources/nginx.conf @@ -12,6 +12,15 @@ ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; + location /Mailiverse/ { + proxy_pass http://127.0.0.1:8080; # my existing apache instance + proxy_set_header Host $host; + + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection upgrade; + } + location / { autoindex off; root /var/local/www/; diff --git a/java/core/src/core/constants/ConstantsServer.java b/java/core/src/core/constants/ConstantsServer.java index aa69d5d..c326df4 100644 --- a/java/core/src/core/constants/ConstantsServer.java +++ b/java/core/src/core/constants/ConstantsServer.java @@ -44,6 +44,7 @@ public class ConstantsServer public static final String MAIL_AUTH_HOST = KEY_SERVER; public static final int MAIL_AUTH_PORT = 7001; + public static final int MAXIMUM_MAIL_SIZE = 1024 * 1024 * 1; public static final int AUTH_TIMEOUT = 45; diff --git a/gwt/war/ckeditor/CHANGES.html b/web/WebContent/ckeditor/CHANGES.html similarity index 100% rename from gwt/war/ckeditor/CHANGES.html rename to web/WebContent/ckeditor/CHANGES.html diff --git a/gwt/war/ckeditor/INSTALL.html b/web/WebContent/ckeditor/INSTALL.html similarity index 100% rename from gwt/war/ckeditor/INSTALL.html rename to web/WebContent/ckeditor/INSTALL.html diff --git a/gwt/war/ckeditor/LICENSE.html b/web/WebContent/ckeditor/LICENSE.html similarity index 100% rename from gwt/war/ckeditor/LICENSE.html rename to web/WebContent/ckeditor/LICENSE.html diff --git a/gwt/war/ckeditor/_samples/adobeair/application.xml b/web/WebContent/ckeditor/_samples/adobeair/application.xml similarity index 100% rename from gwt/war/ckeditor/_samples/adobeair/application.xml rename to web/WebContent/ckeditor/_samples/adobeair/application.xml diff --git a/gwt/war/ckeditor/_samples/adobeair/run.bat b/web/WebContent/ckeditor/_samples/adobeair/run.bat similarity index 100% rename from gwt/war/ckeditor/_samples/adobeair/run.bat rename to web/WebContent/ckeditor/_samples/adobeair/run.bat diff --git a/gwt/war/ckeditor/_samples/adobeair/run.sh b/web/WebContent/ckeditor/_samples/adobeair/run.sh similarity index 100% rename from gwt/war/ckeditor/_samples/adobeair/run.sh rename to web/WebContent/ckeditor/_samples/adobeair/run.sh diff --git a/gwt/war/ckeditor/_samples/adobeair/sample.html b/web/WebContent/ckeditor/_samples/adobeair/sample.html similarity index 100% rename from gwt/war/ckeditor/_samples/adobeair/sample.html rename to web/WebContent/ckeditor/_samples/adobeair/sample.html diff --git a/gwt/war/ckeditor/_samples/ajax.html b/web/WebContent/ckeditor/_samples/ajax.html similarity index 100% rename from gwt/war/ckeditor/_samples/ajax.html rename to web/WebContent/ckeditor/_samples/ajax.html diff --git a/gwt/war/ckeditor/_samples/api.html b/web/WebContent/ckeditor/_samples/api.html similarity index 100% rename from gwt/war/ckeditor/_samples/api.html rename to web/WebContent/ckeditor/_samples/api.html diff --git a/gwt/war/ckeditor/_samples/api_dialog.html b/web/WebContent/ckeditor/_samples/api_dialog.html similarity index 100% rename from gwt/war/ckeditor/_samples/api_dialog.html rename to web/WebContent/ckeditor/_samples/api_dialog.html diff --git a/gwt/war/ckeditor/_samples/api_dialog/my_dialog.js b/web/WebContent/ckeditor/_samples/api_dialog/my_dialog.js similarity index 100% rename from gwt/war/ckeditor/_samples/api_dialog/my_dialog.js rename to web/WebContent/ckeditor/_samples/api_dialog/my_dialog.js diff --git a/gwt/war/ckeditor/_samples/asp/advanced.asp b/web/WebContent/ckeditor/_samples/asp/advanced.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/advanced.asp rename to web/WebContent/ckeditor/_samples/asp/advanced.asp diff --git a/gwt/war/ckeditor/_samples/asp/events.asp b/web/WebContent/ckeditor/_samples/asp/events.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/events.asp rename to web/WebContent/ckeditor/_samples/asp/events.asp diff --git a/gwt/war/ckeditor/_samples/asp/index.html b/web/WebContent/ckeditor/_samples/asp/index.html similarity index 100% rename from gwt/war/ckeditor/_samples/asp/index.html rename to web/WebContent/ckeditor/_samples/asp/index.html diff --git a/gwt/war/ckeditor/_samples/asp/replace.asp b/web/WebContent/ckeditor/_samples/asp/replace.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/replace.asp rename to web/WebContent/ckeditor/_samples/asp/replace.asp diff --git a/gwt/war/ckeditor/_samples/asp/replaceall.asp b/web/WebContent/ckeditor/_samples/asp/replaceall.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/replaceall.asp rename to web/WebContent/ckeditor/_samples/asp/replaceall.asp diff --git a/gwt/war/ckeditor/_samples/asp/sample_posteddata.asp b/web/WebContent/ckeditor/_samples/asp/sample_posteddata.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/sample_posteddata.asp rename to web/WebContent/ckeditor/_samples/asp/sample_posteddata.asp diff --git a/gwt/war/ckeditor/_samples/asp/standalone.asp b/web/WebContent/ckeditor/_samples/asp/standalone.asp similarity index 100% rename from gwt/war/ckeditor/_samples/asp/standalone.asp rename to web/WebContent/ckeditor/_samples/asp/standalone.asp diff --git a/gwt/war/ckeditor/_samples/assets/_posteddata.php b/web/WebContent/ckeditor/_samples/assets/_posteddata.php similarity index 100% rename from gwt/war/ckeditor/_samples/assets/_posteddata.php rename to web/WebContent/ckeditor/_samples/assets/_posteddata.php diff --git a/gwt/war/ckeditor/_samples/assets/output_for_flash.fla b/web/WebContent/ckeditor/_samples/assets/output_for_flash.fla similarity index 100% rename from gwt/war/ckeditor/_samples/assets/output_for_flash.fla rename to web/WebContent/ckeditor/_samples/assets/output_for_flash.fla diff --git a/gwt/war/ckeditor/_samples/assets/output_for_flash.swf b/web/WebContent/ckeditor/_samples/assets/output_for_flash.swf similarity index 100% rename from gwt/war/ckeditor/_samples/assets/output_for_flash.swf rename to web/WebContent/ckeditor/_samples/assets/output_for_flash.swf diff --git a/gwt/war/ckeditor/_samples/assets/output_xhtml.css b/web/WebContent/ckeditor/_samples/assets/output_xhtml.css similarity index 100% rename from gwt/war/ckeditor/_samples/assets/output_xhtml.css rename to web/WebContent/ckeditor/_samples/assets/output_xhtml.css diff --git a/gwt/war/ckeditor/_samples/assets/parsesample.css b/web/WebContent/ckeditor/_samples/assets/parsesample.css similarity index 100% rename from gwt/war/ckeditor/_samples/assets/parsesample.css rename to web/WebContent/ckeditor/_samples/assets/parsesample.css diff --git a/gwt/war/ckeditor/_samples/assets/swfobject.js b/web/WebContent/ckeditor/_samples/assets/swfobject.js similarity index 100% rename from gwt/war/ckeditor/_samples/assets/swfobject.js rename to web/WebContent/ckeditor/_samples/assets/swfobject.js diff --git a/gwt/war/ckeditor/_samples/autogrow.html b/web/WebContent/ckeditor/_samples/autogrow.html similarity index 100% rename from gwt/war/ckeditor/_samples/autogrow.html rename to web/WebContent/ckeditor/_samples/autogrow.html diff --git a/gwt/war/ckeditor/_samples/bbcode.html b/web/WebContent/ckeditor/_samples/bbcode.html similarity index 100% rename from gwt/war/ckeditor/_samples/bbcode.html rename to web/WebContent/ckeditor/_samples/bbcode.html diff --git a/gwt/war/ckeditor/_samples/devtools.html b/web/WebContent/ckeditor/_samples/devtools.html similarity index 100% rename from gwt/war/ckeditor/_samples/devtools.html rename to web/WebContent/ckeditor/_samples/devtools.html diff --git a/gwt/war/ckeditor/_samples/divreplace.html b/web/WebContent/ckeditor/_samples/divreplace.html similarity index 100% rename from gwt/war/ckeditor/_samples/divreplace.html rename to web/WebContent/ckeditor/_samples/divreplace.html diff --git a/gwt/war/ckeditor/_samples/enterkey.html b/web/WebContent/ckeditor/_samples/enterkey.html similarity index 100% rename from gwt/war/ckeditor/_samples/enterkey.html rename to web/WebContent/ckeditor/_samples/enterkey.html diff --git a/gwt/war/ckeditor/_samples/fullpage.html b/web/WebContent/ckeditor/_samples/fullpage.html similarity index 100% rename from gwt/war/ckeditor/_samples/fullpage.html rename to web/WebContent/ckeditor/_samples/fullpage.html diff --git a/gwt/war/ckeditor/_samples/index.html b/web/WebContent/ckeditor/_samples/index.html similarity index 100% rename from gwt/war/ckeditor/_samples/index.html rename to web/WebContent/ckeditor/_samples/index.html diff --git a/gwt/war/ckeditor/_samples/jqueryadapter.html b/web/WebContent/ckeditor/_samples/jqueryadapter.html similarity index 100% rename from gwt/war/ckeditor/_samples/jqueryadapter.html rename to web/WebContent/ckeditor/_samples/jqueryadapter.html diff --git a/gwt/war/ckeditor/_samples/output_for_flash.html b/web/WebContent/ckeditor/_samples/output_for_flash.html similarity index 100% rename from gwt/war/ckeditor/_samples/output_for_flash.html rename to web/WebContent/ckeditor/_samples/output_for_flash.html diff --git a/gwt/war/ckeditor/_samples/output_html.html b/web/WebContent/ckeditor/_samples/output_html.html similarity index 100% rename from gwt/war/ckeditor/_samples/output_html.html rename to web/WebContent/ckeditor/_samples/output_html.html diff --git a/gwt/war/ckeditor/_samples/output_xhtml.html b/web/WebContent/ckeditor/_samples/output_xhtml.html similarity index 100% rename from gwt/war/ckeditor/_samples/output_xhtml.html rename to web/WebContent/ckeditor/_samples/output_xhtml.html diff --git a/gwt/war/ckeditor/_samples/php/advanced.php b/web/WebContent/ckeditor/_samples/php/advanced.php similarity index 100% rename from gwt/war/ckeditor/_samples/php/advanced.php rename to web/WebContent/ckeditor/_samples/php/advanced.php diff --git a/gwt/war/ckeditor/_samples/php/events.php b/web/WebContent/ckeditor/_samples/php/events.php similarity index 100% rename from gwt/war/ckeditor/_samples/php/events.php rename to web/WebContent/ckeditor/_samples/php/events.php diff --git a/gwt/war/ckeditor/_samples/php/index.html b/web/WebContent/ckeditor/_samples/php/index.html similarity index 100% rename from gwt/war/ckeditor/_samples/php/index.html rename to web/WebContent/ckeditor/_samples/php/index.html diff --git a/gwt/war/ckeditor/_samples/php/replace.php b/web/WebContent/ckeditor/_samples/php/replace.php similarity index 100% rename from gwt/war/ckeditor/_samples/php/replace.php rename to web/WebContent/ckeditor/_samples/php/replace.php diff --git a/gwt/war/ckeditor/_samples/php/replaceall.php b/web/WebContent/ckeditor/_samples/php/replaceall.php similarity index 100% rename from gwt/war/ckeditor/_samples/php/replaceall.php rename to web/WebContent/ckeditor/_samples/php/replaceall.php diff --git a/gwt/war/ckeditor/_samples/php/standalone.php b/web/WebContent/ckeditor/_samples/php/standalone.php similarity index 100% rename from gwt/war/ckeditor/_samples/php/standalone.php rename to web/WebContent/ckeditor/_samples/php/standalone.php diff --git a/gwt/war/ckeditor/_samples/placeholder.html b/web/WebContent/ckeditor/_samples/placeholder.html similarity index 100% rename from gwt/war/ckeditor/_samples/placeholder.html rename to web/WebContent/ckeditor/_samples/placeholder.html diff --git a/gwt/war/ckeditor/_samples/readonly.html b/web/WebContent/ckeditor/_samples/readonly.html similarity index 100% rename from gwt/war/ckeditor/_samples/readonly.html rename to web/WebContent/ckeditor/_samples/readonly.html diff --git a/gwt/war/ckeditor/_samples/replacebyclass.html b/web/WebContent/ckeditor/_samples/replacebyclass.html similarity index 100% rename from gwt/war/ckeditor/_samples/replacebyclass.html rename to web/WebContent/ckeditor/_samples/replacebyclass.html diff --git a/gwt/war/ckeditor/_samples/replacebycode.html b/web/WebContent/ckeditor/_samples/replacebycode.html similarity index 100% rename from gwt/war/ckeditor/_samples/replacebycode.html rename to web/WebContent/ckeditor/_samples/replacebycode.html diff --git a/gwt/war/ckeditor/_samples/sample.css b/web/WebContent/ckeditor/_samples/sample.css similarity index 100% rename from gwt/war/ckeditor/_samples/sample.css rename to web/WebContent/ckeditor/_samples/sample.css diff --git a/gwt/war/ckeditor/_samples/sample.js b/web/WebContent/ckeditor/_samples/sample.js similarity index 100% rename from gwt/war/ckeditor/_samples/sample.js rename to web/WebContent/ckeditor/_samples/sample.js diff --git a/gwt/war/ckeditor/_samples/sample_posteddata.php b/web/WebContent/ckeditor/_samples/sample_posteddata.php similarity index 100% rename from gwt/war/ckeditor/_samples/sample_posteddata.php rename to web/WebContent/ckeditor/_samples/sample_posteddata.php diff --git a/gwt/war/ckeditor/_samples/sharedspaces.html b/web/WebContent/ckeditor/_samples/sharedspaces.html similarity index 100% rename from gwt/war/ckeditor/_samples/sharedspaces.html rename to web/WebContent/ckeditor/_samples/sharedspaces.html diff --git a/gwt/war/ckeditor/_samples/skins.html b/web/WebContent/ckeditor/_samples/skins.html similarity index 100% rename from gwt/war/ckeditor/_samples/skins.html rename to web/WebContent/ckeditor/_samples/skins.html diff --git a/gwt/war/ckeditor/_samples/stylesheetparser.html b/web/WebContent/ckeditor/_samples/stylesheetparser.html similarity index 100% rename from gwt/war/ckeditor/_samples/stylesheetparser.html rename to web/WebContent/ckeditor/_samples/stylesheetparser.html diff --git a/gwt/war/ckeditor/_samples/tableresize.html b/web/WebContent/ckeditor/_samples/tableresize.html similarity index 100% rename from gwt/war/ckeditor/_samples/tableresize.html rename to web/WebContent/ckeditor/_samples/tableresize.html diff --git a/gwt/war/ckeditor/_samples/ui_color.html b/web/WebContent/ckeditor/_samples/ui_color.html similarity index 100% rename from gwt/war/ckeditor/_samples/ui_color.html rename to web/WebContent/ckeditor/_samples/ui_color.html diff --git a/gwt/war/ckeditor/_samples/ui_languages.html b/web/WebContent/ckeditor/_samples/ui_languages.html similarity index 100% rename from gwt/war/ckeditor/_samples/ui_languages.html rename to web/WebContent/ckeditor/_samples/ui_languages.html diff --git a/gwt/war/ckeditor/_source/adapters/jquery.js b/web/WebContent/ckeditor/_source/adapters/jquery.js similarity index 100% rename from gwt/war/ckeditor/_source/adapters/jquery.js rename to web/WebContent/ckeditor/_source/adapters/jquery.js diff --git a/gwt/war/ckeditor/_source/core/_bootstrap.js b/web/WebContent/ckeditor/_source/core/_bootstrap.js similarity index 100% rename from gwt/war/ckeditor/_source/core/_bootstrap.js rename to web/WebContent/ckeditor/_source/core/_bootstrap.js diff --git a/gwt/war/ckeditor/_source/core/ckeditor.js b/web/WebContent/ckeditor/_source/core/ckeditor.js similarity index 100% rename from gwt/war/ckeditor/_source/core/ckeditor.js rename to web/WebContent/ckeditor/_source/core/ckeditor.js diff --git a/gwt/war/ckeditor/_source/core/ckeditor_base.js b/web/WebContent/ckeditor/_source/core/ckeditor_base.js similarity index 100% rename from gwt/war/ckeditor/_source/core/ckeditor_base.js rename to web/WebContent/ckeditor/_source/core/ckeditor_base.js diff --git a/gwt/war/ckeditor/_source/core/ckeditor_basic.js b/web/WebContent/ckeditor/_source/core/ckeditor_basic.js similarity index 100% rename from gwt/war/ckeditor/_source/core/ckeditor_basic.js rename to web/WebContent/ckeditor/_source/core/ckeditor_basic.js diff --git a/gwt/war/ckeditor/_source/core/command.js b/web/WebContent/ckeditor/_source/core/command.js similarity index 100% rename from gwt/war/ckeditor/_source/core/command.js rename to web/WebContent/ckeditor/_source/core/command.js diff --git a/gwt/war/ckeditor/_source/core/commanddefinition.js b/web/WebContent/ckeditor/_source/core/commanddefinition.js similarity index 100% rename from gwt/war/ckeditor/_source/core/commanddefinition.js rename to web/WebContent/ckeditor/_source/core/commanddefinition.js diff --git a/gwt/war/ckeditor/_source/core/config.js b/web/WebContent/ckeditor/_source/core/config.js similarity index 100% rename from gwt/war/ckeditor/_source/core/config.js rename to web/WebContent/ckeditor/_source/core/config.js diff --git a/gwt/war/ckeditor/_source/core/dataprocessor.js b/web/WebContent/ckeditor/_source/core/dataprocessor.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dataprocessor.js rename to web/WebContent/ckeditor/_source/core/dataprocessor.js diff --git a/gwt/war/ckeditor/_source/core/dom.js b/web/WebContent/ckeditor/_source/core/dom.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom.js rename to web/WebContent/ckeditor/_source/core/dom.js diff --git a/gwt/war/ckeditor/_source/core/dom/comment.js b/web/WebContent/ckeditor/_source/core/dom/comment.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/comment.js rename to web/WebContent/ckeditor/_source/core/dom/comment.js diff --git a/gwt/war/ckeditor/_source/core/dom/document.js b/web/WebContent/ckeditor/_source/core/dom/document.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/document.js rename to web/WebContent/ckeditor/_source/core/dom/document.js diff --git a/gwt/war/ckeditor/_source/core/dom/documentfragment.js b/web/WebContent/ckeditor/_source/core/dom/documentfragment.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/documentfragment.js rename to web/WebContent/ckeditor/_source/core/dom/documentfragment.js diff --git a/gwt/war/ckeditor/_source/core/dom/domobject.js b/web/WebContent/ckeditor/_source/core/dom/domobject.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/domobject.js rename to web/WebContent/ckeditor/_source/core/dom/domobject.js diff --git a/gwt/war/ckeditor/_source/core/dom/element.js b/web/WebContent/ckeditor/_source/core/dom/element.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/element.js rename to web/WebContent/ckeditor/_source/core/dom/element.js diff --git a/gwt/war/ckeditor/_source/core/dom/elementpath.js b/web/WebContent/ckeditor/_source/core/dom/elementpath.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/elementpath.js rename to web/WebContent/ckeditor/_source/core/dom/elementpath.js diff --git a/gwt/war/ckeditor/_source/core/dom/event.js b/web/WebContent/ckeditor/_source/core/dom/event.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/event.js rename to web/WebContent/ckeditor/_source/core/dom/event.js diff --git a/gwt/war/ckeditor/_source/core/dom/node.js b/web/WebContent/ckeditor/_source/core/dom/node.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/node.js rename to web/WebContent/ckeditor/_source/core/dom/node.js diff --git a/gwt/war/ckeditor/_source/core/dom/nodelist.js b/web/WebContent/ckeditor/_source/core/dom/nodelist.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/nodelist.js rename to web/WebContent/ckeditor/_source/core/dom/nodelist.js diff --git a/gwt/war/ckeditor/_source/core/dom/range.js b/web/WebContent/ckeditor/_source/core/dom/range.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/range.js rename to web/WebContent/ckeditor/_source/core/dom/range.js diff --git a/gwt/war/ckeditor/_source/core/dom/rangelist.js b/web/WebContent/ckeditor/_source/core/dom/rangelist.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/rangelist.js rename to web/WebContent/ckeditor/_source/core/dom/rangelist.js diff --git a/gwt/war/ckeditor/_source/core/dom/text.js b/web/WebContent/ckeditor/_source/core/dom/text.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/text.js rename to web/WebContent/ckeditor/_source/core/dom/text.js diff --git a/gwt/war/ckeditor/_source/core/dom/walker.js b/web/WebContent/ckeditor/_source/core/dom/walker.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/walker.js rename to web/WebContent/ckeditor/_source/core/dom/walker.js diff --git a/gwt/war/ckeditor/_source/core/dom/window.js b/web/WebContent/ckeditor/_source/core/dom/window.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dom/window.js rename to web/WebContent/ckeditor/_source/core/dom/window.js diff --git a/gwt/war/ckeditor/_source/core/dtd.js b/web/WebContent/ckeditor/_source/core/dtd.js similarity index 100% rename from gwt/war/ckeditor/_source/core/dtd.js rename to web/WebContent/ckeditor/_source/core/dtd.js diff --git a/gwt/war/ckeditor/_source/core/editor.js b/web/WebContent/ckeditor/_source/core/editor.js similarity index 100% rename from gwt/war/ckeditor/_source/core/editor.js rename to web/WebContent/ckeditor/_source/core/editor.js diff --git a/gwt/war/ckeditor/_source/core/editor_basic.js b/web/WebContent/ckeditor/_source/core/editor_basic.js similarity index 100% rename from gwt/war/ckeditor/_source/core/editor_basic.js rename to web/WebContent/ckeditor/_source/core/editor_basic.js diff --git a/gwt/war/ckeditor/_source/core/env.js b/web/WebContent/ckeditor/_source/core/env.js similarity index 100% rename from gwt/war/ckeditor/_source/core/env.js rename to web/WebContent/ckeditor/_source/core/env.js diff --git a/gwt/war/ckeditor/_source/core/event.js b/web/WebContent/ckeditor/_source/core/event.js similarity index 100% rename from gwt/war/ckeditor/_source/core/event.js rename to web/WebContent/ckeditor/_source/core/event.js diff --git a/gwt/war/ckeditor/_source/core/eventInfo.js b/web/WebContent/ckeditor/_source/core/eventInfo.js similarity index 100% rename from gwt/war/ckeditor/_source/core/eventInfo.js rename to web/WebContent/ckeditor/_source/core/eventInfo.js diff --git a/gwt/war/ckeditor/_source/core/focusmanager.js b/web/WebContent/ckeditor/_source/core/focusmanager.js similarity index 100% rename from gwt/war/ckeditor/_source/core/focusmanager.js rename to web/WebContent/ckeditor/_source/core/focusmanager.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser.js b/web/WebContent/ckeditor/_source/core/htmlparser.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser.js rename to web/WebContent/ckeditor/_source/core/htmlparser.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/basicwriter.js b/web/WebContent/ckeditor/_source/core/htmlparser/basicwriter.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/basicwriter.js rename to web/WebContent/ckeditor/_source/core/htmlparser/basicwriter.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/cdata.js b/web/WebContent/ckeditor/_source/core/htmlparser/cdata.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/cdata.js rename to web/WebContent/ckeditor/_source/core/htmlparser/cdata.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/comment.js b/web/WebContent/ckeditor/_source/core/htmlparser/comment.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/comment.js rename to web/WebContent/ckeditor/_source/core/htmlparser/comment.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/element.js b/web/WebContent/ckeditor/_source/core/htmlparser/element.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/element.js rename to web/WebContent/ckeditor/_source/core/htmlparser/element.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/filter.js b/web/WebContent/ckeditor/_source/core/htmlparser/filter.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/filter.js rename to web/WebContent/ckeditor/_source/core/htmlparser/filter.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/fragment.js b/web/WebContent/ckeditor/_source/core/htmlparser/fragment.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/fragment.js rename to web/WebContent/ckeditor/_source/core/htmlparser/fragment.js diff --git a/gwt/war/ckeditor/_source/core/htmlparser/text.js b/web/WebContent/ckeditor/_source/core/htmlparser/text.js similarity index 100% rename from gwt/war/ckeditor/_source/core/htmlparser/text.js rename to web/WebContent/ckeditor/_source/core/htmlparser/text.js diff --git a/gwt/war/ckeditor/_source/core/lang.js b/web/WebContent/ckeditor/_source/core/lang.js similarity index 100% rename from gwt/war/ckeditor/_source/core/lang.js rename to web/WebContent/ckeditor/_source/core/lang.js diff --git a/gwt/war/ckeditor/_source/core/loader.js b/web/WebContent/ckeditor/_source/core/loader.js similarity index 100% rename from gwt/war/ckeditor/_source/core/loader.js rename to web/WebContent/ckeditor/_source/core/loader.js diff --git a/gwt/war/ckeditor/_source/core/plugindefinition.js b/web/WebContent/ckeditor/_source/core/plugindefinition.js similarity index 100% rename from gwt/war/ckeditor/_source/core/plugindefinition.js rename to web/WebContent/ckeditor/_source/core/plugindefinition.js diff --git a/gwt/war/ckeditor/_source/core/plugins.js b/web/WebContent/ckeditor/_source/core/plugins.js similarity index 100% rename from gwt/war/ckeditor/_source/core/plugins.js rename to web/WebContent/ckeditor/_source/core/plugins.js diff --git a/gwt/war/ckeditor/_source/core/resourcemanager.js b/web/WebContent/ckeditor/_source/core/resourcemanager.js similarity index 100% rename from gwt/war/ckeditor/_source/core/resourcemanager.js rename to web/WebContent/ckeditor/_source/core/resourcemanager.js diff --git a/gwt/war/ckeditor/_source/core/scriptloader.js b/web/WebContent/ckeditor/_source/core/scriptloader.js similarity index 100% rename from gwt/war/ckeditor/_source/core/scriptloader.js rename to web/WebContent/ckeditor/_source/core/scriptloader.js diff --git a/gwt/war/ckeditor/_source/core/skins.js b/web/WebContent/ckeditor/_source/core/skins.js similarity index 100% rename from gwt/war/ckeditor/_source/core/skins.js rename to web/WebContent/ckeditor/_source/core/skins.js diff --git a/gwt/war/ckeditor/_source/core/themes.js b/web/WebContent/ckeditor/_source/core/themes.js similarity index 100% rename from gwt/war/ckeditor/_source/core/themes.js rename to web/WebContent/ckeditor/_source/core/themes.js diff --git a/gwt/war/ckeditor/_source/core/tools.js b/web/WebContent/ckeditor/_source/core/tools.js similarity index 100% rename from gwt/war/ckeditor/_source/core/tools.js rename to web/WebContent/ckeditor/_source/core/tools.js diff --git a/gwt/war/ckeditor/_source/core/ui.js b/web/WebContent/ckeditor/_source/core/ui.js similarity index 100% rename from gwt/war/ckeditor/_source/core/ui.js rename to web/WebContent/ckeditor/_source/core/ui.js diff --git a/gwt/war/ckeditor/_source/lang/_languages.js b/web/WebContent/ckeditor/_source/lang/_languages.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/_languages.js rename to web/WebContent/ckeditor/_source/lang/_languages.js diff --git a/gwt/war/ckeditor/_source/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/lang/af.js b/web/WebContent/ckeditor/_source/lang/af.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/af.js rename to web/WebContent/ckeditor/_source/lang/af.js diff --git a/gwt/war/ckeditor/_source/lang/ar.js b/web/WebContent/ckeditor/_source/lang/ar.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ar.js rename to web/WebContent/ckeditor/_source/lang/ar.js diff --git a/gwt/war/ckeditor/_source/lang/bg.js b/web/WebContent/ckeditor/_source/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/bg.js rename to web/WebContent/ckeditor/_source/lang/bg.js diff --git a/gwt/war/ckeditor/_source/lang/bn.js b/web/WebContent/ckeditor/_source/lang/bn.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/bn.js rename to web/WebContent/ckeditor/_source/lang/bn.js diff --git a/gwt/war/ckeditor/_source/lang/bs.js b/web/WebContent/ckeditor/_source/lang/bs.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/bs.js rename to web/WebContent/ckeditor/_source/lang/bs.js diff --git a/gwt/war/ckeditor/_source/lang/ca.js b/web/WebContent/ckeditor/_source/lang/ca.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ca.js rename to web/WebContent/ckeditor/_source/lang/ca.js diff --git a/gwt/war/ckeditor/_source/lang/cs.js b/web/WebContent/ckeditor/_source/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/cs.js rename to web/WebContent/ckeditor/_source/lang/cs.js diff --git a/gwt/war/ckeditor/_source/lang/cy.js b/web/WebContent/ckeditor/_source/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/cy.js rename to web/WebContent/ckeditor/_source/lang/cy.js diff --git a/gwt/war/ckeditor/_source/lang/da.js b/web/WebContent/ckeditor/_source/lang/da.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/da.js rename to web/WebContent/ckeditor/_source/lang/da.js diff --git a/gwt/war/ckeditor/_source/lang/de.js b/web/WebContent/ckeditor/_source/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/de.js rename to web/WebContent/ckeditor/_source/lang/de.js diff --git a/gwt/war/ckeditor/_source/lang/el.js b/web/WebContent/ckeditor/_source/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/el.js rename to web/WebContent/ckeditor/_source/lang/el.js diff --git a/gwt/war/ckeditor/_source/lang/en-au.js b/web/WebContent/ckeditor/_source/lang/en-au.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/en-au.js rename to web/WebContent/ckeditor/_source/lang/en-au.js diff --git a/gwt/war/ckeditor/_source/lang/en-ca.js b/web/WebContent/ckeditor/_source/lang/en-ca.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/en-ca.js rename to web/WebContent/ckeditor/_source/lang/en-ca.js diff --git a/gwt/war/ckeditor/_source/lang/en-gb.js b/web/WebContent/ckeditor/_source/lang/en-gb.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/en-gb.js rename to web/WebContent/ckeditor/_source/lang/en-gb.js diff --git a/gwt/war/ckeditor/_source/lang/en.js b/web/WebContent/ckeditor/_source/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/en.js rename to web/WebContent/ckeditor/_source/lang/en.js diff --git a/gwt/war/ckeditor/_source/lang/eo.js b/web/WebContent/ckeditor/_source/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/eo.js rename to web/WebContent/ckeditor/_source/lang/eo.js diff --git a/gwt/war/ckeditor/_source/lang/es.js b/web/WebContent/ckeditor/_source/lang/es.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/es.js rename to web/WebContent/ckeditor/_source/lang/es.js diff --git a/gwt/war/ckeditor/_source/lang/et.js b/web/WebContent/ckeditor/_source/lang/et.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/et.js rename to web/WebContent/ckeditor/_source/lang/et.js diff --git a/gwt/war/ckeditor/_source/lang/eu.js b/web/WebContent/ckeditor/_source/lang/eu.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/eu.js rename to web/WebContent/ckeditor/_source/lang/eu.js diff --git a/gwt/war/ckeditor/_source/lang/fa.js b/web/WebContent/ckeditor/_source/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/fa.js rename to web/WebContent/ckeditor/_source/lang/fa.js diff --git a/gwt/war/ckeditor/_source/lang/fi.js b/web/WebContent/ckeditor/_source/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/fi.js rename to web/WebContent/ckeditor/_source/lang/fi.js diff --git a/gwt/war/ckeditor/_source/lang/fo.js b/web/WebContent/ckeditor/_source/lang/fo.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/fo.js rename to web/WebContent/ckeditor/_source/lang/fo.js diff --git a/gwt/war/ckeditor/_source/lang/fr-ca.js b/web/WebContent/ckeditor/_source/lang/fr-ca.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/fr-ca.js rename to web/WebContent/ckeditor/_source/lang/fr-ca.js diff --git a/gwt/war/ckeditor/_source/lang/fr.js b/web/WebContent/ckeditor/_source/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/fr.js rename to web/WebContent/ckeditor/_source/lang/fr.js diff --git a/gwt/war/ckeditor/_source/lang/gl.js b/web/WebContent/ckeditor/_source/lang/gl.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/gl.js rename to web/WebContent/ckeditor/_source/lang/gl.js diff --git a/gwt/war/ckeditor/_source/lang/gu.js b/web/WebContent/ckeditor/_source/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/gu.js rename to web/WebContent/ckeditor/_source/lang/gu.js diff --git a/gwt/war/ckeditor/_source/lang/he.js b/web/WebContent/ckeditor/_source/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/he.js rename to web/WebContent/ckeditor/_source/lang/he.js diff --git a/gwt/war/ckeditor/_source/lang/hi.js b/web/WebContent/ckeditor/_source/lang/hi.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/hi.js rename to web/WebContent/ckeditor/_source/lang/hi.js diff --git a/gwt/war/ckeditor/_source/lang/hr.js b/web/WebContent/ckeditor/_source/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/hr.js rename to web/WebContent/ckeditor/_source/lang/hr.js diff --git a/gwt/war/ckeditor/_source/lang/hu.js b/web/WebContent/ckeditor/_source/lang/hu.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/hu.js rename to web/WebContent/ckeditor/_source/lang/hu.js diff --git a/gwt/war/ckeditor/_source/lang/id.js b/web/WebContent/ckeditor/_source/lang/id.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/id.js rename to web/WebContent/ckeditor/_source/lang/id.js diff --git a/gwt/war/ckeditor/_source/lang/is.js b/web/WebContent/ckeditor/_source/lang/is.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/is.js rename to web/WebContent/ckeditor/_source/lang/is.js diff --git a/gwt/war/ckeditor/_source/lang/it.js b/web/WebContent/ckeditor/_source/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/it.js rename to web/WebContent/ckeditor/_source/lang/it.js diff --git a/gwt/war/ckeditor/_source/lang/ja.js b/web/WebContent/ckeditor/_source/lang/ja.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ja.js rename to web/WebContent/ckeditor/_source/lang/ja.js diff --git a/gwt/war/ckeditor/_source/lang/ka.js b/web/WebContent/ckeditor/_source/lang/ka.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ka.js rename to web/WebContent/ckeditor/_source/lang/ka.js diff --git a/gwt/war/ckeditor/_source/lang/km.js b/web/WebContent/ckeditor/_source/lang/km.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/km.js rename to web/WebContent/ckeditor/_source/lang/km.js diff --git a/gwt/war/ckeditor/_source/lang/ko.js b/web/WebContent/ckeditor/_source/lang/ko.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ko.js rename to web/WebContent/ckeditor/_source/lang/ko.js diff --git a/gwt/war/ckeditor/_source/lang/lt.js b/web/WebContent/ckeditor/_source/lang/lt.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/lt.js rename to web/WebContent/ckeditor/_source/lang/lt.js diff --git a/gwt/war/ckeditor/_source/lang/lv.js b/web/WebContent/ckeditor/_source/lang/lv.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/lv.js rename to web/WebContent/ckeditor/_source/lang/lv.js diff --git a/gwt/war/ckeditor/_source/lang/mk.js b/web/WebContent/ckeditor/_source/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/mk.js rename to web/WebContent/ckeditor/_source/lang/mk.js diff --git a/gwt/war/ckeditor/_source/lang/mn.js b/web/WebContent/ckeditor/_source/lang/mn.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/mn.js rename to web/WebContent/ckeditor/_source/lang/mn.js diff --git a/gwt/war/ckeditor/_source/lang/ms.js b/web/WebContent/ckeditor/_source/lang/ms.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ms.js rename to web/WebContent/ckeditor/_source/lang/ms.js diff --git a/gwt/war/ckeditor/_source/lang/nb.js b/web/WebContent/ckeditor/_source/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/nb.js rename to web/WebContent/ckeditor/_source/lang/nb.js diff --git a/gwt/war/ckeditor/_source/lang/nl.js b/web/WebContent/ckeditor/_source/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/nl.js rename to web/WebContent/ckeditor/_source/lang/nl.js diff --git a/gwt/war/ckeditor/_source/lang/no.js b/web/WebContent/ckeditor/_source/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/no.js rename to web/WebContent/ckeditor/_source/lang/no.js diff --git a/gwt/war/ckeditor/_source/lang/pl.js b/web/WebContent/ckeditor/_source/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/pl.js rename to web/WebContent/ckeditor/_source/lang/pl.js diff --git a/gwt/war/ckeditor/_source/lang/pt-br.js b/web/WebContent/ckeditor/_source/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/pt-br.js rename to web/WebContent/ckeditor/_source/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/lang/pt.js b/web/WebContent/ckeditor/_source/lang/pt.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/pt.js rename to web/WebContent/ckeditor/_source/lang/pt.js diff --git a/gwt/war/ckeditor/_source/lang/ro.js b/web/WebContent/ckeditor/_source/lang/ro.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ro.js rename to web/WebContent/ckeditor/_source/lang/ro.js diff --git a/gwt/war/ckeditor/_source/lang/ru.js b/web/WebContent/ckeditor/_source/lang/ru.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ru.js rename to web/WebContent/ckeditor/_source/lang/ru.js diff --git a/gwt/war/ckeditor/_source/lang/sk.js b/web/WebContent/ckeditor/_source/lang/sk.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/sk.js rename to web/WebContent/ckeditor/_source/lang/sk.js diff --git a/gwt/war/ckeditor/_source/lang/sl.js b/web/WebContent/ckeditor/_source/lang/sl.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/sl.js rename to web/WebContent/ckeditor/_source/lang/sl.js diff --git a/gwt/war/ckeditor/_source/lang/sr-latn.js b/web/WebContent/ckeditor/_source/lang/sr-latn.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/sr-latn.js rename to web/WebContent/ckeditor/_source/lang/sr-latn.js diff --git a/gwt/war/ckeditor/_source/lang/sr.js b/web/WebContent/ckeditor/_source/lang/sr.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/sr.js rename to web/WebContent/ckeditor/_source/lang/sr.js diff --git a/gwt/war/ckeditor/_source/lang/sv.js b/web/WebContent/ckeditor/_source/lang/sv.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/sv.js rename to web/WebContent/ckeditor/_source/lang/sv.js diff --git a/gwt/war/ckeditor/_source/lang/th.js b/web/WebContent/ckeditor/_source/lang/th.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/th.js rename to web/WebContent/ckeditor/_source/lang/th.js diff --git a/gwt/war/ckeditor/_source/lang/tr.js b/web/WebContent/ckeditor/_source/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/tr.js rename to web/WebContent/ckeditor/_source/lang/tr.js diff --git a/gwt/war/ckeditor/_source/lang/ug.js b/web/WebContent/ckeditor/_source/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/ug.js rename to web/WebContent/ckeditor/_source/lang/ug.js diff --git a/gwt/war/ckeditor/_source/lang/uk.js b/web/WebContent/ckeditor/_source/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/uk.js rename to web/WebContent/ckeditor/_source/lang/uk.js diff --git a/gwt/war/ckeditor/_source/lang/vi.js b/web/WebContent/ckeditor/_source/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/vi.js rename to web/WebContent/ckeditor/_source/lang/vi.js diff --git a/gwt/war/ckeditor/_source/lang/zh-cn.js b/web/WebContent/ckeditor/_source/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/lang/zh.js b/web/WebContent/ckeditor/_source/lang/zh.js similarity index 100% rename from gwt/war/ckeditor/_source/lang/zh.js rename to web/WebContent/ckeditor/_source/lang/zh.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/dialogs/a11yhelp.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/cs.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/cs.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/cs.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/cy.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/cy.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/cy.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/da.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/da.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/da.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/da.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/de.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/de.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/de.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/el.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/el.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/el.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/en.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/en.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/en.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/eo.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/eo.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/eo.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fa.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fa.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fa.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fi.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fi.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fi.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fr.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/fr.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/fr.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/gu.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/gu.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/gu.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/he.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/he.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/he.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/it.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/it.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/it.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/mk.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/mk.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/mk.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/nb.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/nb.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/nb.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/nl.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/nl.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/nl.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/no.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/no.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/no.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/pt-br.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/pt-br.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/ro.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/ro.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/ro.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/ro.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/tr.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/tr.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/tr.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/ug.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/ug.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/ug.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/vi.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/vi.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/vi.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/plugins/a11yhelp/plugin.js b/web/WebContent/ckeditor/_source/plugins/a11yhelp/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/a11yhelp/plugin.js rename to web/WebContent/ckeditor/_source/plugins/a11yhelp/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/about/dialogs/about.js b/web/WebContent/ckeditor/_source/plugins/about/dialogs/about.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/about/dialogs/about.js rename to web/WebContent/ckeditor/_source/plugins/about/dialogs/about.js diff --git a/gwt/war/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png b/web/WebContent/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png rename to web/WebContent/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png diff --git a/gwt/war/ckeditor/_source/plugins/about/plugin.js b/web/WebContent/ckeditor/_source/plugins/about/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/about/plugin.js rename to web/WebContent/ckeditor/_source/plugins/about/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/adobeair/plugin.js b/web/WebContent/ckeditor/_source/plugins/adobeair/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/adobeair/plugin.js rename to web/WebContent/ckeditor/_source/plugins/adobeair/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/ajax/plugin.js b/web/WebContent/ckeditor/_source/plugins/ajax/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/ajax/plugin.js rename to web/WebContent/ckeditor/_source/plugins/ajax/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/autogrow/plugin.js b/web/WebContent/ckeditor/_source/plugins/autogrow/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/autogrow/plugin.js rename to web/WebContent/ckeditor/_source/plugins/autogrow/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/basicstyles/plugin.js b/web/WebContent/ckeditor/_source/plugins/basicstyles/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/basicstyles/plugin.js rename to web/WebContent/ckeditor/_source/plugins/basicstyles/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/bbcode/plugin.js b/web/WebContent/ckeditor/_source/plugins/bbcode/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/bbcode/plugin.js rename to web/WebContent/ckeditor/_source/plugins/bbcode/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/bidi/plugin.js b/web/WebContent/ckeditor/_source/plugins/bidi/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/bidi/plugin.js rename to web/WebContent/ckeditor/_source/plugins/bidi/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/blockquote/plugin.js b/web/WebContent/ckeditor/_source/plugins/blockquote/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/blockquote/plugin.js rename to web/WebContent/ckeditor/_source/plugins/blockquote/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/button/plugin.js b/web/WebContent/ckeditor/_source/plugins/button/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/button/plugin.js rename to web/WebContent/ckeditor/_source/plugins/button/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/clipboard/dialogs/paste.js b/web/WebContent/ckeditor/_source/plugins/clipboard/dialogs/paste.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/clipboard/dialogs/paste.js rename to web/WebContent/ckeditor/_source/plugins/clipboard/dialogs/paste.js diff --git a/gwt/war/ckeditor/_source/plugins/clipboard/plugin.js b/web/WebContent/ckeditor/_source/plugins/clipboard/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/clipboard/plugin.js rename to web/WebContent/ckeditor/_source/plugins/clipboard/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/colorbutton/plugin.js b/web/WebContent/ckeditor/_source/plugins/colorbutton/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/colorbutton/plugin.js rename to web/WebContent/ckeditor/_source/plugins/colorbutton/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js b/web/WebContent/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js rename to web/WebContent/ckeditor/_source/plugins/colordialog/dialogs/colordialog.js diff --git a/gwt/war/ckeditor/_source/plugins/colordialog/plugin.js b/web/WebContent/ckeditor/_source/plugins/colordialog/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/colordialog/plugin.js rename to web/WebContent/ckeditor/_source/plugins/colordialog/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/contextmenu/plugin.js b/web/WebContent/ckeditor/_source/plugins/contextmenu/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/contextmenu/plugin.js rename to web/WebContent/ckeditor/_source/plugins/contextmenu/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/bg.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/bg.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/bg.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/cs.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/cs.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/cs.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/cy.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/cy.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/cy.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/da.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/da.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/da.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/da.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/de.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/de.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/de.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/el.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/el.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/el.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/en.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/en.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/en.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/eo.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/eo.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/eo.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/et.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/et.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/et.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/et.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/fa.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/fa.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/fa.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/fi.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/fi.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/fi.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/fr.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/fr.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/fr.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/gu.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/gu.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/gu.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/he.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/he.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/he.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/hr.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/hr.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/hr.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/it.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/it.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/it.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/nb.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/nb.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/nb.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/nl.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/nl.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/nl.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/no.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/no.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/no.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/pl.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/pl.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/pl.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/pt-br.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/pt-br.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/tr.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/tr.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/tr.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/ug.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/ug.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/ug.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/uk.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/uk.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/uk.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/vi.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/vi.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/vi.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/lang/zh-cn.js b/web/WebContent/ckeditor/_source/plugins/devtools/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/plugins/devtools/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/plugins/devtools/plugin.js b/web/WebContent/ckeditor/_source/plugins/devtools/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/devtools/plugin.js rename to web/WebContent/ckeditor/_source/plugins/devtools/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/dialog/dialogDefinition.js b/web/WebContent/ckeditor/_source/plugins/dialog/dialogDefinition.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/dialog/dialogDefinition.js rename to web/WebContent/ckeditor/_source/plugins/dialog/dialogDefinition.js diff --git a/gwt/war/ckeditor/_source/plugins/dialog/plugin.js b/web/WebContent/ckeditor/_source/plugins/dialog/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/dialog/plugin.js rename to web/WebContent/ckeditor/_source/plugins/dialog/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/dialogadvtab/plugin.js b/web/WebContent/ckeditor/_source/plugins/dialogadvtab/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/dialogadvtab/plugin.js rename to web/WebContent/ckeditor/_source/plugins/dialogadvtab/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/dialogui/plugin.js b/web/WebContent/ckeditor/_source/plugins/dialogui/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/dialogui/plugin.js rename to web/WebContent/ckeditor/_source/plugins/dialogui/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/div/dialogs/div.js b/web/WebContent/ckeditor/_source/plugins/div/dialogs/div.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/div/dialogs/div.js rename to web/WebContent/ckeditor/_source/plugins/div/dialogs/div.js diff --git a/gwt/war/ckeditor/_source/plugins/div/plugin.js b/web/WebContent/ckeditor/_source/plugins/div/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/div/plugin.js rename to web/WebContent/ckeditor/_source/plugins/div/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/docprops/dialogs/docprops.js b/web/WebContent/ckeditor/_source/plugins/docprops/dialogs/docprops.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/docprops/dialogs/docprops.js rename to web/WebContent/ckeditor/_source/plugins/docprops/dialogs/docprops.js diff --git a/gwt/war/ckeditor/_source/plugins/docprops/plugin.js b/web/WebContent/ckeditor/_source/plugins/docprops/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/docprops/plugin.js rename to web/WebContent/ckeditor/_source/plugins/docprops/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/domiterator/plugin.js b/web/WebContent/ckeditor/_source/plugins/domiterator/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/domiterator/plugin.js rename to web/WebContent/ckeditor/_source/plugins/domiterator/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/editingblock/plugin.js b/web/WebContent/ckeditor/_source/plugins/editingblock/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/editingblock/plugin.js rename to web/WebContent/ckeditor/_source/plugins/editingblock/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/elementspath/plugin.js b/web/WebContent/ckeditor/_source/plugins/elementspath/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/elementspath/plugin.js rename to web/WebContent/ckeditor/_source/plugins/elementspath/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/enterkey/plugin.js b/web/WebContent/ckeditor/_source/plugins/enterkey/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/enterkey/plugin.js rename to web/WebContent/ckeditor/_source/plugins/enterkey/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/entities/plugin.js b/web/WebContent/ckeditor/_source/plugins/entities/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/entities/plugin.js rename to web/WebContent/ckeditor/_source/plugins/entities/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/fakeobjects/plugin.js b/web/WebContent/ckeditor/_source/plugins/fakeobjects/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/fakeobjects/plugin.js rename to web/WebContent/ckeditor/_source/plugins/fakeobjects/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/filebrowser/plugin.js b/web/WebContent/ckeditor/_source/plugins/filebrowser/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/filebrowser/plugin.js rename to web/WebContent/ckeditor/_source/plugins/filebrowser/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/find/dialogs/find.js b/web/WebContent/ckeditor/_source/plugins/find/dialogs/find.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/find/dialogs/find.js rename to web/WebContent/ckeditor/_source/plugins/find/dialogs/find.js diff --git a/gwt/war/ckeditor/_source/plugins/find/plugin.js b/web/WebContent/ckeditor/_source/plugins/find/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/find/plugin.js rename to web/WebContent/ckeditor/_source/plugins/find/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/flash/dialogs/flash.js b/web/WebContent/ckeditor/_source/plugins/flash/dialogs/flash.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/flash/dialogs/flash.js rename to web/WebContent/ckeditor/_source/plugins/flash/dialogs/flash.js diff --git a/gwt/war/ckeditor/_source/plugins/flash/images/placeholder.png b/web/WebContent/ckeditor/_source/plugins/flash/images/placeholder.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/flash/images/placeholder.png rename to web/WebContent/ckeditor/_source/plugins/flash/images/placeholder.png diff --git a/gwt/war/ckeditor/_source/plugins/flash/plugin.js b/web/WebContent/ckeditor/_source/plugins/flash/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/flash/plugin.js rename to web/WebContent/ckeditor/_source/plugins/flash/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/floatpanel/plugin.js b/web/WebContent/ckeditor/_source/plugins/floatpanel/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/floatpanel/plugin.js rename to web/WebContent/ckeditor/_source/plugins/floatpanel/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/font/plugin.js b/web/WebContent/ckeditor/_source/plugins/font/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/font/plugin.js rename to web/WebContent/ckeditor/_source/plugins/font/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/format/plugin.js b/web/WebContent/ckeditor/_source/plugins/format/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/format/plugin.js rename to web/WebContent/ckeditor/_source/plugins/format/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/button.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/button.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/button.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/button.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/checkbox.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/checkbox.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/checkbox.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/checkbox.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/form.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/form.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/form.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/form.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/radio.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/radio.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/radio.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/radio.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/select.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/select.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/select.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/select.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/textarea.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/textarea.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/textarea.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/textarea.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/dialogs/textfield.js b/web/WebContent/ckeditor/_source/plugins/forms/dialogs/textfield.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/dialogs/textfield.js rename to web/WebContent/ckeditor/_source/plugins/forms/dialogs/textfield.js diff --git a/gwt/war/ckeditor/_source/plugins/forms/images/hiddenfield.gif b/web/WebContent/ckeditor/_source/plugins/forms/images/hiddenfield.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/images/hiddenfield.gif rename to web/WebContent/ckeditor/_source/plugins/forms/images/hiddenfield.gif diff --git a/gwt/war/ckeditor/_source/plugins/forms/plugin.js b/web/WebContent/ckeditor/_source/plugins/forms/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/forms/plugin.js rename to web/WebContent/ckeditor/_source/plugins/forms/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/horizontalrule/plugin.js b/web/WebContent/ckeditor/_source/plugins/horizontalrule/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/horizontalrule/plugin.js rename to web/WebContent/ckeditor/_source/plugins/horizontalrule/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/htmldataprocessor/plugin.js b/web/WebContent/ckeditor/_source/plugins/htmldataprocessor/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/htmldataprocessor/plugin.js rename to web/WebContent/ckeditor/_source/plugins/htmldataprocessor/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/htmlwriter/plugin.js b/web/WebContent/ckeditor/_source/plugins/htmlwriter/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/htmlwriter/plugin.js rename to web/WebContent/ckeditor/_source/plugins/htmlwriter/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/iframe/dialogs/iframe.js b/web/WebContent/ckeditor/_source/plugins/iframe/dialogs/iframe.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/iframe/dialogs/iframe.js rename to web/WebContent/ckeditor/_source/plugins/iframe/dialogs/iframe.js diff --git a/gwt/war/ckeditor/_source/plugins/iframe/images/placeholder.png b/web/WebContent/ckeditor/_source/plugins/iframe/images/placeholder.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/iframe/images/placeholder.png rename to web/WebContent/ckeditor/_source/plugins/iframe/images/placeholder.png diff --git a/gwt/war/ckeditor/_source/plugins/iframe/plugin.js b/web/WebContent/ckeditor/_source/plugins/iframe/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/iframe/plugin.js rename to web/WebContent/ckeditor/_source/plugins/iframe/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/iframedialog/plugin.js b/web/WebContent/ckeditor/_source/plugins/iframedialog/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/iframedialog/plugin.js rename to web/WebContent/ckeditor/_source/plugins/iframedialog/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/image/dialogs/image.js b/web/WebContent/ckeditor/_source/plugins/image/dialogs/image.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/image/dialogs/image.js rename to web/WebContent/ckeditor/_source/plugins/image/dialogs/image.js diff --git a/gwt/war/ckeditor/_source/plugins/image/plugin.js b/web/WebContent/ckeditor/_source/plugins/image/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/image/plugin.js rename to web/WebContent/ckeditor/_source/plugins/image/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/indent/plugin.js b/web/WebContent/ckeditor/_source/plugins/indent/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/indent/plugin.js rename to web/WebContent/ckeditor/_source/plugins/indent/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/justify/plugin.js b/web/WebContent/ckeditor/_source/plugins/justify/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/justify/plugin.js rename to web/WebContent/ckeditor/_source/plugins/justify/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/keystrokes/plugin.js b/web/WebContent/ckeditor/_source/plugins/keystrokes/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/keystrokes/plugin.js rename to web/WebContent/ckeditor/_source/plugins/keystrokes/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/link/dialogs/anchor.js b/web/WebContent/ckeditor/_source/plugins/link/dialogs/anchor.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/link/dialogs/anchor.js rename to web/WebContent/ckeditor/_source/plugins/link/dialogs/anchor.js diff --git a/gwt/war/ckeditor/_source/plugins/link/dialogs/link.js b/web/WebContent/ckeditor/_source/plugins/link/dialogs/link.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/link/dialogs/link.js rename to web/WebContent/ckeditor/_source/plugins/link/dialogs/link.js diff --git a/gwt/war/ckeditor/_source/plugins/link/images/anchor.gif b/web/WebContent/ckeditor/_source/plugins/link/images/anchor.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/link/images/anchor.gif rename to web/WebContent/ckeditor/_source/plugins/link/images/anchor.gif diff --git a/gwt/war/ckeditor/_source/plugins/link/plugin.js b/web/WebContent/ckeditor/_source/plugins/link/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/link/plugin.js rename to web/WebContent/ckeditor/_source/plugins/link/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/list/plugin.js b/web/WebContent/ckeditor/_source/plugins/list/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/list/plugin.js rename to web/WebContent/ckeditor/_source/plugins/list/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/listblock/plugin.js b/web/WebContent/ckeditor/_source/plugins/listblock/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/listblock/plugin.js rename to web/WebContent/ckeditor/_source/plugins/listblock/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js b/web/WebContent/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js rename to web/WebContent/ckeditor/_source/plugins/liststyle/dialogs/liststyle.js diff --git a/gwt/war/ckeditor/_source/plugins/liststyle/plugin.js b/web/WebContent/ckeditor/_source/plugins/liststyle/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/liststyle/plugin.js rename to web/WebContent/ckeditor/_source/plugins/liststyle/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/maximize/plugin.js b/web/WebContent/ckeditor/_source/plugins/maximize/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/maximize/plugin.js rename to web/WebContent/ckeditor/_source/plugins/maximize/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/menu/plugin.js b/web/WebContent/ckeditor/_source/plugins/menu/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/menu/plugin.js rename to web/WebContent/ckeditor/_source/plugins/menu/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/menubutton/plugin.js b/web/WebContent/ckeditor/_source/plugins/menubutton/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/menubutton/plugin.js rename to web/WebContent/ckeditor/_source/plugins/menubutton/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/newpage/plugin.js b/web/WebContent/ckeditor/_source/plugins/newpage/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/newpage/plugin.js rename to web/WebContent/ckeditor/_source/plugins/newpage/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif b/web/WebContent/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif rename to web/WebContent/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif diff --git a/gwt/war/ckeditor/_source/plugins/pagebreak/plugin.js b/web/WebContent/ckeditor/_source/plugins/pagebreak/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pagebreak/plugin.js rename to web/WebContent/ckeditor/_source/plugins/pagebreak/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/panel/plugin.js b/web/WebContent/ckeditor/_source/plugins/panel/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/panel/plugin.js rename to web/WebContent/ckeditor/_source/plugins/panel/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/panelbutton/plugin.js b/web/WebContent/ckeditor/_source/plugins/panelbutton/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/panelbutton/plugin.js rename to web/WebContent/ckeditor/_source/plugins/panelbutton/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/pastefromword/filter/default.js b/web/WebContent/ckeditor/_source/plugins/pastefromword/filter/default.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pastefromword/filter/default.js rename to web/WebContent/ckeditor/_source/plugins/pastefromword/filter/default.js diff --git a/gwt/war/ckeditor/_source/plugins/pastefromword/plugin.js b/web/WebContent/ckeditor/_source/plugins/pastefromword/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pastefromword/plugin.js rename to web/WebContent/ckeditor/_source/plugins/pastefromword/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js b/web/WebContent/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js rename to web/WebContent/ckeditor/_source/plugins/pastetext/dialogs/pastetext.js diff --git a/gwt/war/ckeditor/_source/plugins/pastetext/plugin.js b/web/WebContent/ckeditor/_source/plugins/pastetext/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/pastetext/plugin.js rename to web/WebContent/ckeditor/_source/plugins/pastetext/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js b/web/WebContent/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/bg.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/bg.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/bg.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/cs.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/cs.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/cs.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/cy.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/cy.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/cy.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/da.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/da.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/da.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/da.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/de.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/de.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/de.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/el.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/el.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/el.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/en.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/en.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/en.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/eo.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/eo.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/eo.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/et.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/et.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/et.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/et.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/fa.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/fa.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/fa.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/fi.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/fi.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/fi.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/fr.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/fr.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/fr.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/he.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/he.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/he.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/hr.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/hr.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/hr.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/it.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/it.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/it.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/nb.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/nb.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/nb.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/nl.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/nl.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/nl.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/no.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/no.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/no.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/pl.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/pl.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/pl.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/pt-br.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/pt-br.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/tr.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/tr.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/tr.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/ug.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/ug.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/ug.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/uk.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/uk.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/uk.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/vi.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/vi.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/vi.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/lang/zh-cn.js b/web/WebContent/ckeditor/_source/plugins/placeholder/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/placeholder.gif b/web/WebContent/ckeditor/_source/plugins/placeholder/placeholder.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/placeholder.gif rename to web/WebContent/ckeditor/_source/plugins/placeholder/placeholder.gif diff --git a/gwt/war/ckeditor/_source/plugins/placeholder/plugin.js b/web/WebContent/ckeditor/_source/plugins/placeholder/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/placeholder/plugin.js rename to web/WebContent/ckeditor/_source/plugins/placeholder/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/popup/plugin.js b/web/WebContent/ckeditor/_source/plugins/popup/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/popup/plugin.js rename to web/WebContent/ckeditor/_source/plugins/popup/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/preview/plugin.js b/web/WebContent/ckeditor/_source/plugins/preview/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/preview/plugin.js rename to web/WebContent/ckeditor/_source/plugins/preview/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/preview/preview.html b/web/WebContent/ckeditor/_source/plugins/preview/preview.html similarity index 100% rename from gwt/war/ckeditor/_source/plugins/preview/preview.html rename to web/WebContent/ckeditor/_source/plugins/preview/preview.html diff --git a/gwt/war/ckeditor/_source/plugins/print/plugin.js b/web/WebContent/ckeditor/_source/plugins/print/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/print/plugin.js rename to web/WebContent/ckeditor/_source/plugins/print/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/removeformat/plugin.js b/web/WebContent/ckeditor/_source/plugins/removeformat/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/removeformat/plugin.js rename to web/WebContent/ckeditor/_source/plugins/removeformat/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/resize/plugin.js b/web/WebContent/ckeditor/_source/plugins/resize/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/resize/plugin.js rename to web/WebContent/ckeditor/_source/plugins/resize/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/richcombo/plugin.js b/web/WebContent/ckeditor/_source/plugins/richcombo/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/richcombo/plugin.js rename to web/WebContent/ckeditor/_source/plugins/richcombo/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/save/plugin.js b/web/WebContent/ckeditor/_source/plugins/save/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/save/plugin.js rename to web/WebContent/ckeditor/_source/plugins/save/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/scayt/dialogs/options.js b/web/WebContent/ckeditor/_source/plugins/scayt/dialogs/options.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/scayt/dialogs/options.js rename to web/WebContent/ckeditor/_source/plugins/scayt/dialogs/options.js diff --git a/gwt/war/ckeditor/_source/plugins/scayt/dialogs/toolbar.css b/web/WebContent/ckeditor/_source/plugins/scayt/dialogs/toolbar.css similarity index 100% rename from gwt/war/ckeditor/_source/plugins/scayt/dialogs/toolbar.css rename to web/WebContent/ckeditor/_source/plugins/scayt/dialogs/toolbar.css diff --git a/gwt/war/ckeditor/_source/plugins/scayt/plugin.js b/web/WebContent/ckeditor/_source/plugins/scayt/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/scayt/plugin.js rename to web/WebContent/ckeditor/_source/plugins/scayt/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/selection/plugin.js b/web/WebContent/ckeditor/_source/plugins/selection/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/selection/plugin.js rename to web/WebContent/ckeditor/_source/plugins/selection/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_address.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_address.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_address.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_address.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_blockquote.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_blockquote.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_blockquote.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_blockquote.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_div.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_div.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_div.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_div.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h1.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h1.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h1.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h1.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h2.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h2.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h2.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h2.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h3.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h3.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h3.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h3.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h4.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h4.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h4.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h4.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h5.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h5.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h5.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h5.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_h6.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h6.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_h6.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_h6.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_p.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_p.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_p.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_p.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/images/block_pre.png b/web/WebContent/ckeditor/_source/plugins/showblocks/images/block_pre.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/images/block_pre.png rename to web/WebContent/ckeditor/_source/plugins/showblocks/images/block_pre.png diff --git a/gwt/war/ckeditor/_source/plugins/showblocks/plugin.js b/web/WebContent/ckeditor/_source/plugins/showblocks/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showblocks/plugin.js rename to web/WebContent/ckeditor/_source/plugins/showblocks/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/showborders/plugin.js b/web/WebContent/ckeditor/_source/plugins/showborders/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/showborders/plugin.js rename to web/WebContent/ckeditor/_source/plugins/showborders/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/smiley/dialogs/smiley.js b/web/WebContent/ckeditor/_source/plugins/smiley/dialogs/smiley.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/dialogs/smiley.js rename to web/WebContent/ckeditor/_source/plugins/smiley/dialogs/smiley.js diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/angel_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/angel_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/angel_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/angel_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/angry_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/angry_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/angry_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/angry_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/broken_heart.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/broken_heart.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/broken_heart.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/broken_heart.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/confused_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/confused_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/confused_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/confused_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/cry_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/cry_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/cry_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/cry_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/devil_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/devil_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/devil_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/devil_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/envelope.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/envelope.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/envelope.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/envelope.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/heart.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/heart.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/heart.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/heart.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/kiss.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/kiss.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/kiss.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/kiss.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/lightbulb.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/lightbulb.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/lightbulb.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/lightbulb.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/omg_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/omg_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/omg_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/omg_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/regular_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/regular_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/regular_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/regular_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/sad_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/sad_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/sad_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/sad_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/shades_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/shades_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/shades_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/shades_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/teeth_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/teeth_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/teeth_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/teeth_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/thumbs_down.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/thumbs_down.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/thumbs_down.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/thumbs_down.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/thumbs_up.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/thumbs_up.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/thumbs_up.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/thumbs_up.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/tounge_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/tounge_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/tounge_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/tounge_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/images/wink_smile.gif b/web/WebContent/ckeditor/_source/plugins/smiley/images/wink_smile.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/images/wink_smile.gif rename to web/WebContent/ckeditor/_source/plugins/smiley/images/wink_smile.gif diff --git a/gwt/war/ckeditor/_source/plugins/smiley/plugin.js b/web/WebContent/ckeditor/_source/plugins/smiley/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/smiley/plugin.js rename to web/WebContent/ckeditor/_source/plugins/smiley/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/sourcearea/plugin.js b/web/WebContent/ckeditor/_source/plugins/sourcearea/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/sourcearea/plugin.js rename to web/WebContent/ckeditor/_source/plugins/sourcearea/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js b/web/WebContent/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/cs.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/cs.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/cs.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/cy.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/cy.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/cy.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/de.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/de.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/de.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/el.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/el.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/el.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/en.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/en.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/en.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/eo.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/eo.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/eo.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/et.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/et.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/et.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/et.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/fa.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/fa.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/fa.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/fi.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/fi.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/fi.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/fr.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/fr.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/fr.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/he.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/he.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/he.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/hr.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/hr.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/hr.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/it.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/it.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/it.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/nb.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/nb.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/nb.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/nl.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/nl.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/nl.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/no.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/no.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/no.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/pt-br.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/pt-br.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/tr.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/tr.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/tr.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/ug.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/ug.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/ug.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/lang/zh-cn.js b/web/WebContent/ckeditor/_source/plugins/specialchar/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/plugins/specialchar/plugin.js b/web/WebContent/ckeditor/_source/plugins/specialchar/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/specialchar/plugin.js rename to web/WebContent/ckeditor/_source/plugins/specialchar/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/styles/plugin.js b/web/WebContent/ckeditor/_source/plugins/styles/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/styles/plugin.js rename to web/WebContent/ckeditor/_source/plugins/styles/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/styles/styles/default.js b/web/WebContent/ckeditor/_source/plugins/styles/styles/default.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/styles/styles/default.js rename to web/WebContent/ckeditor/_source/plugins/styles/styles/default.js diff --git a/gwt/war/ckeditor/_source/plugins/stylescombo/plugin.js b/web/WebContent/ckeditor/_source/plugins/stylescombo/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/stylescombo/plugin.js rename to web/WebContent/ckeditor/_source/plugins/stylescombo/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/stylesheetparser/plugin.js b/web/WebContent/ckeditor/_source/plugins/stylesheetparser/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/stylesheetparser/plugin.js rename to web/WebContent/ckeditor/_source/plugins/stylesheetparser/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/tab/plugin.js b/web/WebContent/ckeditor/_source/plugins/tab/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/tab/plugin.js rename to web/WebContent/ckeditor/_source/plugins/tab/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/table/dialogs/table.js b/web/WebContent/ckeditor/_source/plugins/table/dialogs/table.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/table/dialogs/table.js rename to web/WebContent/ckeditor/_source/plugins/table/dialogs/table.js diff --git a/gwt/war/ckeditor/_source/plugins/table/plugin.js b/web/WebContent/ckeditor/_source/plugins/table/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/table/plugin.js rename to web/WebContent/ckeditor/_source/plugins/table/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/tableresize/plugin.js b/web/WebContent/ckeditor/_source/plugins/tableresize/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/tableresize/plugin.js rename to web/WebContent/ckeditor/_source/plugins/tableresize/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js b/web/WebContent/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js rename to web/WebContent/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js diff --git a/gwt/war/ckeditor/_source/plugins/tabletools/plugin.js b/web/WebContent/ckeditor/_source/plugins/tabletools/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/tabletools/plugin.js rename to web/WebContent/ckeditor/_source/plugins/tabletools/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/templates/dialogs/templates.js b/web/WebContent/ckeditor/_source/plugins/templates/dialogs/templates.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/dialogs/templates.js rename to web/WebContent/ckeditor/_source/plugins/templates/dialogs/templates.js diff --git a/gwt/war/ckeditor/_source/plugins/templates/plugin.js b/web/WebContent/ckeditor/_source/plugins/templates/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/plugin.js rename to web/WebContent/ckeditor/_source/plugins/templates/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/templates/templates/default.js b/web/WebContent/ckeditor/_source/plugins/templates/templates/default.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/templates/default.js rename to web/WebContent/ckeditor/_source/plugins/templates/templates/default.js diff --git a/gwt/war/ckeditor/_source/plugins/templates/templates/images/template1.gif b/web/WebContent/ckeditor/_source/plugins/templates/templates/images/template1.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/templates/images/template1.gif rename to web/WebContent/ckeditor/_source/plugins/templates/templates/images/template1.gif diff --git a/gwt/war/ckeditor/_source/plugins/templates/templates/images/template2.gif b/web/WebContent/ckeditor/_source/plugins/templates/templates/images/template2.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/templates/images/template2.gif rename to web/WebContent/ckeditor/_source/plugins/templates/templates/images/template2.gif diff --git a/gwt/war/ckeditor/_source/plugins/templates/templates/images/template3.gif b/web/WebContent/ckeditor/_source/plugins/templates/templates/images/template3.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/templates/templates/images/template3.gif rename to web/WebContent/ckeditor/_source/plugins/templates/templates/images/template3.gif diff --git a/gwt/war/ckeditor/_source/plugins/toolbar/plugin.js b/web/WebContent/ckeditor/_source/plugins/toolbar/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/toolbar/plugin.js rename to web/WebContent/ckeditor/_source/plugins/toolbar/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js b/web/WebContent/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/dialogs/uicolor.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/bg.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/bg.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/bg.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/cs.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/cs.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/cs.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/cy.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/cy.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/cy.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/da.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/da.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/da.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/da.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/de.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/de.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/de.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/de.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/el.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/el.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/el.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/el.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/en.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/en.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/en.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/en.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/eo.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/eo.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/eo.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/et.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/et.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/et.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/et.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/fa.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/fa.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/fa.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/fi.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/fi.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/fi.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/fr.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/fr.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/fr.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/he.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/he.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/he.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/he.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/hr.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/hr.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/hr.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/it.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/it.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/it.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/it.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/mk.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/mk.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/mk.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/nb.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/nb.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/nb.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/nl.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/nl.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/nl.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/no.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/no.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/no.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/no.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/pl.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/pl.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/pl.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/pt-br.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/pt-br.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/pt-br.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/tr.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/tr.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/tr.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/ug.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/ug.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/ug.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/uk.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/uk.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/uk.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/vi.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/vi.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/vi.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/lang/zh-cn.js b/web/WebContent/ckeditor/_source/plugins/uicolor/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/lang/zh-cn.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/lang/zh-cn.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/plugin.js b/web/WebContent/ckeditor/_source/plugins/uicolor/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/plugin.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/uicolor.gif b/web/WebContent/ckeditor/_source/plugins/uicolor/uicolor.gif similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/uicolor.gif rename to web/WebContent/ckeditor/_source/plugins/uicolor/uicolor.gif diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/yui.css b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/yui.css similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/assets/yui.css rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/assets/yui.css diff --git a/gwt/war/ckeditor/_source/plugins/uicolor/yui/yui.js b/web/WebContent/ckeditor/_source/plugins/uicolor/yui/yui.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/uicolor/yui/yui.js rename to web/WebContent/ckeditor/_source/plugins/uicolor/yui/yui.js diff --git a/gwt/war/ckeditor/_source/plugins/undo/plugin.js b/web/WebContent/ckeditor/_source/plugins/undo/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/undo/plugin.js rename to web/WebContent/ckeditor/_source/plugins/undo/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/wsc/dialogs/ciframe.html b/web/WebContent/ckeditor/_source/plugins/wsc/dialogs/ciframe.html similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wsc/dialogs/ciframe.html rename to web/WebContent/ckeditor/_source/plugins/wsc/dialogs/ciframe.html diff --git a/gwt/war/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html b/web/WebContent/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html rename to web/WebContent/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html diff --git a/gwt/war/ckeditor/_source/plugins/wsc/dialogs/wsc.css b/web/WebContent/ckeditor/_source/plugins/wsc/dialogs/wsc.css similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wsc/dialogs/wsc.css rename to web/WebContent/ckeditor/_source/plugins/wsc/dialogs/wsc.css diff --git a/gwt/war/ckeditor/_source/plugins/wsc/dialogs/wsc.js b/web/WebContent/ckeditor/_source/plugins/wsc/dialogs/wsc.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wsc/dialogs/wsc.js rename to web/WebContent/ckeditor/_source/plugins/wsc/dialogs/wsc.js diff --git a/gwt/war/ckeditor/_source/plugins/wsc/plugin.js b/web/WebContent/ckeditor/_source/plugins/wsc/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wsc/plugin.js rename to web/WebContent/ckeditor/_source/plugins/wsc/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/wysiwygarea/plugin.js b/web/WebContent/ckeditor/_source/plugins/wysiwygarea/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/wysiwygarea/plugin.js rename to web/WebContent/ckeditor/_source/plugins/wysiwygarea/plugin.js diff --git a/gwt/war/ckeditor/_source/plugins/xml/plugin.js b/web/WebContent/ckeditor/_source/plugins/xml/plugin.js similarity index 100% rename from gwt/war/ckeditor/_source/plugins/xml/plugin.js rename to web/WebContent/ckeditor/_source/plugins/xml/plugin.js diff --git a/gwt/war/ckeditor/_source/skins/kama/dialog.css b/web/WebContent/ckeditor/_source/skins/kama/dialog.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/dialog.css rename to web/WebContent/ckeditor/_source/skins/kama/dialog.css diff --git a/gwt/war/ckeditor/_source/skins/kama/editor.css b/web/WebContent/ckeditor/_source/skins/kama/editor.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/editor.css rename to web/WebContent/ckeditor/_source/skins/kama/editor.css diff --git a/gwt/war/ckeditor/_source/skins/kama/elementspath.css b/web/WebContent/ckeditor/_source/skins/kama/elementspath.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/elementspath.css rename to web/WebContent/ckeditor/_source/skins/kama/elementspath.css diff --git a/gwt/war/ckeditor/_source/skins/kama/icons.css b/web/WebContent/ckeditor/_source/skins/kama/icons.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/icons.css rename to web/WebContent/ckeditor/_source/skins/kama/icons.css diff --git a/gwt/war/ckeditor/_source/skins/kama/icons.png b/web/WebContent/ckeditor/_source/skins/kama/icons.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/icons.png rename to web/WebContent/ckeditor/_source/skins/kama/icons.png diff --git a/gwt/war/ckeditor/_source/skins/kama/icons_rtl.png b/web/WebContent/ckeditor/_source/skins/kama/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/icons_rtl.png rename to web/WebContent/ckeditor/_source/skins/kama/icons_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/dialog_sides.gif b/web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/dialog_sides.gif rename to web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/_source/skins/kama/images/dialog_sides.png b/web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/dialog_sides.png rename to web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/mini.gif b/web/WebContent/ckeditor/_source/skins/kama/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/mini.gif rename to web/WebContent/ckeditor/_source/skins/kama/images/mini.gif diff --git a/gwt/war/ckeditor/_source/skins/kama/images/noimage.png b/web/WebContent/ckeditor/_source/skins/kama/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/noimage.png rename to web/WebContent/ckeditor/_source/skins/kama/images/noimage.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/sprites.png b/web/WebContent/ckeditor/_source/skins/kama/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/sprites.png rename to web/WebContent/ckeditor/_source/skins/kama/images/sprites.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/sprites_ie6.png b/web/WebContent/ckeditor/_source/skins/kama/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/sprites_ie6.png rename to web/WebContent/ckeditor/_source/skins/kama/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/_source/skins/kama/images/toolbar_start.gif b/web/WebContent/ckeditor/_source/skins/kama/images/toolbar_start.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/images/toolbar_start.gif rename to web/WebContent/ckeditor/_source/skins/kama/images/toolbar_start.gif diff --git a/gwt/war/ckeditor/_source/skins/kama/mainui.css b/web/WebContent/ckeditor/_source/skins/kama/mainui.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/mainui.css rename to web/WebContent/ckeditor/_source/skins/kama/mainui.css diff --git a/gwt/war/ckeditor/_source/skins/kama/menu.css b/web/WebContent/ckeditor/_source/skins/kama/menu.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/menu.css rename to web/WebContent/ckeditor/_source/skins/kama/menu.css diff --git a/gwt/war/ckeditor/_source/skins/kama/panel.css b/web/WebContent/ckeditor/_source/skins/kama/panel.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/panel.css rename to web/WebContent/ckeditor/_source/skins/kama/panel.css diff --git a/gwt/war/ckeditor/_source/skins/kama/presets.css b/web/WebContent/ckeditor/_source/skins/kama/presets.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/presets.css rename to web/WebContent/ckeditor/_source/skins/kama/presets.css diff --git a/gwt/war/ckeditor/_source/skins/kama/reset.css b/web/WebContent/ckeditor/_source/skins/kama/reset.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/reset.css rename to web/WebContent/ckeditor/_source/skins/kama/reset.css diff --git a/gwt/war/ckeditor/_source/skins/kama/richcombo.css b/web/WebContent/ckeditor/_source/skins/kama/richcombo.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/richcombo.css rename to web/WebContent/ckeditor/_source/skins/kama/richcombo.css diff --git a/gwt/war/ckeditor/_source/skins/kama/skin.js b/web/WebContent/ckeditor/_source/skins/kama/skin.js similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/skin.js rename to web/WebContent/ckeditor/_source/skins/kama/skin.js diff --git a/gwt/war/ckeditor/_source/skins/kama/templates.css b/web/WebContent/ckeditor/_source/skins/kama/templates.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/templates.css rename to web/WebContent/ckeditor/_source/skins/kama/templates.css diff --git a/gwt/war/ckeditor/_source/skins/kama/toolbar.css b/web/WebContent/ckeditor/_source/skins/kama/toolbar.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/kama/toolbar.css rename to web/WebContent/ckeditor/_source/skins/kama/toolbar.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/dialog.css b/web/WebContent/ckeditor/_source/skins/office2003/dialog.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/dialog.css rename to web/WebContent/ckeditor/_source/skins/office2003/dialog.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/editor.css b/web/WebContent/ckeditor/_source/skins/office2003/editor.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/editor.css rename to web/WebContent/ckeditor/_source/skins/office2003/editor.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/elementspath.css b/web/WebContent/ckeditor/_source/skins/office2003/elementspath.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/elementspath.css rename to web/WebContent/ckeditor/_source/skins/office2003/elementspath.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/icons.css b/web/WebContent/ckeditor/_source/skins/office2003/icons.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/icons.css rename to web/WebContent/ckeditor/_source/skins/office2003/icons.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/icons.png b/web/WebContent/ckeditor/_source/skins/office2003/icons.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/icons.png rename to web/WebContent/ckeditor/_source/skins/office2003/icons.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/icons_rtl.png b/web/WebContent/ckeditor/_source/skins/office2003/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/icons_rtl.png rename to web/WebContent/ckeditor/_source/skins/office2003/icons_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides.gif b/web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides.gif rename to web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides.png b/web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides.png rename to web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/mini.gif b/web/WebContent/ckeditor/_source/skins/office2003/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/mini.gif rename to web/WebContent/ckeditor/_source/skins/office2003/images/mini.gif diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/noimage.png b/web/WebContent/ckeditor/_source/skins/office2003/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/noimage.png rename to web/WebContent/ckeditor/_source/skins/office2003/images/noimage.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/sprites.png b/web/WebContent/ckeditor/_source/skins/office2003/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/sprites.png rename to web/WebContent/ckeditor/_source/skins/office2003/images/sprites.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/images/sprites_ie6.png b/web/WebContent/ckeditor/_source/skins/office2003/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/images/sprites_ie6.png rename to web/WebContent/ckeditor/_source/skins/office2003/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/_source/skins/office2003/mainui.css b/web/WebContent/ckeditor/_source/skins/office2003/mainui.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/mainui.css rename to web/WebContent/ckeditor/_source/skins/office2003/mainui.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/menu.css b/web/WebContent/ckeditor/_source/skins/office2003/menu.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/menu.css rename to web/WebContent/ckeditor/_source/skins/office2003/menu.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/panel.css b/web/WebContent/ckeditor/_source/skins/office2003/panel.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/panel.css rename to web/WebContent/ckeditor/_source/skins/office2003/panel.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/presets.css b/web/WebContent/ckeditor/_source/skins/office2003/presets.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/presets.css rename to web/WebContent/ckeditor/_source/skins/office2003/presets.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/reset.css b/web/WebContent/ckeditor/_source/skins/office2003/reset.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/reset.css rename to web/WebContent/ckeditor/_source/skins/office2003/reset.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/richcombo.css b/web/WebContent/ckeditor/_source/skins/office2003/richcombo.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/richcombo.css rename to web/WebContent/ckeditor/_source/skins/office2003/richcombo.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/skin.js b/web/WebContent/ckeditor/_source/skins/office2003/skin.js similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/skin.js rename to web/WebContent/ckeditor/_source/skins/office2003/skin.js diff --git a/gwt/war/ckeditor/_source/skins/office2003/templates.css b/web/WebContent/ckeditor/_source/skins/office2003/templates.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/templates.css rename to web/WebContent/ckeditor/_source/skins/office2003/templates.css diff --git a/gwt/war/ckeditor/_source/skins/office2003/toolbar.css b/web/WebContent/ckeditor/_source/skins/office2003/toolbar.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/office2003/toolbar.css rename to web/WebContent/ckeditor/_source/skins/office2003/toolbar.css diff --git a/gwt/war/ckeditor/_source/skins/v2/dialog.css b/web/WebContent/ckeditor/_source/skins/v2/dialog.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/dialog.css rename to web/WebContent/ckeditor/_source/skins/v2/dialog.css diff --git a/gwt/war/ckeditor/_source/skins/v2/editor.css b/web/WebContent/ckeditor/_source/skins/v2/editor.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/editor.css rename to web/WebContent/ckeditor/_source/skins/v2/editor.css diff --git a/gwt/war/ckeditor/_source/skins/v2/elementspath.css b/web/WebContent/ckeditor/_source/skins/v2/elementspath.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/elementspath.css rename to web/WebContent/ckeditor/_source/skins/v2/elementspath.css diff --git a/gwt/war/ckeditor/_source/skins/v2/icons.css b/web/WebContent/ckeditor/_source/skins/v2/icons.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/icons.css rename to web/WebContent/ckeditor/_source/skins/v2/icons.css diff --git a/gwt/war/ckeditor/_source/skins/v2/icons.png b/web/WebContent/ckeditor/_source/skins/v2/icons.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/icons.png rename to web/WebContent/ckeditor/_source/skins/v2/icons.png diff --git a/gwt/war/ckeditor/_source/skins/v2/icons_rtl.png b/web/WebContent/ckeditor/_source/skins/v2/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/icons_rtl.png rename to web/WebContent/ckeditor/_source/skins/v2/icons_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/dialog_sides.gif b/web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/dialog_sides.gif rename to web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/_source/skins/v2/images/dialog_sides.png b/web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/dialog_sides.png rename to web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/mini.gif b/web/WebContent/ckeditor/_source/skins/v2/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/mini.gif rename to web/WebContent/ckeditor/_source/skins/v2/images/mini.gif diff --git a/gwt/war/ckeditor/_source/skins/v2/images/noimage.png b/web/WebContent/ckeditor/_source/skins/v2/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/noimage.png rename to web/WebContent/ckeditor/_source/skins/v2/images/noimage.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/sprites.png b/web/WebContent/ckeditor/_source/skins/v2/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/sprites.png rename to web/WebContent/ckeditor/_source/skins/v2/images/sprites.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/sprites_ie6.png b/web/WebContent/ckeditor/_source/skins/v2/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/sprites_ie6.png rename to web/WebContent/ckeditor/_source/skins/v2/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/_source/skins/v2/images/toolbar_start.gif b/web/WebContent/ckeditor/_source/skins/v2/images/toolbar_start.gif similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/images/toolbar_start.gif rename to web/WebContent/ckeditor/_source/skins/v2/images/toolbar_start.gif diff --git a/gwt/war/ckeditor/_source/skins/v2/mainui.css b/web/WebContent/ckeditor/_source/skins/v2/mainui.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/mainui.css rename to web/WebContent/ckeditor/_source/skins/v2/mainui.css diff --git a/gwt/war/ckeditor/_source/skins/v2/menu.css b/web/WebContent/ckeditor/_source/skins/v2/menu.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/menu.css rename to web/WebContent/ckeditor/_source/skins/v2/menu.css diff --git a/gwt/war/ckeditor/_source/skins/v2/panel.css b/web/WebContent/ckeditor/_source/skins/v2/panel.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/panel.css rename to web/WebContent/ckeditor/_source/skins/v2/panel.css diff --git a/gwt/war/ckeditor/_source/skins/v2/presets.css b/web/WebContent/ckeditor/_source/skins/v2/presets.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/presets.css rename to web/WebContent/ckeditor/_source/skins/v2/presets.css diff --git a/gwt/war/ckeditor/_source/skins/v2/reset.css b/web/WebContent/ckeditor/_source/skins/v2/reset.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/reset.css rename to web/WebContent/ckeditor/_source/skins/v2/reset.css diff --git a/gwt/war/ckeditor/_source/skins/v2/richcombo.css b/web/WebContent/ckeditor/_source/skins/v2/richcombo.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/richcombo.css rename to web/WebContent/ckeditor/_source/skins/v2/richcombo.css diff --git a/gwt/war/ckeditor/_source/skins/v2/skin.js b/web/WebContent/ckeditor/_source/skins/v2/skin.js similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/skin.js rename to web/WebContent/ckeditor/_source/skins/v2/skin.js diff --git a/gwt/war/ckeditor/_source/skins/v2/templates.css b/web/WebContent/ckeditor/_source/skins/v2/templates.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/templates.css rename to web/WebContent/ckeditor/_source/skins/v2/templates.css diff --git a/gwt/war/ckeditor/_source/skins/v2/toolbar.css b/web/WebContent/ckeditor/_source/skins/v2/toolbar.css similarity index 100% rename from gwt/war/ckeditor/_source/skins/v2/toolbar.css rename to web/WebContent/ckeditor/_source/skins/v2/toolbar.css diff --git a/gwt/war/ckeditor/_source/themes/default/theme.js b/web/WebContent/ckeditor/_source/themes/default/theme.js similarity index 100% rename from gwt/war/ckeditor/_source/themes/default/theme.js rename to web/WebContent/ckeditor/_source/themes/default/theme.js diff --git a/gwt/war/ckeditor/adapters/jquery.js b/web/WebContent/ckeditor/adapters/jquery.js similarity index 100% rename from gwt/war/ckeditor/adapters/jquery.js rename to web/WebContent/ckeditor/adapters/jquery.js diff --git a/gwt/war/ckeditor/ckeditor.asp b/web/WebContent/ckeditor/ckeditor.asp similarity index 100% rename from gwt/war/ckeditor/ckeditor.asp rename to web/WebContent/ckeditor/ckeditor.asp diff --git a/gwt/war/ckeditor/ckeditor.js b/web/WebContent/ckeditor/ckeditor.js similarity index 100% rename from gwt/war/ckeditor/ckeditor.js rename to web/WebContent/ckeditor/ckeditor.js diff --git a/gwt/war/ckeditor/ckeditor.pack b/web/WebContent/ckeditor/ckeditor.pack similarity index 100% rename from gwt/war/ckeditor/ckeditor.pack rename to web/WebContent/ckeditor/ckeditor.pack diff --git a/gwt/war/ckeditor/ckeditor.php b/web/WebContent/ckeditor/ckeditor.php similarity index 100% rename from gwt/war/ckeditor/ckeditor.php rename to web/WebContent/ckeditor/ckeditor.php diff --git a/gwt/war/ckeditor/ckeditor_basic.js b/web/WebContent/ckeditor/ckeditor_basic.js similarity index 100% rename from gwt/war/ckeditor/ckeditor_basic.js rename to web/WebContent/ckeditor/ckeditor_basic.js diff --git a/gwt/war/ckeditor/ckeditor_basic_source.js b/web/WebContent/ckeditor/ckeditor_basic_source.js similarity index 100% rename from gwt/war/ckeditor/ckeditor_basic_source.js rename to web/WebContent/ckeditor/ckeditor_basic_source.js diff --git a/gwt/war/ckeditor/ckeditor_php4.php b/web/WebContent/ckeditor/ckeditor_php4.php similarity index 100% rename from gwt/war/ckeditor/ckeditor_php4.php rename to web/WebContent/ckeditor/ckeditor_php4.php diff --git a/gwt/war/ckeditor/ckeditor_php5.php b/web/WebContent/ckeditor/ckeditor_php5.php similarity index 100% rename from gwt/war/ckeditor/ckeditor_php5.php rename to web/WebContent/ckeditor/ckeditor_php5.php diff --git a/gwt/war/ckeditor/ckeditor_source.js b/web/WebContent/ckeditor/ckeditor_source.js similarity index 100% rename from gwt/war/ckeditor/ckeditor_source.js rename to web/WebContent/ckeditor/ckeditor_source.js diff --git a/gwt/war/ckeditor/config.js b/web/WebContent/ckeditor/config.js similarity index 100% rename from gwt/war/ckeditor/config.js rename to web/WebContent/ckeditor/config.js diff --git a/gwt/war/ckeditor/contents.css b/web/WebContent/ckeditor/contents.css similarity index 100% rename from gwt/war/ckeditor/contents.css rename to web/WebContent/ckeditor/contents.css diff --git a/gwt/war/ckeditor/images/spacer.gif b/web/WebContent/ckeditor/images/spacer.gif similarity index 100% rename from gwt/war/ckeditor/images/spacer.gif rename to web/WebContent/ckeditor/images/spacer.gif diff --git a/gwt/war/ckeditor/lang/_languages.js b/web/WebContent/ckeditor/lang/_languages.js similarity index 100% rename from gwt/war/ckeditor/lang/_languages.js rename to web/WebContent/ckeditor/lang/_languages.js diff --git a/gwt/war/ckeditor/lang/_translationstatus.txt b/web/WebContent/ckeditor/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/lang/_translationstatus.txt rename to web/WebContent/ckeditor/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/lang/af.js b/web/WebContent/ckeditor/lang/af.js similarity index 100% rename from gwt/war/ckeditor/lang/af.js rename to web/WebContent/ckeditor/lang/af.js diff --git a/gwt/war/ckeditor/lang/ar.js b/web/WebContent/ckeditor/lang/ar.js similarity index 100% rename from gwt/war/ckeditor/lang/ar.js rename to web/WebContent/ckeditor/lang/ar.js diff --git a/gwt/war/ckeditor/lang/bg.js b/web/WebContent/ckeditor/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/lang/bg.js rename to web/WebContent/ckeditor/lang/bg.js diff --git a/gwt/war/ckeditor/lang/bn.js b/web/WebContent/ckeditor/lang/bn.js similarity index 100% rename from gwt/war/ckeditor/lang/bn.js rename to web/WebContent/ckeditor/lang/bn.js diff --git a/gwt/war/ckeditor/lang/bs.js b/web/WebContent/ckeditor/lang/bs.js similarity index 100% rename from gwt/war/ckeditor/lang/bs.js rename to web/WebContent/ckeditor/lang/bs.js diff --git a/gwt/war/ckeditor/lang/ca.js b/web/WebContent/ckeditor/lang/ca.js similarity index 100% rename from gwt/war/ckeditor/lang/ca.js rename to web/WebContent/ckeditor/lang/ca.js diff --git a/gwt/war/ckeditor/lang/cs.js b/web/WebContent/ckeditor/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/lang/cs.js rename to web/WebContent/ckeditor/lang/cs.js diff --git a/gwt/war/ckeditor/lang/cy.js b/web/WebContent/ckeditor/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/lang/cy.js rename to web/WebContent/ckeditor/lang/cy.js diff --git a/gwt/war/ckeditor/lang/da.js b/web/WebContent/ckeditor/lang/da.js similarity index 100% rename from gwt/war/ckeditor/lang/da.js rename to web/WebContent/ckeditor/lang/da.js diff --git a/gwt/war/ckeditor/lang/de.js b/web/WebContent/ckeditor/lang/de.js similarity index 100% rename from gwt/war/ckeditor/lang/de.js rename to web/WebContent/ckeditor/lang/de.js diff --git a/gwt/war/ckeditor/lang/el.js b/web/WebContent/ckeditor/lang/el.js similarity index 100% rename from gwt/war/ckeditor/lang/el.js rename to web/WebContent/ckeditor/lang/el.js diff --git a/gwt/war/ckeditor/lang/en-au.js b/web/WebContent/ckeditor/lang/en-au.js similarity index 100% rename from gwt/war/ckeditor/lang/en-au.js rename to web/WebContent/ckeditor/lang/en-au.js diff --git a/gwt/war/ckeditor/lang/en-ca.js b/web/WebContent/ckeditor/lang/en-ca.js similarity index 100% rename from gwt/war/ckeditor/lang/en-ca.js rename to web/WebContent/ckeditor/lang/en-ca.js diff --git a/gwt/war/ckeditor/lang/en-gb.js b/web/WebContent/ckeditor/lang/en-gb.js similarity index 100% rename from gwt/war/ckeditor/lang/en-gb.js rename to web/WebContent/ckeditor/lang/en-gb.js diff --git a/gwt/war/ckeditor/lang/en.js b/web/WebContent/ckeditor/lang/en.js similarity index 100% rename from gwt/war/ckeditor/lang/en.js rename to web/WebContent/ckeditor/lang/en.js diff --git a/gwt/war/ckeditor/lang/eo.js b/web/WebContent/ckeditor/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/lang/eo.js rename to web/WebContent/ckeditor/lang/eo.js diff --git a/gwt/war/ckeditor/lang/es.js b/web/WebContent/ckeditor/lang/es.js similarity index 100% rename from gwt/war/ckeditor/lang/es.js rename to web/WebContent/ckeditor/lang/es.js diff --git a/gwt/war/ckeditor/lang/et.js b/web/WebContent/ckeditor/lang/et.js similarity index 100% rename from gwt/war/ckeditor/lang/et.js rename to web/WebContent/ckeditor/lang/et.js diff --git a/gwt/war/ckeditor/lang/eu.js b/web/WebContent/ckeditor/lang/eu.js similarity index 100% rename from gwt/war/ckeditor/lang/eu.js rename to web/WebContent/ckeditor/lang/eu.js diff --git a/gwt/war/ckeditor/lang/fa.js b/web/WebContent/ckeditor/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/lang/fa.js rename to web/WebContent/ckeditor/lang/fa.js diff --git a/gwt/war/ckeditor/lang/fi.js b/web/WebContent/ckeditor/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/lang/fi.js rename to web/WebContent/ckeditor/lang/fi.js diff --git a/gwt/war/ckeditor/lang/fo.js b/web/WebContent/ckeditor/lang/fo.js similarity index 100% rename from gwt/war/ckeditor/lang/fo.js rename to web/WebContent/ckeditor/lang/fo.js diff --git a/gwt/war/ckeditor/lang/fr-ca.js b/web/WebContent/ckeditor/lang/fr-ca.js similarity index 100% rename from gwt/war/ckeditor/lang/fr-ca.js rename to web/WebContent/ckeditor/lang/fr-ca.js diff --git a/gwt/war/ckeditor/lang/fr.js b/web/WebContent/ckeditor/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/lang/fr.js rename to web/WebContent/ckeditor/lang/fr.js diff --git a/gwt/war/ckeditor/lang/gl.js b/web/WebContent/ckeditor/lang/gl.js similarity index 100% rename from gwt/war/ckeditor/lang/gl.js rename to web/WebContent/ckeditor/lang/gl.js diff --git a/gwt/war/ckeditor/lang/gu.js b/web/WebContent/ckeditor/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/lang/gu.js rename to web/WebContent/ckeditor/lang/gu.js diff --git a/gwt/war/ckeditor/lang/he.js b/web/WebContent/ckeditor/lang/he.js similarity index 100% rename from gwt/war/ckeditor/lang/he.js rename to web/WebContent/ckeditor/lang/he.js diff --git a/gwt/war/ckeditor/lang/hi.js b/web/WebContent/ckeditor/lang/hi.js similarity index 100% rename from gwt/war/ckeditor/lang/hi.js rename to web/WebContent/ckeditor/lang/hi.js diff --git a/gwt/war/ckeditor/lang/hr.js b/web/WebContent/ckeditor/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/lang/hr.js rename to web/WebContent/ckeditor/lang/hr.js diff --git a/gwt/war/ckeditor/lang/hu.js b/web/WebContent/ckeditor/lang/hu.js similarity index 100% rename from gwt/war/ckeditor/lang/hu.js rename to web/WebContent/ckeditor/lang/hu.js diff --git a/gwt/war/ckeditor/lang/id.js b/web/WebContent/ckeditor/lang/id.js similarity index 100% rename from gwt/war/ckeditor/lang/id.js rename to web/WebContent/ckeditor/lang/id.js diff --git a/gwt/war/ckeditor/lang/is.js b/web/WebContent/ckeditor/lang/is.js similarity index 100% rename from gwt/war/ckeditor/lang/is.js rename to web/WebContent/ckeditor/lang/is.js diff --git a/gwt/war/ckeditor/lang/it.js b/web/WebContent/ckeditor/lang/it.js similarity index 100% rename from gwt/war/ckeditor/lang/it.js rename to web/WebContent/ckeditor/lang/it.js diff --git a/gwt/war/ckeditor/lang/ja.js b/web/WebContent/ckeditor/lang/ja.js similarity index 100% rename from gwt/war/ckeditor/lang/ja.js rename to web/WebContent/ckeditor/lang/ja.js diff --git a/gwt/war/ckeditor/lang/ka.js b/web/WebContent/ckeditor/lang/ka.js similarity index 100% rename from gwt/war/ckeditor/lang/ka.js rename to web/WebContent/ckeditor/lang/ka.js diff --git a/gwt/war/ckeditor/lang/km.js b/web/WebContent/ckeditor/lang/km.js similarity index 100% rename from gwt/war/ckeditor/lang/km.js rename to web/WebContent/ckeditor/lang/km.js diff --git a/gwt/war/ckeditor/lang/ko.js b/web/WebContent/ckeditor/lang/ko.js similarity index 100% rename from gwt/war/ckeditor/lang/ko.js rename to web/WebContent/ckeditor/lang/ko.js diff --git a/gwt/war/ckeditor/lang/lt.js b/web/WebContent/ckeditor/lang/lt.js similarity index 100% rename from gwt/war/ckeditor/lang/lt.js rename to web/WebContent/ckeditor/lang/lt.js diff --git a/gwt/war/ckeditor/lang/lv.js b/web/WebContent/ckeditor/lang/lv.js similarity index 100% rename from gwt/war/ckeditor/lang/lv.js rename to web/WebContent/ckeditor/lang/lv.js diff --git a/gwt/war/ckeditor/lang/mk.js b/web/WebContent/ckeditor/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/lang/mk.js rename to web/WebContent/ckeditor/lang/mk.js diff --git a/gwt/war/ckeditor/lang/mn.js b/web/WebContent/ckeditor/lang/mn.js similarity index 100% rename from gwt/war/ckeditor/lang/mn.js rename to web/WebContent/ckeditor/lang/mn.js diff --git a/gwt/war/ckeditor/lang/ms.js b/web/WebContent/ckeditor/lang/ms.js similarity index 100% rename from gwt/war/ckeditor/lang/ms.js rename to web/WebContent/ckeditor/lang/ms.js diff --git a/gwt/war/ckeditor/lang/nb.js b/web/WebContent/ckeditor/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/lang/nb.js rename to web/WebContent/ckeditor/lang/nb.js diff --git a/gwt/war/ckeditor/lang/nl.js b/web/WebContent/ckeditor/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/lang/nl.js rename to web/WebContent/ckeditor/lang/nl.js diff --git a/gwt/war/ckeditor/lang/no.js b/web/WebContent/ckeditor/lang/no.js similarity index 100% rename from gwt/war/ckeditor/lang/no.js rename to web/WebContent/ckeditor/lang/no.js diff --git a/gwt/war/ckeditor/lang/pl.js b/web/WebContent/ckeditor/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/lang/pl.js rename to web/WebContent/ckeditor/lang/pl.js diff --git a/gwt/war/ckeditor/lang/pt-br.js b/web/WebContent/ckeditor/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/lang/pt-br.js rename to web/WebContent/ckeditor/lang/pt-br.js diff --git a/gwt/war/ckeditor/lang/pt.js b/web/WebContent/ckeditor/lang/pt.js similarity index 100% rename from gwt/war/ckeditor/lang/pt.js rename to web/WebContent/ckeditor/lang/pt.js diff --git a/gwt/war/ckeditor/lang/ro.js b/web/WebContent/ckeditor/lang/ro.js similarity index 100% rename from gwt/war/ckeditor/lang/ro.js rename to web/WebContent/ckeditor/lang/ro.js diff --git a/gwt/war/ckeditor/lang/ru.js b/web/WebContent/ckeditor/lang/ru.js similarity index 100% rename from gwt/war/ckeditor/lang/ru.js rename to web/WebContent/ckeditor/lang/ru.js diff --git a/gwt/war/ckeditor/lang/sk.js b/web/WebContent/ckeditor/lang/sk.js similarity index 100% rename from gwt/war/ckeditor/lang/sk.js rename to web/WebContent/ckeditor/lang/sk.js diff --git a/gwt/war/ckeditor/lang/sl.js b/web/WebContent/ckeditor/lang/sl.js similarity index 100% rename from gwt/war/ckeditor/lang/sl.js rename to web/WebContent/ckeditor/lang/sl.js diff --git a/gwt/war/ckeditor/lang/sr-latn.js b/web/WebContent/ckeditor/lang/sr-latn.js similarity index 100% rename from gwt/war/ckeditor/lang/sr-latn.js rename to web/WebContent/ckeditor/lang/sr-latn.js diff --git a/gwt/war/ckeditor/lang/sr.js b/web/WebContent/ckeditor/lang/sr.js similarity index 100% rename from gwt/war/ckeditor/lang/sr.js rename to web/WebContent/ckeditor/lang/sr.js diff --git a/gwt/war/ckeditor/lang/sv.js b/web/WebContent/ckeditor/lang/sv.js similarity index 100% rename from gwt/war/ckeditor/lang/sv.js rename to web/WebContent/ckeditor/lang/sv.js diff --git a/gwt/war/ckeditor/lang/th.js b/web/WebContent/ckeditor/lang/th.js similarity index 100% rename from gwt/war/ckeditor/lang/th.js rename to web/WebContent/ckeditor/lang/th.js diff --git a/gwt/war/ckeditor/lang/tr.js b/web/WebContent/ckeditor/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/lang/tr.js rename to web/WebContent/ckeditor/lang/tr.js diff --git a/gwt/war/ckeditor/lang/ug.js b/web/WebContent/ckeditor/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/lang/ug.js rename to web/WebContent/ckeditor/lang/ug.js diff --git a/gwt/war/ckeditor/lang/uk.js b/web/WebContent/ckeditor/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/lang/uk.js rename to web/WebContent/ckeditor/lang/uk.js diff --git a/gwt/war/ckeditor/lang/vi.js b/web/WebContent/ckeditor/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/lang/vi.js rename to web/WebContent/ckeditor/lang/vi.js diff --git a/gwt/war/ckeditor/lang/zh-cn.js b/web/WebContent/ckeditor/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/lang/zh-cn.js rename to web/WebContent/ckeditor/lang/zh-cn.js diff --git a/gwt/war/ckeditor/lang/zh.js b/web/WebContent/ckeditor/lang/zh.js similarity index 100% rename from gwt/war/ckeditor/lang/zh.js rename to web/WebContent/ckeditor/lang/zh.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/web/WebContent/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js rename to web/WebContent/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt b/web/WebContent/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/cs.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/cs.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/cs.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/cy.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/cy.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/cy.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/da.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/da.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/da.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/da.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/de.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/de.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/de.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/de.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/el.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/el.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/el.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/el.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/en.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/en.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/en.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/en.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/eo.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/eo.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/eo.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/fa.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/fa.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/fa.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/fi.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/fi.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/fi.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/fr.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/fr.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/fr.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/gu.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/gu.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/gu.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/he.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/he.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/he.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/he.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/it.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/it.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/it.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/it.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/mk.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/mk.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/mk.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/nb.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/nb.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/nb.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/nl.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/nl.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/nl.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/no.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/no.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/no.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/no.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/pt-br.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/pt-br.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/pt-br.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/ro.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/ro.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/ro.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/ro.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/tr.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/tr.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/tr.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/ug.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/ug.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/ug.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/vi.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/vi.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/vi.js diff --git a/gwt/war/ckeditor/plugins/a11yhelp/lang/zh-cn.js b/web/WebContent/ckeditor/plugins/a11yhelp/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/plugins/a11yhelp/lang/zh-cn.js rename to web/WebContent/ckeditor/plugins/a11yhelp/lang/zh-cn.js diff --git a/gwt/war/ckeditor/plugins/about/dialogs/about.js b/web/WebContent/ckeditor/plugins/about/dialogs/about.js similarity index 100% rename from gwt/war/ckeditor/plugins/about/dialogs/about.js rename to web/WebContent/ckeditor/plugins/about/dialogs/about.js diff --git a/gwt/war/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/web/WebContent/ckeditor/plugins/about/dialogs/logo_ckeditor.png similarity index 100% rename from gwt/war/ckeditor/plugins/about/dialogs/logo_ckeditor.png rename to web/WebContent/ckeditor/plugins/about/dialogs/logo_ckeditor.png diff --git a/gwt/war/ckeditor/plugins/adobeair/plugin.js b/web/WebContent/ckeditor/plugins/adobeair/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/adobeair/plugin.js rename to web/WebContent/ckeditor/plugins/adobeair/plugin.js diff --git a/gwt/war/ckeditor/plugins/ajax/plugin.js b/web/WebContent/ckeditor/plugins/ajax/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/ajax/plugin.js rename to web/WebContent/ckeditor/plugins/ajax/plugin.js diff --git a/gwt/war/ckeditor/plugins/autogrow/plugin.js b/web/WebContent/ckeditor/plugins/autogrow/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/autogrow/plugin.js rename to web/WebContent/ckeditor/plugins/autogrow/plugin.js diff --git a/gwt/war/ckeditor/plugins/bbcode/plugin.js b/web/WebContent/ckeditor/plugins/bbcode/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/bbcode/plugin.js rename to web/WebContent/ckeditor/plugins/bbcode/plugin.js diff --git a/gwt/war/ckeditor/plugins/clipboard/dialogs/paste.js b/web/WebContent/ckeditor/plugins/clipboard/dialogs/paste.js similarity index 100% rename from gwt/war/ckeditor/plugins/clipboard/dialogs/paste.js rename to web/WebContent/ckeditor/plugins/clipboard/dialogs/paste.js diff --git a/gwt/war/ckeditor/plugins/colordialog/dialogs/colordialog.js b/web/WebContent/ckeditor/plugins/colordialog/dialogs/colordialog.js similarity index 100% rename from gwt/war/ckeditor/plugins/colordialog/dialogs/colordialog.js rename to web/WebContent/ckeditor/plugins/colordialog/dialogs/colordialog.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/_translationstatus.txt b/web/WebContent/ckeditor/plugins/devtools/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/_translationstatus.txt rename to web/WebContent/ckeditor/plugins/devtools/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/plugins/devtools/lang/bg.js b/web/WebContent/ckeditor/plugins/devtools/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/bg.js rename to web/WebContent/ckeditor/plugins/devtools/lang/bg.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/cs.js b/web/WebContent/ckeditor/plugins/devtools/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/cs.js rename to web/WebContent/ckeditor/plugins/devtools/lang/cs.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/cy.js b/web/WebContent/ckeditor/plugins/devtools/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/cy.js rename to web/WebContent/ckeditor/plugins/devtools/lang/cy.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/da.js b/web/WebContent/ckeditor/plugins/devtools/lang/da.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/da.js rename to web/WebContent/ckeditor/plugins/devtools/lang/da.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/de.js b/web/WebContent/ckeditor/plugins/devtools/lang/de.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/de.js rename to web/WebContent/ckeditor/plugins/devtools/lang/de.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/el.js b/web/WebContent/ckeditor/plugins/devtools/lang/el.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/el.js rename to web/WebContent/ckeditor/plugins/devtools/lang/el.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/en.js b/web/WebContent/ckeditor/plugins/devtools/lang/en.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/en.js rename to web/WebContent/ckeditor/plugins/devtools/lang/en.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/eo.js b/web/WebContent/ckeditor/plugins/devtools/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/eo.js rename to web/WebContent/ckeditor/plugins/devtools/lang/eo.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/et.js b/web/WebContent/ckeditor/plugins/devtools/lang/et.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/et.js rename to web/WebContent/ckeditor/plugins/devtools/lang/et.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/fa.js b/web/WebContent/ckeditor/plugins/devtools/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/fa.js rename to web/WebContent/ckeditor/plugins/devtools/lang/fa.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/fi.js b/web/WebContent/ckeditor/plugins/devtools/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/fi.js rename to web/WebContent/ckeditor/plugins/devtools/lang/fi.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/fr.js b/web/WebContent/ckeditor/plugins/devtools/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/fr.js rename to web/WebContent/ckeditor/plugins/devtools/lang/fr.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/gu.js b/web/WebContent/ckeditor/plugins/devtools/lang/gu.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/gu.js rename to web/WebContent/ckeditor/plugins/devtools/lang/gu.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/he.js b/web/WebContent/ckeditor/plugins/devtools/lang/he.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/he.js rename to web/WebContent/ckeditor/plugins/devtools/lang/he.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/hr.js b/web/WebContent/ckeditor/plugins/devtools/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/hr.js rename to web/WebContent/ckeditor/plugins/devtools/lang/hr.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/it.js b/web/WebContent/ckeditor/plugins/devtools/lang/it.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/it.js rename to web/WebContent/ckeditor/plugins/devtools/lang/it.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/nb.js b/web/WebContent/ckeditor/plugins/devtools/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/nb.js rename to web/WebContent/ckeditor/plugins/devtools/lang/nb.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/nl.js b/web/WebContent/ckeditor/plugins/devtools/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/nl.js rename to web/WebContent/ckeditor/plugins/devtools/lang/nl.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/no.js b/web/WebContent/ckeditor/plugins/devtools/lang/no.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/no.js rename to web/WebContent/ckeditor/plugins/devtools/lang/no.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/pl.js b/web/WebContent/ckeditor/plugins/devtools/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/pl.js rename to web/WebContent/ckeditor/plugins/devtools/lang/pl.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/pt-br.js b/web/WebContent/ckeditor/plugins/devtools/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/pt-br.js rename to web/WebContent/ckeditor/plugins/devtools/lang/pt-br.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/tr.js b/web/WebContent/ckeditor/plugins/devtools/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/tr.js rename to web/WebContent/ckeditor/plugins/devtools/lang/tr.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/ug.js b/web/WebContent/ckeditor/plugins/devtools/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/ug.js rename to web/WebContent/ckeditor/plugins/devtools/lang/ug.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/uk.js b/web/WebContent/ckeditor/plugins/devtools/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/uk.js rename to web/WebContent/ckeditor/plugins/devtools/lang/uk.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/vi.js b/web/WebContent/ckeditor/plugins/devtools/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/vi.js rename to web/WebContent/ckeditor/plugins/devtools/lang/vi.js diff --git a/gwt/war/ckeditor/plugins/devtools/lang/zh-cn.js b/web/WebContent/ckeditor/plugins/devtools/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/lang/zh-cn.js rename to web/WebContent/ckeditor/plugins/devtools/lang/zh-cn.js diff --git a/gwt/war/ckeditor/plugins/devtools/plugin.js b/web/WebContent/ckeditor/plugins/devtools/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/devtools/plugin.js rename to web/WebContent/ckeditor/plugins/devtools/plugin.js diff --git a/gwt/war/ckeditor/plugins/dialog/dialogDefinition.js b/web/WebContent/ckeditor/plugins/dialog/dialogDefinition.js similarity index 100% rename from gwt/war/ckeditor/plugins/dialog/dialogDefinition.js rename to web/WebContent/ckeditor/plugins/dialog/dialogDefinition.js diff --git a/gwt/war/ckeditor/plugins/div/dialogs/div.js b/web/WebContent/ckeditor/plugins/div/dialogs/div.js similarity index 100% rename from gwt/war/ckeditor/plugins/div/dialogs/div.js rename to web/WebContent/ckeditor/plugins/div/dialogs/div.js diff --git a/gwt/war/ckeditor/plugins/docprops/dialogs/docprops.js b/web/WebContent/ckeditor/plugins/docprops/dialogs/docprops.js similarity index 100% rename from gwt/war/ckeditor/plugins/docprops/dialogs/docprops.js rename to web/WebContent/ckeditor/plugins/docprops/dialogs/docprops.js diff --git a/gwt/war/ckeditor/plugins/docprops/plugin.js b/web/WebContent/ckeditor/plugins/docprops/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/docprops/plugin.js rename to web/WebContent/ckeditor/plugins/docprops/plugin.js diff --git a/gwt/war/ckeditor/plugins/find/dialogs/find.js b/web/WebContent/ckeditor/plugins/find/dialogs/find.js similarity index 100% rename from gwt/war/ckeditor/plugins/find/dialogs/find.js rename to web/WebContent/ckeditor/plugins/find/dialogs/find.js diff --git a/gwt/war/ckeditor/plugins/flash/dialogs/flash.js b/web/WebContent/ckeditor/plugins/flash/dialogs/flash.js similarity index 100% rename from gwt/war/ckeditor/plugins/flash/dialogs/flash.js rename to web/WebContent/ckeditor/plugins/flash/dialogs/flash.js diff --git a/gwt/war/ckeditor/plugins/flash/images/placeholder.png b/web/WebContent/ckeditor/plugins/flash/images/placeholder.png similarity index 100% rename from gwt/war/ckeditor/plugins/flash/images/placeholder.png rename to web/WebContent/ckeditor/plugins/flash/images/placeholder.png diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/button.js b/web/WebContent/ckeditor/plugins/forms/dialogs/button.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/button.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/button.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/checkbox.js b/web/WebContent/ckeditor/plugins/forms/dialogs/checkbox.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/checkbox.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/checkbox.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/form.js b/web/WebContent/ckeditor/plugins/forms/dialogs/form.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/form.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/form.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/hiddenfield.js b/web/WebContent/ckeditor/plugins/forms/dialogs/hiddenfield.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/hiddenfield.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/hiddenfield.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/radio.js b/web/WebContent/ckeditor/plugins/forms/dialogs/radio.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/radio.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/radio.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/select.js b/web/WebContent/ckeditor/plugins/forms/dialogs/select.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/select.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/select.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/textarea.js b/web/WebContent/ckeditor/plugins/forms/dialogs/textarea.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/textarea.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/textarea.js diff --git a/gwt/war/ckeditor/plugins/forms/dialogs/textfield.js b/web/WebContent/ckeditor/plugins/forms/dialogs/textfield.js similarity index 100% rename from gwt/war/ckeditor/plugins/forms/dialogs/textfield.js rename to web/WebContent/ckeditor/plugins/forms/dialogs/textfield.js diff --git a/gwt/war/ckeditor/plugins/forms/images/hiddenfield.gif b/web/WebContent/ckeditor/plugins/forms/images/hiddenfield.gif similarity index 100% rename from gwt/war/ckeditor/plugins/forms/images/hiddenfield.gif rename to web/WebContent/ckeditor/plugins/forms/images/hiddenfield.gif diff --git a/gwt/war/ckeditor/plugins/iframe/dialogs/iframe.js b/web/WebContent/ckeditor/plugins/iframe/dialogs/iframe.js similarity index 100% rename from gwt/war/ckeditor/plugins/iframe/dialogs/iframe.js rename to web/WebContent/ckeditor/plugins/iframe/dialogs/iframe.js diff --git a/gwt/war/ckeditor/plugins/iframe/images/placeholder.png b/web/WebContent/ckeditor/plugins/iframe/images/placeholder.png similarity index 100% rename from gwt/war/ckeditor/plugins/iframe/images/placeholder.png rename to web/WebContent/ckeditor/plugins/iframe/images/placeholder.png diff --git a/gwt/war/ckeditor/plugins/iframedialog/plugin.js b/web/WebContent/ckeditor/plugins/iframedialog/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/iframedialog/plugin.js rename to web/WebContent/ckeditor/plugins/iframedialog/plugin.js diff --git a/gwt/war/ckeditor/plugins/image/dialogs/image.js b/web/WebContent/ckeditor/plugins/image/dialogs/image.js similarity index 100% rename from gwt/war/ckeditor/plugins/image/dialogs/image.js rename to web/WebContent/ckeditor/plugins/image/dialogs/image.js diff --git a/gwt/war/ckeditor/plugins/link/dialogs/anchor.js b/web/WebContent/ckeditor/plugins/link/dialogs/anchor.js similarity index 100% rename from gwt/war/ckeditor/plugins/link/dialogs/anchor.js rename to web/WebContent/ckeditor/plugins/link/dialogs/anchor.js diff --git a/gwt/war/ckeditor/plugins/link/dialogs/link.js b/web/WebContent/ckeditor/plugins/link/dialogs/link.js similarity index 100% rename from gwt/war/ckeditor/plugins/link/dialogs/link.js rename to web/WebContent/ckeditor/plugins/link/dialogs/link.js diff --git a/gwt/war/ckeditor/plugins/link/images/anchor.gif b/web/WebContent/ckeditor/plugins/link/images/anchor.gif similarity index 100% rename from gwt/war/ckeditor/plugins/link/images/anchor.gif rename to web/WebContent/ckeditor/plugins/link/images/anchor.gif diff --git a/gwt/war/ckeditor/plugins/liststyle/dialogs/liststyle.js b/web/WebContent/ckeditor/plugins/liststyle/dialogs/liststyle.js similarity index 100% rename from gwt/war/ckeditor/plugins/liststyle/dialogs/liststyle.js rename to web/WebContent/ckeditor/plugins/liststyle/dialogs/liststyle.js diff --git a/gwt/war/ckeditor/plugins/pagebreak/images/pagebreak.gif b/web/WebContent/ckeditor/plugins/pagebreak/images/pagebreak.gif similarity index 100% rename from gwt/war/ckeditor/plugins/pagebreak/images/pagebreak.gif rename to web/WebContent/ckeditor/plugins/pagebreak/images/pagebreak.gif diff --git a/gwt/war/ckeditor/plugins/pastefromword/filter/default.js b/web/WebContent/ckeditor/plugins/pastefromword/filter/default.js similarity index 100% rename from gwt/war/ckeditor/plugins/pastefromword/filter/default.js rename to web/WebContent/ckeditor/plugins/pastefromword/filter/default.js diff --git a/gwt/war/ckeditor/plugins/pastetext/dialogs/pastetext.js b/web/WebContent/ckeditor/plugins/pastetext/dialogs/pastetext.js similarity index 100% rename from gwt/war/ckeditor/plugins/pastetext/dialogs/pastetext.js rename to web/WebContent/ckeditor/plugins/pastetext/dialogs/pastetext.js diff --git a/gwt/war/ckeditor/plugins/placeholder/dialogs/placeholder.js b/web/WebContent/ckeditor/plugins/placeholder/dialogs/placeholder.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/dialogs/placeholder.js rename to web/WebContent/ckeditor/plugins/placeholder/dialogs/placeholder.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/_translationstatus.txt b/web/WebContent/ckeditor/plugins/placeholder/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/_translationstatus.txt rename to web/WebContent/ckeditor/plugins/placeholder/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/bg.js b/web/WebContent/ckeditor/plugins/placeholder/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/bg.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/bg.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/cs.js b/web/WebContent/ckeditor/plugins/placeholder/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/cs.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/cs.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/cy.js b/web/WebContent/ckeditor/plugins/placeholder/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/cy.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/cy.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/da.js b/web/WebContent/ckeditor/plugins/placeholder/lang/da.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/da.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/da.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/de.js b/web/WebContent/ckeditor/plugins/placeholder/lang/de.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/de.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/de.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/el.js b/web/WebContent/ckeditor/plugins/placeholder/lang/el.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/el.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/el.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/en.js b/web/WebContent/ckeditor/plugins/placeholder/lang/en.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/en.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/en.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/eo.js b/web/WebContent/ckeditor/plugins/placeholder/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/eo.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/eo.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/et.js b/web/WebContent/ckeditor/plugins/placeholder/lang/et.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/et.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/et.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/fa.js b/web/WebContent/ckeditor/plugins/placeholder/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/fa.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/fa.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/fi.js b/web/WebContent/ckeditor/plugins/placeholder/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/fi.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/fi.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/fr.js b/web/WebContent/ckeditor/plugins/placeholder/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/fr.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/fr.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/he.js b/web/WebContent/ckeditor/plugins/placeholder/lang/he.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/he.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/he.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/hr.js b/web/WebContent/ckeditor/plugins/placeholder/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/hr.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/hr.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/it.js b/web/WebContent/ckeditor/plugins/placeholder/lang/it.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/it.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/it.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/nb.js b/web/WebContent/ckeditor/plugins/placeholder/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/nb.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/nb.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/nl.js b/web/WebContent/ckeditor/plugins/placeholder/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/nl.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/nl.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/no.js b/web/WebContent/ckeditor/plugins/placeholder/lang/no.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/no.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/no.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/pl.js b/web/WebContent/ckeditor/plugins/placeholder/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/pl.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/pl.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/pt-br.js b/web/WebContent/ckeditor/plugins/placeholder/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/pt-br.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/pt-br.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/tr.js b/web/WebContent/ckeditor/plugins/placeholder/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/tr.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/tr.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/ug.js b/web/WebContent/ckeditor/plugins/placeholder/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/ug.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/ug.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/uk.js b/web/WebContent/ckeditor/plugins/placeholder/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/uk.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/uk.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/vi.js b/web/WebContent/ckeditor/plugins/placeholder/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/vi.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/vi.js diff --git a/gwt/war/ckeditor/plugins/placeholder/lang/zh-cn.js b/web/WebContent/ckeditor/plugins/placeholder/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/lang/zh-cn.js rename to web/WebContent/ckeditor/plugins/placeholder/lang/zh-cn.js diff --git a/gwt/war/ckeditor/plugins/placeholder/placeholder.gif b/web/WebContent/ckeditor/plugins/placeholder/placeholder.gif similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/placeholder.gif rename to web/WebContent/ckeditor/plugins/placeholder/placeholder.gif diff --git a/gwt/war/ckeditor/plugins/placeholder/plugin.js b/web/WebContent/ckeditor/plugins/placeholder/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/placeholder/plugin.js rename to web/WebContent/ckeditor/plugins/placeholder/plugin.js diff --git a/gwt/war/ckeditor/plugins/preview/preview.html b/web/WebContent/ckeditor/plugins/preview/preview.html similarity index 100% rename from gwt/war/ckeditor/plugins/preview/preview.html rename to web/WebContent/ckeditor/plugins/preview/preview.html diff --git a/gwt/war/ckeditor/plugins/scayt/dialogs/options.js b/web/WebContent/ckeditor/plugins/scayt/dialogs/options.js similarity index 100% rename from gwt/war/ckeditor/plugins/scayt/dialogs/options.js rename to web/WebContent/ckeditor/plugins/scayt/dialogs/options.js diff --git a/gwt/war/ckeditor/plugins/scayt/dialogs/toolbar.css b/web/WebContent/ckeditor/plugins/scayt/dialogs/toolbar.css similarity index 100% rename from gwt/war/ckeditor/plugins/scayt/dialogs/toolbar.css rename to web/WebContent/ckeditor/plugins/scayt/dialogs/toolbar.css diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_address.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_address.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_address.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_address.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_blockquote.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_blockquote.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_blockquote.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_blockquote.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_div.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_div.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_div.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_div.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h1.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h1.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h1.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h1.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h2.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h2.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h2.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h2.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h3.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h3.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h3.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h3.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h4.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h4.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h4.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h4.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h5.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h5.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h5.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h5.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_h6.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_h6.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_h6.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_h6.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_p.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_p.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_p.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_p.png diff --git a/gwt/war/ckeditor/plugins/showblocks/images/block_pre.png b/web/WebContent/ckeditor/plugins/showblocks/images/block_pre.png similarity index 100% rename from gwt/war/ckeditor/plugins/showblocks/images/block_pre.png rename to web/WebContent/ckeditor/plugins/showblocks/images/block_pre.png diff --git a/gwt/war/ckeditor/plugins/smiley/dialogs/smiley.js b/web/WebContent/ckeditor/plugins/smiley/dialogs/smiley.js similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/dialogs/smiley.js rename to web/WebContent/ckeditor/plugins/smiley/dialogs/smiley.js diff --git a/gwt/war/ckeditor/plugins/smiley/images/angel_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/angel_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/angel_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/angel_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/angry_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/angry_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/angry_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/angry_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/broken_heart.gif b/web/WebContent/ckeditor/plugins/smiley/images/broken_heart.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/broken_heart.gif rename to web/WebContent/ckeditor/plugins/smiley/images/broken_heart.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/confused_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/confused_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/confused_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/confused_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/cry_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/cry_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/cry_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/cry_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/devil_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/devil_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/devil_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/devil_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/embaressed_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/embaressed_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/embaressed_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/embaressed_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/envelope.gif b/web/WebContent/ckeditor/plugins/smiley/images/envelope.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/envelope.gif rename to web/WebContent/ckeditor/plugins/smiley/images/envelope.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/heart.gif b/web/WebContent/ckeditor/plugins/smiley/images/heart.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/heart.gif rename to web/WebContent/ckeditor/plugins/smiley/images/heart.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/kiss.gif b/web/WebContent/ckeditor/plugins/smiley/images/kiss.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/kiss.gif rename to web/WebContent/ckeditor/plugins/smiley/images/kiss.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/lightbulb.gif b/web/WebContent/ckeditor/plugins/smiley/images/lightbulb.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/lightbulb.gif rename to web/WebContent/ckeditor/plugins/smiley/images/lightbulb.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/omg_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/omg_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/omg_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/omg_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/regular_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/regular_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/regular_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/regular_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/sad_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/sad_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/sad_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/sad_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/shades_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/shades_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/shades_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/shades_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/teeth_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/teeth_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/teeth_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/teeth_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/thumbs_down.gif b/web/WebContent/ckeditor/plugins/smiley/images/thumbs_down.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/thumbs_down.gif rename to web/WebContent/ckeditor/plugins/smiley/images/thumbs_down.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/thumbs_up.gif b/web/WebContent/ckeditor/plugins/smiley/images/thumbs_up.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/thumbs_up.gif rename to web/WebContent/ckeditor/plugins/smiley/images/thumbs_up.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/tounge_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/tounge_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/tounge_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/tounge_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif diff --git a/gwt/war/ckeditor/plugins/smiley/images/wink_smile.gif b/web/WebContent/ckeditor/plugins/smiley/images/wink_smile.gif similarity index 100% rename from gwt/war/ckeditor/plugins/smiley/images/wink_smile.gif rename to web/WebContent/ckeditor/plugins/smiley/images/wink_smile.gif diff --git a/gwt/war/ckeditor/plugins/specialchar/dialogs/specialchar.js b/web/WebContent/ckeditor/plugins/specialchar/dialogs/specialchar.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/dialogs/specialchar.js rename to web/WebContent/ckeditor/plugins/specialchar/dialogs/specialchar.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/_translationstatus.txt b/web/WebContent/ckeditor/plugins/specialchar/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/_translationstatus.txt rename to web/WebContent/ckeditor/plugins/specialchar/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/cs.js b/web/WebContent/ckeditor/plugins/specialchar/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/cs.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/cs.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/cy.js b/web/WebContent/ckeditor/plugins/specialchar/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/cy.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/cy.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/de.js b/web/WebContent/ckeditor/plugins/specialchar/lang/de.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/de.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/de.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/el.js b/web/WebContent/ckeditor/plugins/specialchar/lang/el.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/el.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/el.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/en.js b/web/WebContent/ckeditor/plugins/specialchar/lang/en.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/en.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/en.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/eo.js b/web/WebContent/ckeditor/plugins/specialchar/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/eo.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/eo.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/et.js b/web/WebContent/ckeditor/plugins/specialchar/lang/et.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/et.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/et.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/fa.js b/web/WebContent/ckeditor/plugins/specialchar/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/fa.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/fa.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/fi.js b/web/WebContent/ckeditor/plugins/specialchar/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/fi.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/fi.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/fr.js b/web/WebContent/ckeditor/plugins/specialchar/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/fr.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/fr.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/he.js b/web/WebContent/ckeditor/plugins/specialchar/lang/he.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/he.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/he.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/hr.js b/web/WebContent/ckeditor/plugins/specialchar/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/hr.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/hr.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/it.js b/web/WebContent/ckeditor/plugins/specialchar/lang/it.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/it.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/it.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/nb.js b/web/WebContent/ckeditor/plugins/specialchar/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/nb.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/nb.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/nl.js b/web/WebContent/ckeditor/plugins/specialchar/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/nl.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/nl.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/no.js b/web/WebContent/ckeditor/plugins/specialchar/lang/no.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/no.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/no.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/pt-br.js b/web/WebContent/ckeditor/plugins/specialchar/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/pt-br.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/pt-br.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/tr.js b/web/WebContent/ckeditor/plugins/specialchar/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/tr.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/tr.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/ug.js b/web/WebContent/ckeditor/plugins/specialchar/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/ug.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/ug.js diff --git a/gwt/war/ckeditor/plugins/specialchar/lang/zh-cn.js b/web/WebContent/ckeditor/plugins/specialchar/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/plugins/specialchar/lang/zh-cn.js rename to web/WebContent/ckeditor/plugins/specialchar/lang/zh-cn.js diff --git a/gwt/war/ckeditor/plugins/styles/styles/default.js b/web/WebContent/ckeditor/plugins/styles/styles/default.js similarity index 100% rename from gwt/war/ckeditor/plugins/styles/styles/default.js rename to web/WebContent/ckeditor/plugins/styles/styles/default.js diff --git a/gwt/war/ckeditor/plugins/stylesheetparser/plugin.js b/web/WebContent/ckeditor/plugins/stylesheetparser/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/stylesheetparser/plugin.js rename to web/WebContent/ckeditor/plugins/stylesheetparser/plugin.js diff --git a/gwt/war/ckeditor/plugins/table/dialogs/table.js b/web/WebContent/ckeditor/plugins/table/dialogs/table.js similarity index 100% rename from gwt/war/ckeditor/plugins/table/dialogs/table.js rename to web/WebContent/ckeditor/plugins/table/dialogs/table.js diff --git a/gwt/war/ckeditor/plugins/tableresize/plugin.js b/web/WebContent/ckeditor/plugins/tableresize/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/tableresize/plugin.js rename to web/WebContent/ckeditor/plugins/tableresize/plugin.js diff --git a/gwt/war/ckeditor/plugins/tabletools/dialogs/tableCell.js b/web/WebContent/ckeditor/plugins/tabletools/dialogs/tableCell.js similarity index 100% rename from gwt/war/ckeditor/plugins/tabletools/dialogs/tableCell.js rename to web/WebContent/ckeditor/plugins/tabletools/dialogs/tableCell.js diff --git a/gwt/war/ckeditor/plugins/templates/dialogs/templates.js b/web/WebContent/ckeditor/plugins/templates/dialogs/templates.js similarity index 100% rename from gwt/war/ckeditor/plugins/templates/dialogs/templates.js rename to web/WebContent/ckeditor/plugins/templates/dialogs/templates.js diff --git a/gwt/war/ckeditor/plugins/templates/templates/default.js b/web/WebContent/ckeditor/plugins/templates/templates/default.js similarity index 100% rename from gwt/war/ckeditor/plugins/templates/templates/default.js rename to web/WebContent/ckeditor/plugins/templates/templates/default.js diff --git a/gwt/war/ckeditor/plugins/templates/templates/images/template1.gif b/web/WebContent/ckeditor/plugins/templates/templates/images/template1.gif similarity index 100% rename from gwt/war/ckeditor/plugins/templates/templates/images/template1.gif rename to web/WebContent/ckeditor/plugins/templates/templates/images/template1.gif diff --git a/gwt/war/ckeditor/plugins/templates/templates/images/template2.gif b/web/WebContent/ckeditor/plugins/templates/templates/images/template2.gif similarity index 100% rename from gwt/war/ckeditor/plugins/templates/templates/images/template2.gif rename to web/WebContent/ckeditor/plugins/templates/templates/images/template2.gif diff --git a/gwt/war/ckeditor/plugins/templates/templates/images/template3.gif b/web/WebContent/ckeditor/plugins/templates/templates/images/template3.gif similarity index 100% rename from gwt/war/ckeditor/plugins/templates/templates/images/template3.gif rename to web/WebContent/ckeditor/plugins/templates/templates/images/template3.gif diff --git a/gwt/war/ckeditor/plugins/uicolor/dialogs/uicolor.js b/web/WebContent/ckeditor/plugins/uicolor/dialogs/uicolor.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/dialogs/uicolor.js rename to web/WebContent/ckeditor/plugins/uicolor/dialogs/uicolor.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/_translationstatus.txt b/web/WebContent/ckeditor/plugins/uicolor/lang/_translationstatus.txt similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/_translationstatus.txt rename to web/WebContent/ckeditor/plugins/uicolor/lang/_translationstatus.txt diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/bg.js b/web/WebContent/ckeditor/plugins/uicolor/lang/bg.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/bg.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/bg.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/cs.js b/web/WebContent/ckeditor/plugins/uicolor/lang/cs.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/cs.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/cs.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/cy.js b/web/WebContent/ckeditor/plugins/uicolor/lang/cy.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/cy.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/cy.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/da.js b/web/WebContent/ckeditor/plugins/uicolor/lang/da.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/da.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/da.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/de.js b/web/WebContent/ckeditor/plugins/uicolor/lang/de.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/de.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/de.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/el.js b/web/WebContent/ckeditor/plugins/uicolor/lang/el.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/el.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/el.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/en.js b/web/WebContent/ckeditor/plugins/uicolor/lang/en.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/en.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/en.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/eo.js b/web/WebContent/ckeditor/plugins/uicolor/lang/eo.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/eo.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/eo.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/et.js b/web/WebContent/ckeditor/plugins/uicolor/lang/et.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/et.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/et.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/fa.js b/web/WebContent/ckeditor/plugins/uicolor/lang/fa.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/fa.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/fa.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/fi.js b/web/WebContent/ckeditor/plugins/uicolor/lang/fi.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/fi.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/fi.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/fr.js b/web/WebContent/ckeditor/plugins/uicolor/lang/fr.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/fr.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/fr.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/he.js b/web/WebContent/ckeditor/plugins/uicolor/lang/he.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/he.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/he.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/hr.js b/web/WebContent/ckeditor/plugins/uicolor/lang/hr.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/hr.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/hr.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/it.js b/web/WebContent/ckeditor/plugins/uicolor/lang/it.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/it.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/it.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/mk.js b/web/WebContent/ckeditor/plugins/uicolor/lang/mk.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/mk.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/mk.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/nb.js b/web/WebContent/ckeditor/plugins/uicolor/lang/nb.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/nb.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/nb.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/nl.js b/web/WebContent/ckeditor/plugins/uicolor/lang/nl.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/nl.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/nl.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/no.js b/web/WebContent/ckeditor/plugins/uicolor/lang/no.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/no.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/no.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/pl.js b/web/WebContent/ckeditor/plugins/uicolor/lang/pl.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/pl.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/pl.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/pt-br.js b/web/WebContent/ckeditor/plugins/uicolor/lang/pt-br.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/pt-br.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/pt-br.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/tr.js b/web/WebContent/ckeditor/plugins/uicolor/lang/tr.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/tr.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/tr.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/ug.js b/web/WebContent/ckeditor/plugins/uicolor/lang/ug.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/ug.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/ug.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/uk.js b/web/WebContent/ckeditor/plugins/uicolor/lang/uk.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/uk.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/uk.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/vi.js b/web/WebContent/ckeditor/plugins/uicolor/lang/vi.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/vi.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/vi.js diff --git a/gwt/war/ckeditor/plugins/uicolor/lang/zh-cn.js b/web/WebContent/ckeditor/plugins/uicolor/lang/zh-cn.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/lang/zh-cn.js rename to web/WebContent/ckeditor/plugins/uicolor/lang/zh-cn.js diff --git a/gwt/war/ckeditor/plugins/uicolor/plugin.js b/web/WebContent/ckeditor/plugins/uicolor/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/plugin.js rename to web/WebContent/ckeditor/plugins/uicolor/plugin.js diff --git a/gwt/war/ckeditor/plugins/uicolor/uicolor.gif b/web/WebContent/ckeditor/plugins/uicolor/uicolor.gif similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/uicolor.gif rename to web/WebContent/ckeditor/plugins/uicolor/uicolor.gif diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/assets/hue_bg.png b/web/WebContent/ckeditor/plugins/uicolor/yui/assets/hue_bg.png similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/assets/hue_bg.png rename to web/WebContent/ckeditor/plugins/uicolor/yui/assets/hue_bg.png diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png b/web/WebContent/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png rename to web/WebContent/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/assets/picker_mask.png b/web/WebContent/ckeditor/plugins/uicolor/yui/assets/picker_mask.png similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/assets/picker_mask.png rename to web/WebContent/ckeditor/plugins/uicolor/yui/assets/picker_mask.png diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png b/web/WebContent/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png rename to web/WebContent/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/assets/yui.css b/web/WebContent/ckeditor/plugins/uicolor/yui/assets/yui.css similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/assets/yui.css rename to web/WebContent/ckeditor/plugins/uicolor/yui/assets/yui.css diff --git a/gwt/war/ckeditor/plugins/uicolor/yui/yui.js b/web/WebContent/ckeditor/plugins/uicolor/yui/yui.js similarity index 100% rename from gwt/war/ckeditor/plugins/uicolor/yui/yui.js rename to web/WebContent/ckeditor/plugins/uicolor/yui/yui.js diff --git a/gwt/war/ckeditor/plugins/wsc/dialogs/ciframe.html b/web/WebContent/ckeditor/plugins/wsc/dialogs/ciframe.html similarity index 100% rename from gwt/war/ckeditor/plugins/wsc/dialogs/ciframe.html rename to web/WebContent/ckeditor/plugins/wsc/dialogs/ciframe.html diff --git a/gwt/war/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/web/WebContent/ckeditor/plugins/wsc/dialogs/tmpFrameset.html similarity index 100% rename from gwt/war/ckeditor/plugins/wsc/dialogs/tmpFrameset.html rename to web/WebContent/ckeditor/plugins/wsc/dialogs/tmpFrameset.html diff --git a/gwt/war/ckeditor/plugins/wsc/dialogs/wsc.css b/web/WebContent/ckeditor/plugins/wsc/dialogs/wsc.css similarity index 100% rename from gwt/war/ckeditor/plugins/wsc/dialogs/wsc.css rename to web/WebContent/ckeditor/plugins/wsc/dialogs/wsc.css diff --git a/gwt/war/ckeditor/plugins/wsc/dialogs/wsc.js b/web/WebContent/ckeditor/plugins/wsc/dialogs/wsc.js similarity index 100% rename from gwt/war/ckeditor/plugins/wsc/dialogs/wsc.js rename to web/WebContent/ckeditor/plugins/wsc/dialogs/wsc.js diff --git a/gwt/war/ckeditor/plugins/xml/plugin.js b/web/WebContent/ckeditor/plugins/xml/plugin.js similarity index 100% rename from gwt/war/ckeditor/plugins/xml/plugin.js rename to web/WebContent/ckeditor/plugins/xml/plugin.js diff --git a/gwt/war/ckeditor/skins/kama/dialog.css b/web/WebContent/ckeditor/skins/kama/dialog.css similarity index 100% rename from gwt/war/ckeditor/skins/kama/dialog.css rename to web/WebContent/ckeditor/skins/kama/dialog.css diff --git a/gwt/war/ckeditor/skins/kama/editor.css b/web/WebContent/ckeditor/skins/kama/editor.css similarity index 100% rename from gwt/war/ckeditor/skins/kama/editor.css rename to web/WebContent/ckeditor/skins/kama/editor.css diff --git a/gwt/war/ckeditor/skins/kama/icons.png b/web/WebContent/ckeditor/skins/kama/icons.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/icons.png rename to web/WebContent/ckeditor/skins/kama/icons.png diff --git a/gwt/war/ckeditor/skins/kama/icons_rtl.png b/web/WebContent/ckeditor/skins/kama/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/icons_rtl.png rename to web/WebContent/ckeditor/skins/kama/icons_rtl.png diff --git a/gwt/war/ckeditor/skins/kama/images/dialog_sides.gif b/web/WebContent/ckeditor/skins/kama/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/dialog_sides.gif rename to web/WebContent/ckeditor/skins/kama/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/skins/kama/images/dialog_sides.png b/web/WebContent/ckeditor/skins/kama/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/dialog_sides.png rename to web/WebContent/ckeditor/skins/kama/images/dialog_sides.png diff --git a/gwt/war/ckeditor/skins/kama/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/skins/kama/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/skins/kama/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/skins/kama/images/mini.gif b/web/WebContent/ckeditor/skins/kama/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/mini.gif rename to web/WebContent/ckeditor/skins/kama/images/mini.gif diff --git a/gwt/war/ckeditor/skins/kama/images/noimage.png b/web/WebContent/ckeditor/skins/kama/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/noimage.png rename to web/WebContent/ckeditor/skins/kama/images/noimage.png diff --git a/gwt/war/ckeditor/skins/kama/images/sprites.png b/web/WebContent/ckeditor/skins/kama/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/sprites.png rename to web/WebContent/ckeditor/skins/kama/images/sprites.png diff --git a/gwt/war/ckeditor/skins/kama/images/sprites_ie6.png b/web/WebContent/ckeditor/skins/kama/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/sprites_ie6.png rename to web/WebContent/ckeditor/skins/kama/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/skins/kama/images/toolbar_start.gif b/web/WebContent/ckeditor/skins/kama/images/toolbar_start.gif similarity index 100% rename from gwt/war/ckeditor/skins/kama/images/toolbar_start.gif rename to web/WebContent/ckeditor/skins/kama/images/toolbar_start.gif diff --git a/gwt/war/ckeditor/skins/kama/skin.js b/web/WebContent/ckeditor/skins/kama/skin.js similarity index 100% rename from gwt/war/ckeditor/skins/kama/skin.js rename to web/WebContent/ckeditor/skins/kama/skin.js diff --git a/gwt/war/ckeditor/skins/kama/templates.css b/web/WebContent/ckeditor/skins/kama/templates.css similarity index 100% rename from gwt/war/ckeditor/skins/kama/templates.css rename to web/WebContent/ckeditor/skins/kama/templates.css diff --git a/gwt/war/ckeditor/skins/office2003/dialog.css b/web/WebContent/ckeditor/skins/office2003/dialog.css similarity index 100% rename from gwt/war/ckeditor/skins/office2003/dialog.css rename to web/WebContent/ckeditor/skins/office2003/dialog.css diff --git a/gwt/war/ckeditor/skins/office2003/editor.css b/web/WebContent/ckeditor/skins/office2003/editor.css similarity index 100% rename from gwt/war/ckeditor/skins/office2003/editor.css rename to web/WebContent/ckeditor/skins/office2003/editor.css diff --git a/gwt/war/ckeditor/skins/office2003/icons.png b/web/WebContent/ckeditor/skins/office2003/icons.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/icons.png rename to web/WebContent/ckeditor/skins/office2003/icons.png diff --git a/gwt/war/ckeditor/skins/office2003/icons_rtl.png b/web/WebContent/ckeditor/skins/office2003/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/icons_rtl.png rename to web/WebContent/ckeditor/skins/office2003/icons_rtl.png diff --git a/gwt/war/ckeditor/skins/office2003/images/dialog_sides.gif b/web/WebContent/ckeditor/skins/office2003/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/dialog_sides.gif rename to web/WebContent/ckeditor/skins/office2003/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/skins/office2003/images/dialog_sides.png b/web/WebContent/ckeditor/skins/office2003/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/dialog_sides.png rename to web/WebContent/ckeditor/skins/office2003/images/dialog_sides.png diff --git a/gwt/war/ckeditor/skins/office2003/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/skins/office2003/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/skins/office2003/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/skins/office2003/images/mini.gif b/web/WebContent/ckeditor/skins/office2003/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/mini.gif rename to web/WebContent/ckeditor/skins/office2003/images/mini.gif diff --git a/gwt/war/ckeditor/skins/office2003/images/noimage.png b/web/WebContent/ckeditor/skins/office2003/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/noimage.png rename to web/WebContent/ckeditor/skins/office2003/images/noimage.png diff --git a/gwt/war/ckeditor/skins/office2003/images/sprites.png b/web/WebContent/ckeditor/skins/office2003/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/sprites.png rename to web/WebContent/ckeditor/skins/office2003/images/sprites.png diff --git a/gwt/war/ckeditor/skins/office2003/images/sprites_ie6.png b/web/WebContent/ckeditor/skins/office2003/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/skins/office2003/images/sprites_ie6.png rename to web/WebContent/ckeditor/skins/office2003/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/skins/office2003/skin.js b/web/WebContent/ckeditor/skins/office2003/skin.js similarity index 100% rename from gwt/war/ckeditor/skins/office2003/skin.js rename to web/WebContent/ckeditor/skins/office2003/skin.js diff --git a/gwt/war/ckeditor/skins/office2003/templates.css b/web/WebContent/ckeditor/skins/office2003/templates.css similarity index 100% rename from gwt/war/ckeditor/skins/office2003/templates.css rename to web/WebContent/ckeditor/skins/office2003/templates.css diff --git a/gwt/war/ckeditor/skins/v2/dialog.css b/web/WebContent/ckeditor/skins/v2/dialog.css similarity index 100% rename from gwt/war/ckeditor/skins/v2/dialog.css rename to web/WebContent/ckeditor/skins/v2/dialog.css diff --git a/gwt/war/ckeditor/skins/v2/editor.css b/web/WebContent/ckeditor/skins/v2/editor.css similarity index 100% rename from gwt/war/ckeditor/skins/v2/editor.css rename to web/WebContent/ckeditor/skins/v2/editor.css diff --git a/gwt/war/ckeditor/skins/v2/icons.png b/web/WebContent/ckeditor/skins/v2/icons.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/icons.png rename to web/WebContent/ckeditor/skins/v2/icons.png diff --git a/gwt/war/ckeditor/skins/v2/icons_rtl.png b/web/WebContent/ckeditor/skins/v2/icons_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/icons_rtl.png rename to web/WebContent/ckeditor/skins/v2/icons_rtl.png diff --git a/gwt/war/ckeditor/skins/v2/images/dialog_sides.gif b/web/WebContent/ckeditor/skins/v2/images/dialog_sides.gif similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/dialog_sides.gif rename to web/WebContent/ckeditor/skins/v2/images/dialog_sides.gif diff --git a/gwt/war/ckeditor/skins/v2/images/dialog_sides.png b/web/WebContent/ckeditor/skins/v2/images/dialog_sides.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/dialog_sides.png rename to web/WebContent/ckeditor/skins/v2/images/dialog_sides.png diff --git a/gwt/war/ckeditor/skins/v2/images/dialog_sides_rtl.png b/web/WebContent/ckeditor/skins/v2/images/dialog_sides_rtl.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/dialog_sides_rtl.png rename to web/WebContent/ckeditor/skins/v2/images/dialog_sides_rtl.png diff --git a/gwt/war/ckeditor/skins/v2/images/mini.gif b/web/WebContent/ckeditor/skins/v2/images/mini.gif similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/mini.gif rename to web/WebContent/ckeditor/skins/v2/images/mini.gif diff --git a/gwt/war/ckeditor/skins/v2/images/noimage.png b/web/WebContent/ckeditor/skins/v2/images/noimage.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/noimage.png rename to web/WebContent/ckeditor/skins/v2/images/noimage.png diff --git a/gwt/war/ckeditor/skins/v2/images/sprites.png b/web/WebContent/ckeditor/skins/v2/images/sprites.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/sprites.png rename to web/WebContent/ckeditor/skins/v2/images/sprites.png diff --git a/gwt/war/ckeditor/skins/v2/images/sprites_ie6.png b/web/WebContent/ckeditor/skins/v2/images/sprites_ie6.png similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/sprites_ie6.png rename to web/WebContent/ckeditor/skins/v2/images/sprites_ie6.png diff --git a/gwt/war/ckeditor/skins/v2/images/toolbar_start.gif b/web/WebContent/ckeditor/skins/v2/images/toolbar_start.gif similarity index 100% rename from gwt/war/ckeditor/skins/v2/images/toolbar_start.gif rename to web/WebContent/ckeditor/skins/v2/images/toolbar_start.gif diff --git a/gwt/war/ckeditor/skins/v2/skin.js b/web/WebContent/ckeditor/skins/v2/skin.js similarity index 100% rename from gwt/war/ckeditor/skins/v2/skin.js rename to web/WebContent/ckeditor/skins/v2/skin.js diff --git a/gwt/war/ckeditor/skins/v2/templates.css b/web/WebContent/ckeditor/skins/v2/templates.css similarity index 100% rename from gwt/war/ckeditor/skins/v2/templates.css rename to web/WebContent/ckeditor/skins/v2/templates.css diff --git a/gwt/war/ckeditor/themes/default/theme.js b/web/WebContent/ckeditor/themes/default/theme.js similarity index 100% rename from gwt/war/ckeditor/themes/default/theme.js rename to web/WebContent/ckeditor/themes/default/theme.js diff --git a/gwt/war/img-doc/background.jpg b/web/WebContent/img-doc/background.jpg similarity index 100% rename from gwt/war/img-doc/background.jpg rename to web/WebContent/img-doc/background.jpg diff --git a/gwt/war/img-doc/background.png b/web/WebContent/img-doc/background.png similarity index 100% rename from gwt/war/img-doc/background.png rename to web/WebContent/img-doc/background.png diff --git a/gwt/war/img-doc/binoculars.png b/web/WebContent/img-doc/binoculars.png similarity index 100% rename from gwt/war/img-doc/binoculars.png rename to web/WebContent/img-doc/binoculars.png diff --git a/gwt/war/img-doc/debug.png b/web/WebContent/img-doc/debug.png similarity index 100% rename from gwt/war/img-doc/debug.png rename to web/WebContent/img-doc/debug.png diff --git a/gwt/war/img-doc/dollar.jpeg b/web/WebContent/img-doc/dollar.jpeg similarity index 100% rename from gwt/war/img-doc/dollar.jpeg rename to web/WebContent/img-doc/dollar.jpeg diff --git a/gwt/war/img-doc/earth.png b/web/WebContent/img-doc/earth.png similarity index 100% rename from gwt/war/img-doc/earth.png rename to web/WebContent/img-doc/earth.png diff --git a/gwt/war/img-doc/eudora_1.png b/web/WebContent/img-doc/eudora_1.png similarity index 100% rename from gwt/war/img-doc/eudora_1.png rename to web/WebContent/img-doc/eudora_1.png diff --git a/gwt/war/img-doc/eudora_2.png b/web/WebContent/img-doc/eudora_2.png similarity index 100% rename from gwt/war/img-doc/eudora_2.png rename to web/WebContent/img-doc/eudora_2.png diff --git a/gwt/war/img-doc/eudora_3.png b/web/WebContent/img-doc/eudora_3.png similarity index 100% rename from gwt/war/img-doc/eudora_3.png rename to web/WebContent/img-doc/eudora_3.png diff --git a/gwt/war/img-doc/explanation-cloud-to-user.png b/web/WebContent/img-doc/explanation-cloud-to-user.png similarity index 100% rename from gwt/war/img-doc/explanation-cloud-to-user.png rename to web/WebContent/img-doc/explanation-cloud-to-user.png diff --git a/gwt/war/img-doc/explanation-mail-client.png b/web/WebContent/img-doc/explanation-mail-client.png similarity index 100% rename from gwt/war/img-doc/explanation-mail-client.png rename to web/WebContent/img-doc/explanation-mail-client.png diff --git a/gwt/war/img-doc/explanation-mail-to-server.png b/web/WebContent/img-doc/explanation-mail-to-server.png similarity index 100% rename from gwt/war/img-doc/explanation-mail-to-server.png rename to web/WebContent/img-doc/explanation-mail-to-server.png diff --git a/gwt/war/img-doc/explanation-server-to-cloud.png b/web/WebContent/img-doc/explanation-server-to-cloud.png similarity index 100% rename from gwt/war/img-doc/explanation-server-to-cloud.png rename to web/WebContent/img-doc/explanation-server-to-cloud.png diff --git a/gwt/war/img-doc/explanation-simple.png b/web/WebContent/img-doc/explanation-simple.png similarity index 100% rename from gwt/war/img-doc/explanation-simple.png rename to web/WebContent/img-doc/explanation-simple.png diff --git a/gwt/war/img-doc/glyphicons-halflings-white.png b/web/WebContent/img-doc/glyphicons-halflings-white.png similarity index 100% rename from gwt/war/img-doc/glyphicons-halflings-white.png rename to web/WebContent/img-doc/glyphicons-halflings-white.png diff --git a/gwt/war/img-doc/glyphicons-halflings.png b/web/WebContent/img-doc/glyphicons-halflings.png similarity index 100% rename from gwt/war/img-doc/glyphicons-halflings.png rename to web/WebContent/img-doc/glyphicons-halflings.png diff --git a/gwt/war/img-doc/install_1.png b/web/WebContent/img-doc/install_1.png similarity index 100% rename from gwt/war/img-doc/install_1.png rename to web/WebContent/img-doc/install_1.png diff --git a/gwt/war/img-doc/install_2.png b/web/WebContent/img-doc/install_2.png similarity index 100% rename from gwt/war/img-doc/install_2.png rename to web/WebContent/img-doc/install_2.png diff --git a/gwt/war/img-doc/install_3.png b/web/WebContent/img-doc/install_3.png similarity index 100% rename from gwt/war/img-doc/install_3.png rename to web/WebContent/img-doc/install_3.png diff --git a/gwt/war/img-doc/install_4.png b/web/WebContent/img-doc/install_4.png similarity index 100% rename from gwt/war/img-doc/install_4.png rename to web/WebContent/img-doc/install_4.png diff --git a/gwt/war/img-doc/install_5.png b/web/WebContent/img-doc/install_5.png similarity index 100% rename from gwt/war/img-doc/install_5.png rename to web/WebContent/img-doc/install_5.png diff --git a/gwt/war/img-doc/lock.original.png b/web/WebContent/img-doc/lock.original.png similarity index 100% rename from gwt/war/img-doc/lock.original.png rename to web/WebContent/img-doc/lock.original.png diff --git a/gwt/war/img-doc/lock.png b/web/WebContent/img-doc/lock.png similarity index 100% rename from gwt/war/img-doc/lock.png rename to web/WebContent/img-doc/lock.png diff --git a/gwt/war/img-doc/mail.png b/web/WebContent/img-doc/mail.png similarity index 100% rename from gwt/war/img-doc/mail.png rename to web/WebContent/img-doc/mail.png diff --git a/gwt/war/img-doc/mars.png b/web/WebContent/img-doc/mars.png similarity index 100% rename from gwt/war/img-doc/mars.png rename to web/WebContent/img-doc/mars.png diff --git a/gwt/war/img-doc/people.png b/web/WebContent/img-doc/people.png similarity index 100% rename from gwt/war/img-doc/people.png rename to web/WebContent/img-doc/people.png diff --git a/gwt/war/img-doc/privacy.png b/web/WebContent/img-doc/privacy.png similarity index 100% rename from gwt/war/img-doc/privacy.png rename to web/WebContent/img-doc/privacy.png diff --git a/gwt/war/img-doc/tokens.png b/web/WebContent/img-doc/tokens.png similarity index 100% rename from gwt/war/img-doc/tokens.png rename to web/WebContent/img-doc/tokens.png diff --git a/gwt/war/img-doc/uranus.png b/web/WebContent/img-doc/uranus.png similarity index 100% rename from gwt/war/img-doc/uranus.png rename to web/WebContent/img-doc/uranus.png diff --git a/gwt/war/img/attachment.png b/web/WebContent/img/attachment.png similarity index 100% rename from gwt/war/img/attachment.png rename to web/WebContent/img/attachment.png diff --git a/gwt/war/img/background.jpg b/web/WebContent/img/background.jpg similarity index 100% rename from gwt/war/img/background.jpg rename to web/WebContent/img/background.jpg diff --git a/gwt/war/img/cache-dirty-off.png b/web/WebContent/img/cache-dirty-off.png similarity index 100% rename from gwt/war/img/cache-dirty-off.png rename to web/WebContent/img/cache-dirty-off.png diff --git a/gwt/war/img/cache-dirty.png b/web/WebContent/img/cache-dirty.png similarity index 100% rename from gwt/war/img/cache-dirty.png rename to web/WebContent/img/cache-dirty.png diff --git a/gwt/war/img/caching-off.png b/web/WebContent/img/caching-off.png similarity index 100% rename from gwt/war/img/caching-off.png rename to web/WebContent/img/caching-off.png diff --git a/gwt/war/img/caching.png b/web/WebContent/img/caching.png similarity index 100% rename from gwt/war/img/caching.png rename to web/WebContent/img/caching.png diff --git a/gwt/war/img/calculator-off.png b/web/WebContent/img/calculator-off.png similarity index 100% rename from gwt/war/img/calculator-off.png rename to web/WebContent/img/calculator-off.png diff --git a/gwt/war/img/calculator.png b/web/WebContent/img/calculator.png similarity index 100% rename from gwt/war/img/calculator.png rename to web/WebContent/img/calculator.png diff --git a/gwt/war/img/change-name.png b/web/WebContent/img/change-name.png similarity index 100% rename from gwt/war/img/change-name.png rename to web/WebContent/img/change-name.png diff --git a/gwt/war/img/check-mail-large.png b/web/WebContent/img/check-mail-large.png similarity index 100% rename from gwt/war/img/check-mail-large.png rename to web/WebContent/img/check-mail-large.png diff --git a/gwt/war/img/check-mail-off.png b/web/WebContent/img/check-mail-off.png similarity index 100% rename from gwt/war/img/check-mail-off.png rename to web/WebContent/img/check-mail-off.png diff --git a/gwt/war/img/check-mail.png b/web/WebContent/img/check-mail.png similarity index 100% rename from gwt/war/img/check-mail.png rename to web/WebContent/img/check-mail.png diff --git a/gwt/war/img/clear.gif b/web/WebContent/img/clear.gif similarity index 100% rename from gwt/war/img/clear.gif rename to web/WebContent/img/clear.gif diff --git a/gwt/war/img/content-type/application.png b/web/WebContent/img/content-type/application.png similarity index 100% rename from gwt/war/img/content-type/application.png rename to web/WebContent/img/content-type/application.png diff --git a/gwt/war/img/content-type/image.png b/web/WebContent/img/content-type/image.png similarity index 100% rename from gwt/war/img/content-type/image.png rename to web/WebContent/img/content-type/image.png diff --git a/gwt/war/img/dollar-cropped.png b/web/WebContent/img/dollar-cropped.png similarity index 100% rename from gwt/war/img/dollar-cropped.png rename to web/WebContent/img/dollar-cropped.png diff --git a/gwt/war/img/dollar-small.png b/web/WebContent/img/dollar-small.png similarity index 100% rename from gwt/war/img/dollar-small.png rename to web/WebContent/img/dollar-small.png diff --git a/gwt/war/img/dollar.jpg b/web/WebContent/img/dollar.jpg similarity index 100% rename from gwt/war/img/dollar.jpg rename to web/WebContent/img/dollar.jpg diff --git a/gwt/war/img/downloading-large.png b/web/WebContent/img/downloading-large.png similarity index 100% rename from gwt/war/img/downloading-large.png rename to web/WebContent/img/downloading-large.png diff --git a/gwt/war/img/downloading-off.png b/web/WebContent/img/downloading-off.png similarity index 100% rename from gwt/war/img/downloading-off.png rename to web/WebContent/img/downloading-off.png diff --git a/gwt/war/img/downloading.png b/web/WebContent/img/downloading.png similarity index 100% rename from gwt/war/img/downloading.png rename to web/WebContent/img/downloading.png diff --git a/gwt/war/img/filing_cabinet-g42.png b/web/WebContent/img/filing_cabinet-g42.png similarity index 100% rename from gwt/war/img/filing_cabinet-g42.png rename to web/WebContent/img/filing_cabinet-g42.png diff --git a/gwt/war/img/lock-clipped.png b/web/WebContent/img/lock-clipped.png similarity index 100% rename from gwt/war/img/lock-clipped.png rename to web/WebContent/img/lock-clipped.png diff --git a/gwt/war/img/lock.png b/web/WebContent/img/lock.png similarity index 100% rename from gwt/war/img/lock.png rename to web/WebContent/img/lock.png diff --git a/gwt/war/img/nosign-r42.png b/web/WebContent/img/nosign-r42.png similarity index 100% rename from gwt/war/img/nosign-r42.png rename to web/WebContent/img/nosign-r42.png diff --git a/gwt/war/img/page-background-mid.jpg b/web/WebContent/img/page-background-mid.jpg similarity index 100% rename from gwt/war/img/page-background-mid.jpg rename to web/WebContent/img/page-background-mid.jpg diff --git a/gwt/war/img/page-background.png b/web/WebContent/img/page-background.png similarity index 100% rename from gwt/war/img/page-background.png rename to web/WebContent/img/page-background.png diff --git a/gwt/war/img/refresh-mini.png b/web/WebContent/img/refresh-mini.png similarity index 100% rename from gwt/war/img/refresh-mini.png rename to web/WebContent/img/refresh-mini.png diff --git a/gwt/war/img/spiral-galaxy-bg.jpg b/web/WebContent/img/spiral-galaxy-bg.jpg similarity index 100% rename from gwt/war/img/spiral-galaxy-bg.jpg rename to web/WebContent/img/spiral-galaxy-bg.jpg diff --git a/gwt/war/img/spiral-galaxy.jpg b/web/WebContent/img/spiral-galaxy.jpg similarity index 100% rename from gwt/war/img/spiral-galaxy.jpg rename to web/WebContent/img/spiral-galaxy.jpg diff --git a/gwt/war/img/sprites.png b/web/WebContent/img/sprites.png similarity index 100% rename from gwt/war/img/sprites.png rename to web/WebContent/img/sprites.png diff --git a/gwt/war/img/starfield.jpg b/web/WebContent/img/starfield.jpg similarity index 100% rename from gwt/war/img/starfield.jpg rename to web/WebContent/img/starfield.jpg diff --git a/gwt/war/img/uploading-large.png b/web/WebContent/img/uploading-large.png similarity index 100% rename from gwt/war/img/uploading-large.png rename to web/WebContent/img/uploading-large.png diff --git a/gwt/war/img/uploading-off.png b/web/WebContent/img/uploading-off.png similarity index 100% rename from gwt/war/img/uploading-off.png rename to web/WebContent/img/uploading-off.png diff --git a/gwt/war/img/uploading.png b/web/WebContent/img/uploading.png similarity index 100% rename from gwt/war/img/uploading.png rename to web/WebContent/img/uploading.png diff --git a/gwt/war/js/Base64.js b/web/WebContent/js/Base64.js similarity index 100% rename from gwt/war/js/Base64.js rename to web/WebContent/js/Base64.js diff --git a/gwt/war/js/Utf.js b/web/WebContent/js/Utf.js similarity index 100% rename from gwt/war/js/Utf.js rename to web/WebContent/js/Utf.js diff --git a/gwt/war/js/crypt/CryptoJS/components/aes-min.js b/web/WebContent/js/crypt/CryptoJS/components/aes-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/aes-min.js rename to web/WebContent/js/crypt/CryptoJS/components/aes-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/aes.js b/web/WebContent/js/crypt/CryptoJS/components/aes.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/aes.js rename to web/WebContent/js/crypt/CryptoJS/components/aes.js diff --git a/gwt/war/js/crypt/CryptoJS/components/cipher-core-min.js b/web/WebContent/js/crypt/CryptoJS/components/cipher-core-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/cipher-core-min.js rename to web/WebContent/js/crypt/CryptoJS/components/cipher-core-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/cipher-core.js b/web/WebContent/js/crypt/CryptoJS/components/cipher-core.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/cipher-core.js rename to web/WebContent/js/crypt/CryptoJS/components/cipher-core.js diff --git a/gwt/war/js/crypt/CryptoJS/components/core-min.js b/web/WebContent/js/crypt/CryptoJS/components/core-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/core-min.js rename to web/WebContent/js/crypt/CryptoJS/components/core-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/core.js b/web/WebContent/js/crypt/CryptoJS/components/core.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/core.js rename to web/WebContent/js/crypt/CryptoJS/components/core.js diff --git a/gwt/war/js/crypt/CryptoJS/components/enc-base64-min.js b/web/WebContent/js/crypt/CryptoJS/components/enc-base64-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/enc-base64-min.js rename to web/WebContent/js/crypt/CryptoJS/components/enc-base64-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/enc-base64.js b/web/WebContent/js/crypt/CryptoJS/components/enc-base64.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/enc-base64.js rename to web/WebContent/js/crypt/CryptoJS/components/enc-base64.js diff --git a/gwt/war/js/crypt/CryptoJS/components/enc-utf16-min.js b/web/WebContent/js/crypt/CryptoJS/components/enc-utf16-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/enc-utf16-min.js rename to web/WebContent/js/crypt/CryptoJS/components/enc-utf16-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/enc-utf16.js b/web/WebContent/js/crypt/CryptoJS/components/enc-utf16.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/enc-utf16.js rename to web/WebContent/js/crypt/CryptoJS/components/enc-utf16.js diff --git a/gwt/war/js/crypt/CryptoJS/components/evpkdf-min.js b/web/WebContent/js/crypt/CryptoJS/components/evpkdf-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/evpkdf-min.js rename to web/WebContent/js/crypt/CryptoJS/components/evpkdf-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/evpkdf.js b/web/WebContent/js/crypt/CryptoJS/components/evpkdf.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/evpkdf.js rename to web/WebContent/js/crypt/CryptoJS/components/evpkdf.js diff --git a/gwt/war/js/crypt/CryptoJS/components/format-hex-min.js b/web/WebContent/js/crypt/CryptoJS/components/format-hex-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/format-hex-min.js rename to web/WebContent/js/crypt/CryptoJS/components/format-hex-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/format-hex.js b/web/WebContent/js/crypt/CryptoJS/components/format-hex.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/format-hex.js rename to web/WebContent/js/crypt/CryptoJS/components/format-hex.js diff --git a/gwt/war/js/crypt/CryptoJS/components/hmac-min.js b/web/WebContent/js/crypt/CryptoJS/components/hmac-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/hmac-min.js rename to web/WebContent/js/crypt/CryptoJS/components/hmac-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/hmac.js b/web/WebContent/js/crypt/CryptoJS/components/hmac.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/hmac.js rename to web/WebContent/js/crypt/CryptoJS/components/hmac.js diff --git a/gwt/war/js/crypt/CryptoJS/components/lib-typedarrays-min.js b/web/WebContent/js/crypt/CryptoJS/components/lib-typedarrays-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/lib-typedarrays-min.js rename to web/WebContent/js/crypt/CryptoJS/components/lib-typedarrays-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/lib-typedarrays.js b/web/WebContent/js/crypt/CryptoJS/components/lib-typedarrays.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/lib-typedarrays.js rename to web/WebContent/js/crypt/CryptoJS/components/lib-typedarrays.js diff --git a/gwt/war/js/crypt/CryptoJS/components/md5-min.js b/web/WebContent/js/crypt/CryptoJS/components/md5-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/md5-min.js rename to web/WebContent/js/crypt/CryptoJS/components/md5-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/md5.js b/web/WebContent/js/crypt/CryptoJS/components/md5.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/md5.js rename to web/WebContent/js/crypt/CryptoJS/components/md5.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-cfb-min.js b/web/WebContent/js/crypt/CryptoJS/components/mode-cfb-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-cfb-min.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-cfb-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-cfb.js b/web/WebContent/js/crypt/CryptoJS/components/mode-cfb.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-cfb.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-cfb.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ctr-min.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ctr-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ctr-min.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ctr-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ctr.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ctr.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ctr.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ctr.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ecb-min.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ecb-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ecb-min.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ecb-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ecb.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ecb.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ecb.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ecb.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ofb-min.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ofb-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ofb-min.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ofb-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/mode-ofb.js b/web/WebContent/js/crypt/CryptoJS/components/mode-ofb.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/mode-ofb.js rename to web/WebContent/js/crypt/CryptoJS/components/mode-ofb.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-ansix923-min.js b/web/WebContent/js/crypt/CryptoJS/components/pad-ansix923-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-ansix923-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-ansix923-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-ansix923.js b/web/WebContent/js/crypt/CryptoJS/components/pad-ansix923.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-ansix923.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-ansix923.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-iso10126-min.js b/web/WebContent/js/crypt/CryptoJS/components/pad-iso10126-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-iso10126-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-iso10126-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-iso10126.js b/web/WebContent/js/crypt/CryptoJS/components/pad-iso10126.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-iso10126.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-iso10126.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-iso97971-min.js b/web/WebContent/js/crypt/CryptoJS/components/pad-iso97971-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-iso97971-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-iso97971-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-iso97971.js b/web/WebContent/js/crypt/CryptoJS/components/pad-iso97971.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-iso97971.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-iso97971.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-nopadding-min.js b/web/WebContent/js/crypt/CryptoJS/components/pad-nopadding-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-nopadding-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-nopadding-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-nopadding.js b/web/WebContent/js/crypt/CryptoJS/components/pad-nopadding.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-nopadding.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-nopadding.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-zeropadding-min.js b/web/WebContent/js/crypt/CryptoJS/components/pad-zeropadding-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-zeropadding-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-zeropadding-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pad-zeropadding.js b/web/WebContent/js/crypt/CryptoJS/components/pad-zeropadding.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pad-zeropadding.js rename to web/WebContent/js/crypt/CryptoJS/components/pad-zeropadding.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pbkdf2-min.js b/web/WebContent/js/crypt/CryptoJS/components/pbkdf2-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pbkdf2-min.js rename to web/WebContent/js/crypt/CryptoJS/components/pbkdf2-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/pbkdf2.js b/web/WebContent/js/crypt/CryptoJS/components/pbkdf2.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/pbkdf2.js rename to web/WebContent/js/crypt/CryptoJS/components/pbkdf2.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rabbit-legacy-min.js b/web/WebContent/js/crypt/CryptoJS/components/rabbit-legacy-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rabbit-legacy-min.js rename to web/WebContent/js/crypt/CryptoJS/components/rabbit-legacy-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rabbit-legacy.js b/web/WebContent/js/crypt/CryptoJS/components/rabbit-legacy.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rabbit-legacy.js rename to web/WebContent/js/crypt/CryptoJS/components/rabbit-legacy.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rabbit-min.js b/web/WebContent/js/crypt/CryptoJS/components/rabbit-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rabbit-min.js rename to web/WebContent/js/crypt/CryptoJS/components/rabbit-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rabbit.js b/web/WebContent/js/crypt/CryptoJS/components/rabbit.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rabbit.js rename to web/WebContent/js/crypt/CryptoJS/components/rabbit.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rc4-min.js b/web/WebContent/js/crypt/CryptoJS/components/rc4-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rc4-min.js rename to web/WebContent/js/crypt/CryptoJS/components/rc4-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/rc4.js b/web/WebContent/js/crypt/CryptoJS/components/rc4.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/rc4.js rename to web/WebContent/js/crypt/CryptoJS/components/rc4.js diff --git a/gwt/war/js/crypt/CryptoJS/components/ripemd160-min.js b/web/WebContent/js/crypt/CryptoJS/components/ripemd160-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/ripemd160-min.js rename to web/WebContent/js/crypt/CryptoJS/components/ripemd160-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/ripemd160.js b/web/WebContent/js/crypt/CryptoJS/components/ripemd160.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/ripemd160.js rename to web/WebContent/js/crypt/CryptoJS/components/ripemd160.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha1-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha1-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha1-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha1-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha1.js b/web/WebContent/js/crypt/CryptoJS/components/sha1.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha1.js rename to web/WebContent/js/crypt/CryptoJS/components/sha1.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha224-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha224-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha224-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha224-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha224.js b/web/WebContent/js/crypt/CryptoJS/components/sha224.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha224.js rename to web/WebContent/js/crypt/CryptoJS/components/sha224.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha256-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha256-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha256-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha256-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha256.js b/web/WebContent/js/crypt/CryptoJS/components/sha256.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha256.js rename to web/WebContent/js/crypt/CryptoJS/components/sha256.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha3-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha3-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha3-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha3-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha3.js b/web/WebContent/js/crypt/CryptoJS/components/sha3.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha3.js rename to web/WebContent/js/crypt/CryptoJS/components/sha3.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha384-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha384-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha384-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha384-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha384.js b/web/WebContent/js/crypt/CryptoJS/components/sha384.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha384.js rename to web/WebContent/js/crypt/CryptoJS/components/sha384.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha512-min.js b/web/WebContent/js/crypt/CryptoJS/components/sha512-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha512-min.js rename to web/WebContent/js/crypt/CryptoJS/components/sha512-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/sha512.js b/web/WebContent/js/crypt/CryptoJS/components/sha512.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/sha512.js rename to web/WebContent/js/crypt/CryptoJS/components/sha512.js diff --git a/gwt/war/js/crypt/CryptoJS/components/tripledes-min.js b/web/WebContent/js/crypt/CryptoJS/components/tripledes-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/tripledes-min.js rename to web/WebContent/js/crypt/CryptoJS/components/tripledes-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/tripledes.js b/web/WebContent/js/crypt/CryptoJS/components/tripledes.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/tripledes.js rename to web/WebContent/js/crypt/CryptoJS/components/tripledes.js diff --git a/gwt/war/js/crypt/CryptoJS/components/x64-core-min.js b/web/WebContent/js/crypt/CryptoJS/components/x64-core-min.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/x64-core-min.js rename to web/WebContent/js/crypt/CryptoJS/components/x64-core-min.js diff --git a/gwt/war/js/crypt/CryptoJS/components/x64-core.js b/web/WebContent/js/crypt/CryptoJS/components/x64-core.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/components/x64-core.js rename to web/WebContent/js/crypt/CryptoJS/components/x64-core.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/aes.js b/web/WebContent/js/crypt/CryptoJS/rollups/aes.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/aes.js rename to web/WebContent/js/crypt/CryptoJS/rollups/aes.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-md5.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-md5.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-md5.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-md5.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-ripemd160.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-ripemd160.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-ripemd160.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-ripemd160.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha1.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha1.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha1.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha1.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha224.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha224.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha224.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha224.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha256.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha256.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha256.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha256.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha3.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha3.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha3.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha3.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha384.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha384.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha384.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha384.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/hmac-sha512.js b/web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha512.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/hmac-sha512.js rename to web/WebContent/js/crypt/CryptoJS/rollups/hmac-sha512.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/md5.js b/web/WebContent/js/crypt/CryptoJS/rollups/md5.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/md5.js rename to web/WebContent/js/crypt/CryptoJS/rollups/md5.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/pbkdf2.js b/web/WebContent/js/crypt/CryptoJS/rollups/pbkdf2.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/pbkdf2.js rename to web/WebContent/js/crypt/CryptoJS/rollups/pbkdf2.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/rabbit-legacy.js b/web/WebContent/js/crypt/CryptoJS/rollups/rabbit-legacy.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/rabbit-legacy.js rename to web/WebContent/js/crypt/CryptoJS/rollups/rabbit-legacy.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/rabbit.js b/web/WebContent/js/crypt/CryptoJS/rollups/rabbit.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/rabbit.js rename to web/WebContent/js/crypt/CryptoJS/rollups/rabbit.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/rc4.js b/web/WebContent/js/crypt/CryptoJS/rollups/rc4.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/rc4.js rename to web/WebContent/js/crypt/CryptoJS/rollups/rc4.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/ripemd160.js b/web/WebContent/js/crypt/CryptoJS/rollups/ripemd160.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/ripemd160.js rename to web/WebContent/js/crypt/CryptoJS/rollups/ripemd160.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha1.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha1.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha1.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha1.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha224.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha224.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha224.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha224.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha256.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha256.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha256.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha256.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha3.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha3.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha3.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha3.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha384.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha384.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha384.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha384.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/sha512.js b/web/WebContent/js/crypt/CryptoJS/rollups/sha512.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/sha512.js rename to web/WebContent/js/crypt/CryptoJS/rollups/sha512.js diff --git a/gwt/war/js/crypt/CryptoJS/rollups/tripledes.js b/web/WebContent/js/crypt/CryptoJS/rollups/tripledes.js similarity index 100% rename from gwt/war/js/crypt/CryptoJS/rollups/tripledes.js rename to web/WebContent/js/crypt/CryptoJS/rollups/tripledes.js diff --git a/gwt/war/js/crypt/asn1writer.js b/web/WebContent/js/crypt/asn1writer.js similarity index 100% rename from gwt/war/js/crypt/asn1writer.js rename to web/WebContent/js/crypt/asn1writer.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/ChangeLog.txt b/web/WebContent/js/crypt/jsrsasign-1.3/ChangeLog.txt similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/ChangeLog.txt rename to web/WebContent/js/crypt/jsrsasign-1.3/ChangeLog.txt diff --git a/gwt/war/js/crypt/jsrsasign-1.3/LICENSE.txt b/web/WebContent/js/crypt/jsrsasign-1.3/LICENSE.txt similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/LICENSE.txt rename to web/WebContent/js/crypt/jsrsasign-1.3/LICENSE.txt diff --git a/gwt/war/js/crypt/jsrsasign-1.3/README.md b/web/WebContent/js/crypt/jsrsasign-1.3/README.md similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/README.md rename to web/WebContent/js/crypt/jsrsasign-1.3/README.md diff --git a/gwt/war/js/crypt/jsrsasign-1.3/THIRDPARTY_LICENSE.txt b/web/WebContent/js/crypt/jsrsasign-1.3/THIRDPARTY_LICENSE.txt similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/THIRDPARTY_LICENSE.txt rename to web/WebContent/js/crypt/jsrsasign-1.3/THIRDPARTY_LICENSE.txt diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/files.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/files.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/files.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/files.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/index.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/index.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/index.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/index.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/ASN1HEX.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/ASN1HEX.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/ASN1HEX.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/ASN1HEX.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/RSAKey.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/RSAKey.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/RSAKey.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/RSAKey.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/X509.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/X509.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/X509.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/X509.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/global__.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/global__.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/global__.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/global__.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/asn1hex-1.1.js.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/asn1hex-1.1.js.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/asn1hex-1.1.js.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/asn1hex-1.1.js.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/rsapem-1.1.js.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/rsapem-1.1.js.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/rsapem-1.1.js.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/rsapem-1.1.js.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/rsasign-1.2.js.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/rsasign-1.2.js.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/rsasign-1.2.js.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/rsasign-1.2.js.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/x509-1.1.js.html b/web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/x509-1.1.js.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/api/symbols/src/x509-1.1.js.html rename to web/WebContent/js/crypt/jsrsasign-1.3/api/symbols/src/x509-1.1.js.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/asn1hex-1.1.js b/web/WebContent/js/crypt/jsrsasign-1.3/asn1hex-1.1.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/asn1hex-1.1.js rename to web/WebContent/js/crypt/jsrsasign-1.3/asn1hex-1.1.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/asn1hex-1.1.min.js b/web/WebContent/js/crypt/jsrsasign-1.3/asn1hex-1.1.min.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/asn1hex-1.1.min.js rename to web/WebContent/js/crypt/jsrsasign-1.3/asn1hex-1.1.min.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/base64.js b/web/WebContent/js/crypt/jsrsasign-1.3/base64.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/base64.js rename to web/WebContent/js/crypt/jsrsasign-1.3/base64.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/index.html b/web/WebContent/js/crypt/jsrsasign-1.3/index.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/index.html rename to web/WebContent/js/crypt/jsrsasign-1.3/index.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/jsbn.js b/web/WebContent/js/crypt/jsrsasign-1.3/jsbn.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/jsbn.js rename to web/WebContent/js/crypt/jsrsasign-1.3/jsbn.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/jsbn2.js b/web/WebContent/js/crypt/jsrsasign-1.3/jsbn2.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/jsbn2.js rename to web/WebContent/js/crypt/jsrsasign-1.3/jsbn2.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/md5.js b/web/WebContent/js/crypt/jsrsasign-1.3/md5.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/md5.js rename to web/WebContent/js/crypt/jsrsasign-1.3/md5.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/ripemd160.js b/web/WebContent/js/crypt/jsrsasign-1.3/ripemd160.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/ripemd160.js rename to web/WebContent/js/crypt/jsrsasign-1.3/ripemd160.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsa.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsa.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsa.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsa.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsa2.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsa2.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsa2.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsa2.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsapem-1.1.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsapem-1.1.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsapem-1.1.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsapem-1.1.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsapem-1.1.min.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsapem-1.1.min.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsapem-1.1.min.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsapem-1.1.min.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsasign-1.2.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsasign-1.2.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsasign-1.2.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsasign-1.2.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/rsasign-1.2.min.js b/web/WebContent/js/crypt/jsrsasign-1.3/rsasign-1.2.min.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/rsasign-1.2.min.js rename to web/WebContent/js/crypt/jsrsasign-1.3/rsasign-1.2.min.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/sample-rsasign.html b/web/WebContent/js/crypt/jsrsasign-1.3/sample-rsasign.html similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/sample-rsasign.html rename to web/WebContent/js/crypt/jsrsasign-1.3/sample-rsasign.html diff --git a/gwt/war/js/crypt/jsrsasign-1.3/sample-rsasign.png b/web/WebContent/js/crypt/jsrsasign-1.3/sample-rsasign.png similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/sample-rsasign.png rename to web/WebContent/js/crypt/jsrsasign-1.3/sample-rsasign.png diff --git a/gwt/war/js/crypt/jsrsasign-1.3/sha1.js b/web/WebContent/js/crypt/jsrsasign-1.3/sha1.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/sha1.js rename to web/WebContent/js/crypt/jsrsasign-1.3/sha1.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/sha256.js b/web/WebContent/js/crypt/jsrsasign-1.3/sha256.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/sha256.js rename to web/WebContent/js/crypt/jsrsasign-1.3/sha256.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/sha512.js b/web/WebContent/js/crypt/jsrsasign-1.3/sha512.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/sha512.js rename to web/WebContent/js/crypt/jsrsasign-1.3/sha512.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/x509-1.1.js b/web/WebContent/js/crypt/jsrsasign-1.3/x509-1.1.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/x509-1.1.js rename to web/WebContent/js/crypt/jsrsasign-1.3/x509-1.1.js diff --git a/gwt/war/js/crypt/jsrsasign-1.3/x509-1.1.min.js b/web/WebContent/js/crypt/jsrsasign-1.3/x509-1.1.min.js similarity index 100% rename from gwt/war/js/crypt/jsrsasign-1.3/x509-1.1.min.js rename to web/WebContent/js/crypt/jsrsasign-1.3/x509-1.1.min.js diff --git a/gwt/war/js/crypt/sjcl.js b/web/WebContent/js/crypt/sjcl.js similarity index 100% rename from gwt/war/js/crypt/sjcl.js rename to web/WebContent/js/crypt/sjcl.js diff --git a/gwt/war/js/crypt/srp.js b/web/WebContent/js/crypt/srp.js similarity index 100% rename from gwt/war/js/crypt/srp.js rename to web/WebContent/js/crypt/srp.js diff --git a/gwt/war/js/crypt/tomwu/base64.js b/web/WebContent/js/crypt/tomwu/base64.js similarity index 100% rename from gwt/war/js/crypt/tomwu/base64.js rename to web/WebContent/js/crypt/tomwu/base64.js diff --git a/gwt/war/js/crypt/tomwu/ec.js b/web/WebContent/js/crypt/tomwu/ec.js similarity index 100% rename from gwt/war/js/crypt/tomwu/ec.js rename to web/WebContent/js/crypt/tomwu/ec.js diff --git a/gwt/war/js/crypt/tomwu/jsbn.js b/web/WebContent/js/crypt/tomwu/jsbn.js similarity index 100% rename from gwt/war/js/crypt/tomwu/jsbn.js rename to web/WebContent/js/crypt/tomwu/jsbn.js diff --git a/gwt/war/js/crypt/tomwu/jsbn2.js b/web/WebContent/js/crypt/tomwu/jsbn2.js similarity index 100% rename from gwt/war/js/crypt/tomwu/jsbn2.js rename to web/WebContent/js/crypt/tomwu/jsbn2.js diff --git a/gwt/war/js/crypt/tomwu/prng4.js b/web/WebContent/js/crypt/tomwu/prng4.js similarity index 100% rename from gwt/war/js/crypt/tomwu/prng4.js rename to web/WebContent/js/crypt/tomwu/prng4.js diff --git a/gwt/war/js/crypt/tomwu/rng.js b/web/WebContent/js/crypt/tomwu/rng.js similarity index 100% rename from gwt/war/js/crypt/tomwu/rng.js rename to web/WebContent/js/crypt/tomwu/rng.js diff --git a/gwt/war/js/crypt/tomwu/rsa.js b/web/WebContent/js/crypt/tomwu/rsa.js similarity index 100% rename from gwt/war/js/crypt/tomwu/rsa.js rename to web/WebContent/js/crypt/tomwu/rsa.js diff --git a/gwt/war/js/crypt/tomwu/rsa2.js b/web/WebContent/js/crypt/tomwu/rsa2.js similarity index 100% rename from gwt/war/js/crypt/tomwu/rsa2.js rename to web/WebContent/js/crypt/tomwu/rsa2.js diff --git a/gwt/war/js/crypt/tomwu/sec.js b/web/WebContent/js/crypt/tomwu/sec.js similarity index 100% rename from gwt/war/js/crypt/tomwu/sec.js rename to web/WebContent/js/crypt/tomwu/sec.js diff --git a/gwt/war/js/crypt/tomwu/sha1.js b/web/WebContent/js/crypt/tomwu/sha1.js similarity index 100% rename from gwt/war/js/crypt/tomwu/sha1.js rename to web/WebContent/js/crypt/tomwu/sha1.js diff --git a/gwt/war/js/mAsync.js b/web/WebContent/js/mAsync.js similarity index 100% rename from gwt/war/js/mAsync.js rename to web/WebContent/js/mAsync.js diff --git a/gwt/war/js/mDispatch.js b/web/WebContent/js/mDispatch.js similarity index 100% rename from gwt/war/js/mDispatch.js rename to web/WebContent/js/mDispatch.js diff --git a/gwt/war/js/mNative.js b/web/WebContent/js/mNative.js similarity index 100% rename from gwt/war/js/mNative.js rename to web/WebContent/js/mNative.js diff --git a/gwt/war/js/mSupport.js b/web/WebContent/js/mSupport.js similarity index 100% rename from gwt/war/js/mSupport.js rename to web/WebContent/js/mSupport.js diff --git a/gwt/war/js/mWorker.js b/web/WebContent/js/mWorker.js similarity index 100% rename from gwt/war/js/mWorker.js rename to web/WebContent/js/mWorker.js diff --git a/gwt/war/js/saveAs/Blob.js b/web/WebContent/js/saveAs/Blob.js similarity index 100% rename from gwt/war/js/saveAs/Blob.js rename to web/WebContent/js/saveAs/Blob.js diff --git a/gwt/war/js/saveAs/BlobBuilder.js b/web/WebContent/js/saveAs/BlobBuilder.js similarity index 100% rename from gwt/war/js/saveAs/BlobBuilder.js rename to web/WebContent/js/saveAs/BlobBuilder.js diff --git a/gwt/war/js/saveAs/FileSaver.js b/web/WebContent/js/saveAs/FileSaver.js similarity index 100% rename from gwt/war/js/saveAs/FileSaver.js rename to web/WebContent/js/saveAs/FileSaver.js diff --git a/gwt/war/js/zip/deflate.js b/web/WebContent/js/zip/deflate.js similarity index 100% rename from gwt/war/js/zip/deflate.js rename to web/WebContent/js/zip/deflate.js diff --git a/gwt/war/js/zip/hasbugs/jszip-deflate.js b/web/WebContent/js/zip/hasbugs/jszip-deflate.js similarity index 100% rename from gwt/war/js/zip/hasbugs/jszip-deflate.js rename to web/WebContent/js/zip/hasbugs/jszip-deflate.js diff --git a/gwt/war/js/zip/hasbugs/jszip-inflate.js b/web/WebContent/js/zip/hasbugs/jszip-inflate.js similarity index 100% rename from gwt/war/js/zip/hasbugs/jszip-inflate.js rename to web/WebContent/js/zip/hasbugs/jszip-inflate.js diff --git a/gwt/war/js/zip/hasbugs/rawdeflate.js b/web/WebContent/js/zip/hasbugs/rawdeflate.js similarity index 100% rename from gwt/war/js/zip/hasbugs/rawdeflate.js rename to web/WebContent/js/zip/hasbugs/rawdeflate.js diff --git a/gwt/war/js/zip/hasbugs/rawinflate.js b/web/WebContent/js/zip/hasbugs/rawinflate.js similarity index 100% rename from gwt/war/js/zip/hasbugs/rawinflate.js rename to web/WebContent/js/zip/hasbugs/rawinflate.js diff --git a/gwt/war/js/zip/inflate.js b/web/WebContent/js/zip/inflate.js similarity index 100% rename from gwt/war/js/zip/inflate.js rename to web/WebContent/js/zip/inflate.js diff --git a/gwt/war/js/zip/support.js b/web/WebContent/js/zip/support.js similarity index 100% rename from gwt/war/js/zip/support.js rename to web/WebContent/js/zip/support.js diff --git a/gwt/war/js/zip/test.html b/web/WebContent/js/zip/test.html similarity index 100% rename from gwt/war/js/zip/test.html rename to web/WebContent/js/zip/test.html