diff --git a/Gruntfile.js b/Gruntfile.js new file mode 100644 index 00000000..623a7a89 --- /dev/null +++ b/Gruntfile.js @@ -0,0 +1,70 @@ + +module.exports = function (grunt) { + 'use strict'; + + // Force use of Unix newlines + grunt.util.linefeed = '\n'; + + grunt.initConfig({ + + // Metadata. + pkg: grunt.file.readJSON('package.json'), + banner: "", + + // Task configuration. + clean: { + dist: ['dist'] + }, + + + concat: { + options: { + banner: '<%= banner %>', + stripBanners: false + }, + bootstrap: { + src: [ + 'src/js/widgets.js', + 'src/js/widgets-address.js', + 'src/js/widgets-collections.js', + 'src/js/widgets-cooccurence.js', + 'src/js/widgets-dls.js', + 'src/js/widgets-docbuilder.js', + 'src/js/widgets-documents.js', + 'src/js/widgets-explore.js', + 'src/js/widgets-highcharts.js', + 'src/js/widgets-ingest.js', + 'src/js/widgets-kratu.js', + 'src/js/widgets-markings.js', + 'src/js/widgets-openlayers.js', + 'src/js/widgets-profile.js', + 'src/js/widgets-rdb2rdf.js', + 'src/js/widgets-search.js', + 'src/js/widgets-tagcloud.js', + 'src/js/widgets-triples.js', + 'src/js/widgets-workplace.js' + ], + dest: 'dist/browser-dev/mljs-widgets.js' + } + }, + + uglify: { + bootstrap: { + options: { + banner: '<%= banner %>' + }, + src: '<%= concat.bootstrap.dest %>', + dest: 'dist/browser-prod/mljs-widgets.min.js' + } + } + + + }); + + + grunt.registerTask('dist-js', ['concat', 'uglify']); + + grunt.registerTask('dist', ['clean', 'dist-js']); + + +}; diff --git a/mldbwebtest/CHANGELOG.mdown b/apps/mldbwebtest/CHANGELOG.mdown similarity index 100% rename from mldbwebtest/CHANGELOG.mdown rename to apps/mldbwebtest/CHANGELOG.mdown diff --git a/mldbwebtest/deploy/app_specific.rb b/apps/mldbwebtest/deploy/app_specific.rb similarity index 100% rename from mldbwebtest/deploy/app_specific.rb rename to apps/mldbwebtest/deploy/app_specific.rb diff --git a/mldbwebtest/deploy/build.properties b/apps/mldbwebtest/deploy/build.properties similarity index 100% rename from mldbwebtest/deploy/build.properties rename to apps/mldbwebtest/deploy/build.properties diff --git a/mldbwebtest/deploy/default.properties b/apps/mldbwebtest/deploy/default.properties similarity index 100% rename from mldbwebtest/deploy/default.properties rename to apps/mldbwebtest/deploy/default.properties diff --git a/mldbwebtest/deploy/dev.properties b/apps/mldbwebtest/deploy/dev.properties similarity index 100% rename from mldbwebtest/deploy/dev.properties rename to apps/mldbwebtest/deploy/dev.properties diff --git a/mldbwebtest/deploy/lib/Help.rb b/apps/mldbwebtest/deploy/lib/Help.rb similarity index 100% rename from mldbwebtest/deploy/lib/Help.rb rename to apps/mldbwebtest/deploy/lib/Help.rb diff --git a/mldbwebtest/deploy/lib/MLClient.rb b/apps/mldbwebtest/deploy/lib/MLClient.rb similarity index 100% rename from mldbwebtest/deploy/lib/MLClient.rb rename to apps/mldbwebtest/deploy/lib/MLClient.rb diff --git a/mldbwebtest/deploy/lib/RoxyHttp.rb b/apps/mldbwebtest/deploy/lib/RoxyHttp.rb similarity index 100% rename from mldbwebtest/deploy/lib/RoxyHttp.rb rename to apps/mldbwebtest/deploy/lib/RoxyHttp.rb diff --git a/mldbwebtest/deploy/lib/depx-0.1/LICENSE b/apps/mldbwebtest/deploy/lib/depx-0.1/LICENSE similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/LICENSE rename to apps/mldbwebtest/deploy/lib/depx-0.1/LICENSE diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/README b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/README similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/README rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/README diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/VERSION b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/VERSION similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/VERSION rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/VERSION diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.bat b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.bat similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.bat rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.bat diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/calabash.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/CDDL+GPL.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/CDDL+GPL.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/CDDL+GPL.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/CDDL+GPL.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/GPL.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/GPL.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/GPL.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/GPL.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-CODEC.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-CODEC.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-CODEC.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-CODEC.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-HTTPCLIENT.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-HTTPCLIENT.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-HTTPCLIENT.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-HTTPCLIENT.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-IO.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-IO.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-IO.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-IO.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-LOGGING.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-LOGGING.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-LOGGING.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/APACHE-LOGGING.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/CDDL+GPL.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/CDDL+GPL.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/CDDL+GPL.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/CDDL+GPL.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/GPL.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/GPL.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/GPL.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/GPL.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/NOTICES b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/NOTICES similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/NOTICES rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/NOTICES diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/SAXON9HE.txt b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/SAXON9HE.txt similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/SAXON9HE.txt rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/notices/SAXON9HE.txt diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/default.css b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/default.css similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/default.css rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/default.css diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/normalize.css b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/normalize.css similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/normalize.css rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/normalize.css diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/pygments.css b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/pygments.css similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/pygments.css rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/pygments.css diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/xproc.css b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/xproc.css similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/xproc.css rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/css/xproc.css diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/cover.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/cover.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/cover.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/cover.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/delete.gif b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/delete.gif similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/delete.gif rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/delete.gif diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/depends.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/depends.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/depends.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/depends.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/down.gif b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/down.gif similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/down.gif rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/down.gif diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home copy.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home copy.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home copy.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home copy.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/home.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/next.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/next.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/next.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/next.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/prev.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/prev.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/prev.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/prev.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/right.gif b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/right.gif similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/right.gif rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/right.gif diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/up.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/up.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/up.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/up.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xnext.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xnext.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xnext.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xnext.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xprev.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xprev.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xprev.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xprev.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xup.png b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xup.png similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xup.png rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/img/xup.png diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/js/dbmodnizr.js b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/js/dbmodnizr.js similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/js/dbmodnizr.js rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/docs/reference/js/dbmodnizr.js diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/README b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/README similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/README rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/README diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.3.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.3.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.3.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.3.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.6.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.6.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.6.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-codec-1.6.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-httpclient-3.1.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-httpclient-3.1.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-httpclient-3.1.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-httpclient-3.1.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-io-1.3.1.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-io-1.3.1.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-io-1.3.1.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-io-1.3.1.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-logging-1.1.1.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-logging-1.1.1.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-logging-1.1.1.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/commons-logging-1.1.1.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/htmlparser-1.3.1.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/htmlparser-1.3.1.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/htmlparser-1.3.1.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/htmlparser-1.3.1.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/isorelax.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/isorelax.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/isorelax.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/isorelax.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/jing.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/jing.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/jing.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/jing.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/msv.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/msv.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/msv.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/msv.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/saxon9he.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/saxon9he.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/saxon9he.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/saxon9he.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/tagsoup-1.2.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/tagsoup-1.2.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/tagsoup-1.2.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/tagsoup-1.2.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/xmlresolver.jar b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/xmlresolver.jar similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/xmlresolver.jar rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/lib/xmlresolver.jar diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/library-1.0.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/library-1.0.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/library-1.0.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/library-1.0.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/recursive-directory-list.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/recursive-directory-list.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/recursive-directory-list.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/recursive-directory-list.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/schemas/configuration.rnc b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/schemas/configuration.rnc similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/schemas/configuration.rnc rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/schemas/configuration.rnc diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/git-log-summary.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/git-log-summary.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/git-log-summary.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/git-log-summary.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/pipe.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/pipe.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/pipe.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/deps/xmlcalabash/xpl/pipe.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/depx b/apps/mldbwebtest/deploy/lib/depx-0.1/depx similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/depx rename to apps/mldbwebtest/deploy/lib/depx-0.1/depx diff --git a/mldbwebtest/deploy/lib/depx-0.1/depx.bat b/apps/mldbwebtest/deploy/lib/depx-0.1/depx.bat similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/depx.bat rename to apps/mldbwebtest/deploy/lib/depx-0.1/depx.bat diff --git a/mldbwebtest/deploy/lib/depx-0.1/lib/depx.xml b/apps/mldbwebtest/deploy/lib/depx-0.1/lib/depx.xml similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/lib/depx.xml rename to apps/mldbwebtest/deploy/lib/depx-0.1/lib/depx.xml diff --git a/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx-prototype.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx-prototype.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx-prototype.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx-prototype.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx.xpl b/apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx.xpl similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx.xpl rename to apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/depx.xpl diff --git a/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/extension-library.xml b/apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/extension-library.xml similarity index 100% rename from mldbwebtest/deploy/lib/depx-0.1/libs/xproc/extension-library.xml rename to apps/mldbwebtest/deploy/lib/depx-0.1/libs/xproc/extension-library.xml diff --git a/mldbwebtest/deploy/lib/framework.rb b/apps/mldbwebtest/deploy/lib/framework.rb similarity index 100% rename from mldbwebtest/deploy/lib/framework.rb rename to apps/mldbwebtest/deploy/lib/framework.rb diff --git a/mldbwebtest/deploy/lib/java/corb.jar b/apps/mldbwebtest/deploy/lib/java/corb.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/corb.jar rename to apps/mldbwebtest/deploy/lib/java/corb.jar diff --git a/mldbwebtest/deploy/lib/java/marklogic-xcc-5.0.2.jar b/apps/mldbwebtest/deploy/lib/java/marklogic-xcc-5.0.2.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/marklogic-xcc-5.0.2.jar rename to apps/mldbwebtest/deploy/lib/java/marklogic-xcc-5.0.2.jar diff --git a/mldbwebtest/deploy/lib/java/recordloader.jar b/apps/mldbwebtest/deploy/lib/java/recordloader.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/recordloader.jar rename to apps/mldbwebtest/deploy/lib/java/recordloader.jar diff --git a/mldbwebtest/deploy/lib/java/xpp3-1.1.4c.jar b/apps/mldbwebtest/deploy/lib/java/xpp3-1.1.4c.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/xpp3-1.1.4c.jar rename to apps/mldbwebtest/deploy/lib/java/xpp3-1.1.4c.jar diff --git a/mldbwebtest/deploy/lib/java/xqsync.jar b/apps/mldbwebtest/deploy/lib/java/xqsync.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/xqsync.jar rename to apps/mldbwebtest/deploy/lib/java/xqsync.jar diff --git a/mldbwebtest/deploy/lib/java/xstream-1.4.2.jar b/apps/mldbwebtest/deploy/lib/java/xstream-1.4.2.jar similarity index 100% rename from mldbwebtest/deploy/lib/java/xstream-1.4.2.jar rename to apps/mldbwebtest/deploy/lib/java/xstream-1.4.2.jar diff --git a/mldbwebtest/deploy/lib/json.rb b/apps/mldbwebtest/deploy/lib/json.rb similarity index 100% rename from mldbwebtest/deploy/lib/json.rb rename to apps/mldbwebtest/deploy/lib/json.rb diff --git a/mldbwebtest/deploy/lib/json/Array.xpm b/apps/mldbwebtest/deploy/lib/json/Array.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/Array.xpm rename to apps/mldbwebtest/deploy/lib/json/Array.xpm diff --git a/mldbwebtest/deploy/lib/json/FalseClass.xpm b/apps/mldbwebtest/deploy/lib/json/FalseClass.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/FalseClass.xpm rename to apps/mldbwebtest/deploy/lib/json/FalseClass.xpm diff --git a/mldbwebtest/deploy/lib/json/Hash.xpm b/apps/mldbwebtest/deploy/lib/json/Hash.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/Hash.xpm rename to apps/mldbwebtest/deploy/lib/json/Hash.xpm diff --git a/mldbwebtest/deploy/lib/json/Key.xpm b/apps/mldbwebtest/deploy/lib/json/Key.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/Key.xpm rename to apps/mldbwebtest/deploy/lib/json/Key.xpm diff --git a/mldbwebtest/deploy/lib/json/NilClass.xpm b/apps/mldbwebtest/deploy/lib/json/NilClass.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/NilClass.xpm rename to apps/mldbwebtest/deploy/lib/json/NilClass.xpm diff --git a/mldbwebtest/deploy/lib/json/Numeric.xpm b/apps/mldbwebtest/deploy/lib/json/Numeric.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/Numeric.xpm rename to apps/mldbwebtest/deploy/lib/json/Numeric.xpm diff --git a/mldbwebtest/deploy/lib/json/String.xpm b/apps/mldbwebtest/deploy/lib/json/String.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/String.xpm rename to apps/mldbwebtest/deploy/lib/json/String.xpm diff --git a/mldbwebtest/deploy/lib/json/TrueClass.xpm b/apps/mldbwebtest/deploy/lib/json/TrueClass.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/TrueClass.xpm rename to apps/mldbwebtest/deploy/lib/json/TrueClass.xpm diff --git a/mldbwebtest/deploy/lib/json/add/core.rb b/apps/mldbwebtest/deploy/lib/json/add/core.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/add/core.rb rename to apps/mldbwebtest/deploy/lib/json/add/core.rb diff --git a/mldbwebtest/deploy/lib/json/add/rails.rb b/apps/mldbwebtest/deploy/lib/json/add/rails.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/add/rails.rb rename to apps/mldbwebtest/deploy/lib/json/add/rails.rb diff --git a/mldbwebtest/deploy/lib/json/common.rb b/apps/mldbwebtest/deploy/lib/json/common.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/common.rb rename to apps/mldbwebtest/deploy/lib/json/common.rb diff --git a/mldbwebtest/deploy/lib/json/editor.rb b/apps/mldbwebtest/deploy/lib/json/editor.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/editor.rb rename to apps/mldbwebtest/deploy/lib/json/editor.rb diff --git a/mldbwebtest/deploy/lib/json/ext.rb b/apps/mldbwebtest/deploy/lib/json/ext.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/ext.rb rename to apps/mldbwebtest/deploy/lib/json/ext.rb diff --git a/mldbwebtest/deploy/lib/json/json.xpm b/apps/mldbwebtest/deploy/lib/json/json.xpm similarity index 100% rename from mldbwebtest/deploy/lib/json/json.xpm rename to apps/mldbwebtest/deploy/lib/json/json.xpm diff --git a/mldbwebtest/deploy/lib/json/pure.rb b/apps/mldbwebtest/deploy/lib/json/pure.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/pure.rb rename to apps/mldbwebtest/deploy/lib/json/pure.rb diff --git a/mldbwebtest/deploy/lib/json/pure/generator.rb b/apps/mldbwebtest/deploy/lib/json/pure/generator.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/pure/generator.rb rename to apps/mldbwebtest/deploy/lib/json/pure/generator.rb diff --git a/mldbwebtest/deploy/lib/json/pure/parser.rb b/apps/mldbwebtest/deploy/lib/json/pure/parser.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/pure/parser.rb rename to apps/mldbwebtest/deploy/lib/json/pure/parser.rb diff --git a/mldbwebtest/deploy/lib/json/version.rb b/apps/mldbwebtest/deploy/lib/json/version.rb similarity index 100% rename from mldbwebtest/deploy/lib/json/version.rb rename to apps/mldbwebtest/deploy/lib/json/version.rb diff --git a/mldbwebtest/deploy/lib/ml.rb b/apps/mldbwebtest/deploy/lib/ml.rb similarity index 100% rename from mldbwebtest/deploy/lib/ml.rb rename to apps/mldbwebtest/deploy/lib/ml.rb diff --git a/mldbwebtest/deploy/lib/ml_rest.rb b/apps/mldbwebtest/deploy/lib/ml_rest.rb similarity index 100% rename from mldbwebtest/deploy/lib/ml_rest.rb rename to apps/mldbwebtest/deploy/lib/ml_rest.rb diff --git a/mldbwebtest/deploy/lib/scaffold.rb b/apps/mldbwebtest/deploy/lib/scaffold.rb similarity index 100% rename from mldbwebtest/deploy/lib/scaffold.rb rename to apps/mldbwebtest/deploy/lib/scaffold.rb diff --git a/mldbwebtest/deploy/lib/server_config.rb b/apps/mldbwebtest/deploy/lib/server_config.rb similarity index 100% rename from mldbwebtest/deploy/lib/server_config.rb rename to apps/mldbwebtest/deploy/lib/server_config.rb diff --git a/mldbwebtest/deploy/lib/templates/controller-function.xqy b/apps/mldbwebtest/deploy/lib/templates/controller-function.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/controller-function.xqy rename to apps/mldbwebtest/deploy/lib/templates/controller-function.xqy diff --git a/mldbwebtest/deploy/lib/templates/controller.xqy b/apps/mldbwebtest/deploy/lib/templates/controller.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/controller.xqy rename to apps/mldbwebtest/deploy/lib/templates/controller.xqy diff --git a/mldbwebtest/deploy/lib/templates/layout.html.xqy b/apps/mldbwebtest/deploy/lib/templates/layout.html.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/layout.html.xqy rename to apps/mldbwebtest/deploy/lib/templates/layout.html.xqy diff --git a/mldbwebtest/deploy/lib/templates/layout.xqy b/apps/mldbwebtest/deploy/lib/templates/layout.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/layout.xqy rename to apps/mldbwebtest/deploy/lib/templates/layout.xqy diff --git a/mldbwebtest/deploy/lib/templates/model-function.xqy b/apps/mldbwebtest/deploy/lib/templates/model-function.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/model-function.xqy rename to apps/mldbwebtest/deploy/lib/templates/model-function.xqy diff --git a/mldbwebtest/deploy/lib/templates/model.xqy b/apps/mldbwebtest/deploy/lib/templates/model.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/model.xqy rename to apps/mldbwebtest/deploy/lib/templates/model.xqy diff --git a/mldbwebtest/deploy/lib/templates/test.xqy b/apps/mldbwebtest/deploy/lib/templates/test.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/test.xqy rename to apps/mldbwebtest/deploy/lib/templates/test.xqy diff --git a/mldbwebtest/deploy/lib/templates/view.html.xqy b/apps/mldbwebtest/deploy/lib/templates/view.html.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/view.html.xqy rename to apps/mldbwebtest/deploy/lib/templates/view.html.xqy diff --git a/mldbwebtest/deploy/lib/templates/view.json.xqy b/apps/mldbwebtest/deploy/lib/templates/view.json.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/view.json.xqy rename to apps/mldbwebtest/deploy/lib/templates/view.json.xqy diff --git a/mldbwebtest/deploy/lib/templates/view.xml.xqy b/apps/mldbwebtest/deploy/lib/templates/view.xml.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/view.xml.xqy rename to apps/mldbwebtest/deploy/lib/templates/view.xml.xqy diff --git a/mldbwebtest/deploy/lib/templates/view.xqy b/apps/mldbwebtest/deploy/lib/templates/view.xqy similarity index 100% rename from mldbwebtest/deploy/lib/templates/view.xqy rename to apps/mldbwebtest/deploy/lib/templates/view.xqy diff --git a/mldbwebtest/deploy/lib/upgrader.rb b/apps/mldbwebtest/deploy/lib/upgrader.rb similarity index 100% rename from mldbwebtest/deploy/lib/upgrader.rb rename to apps/mldbwebtest/deploy/lib/upgrader.rb diff --git a/mldbwebtest/deploy/lib/util.rb b/apps/mldbwebtest/deploy/lib/util.rb similarity index 100% rename from mldbwebtest/deploy/lib/util.rb rename to apps/mldbwebtest/deploy/lib/util.rb diff --git a/mldbwebtest/deploy/lib/xcc.rb b/apps/mldbwebtest/deploy/lib/xcc.rb similarity index 100% rename from mldbwebtest/deploy/lib/xcc.rb rename to apps/mldbwebtest/deploy/lib/xcc.rb diff --git a/mldbwebtest/deploy/lib/xquery/cpf.xqy b/apps/mldbwebtest/deploy/lib/xquery/cpf.xqy similarity index 100% rename from mldbwebtest/deploy/lib/xquery/cpf.xqy rename to apps/mldbwebtest/deploy/lib/xquery/cpf.xqy diff --git a/mldbwebtest/deploy/lib/xquery/setup.xqy b/apps/mldbwebtest/deploy/lib/xquery/setup.xqy similarity index 100% rename from mldbwebtest/deploy/lib/xquery/setup.xqy rename to apps/mldbwebtest/deploy/lib/xquery/setup.xqy diff --git a/mldbwebtest/deploy/ml-config.xml b/apps/mldbwebtest/deploy/ml-config.xml similarity index 100% rename from mldbwebtest/deploy/ml-config.xml rename to apps/mldbwebtest/deploy/ml-config.xml diff --git a/mldbwebtest/deploy/sample/all.sample.xml b/apps/mldbwebtest/deploy/sample/all.sample.xml similarity index 100% rename from mldbwebtest/deploy/sample/all.sample.xml rename to apps/mldbwebtest/deploy/sample/all.sample.xml diff --git a/mldbwebtest/deploy/sample/build.sample.properties b/apps/mldbwebtest/deploy/sample/build.sample.properties similarity index 100% rename from mldbwebtest/deploy/sample/build.sample.properties rename to apps/mldbwebtest/deploy/sample/build.sample.properties diff --git a/mldbwebtest/deploy/sample/ml-config.sample.xml b/apps/mldbwebtest/deploy/sample/ml-config.sample.xml similarity index 100% rename from mldbwebtest/deploy/sample/ml-config.sample.xml rename to apps/mldbwebtest/deploy/sample/ml-config.sample.xml diff --git a/mldbwebtest/deploy/sample/pipeline-config.sample.xml b/apps/mldbwebtest/deploy/sample/pipeline-config.sample.xml similarity index 100% rename from mldbwebtest/deploy/sample/pipeline-config.sample.xml rename to apps/mldbwebtest/deploy/sample/pipeline-config.sample.xml diff --git a/mldbwebtest/deploy/sample/properties.sample.xml b/apps/mldbwebtest/deploy/sample/properties.sample.xml similarity index 100% rename from mldbwebtest/deploy/sample/properties.sample.xml rename to apps/mldbwebtest/deploy/sample/properties.sample.xml diff --git a/mldbwebtest/deploy/sample/rest-ext.sample.xqy b/apps/mldbwebtest/deploy/sample/rest-ext.sample.xqy similarity index 100% rename from mldbwebtest/deploy/sample/rest-ext.sample.xqy rename to apps/mldbwebtest/deploy/sample/rest-ext.sample.xqy diff --git a/mldbwebtest/deploy/sample/rest-transform.sample.xqy b/apps/mldbwebtest/deploy/sample/rest-transform.sample.xqy similarity index 100% rename from mldbwebtest/deploy/sample/rest-transform.sample.xqy rename to apps/mldbwebtest/deploy/sample/rest-transform.sample.xqy diff --git a/mldbwebtest/deploy/sample/rest-transform.sample.xslt b/apps/mldbwebtest/deploy/sample/rest-transform.sample.xslt similarity index 100% rename from mldbwebtest/deploy/sample/rest-transform.sample.xslt rename to apps/mldbwebtest/deploy/sample/rest-transform.sample.xslt diff --git a/mldbwebtest/deploy/test/data/ml4-config.xml b/apps/mldbwebtest/deploy/test/data/ml4-config.xml similarity index 100% rename from mldbwebtest/deploy/test/data/ml4-config.xml rename to apps/mldbwebtest/deploy/test/data/ml4-config.xml diff --git a/mldbwebtest/deploy/test/data/ml4-properties/build.properties b/apps/mldbwebtest/deploy/test/data/ml4-properties/build.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml4-properties/build.properties rename to apps/mldbwebtest/deploy/test/data/ml4-properties/build.properties diff --git a/mldbwebtest/deploy/test/data/ml4-properties/default.properties b/apps/mldbwebtest/deploy/test/data/ml4-properties/default.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml4-properties/default.properties rename to apps/mldbwebtest/deploy/test/data/ml4-properties/default.properties diff --git a/mldbwebtest/deploy/test/data/ml5-config.xml b/apps/mldbwebtest/deploy/test/data/ml5-config.xml similarity index 100% rename from mldbwebtest/deploy/test/data/ml5-config.xml rename to apps/mldbwebtest/deploy/test/data/ml5-config.xml diff --git a/mldbwebtest/deploy/test/data/ml5-properties/build.properties b/apps/mldbwebtest/deploy/test/data/ml5-properties/build.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml5-properties/build.properties rename to apps/mldbwebtest/deploy/test/data/ml5-properties/build.properties diff --git a/mldbwebtest/deploy/test/data/ml5-properties/default.properties b/apps/mldbwebtest/deploy/test/data/ml5-properties/default.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml5-properties/default.properties rename to apps/mldbwebtest/deploy/test/data/ml5-properties/default.properties diff --git a/mldbwebtest/deploy/test/data/ml6-config.xml b/apps/mldbwebtest/deploy/test/data/ml6-config.xml similarity index 100% rename from mldbwebtest/deploy/test/data/ml6-config.xml rename to apps/mldbwebtest/deploy/test/data/ml6-config.xml diff --git a/mldbwebtest/deploy/test/data/ml6-properties/build.properties b/apps/mldbwebtest/deploy/test/data/ml6-properties/build.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml6-properties/build.properties rename to apps/mldbwebtest/deploy/test/data/ml6-properties/build.properties diff --git a/mldbwebtest/deploy/test/data/ml6-properties/default.properties b/apps/mldbwebtest/deploy/test/data/ml6-properties/default.properties similarity index 100% rename from mldbwebtest/deploy/test/data/ml6-properties/default.properties rename to apps/mldbwebtest/deploy/test/data/ml6-properties/default.properties diff --git a/mldbwebtest/deploy/test/test_main.rb b/apps/mldbwebtest/deploy/test/test_main.rb similarity index 100% rename from mldbwebtest/deploy/test/test_main.rb rename to apps/mldbwebtest/deploy/test/test_main.rb diff --git a/mldbwebtest/deploy/test/test_server_config.rb b/apps/mldbwebtest/deploy/test/test_server_config.rb similarity index 100% rename from mldbwebtest/deploy/test/test_server_config.rb rename to apps/mldbwebtest/deploy/test/test_server_config.rb diff --git a/apps/mldbwebtest/deploy/vanprod3.properties b/apps/mldbwebtest/deploy/vanprod3.properties new file mode 100644 index 00000000..75203695 --- /dev/null +++ b/apps/mldbwebtest/deploy/vanprod3.properties @@ -0,0 +1,9 @@ + +user=afowler +password=aF0wler + +vanprod3-server=van-prod3.demo.marklogic.com + + +app-port=8020 +xcc-port=8021 diff --git a/mldbwebtest/installextensions.sh b/apps/mldbwebtest/installextensions.sh similarity index 100% rename from mldbwebtest/installextensions.sh rename to apps/mldbwebtest/installextensions.sh diff --git a/mldbwebtest/ml b/apps/mldbwebtest/ml similarity index 100% rename from mldbwebtest/ml rename to apps/mldbwebtest/ml diff --git a/mldbwebtest/ml.bat b/apps/mldbwebtest/ml.bat similarity index 100% rename from mldbwebtest/ml.bat rename to apps/mldbwebtest/ml.bat diff --git a/mldbwebtest/rest-api/ext/rdb2rdf.xqy b/apps/mldbwebtest/rest-api/ext/rdb2rdf.xqy similarity index 100% rename from mldbwebtest/rest-api/ext/rdb2rdf.xqy rename to apps/mldbwebtest/rest-api/ext/rdb2rdf.xqy diff --git a/mldbwebtest/rest-api/ext/version.xqy b/apps/mldbwebtest/rest-api/ext/version.xqy similarity index 100% rename from mldbwebtest/rest-api/ext/version.xqy rename to apps/mldbwebtest/rest-api/ext/version.xqy diff --git a/mldbwebtest/rest-api/transforms/xmltohtml.xsl b/apps/mldbwebtest/rest-api/transforms/xmltohtml.xsl similarity index 100% rename from mldbwebtest/rest-api/transforms/xmltohtml.xsl rename to apps/mldbwebtest/rest-api/transforms/xmltohtml.xsl diff --git a/mldbwebtest/src/app/config/config.xqy b/apps/mldbwebtest/src/app/config/config.xqy similarity index 100% rename from mldbwebtest/src/app/config/config.xqy rename to apps/mldbwebtest/src/app/config/config.xqy diff --git a/mldbwebtest/src/app/controllers/appbuilder.xqy b/apps/mldbwebtest/src/app/controllers/appbuilder.xqy similarity index 100% rename from mldbwebtest/src/app/controllers/appbuilder.xqy rename to apps/mldbwebtest/src/app/controllers/appbuilder.xqy diff --git a/mldbwebtest/src/app/controllers/mljstest.xqy b/apps/mldbwebtest/src/app/controllers/mljstest.xqy similarity index 100% rename from mldbwebtest/src/app/controllers/mljstest.xqy rename to apps/mldbwebtest/src/app/controllers/mljstest.xqy diff --git a/mldbwebtest/src/app/models/lib-thesaurus.xqy b/apps/mldbwebtest/src/app/models/lib-thesaurus.xqy similarity index 100% rename from mldbwebtest/src/app/models/lib-thesaurus.xqy rename to apps/mldbwebtest/src/app/models/lib-thesaurus.xqy diff --git a/mldbwebtest/src/app/models/rdb2rdf-lib.xqy b/apps/mldbwebtest/src/app/models/rdb2rdf-lib.xqy similarity index 100% rename from mldbwebtest/src/app/models/rdb2rdf-lib.xqy rename to apps/mldbwebtest/src/app/models/rdb2rdf-lib.xqy diff --git a/mldbwebtest/src/app/models/search-lib.xqy b/apps/mldbwebtest/src/app/models/search-lib.xqy similarity index 100% rename from mldbwebtest/src/app/models/search-lib.xqy rename to apps/mldbwebtest/src/app/models/search-lib.xqy diff --git a/mldbwebtest/src/app/models/sql.xqy b/apps/mldbwebtest/src/app/models/sql.xqy similarity index 100% rename from mldbwebtest/src/app/models/sql.xqy rename to apps/mldbwebtest/src/app/models/sql.xqy diff --git a/mldbwebtest/src/app/views/appbuilder/main.html.xqy b/apps/mldbwebtest/src/app/views/appbuilder/main.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/appbuilder/main.html.xqy rename to apps/mldbwebtest/src/app/views/appbuilder/main.html.xqy diff --git a/mldbwebtest/src/app/views/helpers/facet-lib.xqy b/apps/mldbwebtest/src/app/views/helpers/facet-lib.xqy similarity index 100% rename from mldbwebtest/src/app/views/helpers/facet-lib.xqy rename to apps/mldbwebtest/src/app/views/helpers/facet-lib.xqy diff --git a/mldbwebtest/src/app/views/helpers/form-lib.xqy b/apps/mldbwebtest/src/app/views/helpers/form-lib.xqy similarity index 100% rename from mldbwebtest/src/app/views/helpers/form-lib.xqy rename to apps/mldbwebtest/src/app/views/helpers/form-lib.xqy diff --git a/mldbwebtest/src/app/views/helpers/pager-lib.xqy b/apps/mldbwebtest/src/app/views/helpers/pager-lib.xqy similarity index 100% rename from mldbwebtest/src/app/views/helpers/pager-lib.xqy rename to apps/mldbwebtest/src/app/views/helpers/pager-lib.xqy diff --git a/mldbwebtest/src/app/views/helpers/user-lib.xqy b/apps/mldbwebtest/src/app/views/helpers/user-lib.xqy similarity index 100% rename from mldbwebtest/src/app/views/helpers/user-lib.xqy rename to apps/mldbwebtest/src/app/views/helpers/user-lib.xqy diff --git a/mldbwebtest/src/app/views/layouts/application.html.xqy b/apps/mldbwebtest/src/app/views/layouts/application.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/application.html.xqy rename to apps/mldbwebtest/src/app/views/layouts/application.html.xqy diff --git a/mldbwebtest/src/app/views/layouts/mljs-one-column-test.html.xqy b/apps/mldbwebtest/src/app/views/layouts/mljs-one-column-test.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/mljs-one-column-test.html.xqy rename to apps/mldbwebtest/src/app/views/layouts/mljs-one-column-test.html.xqy diff --git a/mldbwebtest/src/app/views/layouts/mljs-one-column.html.xqy b/apps/mldbwebtest/src/app/views/layouts/mljs-one-column.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/mljs-one-column.html.xqy rename to apps/mldbwebtest/src/app/views/layouts/mljs-one-column.html.xqy diff --git a/mldbwebtest/src/app/views/layouts/soap.xml.xqy b/apps/mldbwebtest/src/app/views/layouts/soap.xml.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/soap.xml.xqy rename to apps/mldbwebtest/src/app/views/layouts/soap.xml.xqy diff --git a/mldbwebtest/src/app/views/layouts/three-column.html.xqy b/apps/mldbwebtest/src/app/views/layouts/three-column.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/three-column.html.xqy rename to apps/mldbwebtest/src/app/views/layouts/three-column.html.xqy diff --git a/mldbwebtest/src/app/views/layouts/two-column.html.xqy b/apps/mldbwebtest/src/app/views/layouts/two-column.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/layouts/two-column.html.xqy rename to apps/mldbwebtest/src/app/views/layouts/two-column.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/address.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/address.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/address.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/address.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/angular.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/angular.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/angular.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/angular.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/charts.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/charts.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/charts.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/charts.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/chartsearch.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/chartsearch.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/chartsearch.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/chartsearch.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/collectionuris.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/collectionuris.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/collectionuris.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/collectionuris.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/dnd.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/dnd.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/dnd.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/dnd.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/docbuilder.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/docbuilder.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/docbuilder.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/docbuilder.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/docview.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/docview.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/docview.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/docview.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/error.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/error.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/error.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/error.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/explorer.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/explorer.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/explorer.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/explorer.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/kratu.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/kratu.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/kratu.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/kratu.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/main.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/main.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/main.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/main.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/movies.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/movies.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/movies.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/movies.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/openlayers.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/openlayers.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/openlayers.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/openlayers.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/rdb2rdf.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/rdb2rdf.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/rdb2rdf.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/rdb2rdf.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/search.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/search.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/search.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/search.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/snippets.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/snippets.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/snippets.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/snippets.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/sparqlbar.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/sparqlbar.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/sparqlbar.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/sparqlbar.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/tagcloud.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/tagcloud.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/tagcloud.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/tagcloud.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/upload.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/upload.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/upload.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/upload.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/workplace.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/workplace.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/workplace.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/workplace.html.xqy diff --git a/mldbwebtest/src/app/views/mljstest/workplaceadmin.html.xqy b/apps/mldbwebtest/src/app/views/mljstest/workplaceadmin.html.xqy similarity index 100% rename from mldbwebtest/src/app/views/mljstest/workplaceadmin.html.xqy rename to apps/mldbwebtest/src/app/views/mljstest/workplaceadmin.html.xqy diff --git a/mldbwebtest/src/public/css/960/960.css b/apps/mldbwebtest/src/public/css/960/960.css similarity index 100% rename from mldbwebtest/src/public/css/960/960.css rename to apps/mldbwebtest/src/public/css/960/960.css diff --git a/mldbwebtest/src/public/css/960/960_12_col.css b/apps/mldbwebtest/src/public/css/960/960_12_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_12_col.css rename to apps/mldbwebtest/src/public/css/960/960_12_col.css diff --git a/mldbwebtest/src/public/css/960/960_12_col_rtl.css b/apps/mldbwebtest/src/public/css/960/960_12_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_12_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/960_12_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/960_16_col.css b/apps/mldbwebtest/src/public/css/960/960_16_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_16_col.css rename to apps/mldbwebtest/src/public/css/960/960_16_col.css diff --git a/mldbwebtest/src/public/css/960/960_16_col_rtl.css b/apps/mldbwebtest/src/public/css/960/960_16_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_16_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/960_16_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/960_24_col.css b/apps/mldbwebtest/src/public/css/960/960_24_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_24_col.css rename to apps/mldbwebtest/src/public/css/960/960_24_col.css diff --git a/mldbwebtest/src/public/css/960/960_24_col_rtl.css b/apps/mldbwebtest/src/public/css/960/960_24_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_24_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/960_24_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/960_rtl.css b/apps/mldbwebtest/src/public/css/960/960_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/960_rtl.css rename to apps/mldbwebtest/src/public/css/960/960_rtl.css diff --git a/mldbwebtest/src/public/css/960/demo.css b/apps/mldbwebtest/src/public/css/960/demo.css similarity index 100% rename from mldbwebtest/src/public/css/960/demo.css rename to apps/mldbwebtest/src/public/css/960/demo.css diff --git a/mldbwebtest/src/public/css/960/min/960.css b/apps/mldbwebtest/src/public/css/960/min/960.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960.css rename to apps/mldbwebtest/src/public/css/960/min/960.css diff --git a/mldbwebtest/src/public/css/960/min/960_12_col.css b/apps/mldbwebtest/src/public/css/960/min/960_12_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_12_col.css rename to apps/mldbwebtest/src/public/css/960/min/960_12_col.css diff --git a/mldbwebtest/src/public/css/960/min/960_12_col_rtl.css b/apps/mldbwebtest/src/public/css/960/min/960_12_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_12_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/960_12_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/min/960_16_col.css b/apps/mldbwebtest/src/public/css/960/min/960_16_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_16_col.css rename to apps/mldbwebtest/src/public/css/960/min/960_16_col.css diff --git a/mldbwebtest/src/public/css/960/min/960_16_col_rtl.css b/apps/mldbwebtest/src/public/css/960/min/960_16_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_16_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/960_16_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/min/960_24_col.css b/apps/mldbwebtest/src/public/css/960/min/960_24_col.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_24_col.css rename to apps/mldbwebtest/src/public/css/960/min/960_24_col.css diff --git a/mldbwebtest/src/public/css/960/min/960_24_col_rtl.css b/apps/mldbwebtest/src/public/css/960/min/960_24_col_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_24_col_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/960_24_col_rtl.css diff --git a/mldbwebtest/src/public/css/960/min/960_rtl.css b/apps/mldbwebtest/src/public/css/960/min/960_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/960_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/960_rtl.css diff --git a/mldbwebtest/src/public/css/960/min/reset.css b/apps/mldbwebtest/src/public/css/960/min/reset.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/reset.css rename to apps/mldbwebtest/src/public/css/960/min/reset.css diff --git a/mldbwebtest/src/public/css/960/min/reset_rtl.css b/apps/mldbwebtest/src/public/css/960/min/reset_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/reset_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/reset_rtl.css diff --git a/mldbwebtest/src/public/css/960/min/text.css b/apps/mldbwebtest/src/public/css/960/min/text.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/text.css rename to apps/mldbwebtest/src/public/css/960/min/text.css diff --git a/mldbwebtest/src/public/css/960/min/text_rtl.css b/apps/mldbwebtest/src/public/css/960/min/text_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/min/text_rtl.css rename to apps/mldbwebtest/src/public/css/960/min/text_rtl.css diff --git a/mldbwebtest/src/public/css/960/reset.css b/apps/mldbwebtest/src/public/css/960/reset.css similarity index 100% rename from mldbwebtest/src/public/css/960/reset.css rename to apps/mldbwebtest/src/public/css/960/reset.css diff --git a/mldbwebtest/src/public/css/960/reset_rtl.css b/apps/mldbwebtest/src/public/css/960/reset_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/reset_rtl.css rename to apps/mldbwebtest/src/public/css/960/reset_rtl.css diff --git a/mldbwebtest/src/public/css/960/text.css b/apps/mldbwebtest/src/public/css/960/text.css similarity index 100% rename from mldbwebtest/src/public/css/960/text.css rename to apps/mldbwebtest/src/public/css/960/text.css diff --git a/mldbwebtest/src/public/css/960/text_rtl.css b/apps/mldbwebtest/src/public/css/960/text_rtl.css similarity index 100% rename from mldbwebtest/src/public/css/960/text_rtl.css rename to apps/mldbwebtest/src/public/css/960/text_rtl.css diff --git a/mldbwebtest/src/public/css/app.less b/apps/mldbwebtest/src/public/css/app.less similarity index 100% rename from mldbwebtest/src/public/css/app.less rename to apps/mldbwebtest/src/public/css/app.less diff --git a/mldbwebtest/src/public/css/bootstrap-roxy.css b/apps/mldbwebtest/src/public/css/bootstrap-roxy.css similarity index 100% rename from mldbwebtest/src/public/css/bootstrap-roxy.css rename to apps/mldbwebtest/src/public/css/bootstrap-roxy.css diff --git a/mldbwebtest/src/public/css/error.css b/apps/mldbwebtest/src/public/css/error.css similarity index 100% rename from mldbwebtest/src/public/css/error.css rename to apps/mldbwebtest/src/public/css/error.css diff --git a/mldbwebtest/src/public/css/examples.css b/apps/mldbwebtest/src/public/css/examples.css similarity index 100% rename from mldbwebtest/src/public/css/examples.css rename to apps/mldbwebtest/src/public/css/examples.css diff --git a/mldbwebtest/src/public/css/kratu.css b/apps/mldbwebtest/src/public/css/kratu.css similarity index 100% rename from mldbwebtest/src/public/css/kratu.css rename to apps/mldbwebtest/src/public/css/kratu.css diff --git a/mldbwebtest/src/public/css/one-column.less b/apps/mldbwebtest/src/public/css/one-column.less similarity index 100% rename from mldbwebtest/src/public/css/one-column.less rename to apps/mldbwebtest/src/public/css/one-column.less diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_222222_256x240.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_222222_256x240.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_222222_256x240.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_222222_256x240.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_228ef1_256x240.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_228ef1_256x240.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_228ef1_256x240.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_228ef1_256x240.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffffff_256x240.png b/apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffffff_256x240.png similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffffff_256x240.png rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/images/ui-icons_ffffff_256x240.png diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery-ui.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery-ui.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery-ui.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery-ui.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.accordion.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.accordion.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.accordion.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.accordion.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.all.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.all.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.all.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.all.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.autocomplete.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.autocomplete.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.autocomplete.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.autocomplete.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.base.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.base.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.base.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.base.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.button.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.button.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.button.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.button.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.core.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.core.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.core.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.core.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.datepicker.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.datepicker.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.datepicker.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.datepicker.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.dialog.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.dialog.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.dialog.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.dialog.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.progressbar.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.progressbar.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.progressbar.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.progressbar.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.resizable.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.resizable.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.resizable.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.resizable.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.selectable.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.selectable.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.selectable.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.selectable.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.slider.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.slider.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.slider.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.slider.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.tabs.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.tabs.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.tabs.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.tabs.css diff --git a/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.theme.css b/apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.theme.css similarity index 100% rename from mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.theme.css rename to apps/mldbwebtest/src/public/css/themes/ui-lightness/jquery.ui.theme.css diff --git a/mldbwebtest/src/public/css/three-column.less b/apps/mldbwebtest/src/public/css/three-column.less similarity index 100% rename from mldbwebtest/src/public/css/three-column.less rename to apps/mldbwebtest/src/public/css/three-column.less diff --git a/mldbwebtest/src/public/css/two-column.less b/apps/mldbwebtest/src/public/css/two-column.less similarity index 100% rename from mldbwebtest/src/public/css/two-column.less rename to apps/mldbwebtest/src/public/css/two-column.less diff --git a/mldbwebtest/src/public/css/vars.less b/apps/mldbwebtest/src/public/css/vars.less similarity index 100% rename from mldbwebtest/src/public/css/vars.less rename to apps/mldbwebtest/src/public/css/vars.less diff --git a/mldbwebtest/src/public/favicon.ico b/apps/mldbwebtest/src/public/favicon.ico similarity index 100% rename from mldbwebtest/src/public/favicon.ico rename to apps/mldbwebtest/src/public/favicon.ico diff --git a/mldbwebtest/src/public/images/3px_drop_shadow_right.png b/apps/mldbwebtest/src/public/images/3px_drop_shadow_right.png similarity index 100% rename from mldbwebtest/src/public/images/3px_drop_shadow_right.png rename to apps/mldbwebtest/src/public/images/3px_drop_shadow_right.png diff --git a/mldbwebtest/src/public/images/facet_close.png b/apps/mldbwebtest/src/public/images/facet_close.png similarity index 100% rename from mldbwebtest/src/public/images/facet_close.png rename to apps/mldbwebtest/src/public/images/facet_close.png diff --git a/mldbwebtest/src/public/images/facet_green.png b/apps/mldbwebtest/src/public/images/facet_green.png similarity index 100% rename from mldbwebtest/src/public/images/facet_green.png rename to apps/mldbwebtest/src/public/images/facet_green.png diff --git a/mldbwebtest/src/public/images/ml-logo.gif b/apps/mldbwebtest/src/public/images/ml-logo.gif similarity index 100% rename from mldbwebtest/src/public/images/ml-logo.gif rename to apps/mldbwebtest/src/public/images/ml-logo.gif diff --git a/mldbwebtest/src/public/images/mljs/add-large.png b/apps/mldbwebtest/src/public/images/mljs/add-large.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/add-large.png rename to apps/mldbwebtest/src/public/images/mljs/add-large.png diff --git a/mldbwebtest/src/public/images/mljs/add-medium.png b/apps/mldbwebtest/src/public/images/mljs/add-medium.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/add-medium.png rename to apps/mldbwebtest/src/public/images/mljs/add-medium.png diff --git a/mldbwebtest/src/public/images/mljs/add-small.png b/apps/mldbwebtest/src/public/images/mljs/add-small.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/add-small.png rename to apps/mldbwebtest/src/public/images/mljs/add-small.png diff --git a/mldbwebtest/src/public/images/mljs/add-vsmall.png b/apps/mldbwebtest/src/public/images/mljs/add-vsmall.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/add-vsmall.png rename to apps/mldbwebtest/src/public/images/mljs/add-vsmall.png diff --git a/mldbwebtest/src/public/images/mljs/delete-small.png b/apps/mldbwebtest/src/public/images/mljs/delete-small.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/delete-small.png rename to apps/mldbwebtest/src/public/images/mljs/delete-small.png diff --git a/mldbwebtest/src/public/images/mljs/delete-vsmall.png b/apps/mldbwebtest/src/public/images/mljs/delete-vsmall.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/delete-vsmall.png rename to apps/mldbwebtest/src/public/images/mljs/delete-vsmall.png diff --git a/mldbwebtest/src/public/images/mljs/loading.gif b/apps/mldbwebtest/src/public/images/mljs/loading.gif similarity index 100% rename from mldbwebtest/src/public/images/mljs/loading.gif rename to apps/mldbwebtest/src/public/images/mljs/loading.gif diff --git a/mldbwebtest/src/public/images/mljs/question-mark.png b/apps/mldbwebtest/src/public/images/mljs/question-mark.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/question-mark.png rename to apps/mldbwebtest/src/public/images/mljs/question-mark.png diff --git a/mldbwebtest/src/public/images/mljs/setting-large.png b/apps/mldbwebtest/src/public/images/mljs/setting-large.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/setting-large.png rename to apps/mldbwebtest/src/public/images/mljs/setting-large.png diff --git a/mldbwebtest/src/public/images/mljs/setting-small.png b/apps/mldbwebtest/src/public/images/mljs/setting-small.png similarity index 100% rename from mldbwebtest/src/public/images/mljs/setting-small.png rename to apps/mldbwebtest/src/public/images/mljs/setting-small.png diff --git a/mldbwebtest/src/public/images/mt_icon_search.gif b/apps/mldbwebtest/src/public/images/mt_icon_search.gif similarity index 100% rename from mldbwebtest/src/public/images/mt_icon_search.gif rename to apps/mldbwebtest/src/public/images/mt_icon_search.gif diff --git a/mldbwebtest/src/public/images/toolbar_background_dark_gradient.png b/apps/mldbwebtest/src/public/images/toolbar_background_dark_gradient.png similarity index 100% rename from mldbwebtest/src/public/images/toolbar_background_dark_gradient.png rename to apps/mldbwebtest/src/public/images/toolbar_background_dark_gradient.png diff --git a/mldbwebtest/src/public/index.html b/apps/mldbwebtest/src/public/index.html similarity index 100% rename from mldbwebtest/src/public/index.html rename to apps/mldbwebtest/src/public/index.html diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/.gitignore b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/.gitignore similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/.gitignore rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/.gitignore diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.debug.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.debug.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.debug.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.debug.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.debug.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.debug.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.debug.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.debug.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.light.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/OpenLayers.mobile.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/arrows.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/arrows.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/arrows.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/arrows.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/marker.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/marker.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/marker.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/marker.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-off.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-off.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-off.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-off.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-on.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-on.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-on.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/measuring-stick-on.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-off.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-off.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-off.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-off.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-on.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-on.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-on.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/panning-hand-on.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/slider.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/slider.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/slider.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/slider.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoom-world.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoom-world.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoom-world.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoom-world.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoombar.svg b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoombar.svg similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoombar.svg rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/art/zoombar.svg diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/authors.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/authors.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/authors.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/authors.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/blank.gif b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/blank.gif similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/blank.gif rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/blank.gif diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/cloud-popup-relative.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/cloud-popup-relative.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/cloud-popup-relative.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/cloud-popup-relative.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/drag-rectangle-on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/east-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/east-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/east-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/east-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-blue.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-blue.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-blue.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-blue.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-gold.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-gold.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-gold.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-gold.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-green.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-green.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-green.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker-green.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/marker.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/measuring-stick-on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/north-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/north-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/north-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/north-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/panning-hand-on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/slider.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/slider.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/slider.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/slider.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/south-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/south-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/south-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/south-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/west-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/west-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/west-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/west-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-minus-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-minus-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-minus-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-minus-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-plus-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-plus-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-plus-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-plus-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-world-mini.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-world-mini.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-world-mini.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoom-world-mini.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoombar.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoombar.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoombar.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/img/zoombar.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.html b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.html similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.html rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.html diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebug.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/license.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/license.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/license.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/license.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/readme.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/readme.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/readme.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/readme.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Color.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Color.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Color.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Color.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Corner.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Corner.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Corner.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/Corner.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/license.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/license.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/license.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/Rico/license.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/deprecated.js b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/deprecated.js similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/deprecated.js rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/lib/deprecated.js diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/license.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/license.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/license.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/license.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.12.md b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.12.md similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.12.md rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.12.md diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.13.md b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.13.md similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.13.md rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/notes/2.13.md diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/readme.md b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/readme.md similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/readme.md rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/readme.md diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.tidy.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.tidy.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.tidy.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/google.tidy.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/blank.gif b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/blank.gif similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/blank.gif rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/blank.gif diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/close.gif b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/close.gif similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/close.gif rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/close.gif diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/pan_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/ruler.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/ruler.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/ruler.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/ruler.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css diff --git a/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.tidy.css b/apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.tidy.css similarity index 100% rename from mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.tidy.css rename to apps/mldbwebtest/src/public/js/OpenLayers-2.13.1/theme/default/style.tidy.css diff --git a/mldbwebtest/src/public/js/app.js b/apps/mldbwebtest/src/public/js/app.js similarity index 100% rename from mldbwebtest/src/public/js/app.js rename to apps/mldbwebtest/src/public/js/app.js diff --git a/mldbwebtest/src/public/js/dataproviders/csv.js b/apps/mldbwebtest/src/public/js/dataproviders/csv.js similarity index 100% rename from mldbwebtest/src/public/js/dataproviders/csv.js rename to apps/mldbwebtest/src/public/js/dataproviders/csv.js diff --git a/mldbwebtest/src/public/js/dataproviders/json.js b/apps/mldbwebtest/src/public/js/dataproviders/json.js similarity index 100% rename from mldbwebtest/src/public/js/dataproviders/json.js rename to apps/mldbwebtest/src/public/js/dataproviders/json.js diff --git a/mldbwebtest/src/public/js/filedrop.js b/apps/mldbwebtest/src/public/js/filedrop.js similarity index 100% rename from mldbwebtest/src/public/js/filedrop.js rename to apps/mldbwebtest/src/public/js/filedrop.js diff --git a/mldbwebtest/src/public/js/heatmap/heatmap-openlayers.js b/apps/mldbwebtest/src/public/js/heatmap/heatmap-openlayers.js similarity index 100% rename from mldbwebtest/src/public/js/heatmap/heatmap-openlayers.js rename to apps/mldbwebtest/src/public/js/heatmap/heatmap-openlayers.js diff --git a/mldbwebtest/src/public/js/heatmap/heatmap.js b/apps/mldbwebtest/src/public/js/heatmap/heatmap.js similarity index 100% rename from mldbwebtest/src/public/js/heatmap/heatmap.js rename to apps/mldbwebtest/src/public/js/heatmap/heatmap.js diff --git a/mldbwebtest/src/public/js/highcharts.js b/apps/mldbwebtest/src/public/js/highcharts.js similarity index 100% rename from mldbwebtest/src/public/js/highcharts.js rename to apps/mldbwebtest/src/public/js/highcharts.js diff --git a/mldbwebtest/src/public/js/kratu.js b/apps/mldbwebtest/src/public/js/kratu.js similarity index 100% rename from mldbwebtest/src/public/js/kratu.js rename to apps/mldbwebtest/src/public/js/kratu.js diff --git a/mldbwebtest/src/public/js/kratuSignalAdjustments.js b/apps/mldbwebtest/src/public/js/kratuSignalAdjustments.js similarity index 100% rename from mldbwebtest/src/public/js/kratuSignalAdjustments.js rename to apps/mldbwebtest/src/public/js/kratuSignalAdjustments.js diff --git a/mldbwebtest/src/public/js/lib/bootstrap.min.js b/apps/mldbwebtest/src/public/js/lib/bootstrap.min.js similarity index 100% rename from mldbwebtest/src/public/js/lib/bootstrap.min.js rename to apps/mldbwebtest/src/public/js/lib/bootstrap.min.js diff --git a/mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js b/apps/mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js similarity index 100% rename from mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js rename to apps/mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js diff --git a/mldbwebtest/src/public/js/lib/jquery-ui-1.8.18.min.js b/apps/mldbwebtest/src/public/js/lib/jquery-ui-1.8.18.min.js similarity index 100% rename from mldbwebtest/src/public/js/lib/jquery-ui-1.8.18.min.js rename to apps/mldbwebtest/src/public/js/lib/jquery-ui-1.8.18.min.js diff --git a/mldbwebtest/src/public/js/lib/jquery.bootstrap.wizard.js b/apps/mldbwebtest/src/public/js/lib/jquery.bootstrap.wizard.js similarity index 100% rename from mldbwebtest/src/public/js/lib/jquery.bootstrap.wizard.js rename to apps/mldbwebtest/src/public/js/lib/jquery.bootstrap.wizard.js diff --git a/mldbwebtest/src/public/js/lib/less-1.3.0.min.js b/apps/mldbwebtest/src/public/js/lib/less-1.3.0.min.js similarity index 100% rename from mldbwebtest/src/public/js/lib/less-1.3.0.min.js rename to apps/mldbwebtest/src/public/js/lib/less-1.3.0.min.js diff --git a/mldbwebtest/src/public/js/mljs/mljs.js b/apps/mldbwebtest/src/public/js/mljs/mljs.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/mljs.js rename to apps/mldbwebtest/src/public/js/mljs/mljs.js diff --git a/mldbwebtest/src/public/js/mljsarchive/ingest.js b/apps/mldbwebtest/src/public/js/mljsarchive/ingest.js similarity index 100% rename from mldbwebtest/src/public/js/mljsarchive/ingest.js rename to apps/mldbwebtest/src/public/js/mljsarchive/ingest.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-address.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-address.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-address.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-address.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-angular.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-angular.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-angular.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-angular.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-charts.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-charts.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-charts.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-charts.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-chartsearch.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-chartsearch.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-chartsearch.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-chartsearch.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-collectionuris.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-collectionuris.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-collectionuris.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-collectionuris.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-dnd.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-dnd.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-dnd.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-dnd.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-docbuilder.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-docbuilder.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-docbuilder.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-docbuilder.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-docview.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-docview.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-docview.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-docview.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-error.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-error.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-error.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-error.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-explorer.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-explorer.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-explorer.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-explorer.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-kratu.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-kratu.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-kratu.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-kratu.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-main.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-main.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-main.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-main.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-movies.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-movies.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-movies.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-movies.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-openlayers.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-openlayers.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-openlayers.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-openlayers.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-rdb2rdf.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-rdb2rdf.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-rdb2rdf.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-rdb2rdf.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-search.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-search.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-search.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-search.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-snippets.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-snippets.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-snippets.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-snippets.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-sparqlbar.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-sparqlbar.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-sparqlbar.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-sparqlbar.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-tagcloud.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-tagcloud.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-tagcloud.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-tagcloud.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-upload.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-upload.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-upload.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-upload.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-workplace.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-workplace.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-workplace.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-workplace.js diff --git a/mldbwebtest/src/public/js/mljstest/page-mljstest-workplaceadmin.js b/apps/mldbwebtest/src/public/js/mljstest/page-mljstest-workplaceadmin.js similarity index 100% rename from mldbwebtest/src/public/js/mljstest/page-mljstest-workplaceadmin.js rename to apps/mldbwebtest/src/public/js/mljstest/page-mljstest-workplaceadmin.js diff --git a/mldbwebtest/src/public/js/three-column.js b/apps/mldbwebtest/src/public/js/three-column.js similarity index 100% rename from mldbwebtest/src/public/js/three-column.js rename to apps/mldbwebtest/src/public/js/three-column.js diff --git a/mldbwebtest/src/public/js/two-column.js b/apps/mldbwebtest/src/public/js/two-column.js similarity index 100% rename from mldbwebtest/src/public/js/two-column.js rename to apps/mldbwebtest/src/public/js/two-column.js diff --git a/mldbwebtest/src/roxy/config/defaults.xqy b/apps/mldbwebtest/src/roxy/config/defaults.xqy similarity index 100% rename from mldbwebtest/src/roxy/config/defaults.xqy rename to apps/mldbwebtest/src/roxy/config/defaults.xqy diff --git a/mldbwebtest/src/roxy/error.xqy b/apps/mldbwebtest/src/roxy/error.xqy similarity index 100% rename from mldbwebtest/src/roxy/error.xqy rename to apps/mldbwebtest/src/roxy/error.xqy diff --git a/mldbwebtest/src/roxy/lib/controller-helper.xqy b/apps/mldbwebtest/src/roxy/lib/controller-helper.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/controller-helper.xqy rename to apps/mldbwebtest/src/roxy/lib/controller-helper.xqy diff --git a/mldbwebtest/src/roxy/lib/cpf-private.xqy b/apps/mldbwebtest/src/roxy/lib/cpf-private.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/cpf-private.xqy rename to apps/mldbwebtest/src/roxy/lib/cpf-private.xqy diff --git a/mldbwebtest/src/roxy/lib/cpf.xqy b/apps/mldbwebtest/src/roxy/lib/cpf.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/cpf.xqy rename to apps/mldbwebtest/src/roxy/lib/cpf.xqy diff --git a/mldbwebtest/src/roxy/lib/date-parser.xqy b/apps/mldbwebtest/src/roxy/lib/date-parser.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/date-parser.xqy rename to apps/mldbwebtest/src/roxy/lib/date-parser.xqy diff --git a/mldbwebtest/src/roxy/lib/json.xqy b/apps/mldbwebtest/src/roxy/lib/json.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/json.xqy rename to apps/mldbwebtest/src/roxy/lib/json.xqy diff --git a/mldbwebtest/src/roxy/lib/reflection.xqy b/apps/mldbwebtest/src/roxy/lib/reflection.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/reflection.xqy rename to apps/mldbwebtest/src/roxy/lib/reflection.xqy diff --git a/mldbwebtest/src/roxy/lib/request.xqy b/apps/mldbwebtest/src/roxy/lib/request.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/request.xqy rename to apps/mldbwebtest/src/roxy/lib/request.xqy diff --git a/mldbwebtest/src/roxy/lib/routing-helper.xqy b/apps/mldbwebtest/src/roxy/lib/routing-helper.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/routing-helper.xqy rename to apps/mldbwebtest/src/roxy/lib/routing-helper.xqy diff --git a/mldbwebtest/src/roxy/lib/soap-lib.xqy b/apps/mldbwebtest/src/roxy/lib/soap-lib.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/soap-lib.xqy rename to apps/mldbwebtest/src/roxy/lib/soap-lib.xqy diff --git a/mldbwebtest/src/roxy/lib/util.xqy b/apps/mldbwebtest/src/roxy/lib/util.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/util.xqy rename to apps/mldbwebtest/src/roxy/lib/util.xqy diff --git a/mldbwebtest/src/roxy/lib/view-helper.xqy b/apps/mldbwebtest/src/roxy/lib/view-helper.xqy similarity index 100% rename from mldbwebtest/src/roxy/lib/view-helper.xqy rename to apps/mldbwebtest/src/roxy/lib/view-helper.xqy diff --git a/mldbwebtest/src/roxy/no-op.xqy b/apps/mldbwebtest/src/roxy/no-op.xqy similarity index 100% rename from mldbwebtest/src/roxy/no-op.xqy rename to apps/mldbwebtest/src/roxy/no-op.xqy diff --git a/mldbwebtest/src/roxy/query-router.xqy b/apps/mldbwebtest/src/roxy/query-router.xqy similarity index 100% rename from mldbwebtest/src/roxy/query-router.xqy rename to apps/mldbwebtest/src/roxy/query-router.xqy diff --git a/mldbwebtest/src/roxy/rewrite.xqy b/apps/mldbwebtest/src/roxy/rewrite.xqy similarity index 100% rename from mldbwebtest/src/roxy/rewrite.xqy rename to apps/mldbwebtest/src/roxy/rewrite.xqy diff --git a/mldbwebtest/src/roxy/router.xqy b/apps/mldbwebtest/src/roxy/router.xqy similarity index 100% rename from mldbwebtest/src/roxy/router.xqy rename to apps/mldbwebtest/src/roxy/router.xqy diff --git a/mldbwebtest/src/roxy/update-router.xqy b/apps/mldbwebtest/src/roxy/update-router.xqy similarity index 100% rename from mldbwebtest/src/roxy/update-router.xqy rename to apps/mldbwebtest/src/roxy/update-router.xqy diff --git a/mldbwebtest/src/test/css/jquery.gritter.css b/apps/mldbwebtest/src/test/css/jquery.gritter.css similarity index 100% rename from mldbwebtest/src/test/css/jquery.gritter.css rename to apps/mldbwebtest/src/test/css/jquery.gritter.css diff --git a/mldbwebtest/src/test/css/tests.css b/apps/mldbwebtest/src/test/css/tests.css similarity index 100% rename from mldbwebtest/src/test/css/tests.css rename to apps/mldbwebtest/src/test/css/tests.css diff --git a/mldbwebtest/src/test/default.xqy b/apps/mldbwebtest/src/test/default.xqy similarity index 100% rename from mldbwebtest/src/test/default.xqy rename to apps/mldbwebtest/src/test/default.xqy diff --git a/mldbwebtest/src/test/img/arrow-down.gif b/apps/mldbwebtest/src/test/img/arrow-down.gif similarity index 100% rename from mldbwebtest/src/test/img/arrow-down.gif rename to apps/mldbwebtest/src/test/img/arrow-down.gif diff --git a/mldbwebtest/src/test/img/arrow-right.gif b/apps/mldbwebtest/src/test/img/arrow-right.gif similarity index 100% rename from mldbwebtest/src/test/img/arrow-right.gif rename to apps/mldbwebtest/src/test/img/arrow-right.gif diff --git a/mldbwebtest/src/test/img/gritter.png b/apps/mldbwebtest/src/test/img/gritter.png similarity index 100% rename from mldbwebtest/src/test/img/gritter.png rename to apps/mldbwebtest/src/test/img/gritter.png diff --git a/mldbwebtest/src/test/img/icon-minus.png b/apps/mldbwebtest/src/test/img/icon-minus.png similarity index 100% rename from mldbwebtest/src/test/img/icon-minus.png rename to apps/mldbwebtest/src/test/img/icon-minus.png diff --git a/mldbwebtest/src/test/img/icon-plus.png b/apps/mldbwebtest/src/test/img/icon-plus.png similarity index 100% rename from mldbwebtest/src/test/img/icon-plus.png rename to apps/mldbwebtest/src/test/img/icon-plus.png diff --git a/mldbwebtest/src/test/img/ie-spacer.gif b/apps/mldbwebtest/src/test/img/ie-spacer.gif similarity index 100% rename from mldbwebtest/src/test/img/ie-spacer.gif rename to apps/mldbwebtest/src/test/img/ie-spacer.gif diff --git a/mldbwebtest/src/test/img/spinner.gif b/apps/mldbwebtest/src/test/img/spinner.gif similarity index 100% rename from mldbwebtest/src/test/img/spinner.gif rename to apps/mldbwebtest/src/test/img/spinner.gif diff --git a/mldbwebtest/src/test/img/warning.png b/apps/mldbwebtest/src/test/img/warning.png similarity index 100% rename from mldbwebtest/src/test/img/warning.png rename to apps/mldbwebtest/src/test/img/warning.png diff --git a/mldbwebtest/src/test/js/jquery-1.6.2.min.js b/apps/mldbwebtest/src/test/js/jquery-1.6.2.min.js similarity index 100% rename from mldbwebtest/src/test/js/jquery-1.6.2.min.js rename to apps/mldbwebtest/src/test/js/jquery-1.6.2.min.js diff --git a/mldbwebtest/src/test/js/jquery.gritter.min.js b/apps/mldbwebtest/src/test/js/jquery.gritter.min.js similarity index 100% rename from mldbwebtest/src/test/js/jquery.gritter.min.js rename to apps/mldbwebtest/src/test/js/jquery.gritter.min.js diff --git a/mldbwebtest/src/test/js/tests.js b/apps/mldbwebtest/src/test/js/tests.js similarity index 100% rename from mldbwebtest/src/test/js/tests.js rename to apps/mldbwebtest/src/test/js/tests.js diff --git a/mldbwebtest/src/test/suites/CPF/_test-pipeline1.xml b/apps/mldbwebtest/src/test/suites/CPF/_test-pipeline1.xml similarity index 100% rename from mldbwebtest/src/test/suites/CPF/_test-pipeline1.xml rename to apps/mldbwebtest/src/test/suites/CPF/_test-pipeline1.xml diff --git a/mldbwebtest/src/test/suites/CPF/cpf.xqy b/apps/mldbwebtest/src/test/suites/CPF/cpf.xqy similarity index 100% rename from mldbwebtest/src/test/suites/CPF/cpf.xqy rename to apps/mldbwebtest/src/test/suites/CPF/cpf.xqy diff --git a/mldbwebtest/src/test/suites/CPF/suite-setup.xqy b/apps/mldbwebtest/src/test/suites/CPF/suite-setup.xqy similarity index 100% rename from mldbwebtest/src/test/suites/CPF/suite-setup.xqy rename to apps/mldbwebtest/src/test/suites/CPF/suite-setup.xqy diff --git a/mldbwebtest/src/test/suites/CPF/suite-teardown.xqy b/apps/mldbwebtest/src/test/suites/CPF/suite-teardown.xqy similarity index 100% rename from mldbwebtest/src/test/suites/CPF/suite-teardown.xqy rename to apps/mldbwebtest/src/test/suites/CPF/suite-teardown.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/routing.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/routing.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/routing.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/routing.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/site-index.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/site-index.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/site-index.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/site-index.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/suite-setup.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/suite-setup.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/suite-setup.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/suite-setup.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/suite-teardown.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/suite-teardown.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/suite-teardown.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/suite-teardown.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout-view.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout-view.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout-view.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout-view.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-layout.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/different-view-xml-only.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-view-xml-only.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/different-view-xml-only.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/different-view-xml-only.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/layout-with-bad-import.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/layout-with-bad-import.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/layout-with-bad-import.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/layout-with-bad-import.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/main.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/main.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/main.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/main.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/main.xml.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/main.xml.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/main.xml.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/main.xml.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-layout.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-layout.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/missing-layout.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-layout.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-map.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-map.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/missing-map.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-map.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-variable.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-variable.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/missing-variable.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/missing-variable.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/no-layout.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/no-layout.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/no-layout.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/no-layout.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/search.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/search.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/search.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/search.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/test-layout.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/test-layout.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/test-layout.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/test-layout.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/tester.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/tester.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/tester.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/tester.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/view-that-returns-the-input.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/view-that-returns-the-input.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/view-that-returns-the-input.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/view-that-returns-the-input.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/test-data/view-with-bad-import.html.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/test-data/view-with-bad-import.html.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/test-data/view-with-bad-import.html.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/test-data/view-with-bad-import.html.xqy diff --git a/mldbwebtest/src/test/suites/Framework Tests/util.xqy b/apps/mldbwebtest/src/test/suites/Framework Tests/util.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Framework Tests/util.xqy rename to apps/mldbwebtest/src/test/suites/Framework Tests/util.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-all-exist.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-all-exist.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-all-exist.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-all-exist.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-at-least-one-equal.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-at-least-one-equal.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-at-least-one-equal.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-at-least-one-equal.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-equal.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-equal.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-equal.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-equal.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-exists.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-exists.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-exists.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-exists.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-false.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-false.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-false.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-false.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-maximum-threshold.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-maximum-threshold.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-maximum-threshold.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-maximum-threshold.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-minimum-threshold.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-minimum-threshold.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-minimum-threshold.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-meets-minimum-threshold.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-equal.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-equal.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-not-equal.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-equal.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-exists.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-exists.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-not-exists.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-not-exists.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-throws-error.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-throws-error.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-throws-error.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-throws-error.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/assert-true.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-true.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/assert-true.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/assert-true.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/fail.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/fail.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/fail.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/fail.xqy diff --git a/mldbwebtest/src/test/suites/Unit Test Tests/success.xqy b/apps/mldbwebtest/src/test/suites/Unit Test Tests/success.xqy similarity index 100% rename from mldbwebtest/src/test/suites/Unit Test Tests/success.xqy rename to apps/mldbwebtest/src/test/suites/Unit Test Tests/success.xqy diff --git a/mldbwebtest/src/test/suites/form-lib/checkbox.xqy b/apps/mldbwebtest/src/test/suites/form-lib/checkbox.xqy similarity index 100% rename from mldbwebtest/src/test/suites/form-lib/checkbox.xqy rename to apps/mldbwebtest/src/test/suites/form-lib/checkbox.xqy diff --git a/mldbwebtest/src/test/suites/form-lib/radio.xqy b/apps/mldbwebtest/src/test/suites/form-lib/radio.xqy similarity index 100% rename from mldbwebtest/src/test/suites/form-lib/radio.xqy rename to apps/mldbwebtest/src/test/suites/form-lib/radio.xqy diff --git a/mldbwebtest/src/test/suites/form-lib/text-area.xqy b/apps/mldbwebtest/src/test/suites/form-lib/text-area.xqy similarity index 100% rename from mldbwebtest/src/test/suites/form-lib/text-area.xqy rename to apps/mldbwebtest/src/test/suites/form-lib/text-area.xqy diff --git a/mldbwebtest/src/test/suites/form-lib/text-input.xqy b/apps/mldbwebtest/src/test/suites/form-lib/text-input.xqy similarity index 100% rename from mldbwebtest/src/test/suites/form-lib/text-input.xqy rename to apps/mldbwebtest/src/test/suites/form-lib/text-input.xqy diff --git a/mldbwebtest/src/test/suites/pager-lib/paginate.xqy b/apps/mldbwebtest/src/test/suites/pager-lib/paginate.xqy similarity index 100% rename from mldbwebtest/src/test/suites/pager-lib/paginate.xqy rename to apps/mldbwebtest/src/test/suites/pager-lib/paginate.xqy diff --git a/mldbwebtest/src/test/suites/pager-lib/pagination.xqy b/apps/mldbwebtest/src/test/suites/pager-lib/pagination.xqy similarity index 100% rename from mldbwebtest/src/test/suites/pager-lib/pagination.xqy rename to apps/mldbwebtest/src/test/suites/pager-lib/pagination.xqy diff --git a/mldbwebtest/src/test/suites/request-lib/lib-request-tests.xqy b/apps/mldbwebtest/src/test/suites/request-lib/lib-request-tests.xqy similarity index 100% rename from mldbwebtest/src/test/suites/request-lib/lib-request-tests.xqy rename to apps/mldbwebtest/src/test/suites/request-lib/lib-request-tests.xqy diff --git a/mldbwebtest/src/test/suites/request-lib/suite-setup.xqy b/apps/mldbwebtest/src/test/suites/request-lib/suite-setup.xqy similarity index 100% rename from mldbwebtest/src/test/suites/request-lib/suite-setup.xqy rename to apps/mldbwebtest/src/test/suites/request-lib/suite-setup.xqy diff --git a/mldbwebtest/src/test/suites/request-lib/suite-teardown.xqy b/apps/mldbwebtest/src/test/suites/request-lib/suite-teardown.xqy similarity index 100% rename from mldbwebtest/src/test/suites/request-lib/suite-teardown.xqy rename to apps/mldbwebtest/src/test/suites/request-lib/suite-teardown.xqy diff --git a/mldbwebtest/src/test/suites/request-lib/test-data/test-request.xqy b/apps/mldbwebtest/src/test/suites/request-lib/test-data/test-request.xqy similarity index 100% rename from mldbwebtest/src/test/suites/request-lib/test-data/test-request.xqy rename to apps/mldbwebtest/src/test/suites/request-lib/test-data/test-request.xqy diff --git a/mldbwebtest/src/test/test-config.xqy b/apps/mldbwebtest/src/test/test-config.xqy similarity index 100% rename from mldbwebtest/src/test/test-config.xqy rename to apps/mldbwebtest/src/test/test-config.xqy diff --git a/mldbwebtest/src/test/test-helper.xqy b/apps/mldbwebtest/src/test/test-helper.xqy similarity index 100% rename from mldbwebtest/src/test/test-helper.xqy rename to apps/mldbwebtest/src/test/test-helper.xqy diff --git a/mldbwebtest/version.txt b/apps/mldbwebtest/version.txt similarity index 100% rename from mldbwebtest/version.txt rename to apps/mldbwebtest/version.txt diff --git a/mljsrest/CHANGELOG.mdown b/apps/mljsrest/CHANGELOG.mdown similarity index 100% rename from mljsrest/CHANGELOG.mdown rename to apps/mljsrest/CHANGELOG.mdown diff --git a/mljsrest/README.mdown b/apps/mljsrest/README.mdown similarity index 100% rename from mljsrest/README.mdown rename to apps/mljsrest/README.mdown diff --git a/mljsrest/deploy/app_specific.rb b/apps/mljsrest/deploy/app_specific.rb similarity index 100% rename from mljsrest/deploy/app_specific.rb rename to apps/mljsrest/deploy/app_specific.rb diff --git a/mljsrest/deploy/build.properties b/apps/mljsrest/deploy/build.properties similarity index 100% rename from mljsrest/deploy/build.properties rename to apps/mljsrest/deploy/build.properties diff --git a/mljsrest/deploy/default.properties b/apps/mljsrest/deploy/default.properties similarity index 100% rename from mljsrest/deploy/default.properties rename to apps/mljsrest/deploy/default.properties diff --git a/mljsrest/deploy/dev.properties b/apps/mljsrest/deploy/dev.properties similarity index 100% rename from mljsrest/deploy/dev.properties rename to apps/mljsrest/deploy/dev.properties diff --git a/mljsrest/deploy/lib/Help.rb b/apps/mljsrest/deploy/lib/Help.rb similarity index 100% rename from mljsrest/deploy/lib/Help.rb rename to apps/mljsrest/deploy/lib/Help.rb diff --git a/mljsrest/deploy/lib/MLClient.rb b/apps/mljsrest/deploy/lib/MLClient.rb similarity index 100% rename from mljsrest/deploy/lib/MLClient.rb rename to apps/mljsrest/deploy/lib/MLClient.rb diff --git a/mljsrest/deploy/lib/RoxyHttp.rb b/apps/mljsrest/deploy/lib/RoxyHttp.rb similarity index 100% rename from mljsrest/deploy/lib/RoxyHttp.rb rename to apps/mljsrest/deploy/lib/RoxyHttp.rb diff --git a/mljsrest/deploy/lib/framework.rb b/apps/mljsrest/deploy/lib/framework.rb similarity index 100% rename from mljsrest/deploy/lib/framework.rb rename to apps/mljsrest/deploy/lib/framework.rb diff --git a/mljsrest/deploy/lib/java/corb.jar b/apps/mljsrest/deploy/lib/java/corb.jar similarity index 100% rename from mljsrest/deploy/lib/java/corb.jar rename to apps/mljsrest/deploy/lib/java/corb.jar diff --git a/mljsrest/deploy/lib/java/marklogic-xcc-5.0.2.jar b/apps/mljsrest/deploy/lib/java/marklogic-xcc-5.0.2.jar similarity index 100% rename from mljsrest/deploy/lib/java/marklogic-xcc-5.0.2.jar rename to apps/mljsrest/deploy/lib/java/marklogic-xcc-5.0.2.jar diff --git a/mljsrest/deploy/lib/java/recordloader.jar b/apps/mljsrest/deploy/lib/java/recordloader.jar similarity index 100% rename from mljsrest/deploy/lib/java/recordloader.jar rename to apps/mljsrest/deploy/lib/java/recordloader.jar diff --git a/mljsrest/deploy/lib/java/xpp3-1.1.4c.jar b/apps/mljsrest/deploy/lib/java/xpp3-1.1.4c.jar similarity index 100% rename from mljsrest/deploy/lib/java/xpp3-1.1.4c.jar rename to apps/mljsrest/deploy/lib/java/xpp3-1.1.4c.jar diff --git a/mljsrest/deploy/lib/java/xqsync.jar b/apps/mljsrest/deploy/lib/java/xqsync.jar similarity index 100% rename from mljsrest/deploy/lib/java/xqsync.jar rename to apps/mljsrest/deploy/lib/java/xqsync.jar diff --git a/mljsrest/deploy/lib/java/xstream-1.4.2.jar b/apps/mljsrest/deploy/lib/java/xstream-1.4.2.jar similarity index 100% rename from mljsrest/deploy/lib/java/xstream-1.4.2.jar rename to apps/mljsrest/deploy/lib/java/xstream-1.4.2.jar diff --git a/mljsrest/deploy/lib/json.rb b/apps/mljsrest/deploy/lib/json.rb similarity index 100% rename from mljsrest/deploy/lib/json.rb rename to apps/mljsrest/deploy/lib/json.rb diff --git a/mljsrest/deploy/lib/json/Array.xpm b/apps/mljsrest/deploy/lib/json/Array.xpm similarity index 100% rename from mljsrest/deploy/lib/json/Array.xpm rename to apps/mljsrest/deploy/lib/json/Array.xpm diff --git a/mljsrest/deploy/lib/json/FalseClass.xpm b/apps/mljsrest/deploy/lib/json/FalseClass.xpm similarity index 100% rename from mljsrest/deploy/lib/json/FalseClass.xpm rename to apps/mljsrest/deploy/lib/json/FalseClass.xpm diff --git a/mljsrest/deploy/lib/json/Hash.xpm b/apps/mljsrest/deploy/lib/json/Hash.xpm similarity index 100% rename from mljsrest/deploy/lib/json/Hash.xpm rename to apps/mljsrest/deploy/lib/json/Hash.xpm diff --git a/mljsrest/deploy/lib/json/Key.xpm b/apps/mljsrest/deploy/lib/json/Key.xpm similarity index 100% rename from mljsrest/deploy/lib/json/Key.xpm rename to apps/mljsrest/deploy/lib/json/Key.xpm diff --git a/mljsrest/deploy/lib/json/NilClass.xpm b/apps/mljsrest/deploy/lib/json/NilClass.xpm similarity index 100% rename from mljsrest/deploy/lib/json/NilClass.xpm rename to apps/mljsrest/deploy/lib/json/NilClass.xpm diff --git a/mljsrest/deploy/lib/json/Numeric.xpm b/apps/mljsrest/deploy/lib/json/Numeric.xpm similarity index 100% rename from mljsrest/deploy/lib/json/Numeric.xpm rename to apps/mljsrest/deploy/lib/json/Numeric.xpm diff --git a/mljsrest/deploy/lib/json/String.xpm b/apps/mljsrest/deploy/lib/json/String.xpm similarity index 100% rename from mljsrest/deploy/lib/json/String.xpm rename to apps/mljsrest/deploy/lib/json/String.xpm diff --git a/mljsrest/deploy/lib/json/TrueClass.xpm b/apps/mljsrest/deploy/lib/json/TrueClass.xpm similarity index 100% rename from mljsrest/deploy/lib/json/TrueClass.xpm rename to apps/mljsrest/deploy/lib/json/TrueClass.xpm diff --git a/mljsrest/deploy/lib/json/add/core.rb b/apps/mljsrest/deploy/lib/json/add/core.rb similarity index 100% rename from mljsrest/deploy/lib/json/add/core.rb rename to apps/mljsrest/deploy/lib/json/add/core.rb diff --git a/mljsrest/deploy/lib/json/add/rails.rb b/apps/mljsrest/deploy/lib/json/add/rails.rb similarity index 100% rename from mljsrest/deploy/lib/json/add/rails.rb rename to apps/mljsrest/deploy/lib/json/add/rails.rb diff --git a/mljsrest/deploy/lib/json/common.rb b/apps/mljsrest/deploy/lib/json/common.rb similarity index 100% rename from mljsrest/deploy/lib/json/common.rb rename to apps/mljsrest/deploy/lib/json/common.rb diff --git a/mljsrest/deploy/lib/json/editor.rb b/apps/mljsrest/deploy/lib/json/editor.rb similarity index 100% rename from mljsrest/deploy/lib/json/editor.rb rename to apps/mljsrest/deploy/lib/json/editor.rb diff --git a/mljsrest/deploy/lib/json/ext.rb b/apps/mljsrest/deploy/lib/json/ext.rb similarity index 100% rename from mljsrest/deploy/lib/json/ext.rb rename to apps/mljsrest/deploy/lib/json/ext.rb diff --git a/mljsrest/deploy/lib/json/json.xpm b/apps/mljsrest/deploy/lib/json/json.xpm similarity index 100% rename from mljsrest/deploy/lib/json/json.xpm rename to apps/mljsrest/deploy/lib/json/json.xpm diff --git a/mljsrest/deploy/lib/json/pure.rb b/apps/mljsrest/deploy/lib/json/pure.rb similarity index 100% rename from mljsrest/deploy/lib/json/pure.rb rename to apps/mljsrest/deploy/lib/json/pure.rb diff --git a/mljsrest/deploy/lib/json/pure/generator.rb b/apps/mljsrest/deploy/lib/json/pure/generator.rb similarity index 100% rename from mljsrest/deploy/lib/json/pure/generator.rb rename to apps/mljsrest/deploy/lib/json/pure/generator.rb diff --git a/mljsrest/deploy/lib/json/pure/parser.rb b/apps/mljsrest/deploy/lib/json/pure/parser.rb similarity index 100% rename from mljsrest/deploy/lib/json/pure/parser.rb rename to apps/mljsrest/deploy/lib/json/pure/parser.rb diff --git a/mljsrest/deploy/lib/json/version.rb b/apps/mljsrest/deploy/lib/json/version.rb similarity index 100% rename from mljsrest/deploy/lib/json/version.rb rename to apps/mljsrest/deploy/lib/json/version.rb diff --git a/mljsrest/deploy/lib/ml.rb b/apps/mljsrest/deploy/lib/ml.rb similarity index 100% rename from mljsrest/deploy/lib/ml.rb rename to apps/mljsrest/deploy/lib/ml.rb diff --git a/mljsrest/deploy/lib/ml_rest.rb b/apps/mljsrest/deploy/lib/ml_rest.rb similarity index 100% rename from mljsrest/deploy/lib/ml_rest.rb rename to apps/mljsrest/deploy/lib/ml_rest.rb diff --git a/mljsrest/deploy/lib/scaffold.rb b/apps/mljsrest/deploy/lib/scaffold.rb similarity index 100% rename from mljsrest/deploy/lib/scaffold.rb rename to apps/mljsrest/deploy/lib/scaffold.rb diff --git a/mljsrest/deploy/lib/server_config.rb b/apps/mljsrest/deploy/lib/server_config.rb similarity index 100% rename from mljsrest/deploy/lib/server_config.rb rename to apps/mljsrest/deploy/lib/server_config.rb diff --git a/mljsrest/deploy/lib/templates/controller-function.xqy b/apps/mljsrest/deploy/lib/templates/controller-function.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/controller-function.xqy rename to apps/mljsrest/deploy/lib/templates/controller-function.xqy diff --git a/mljsrest/deploy/lib/templates/controller.xqy b/apps/mljsrest/deploy/lib/templates/controller.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/controller.xqy rename to apps/mljsrest/deploy/lib/templates/controller.xqy diff --git a/mljsrest/deploy/lib/templates/layout.html.xqy b/apps/mljsrest/deploy/lib/templates/layout.html.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/layout.html.xqy rename to apps/mljsrest/deploy/lib/templates/layout.html.xqy diff --git a/mljsrest/deploy/lib/templates/layout.xqy b/apps/mljsrest/deploy/lib/templates/layout.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/layout.xqy rename to apps/mljsrest/deploy/lib/templates/layout.xqy diff --git a/mljsrest/deploy/lib/templates/model-function.xqy b/apps/mljsrest/deploy/lib/templates/model-function.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/model-function.xqy rename to apps/mljsrest/deploy/lib/templates/model-function.xqy diff --git a/mljsrest/deploy/lib/templates/model.xqy b/apps/mljsrest/deploy/lib/templates/model.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/model.xqy rename to apps/mljsrest/deploy/lib/templates/model.xqy diff --git a/mljsrest/deploy/lib/templates/test.xqy b/apps/mljsrest/deploy/lib/templates/test.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/test.xqy rename to apps/mljsrest/deploy/lib/templates/test.xqy diff --git a/mljsrest/deploy/lib/templates/view.html.xqy b/apps/mljsrest/deploy/lib/templates/view.html.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/view.html.xqy rename to apps/mljsrest/deploy/lib/templates/view.html.xqy diff --git a/mljsrest/deploy/lib/templates/view.json.xqy b/apps/mljsrest/deploy/lib/templates/view.json.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/view.json.xqy rename to apps/mljsrest/deploy/lib/templates/view.json.xqy diff --git a/mljsrest/deploy/lib/templates/view.xml.xqy b/apps/mljsrest/deploy/lib/templates/view.xml.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/view.xml.xqy rename to apps/mljsrest/deploy/lib/templates/view.xml.xqy diff --git a/mljsrest/deploy/lib/templates/view.xqy b/apps/mljsrest/deploy/lib/templates/view.xqy similarity index 100% rename from mljsrest/deploy/lib/templates/view.xqy rename to apps/mljsrest/deploy/lib/templates/view.xqy diff --git a/mljsrest/deploy/lib/upgrader.rb b/apps/mljsrest/deploy/lib/upgrader.rb similarity index 100% rename from mljsrest/deploy/lib/upgrader.rb rename to apps/mljsrest/deploy/lib/upgrader.rb diff --git a/mljsrest/deploy/lib/util.rb b/apps/mljsrest/deploy/lib/util.rb similarity index 100% rename from mljsrest/deploy/lib/util.rb rename to apps/mljsrest/deploy/lib/util.rb diff --git a/mljsrest/deploy/lib/xcc.rb b/apps/mljsrest/deploy/lib/xcc.rb similarity index 100% rename from mljsrest/deploy/lib/xcc.rb rename to apps/mljsrest/deploy/lib/xcc.rb diff --git a/mljsrest/deploy/lib/xquery/cpf.xqy b/apps/mljsrest/deploy/lib/xquery/cpf.xqy similarity index 100% rename from mljsrest/deploy/lib/xquery/cpf.xqy rename to apps/mljsrest/deploy/lib/xquery/cpf.xqy diff --git a/mljsrest/deploy/lib/xquery/setup.xqy b/apps/mljsrest/deploy/lib/xquery/setup.xqy similarity index 100% rename from mljsrest/deploy/lib/xquery/setup.xqy rename to apps/mljsrest/deploy/lib/xquery/setup.xqy diff --git a/mljsrest/deploy/ml-config.xml b/apps/mljsrest/deploy/ml-config.xml similarity index 100% rename from mljsrest/deploy/ml-config.xml rename to apps/mljsrest/deploy/ml-config.xml diff --git a/mljsrest/deploy/sample/all.sample.xml b/apps/mljsrest/deploy/sample/all.sample.xml similarity index 100% rename from mljsrest/deploy/sample/all.sample.xml rename to apps/mljsrest/deploy/sample/all.sample.xml diff --git a/mljsrest/deploy/sample/build.sample.properties b/apps/mljsrest/deploy/sample/build.sample.properties similarity index 100% rename from mljsrest/deploy/sample/build.sample.properties rename to apps/mljsrest/deploy/sample/build.sample.properties diff --git a/mljsrest/deploy/sample/ml-config.sample.xml b/apps/mljsrest/deploy/sample/ml-config.sample.xml similarity index 100% rename from mljsrest/deploy/sample/ml-config.sample.xml rename to apps/mljsrest/deploy/sample/ml-config.sample.xml diff --git a/mljsrest/deploy/sample/pipeline-config.sample.xml b/apps/mljsrest/deploy/sample/pipeline-config.sample.xml similarity index 100% rename from mljsrest/deploy/sample/pipeline-config.sample.xml rename to apps/mljsrest/deploy/sample/pipeline-config.sample.xml diff --git a/mljsrest/deploy/sample/properties.sample.xml b/apps/mljsrest/deploy/sample/properties.sample.xml similarity index 100% rename from mljsrest/deploy/sample/properties.sample.xml rename to apps/mljsrest/deploy/sample/properties.sample.xml diff --git a/mljsrest/deploy/sample/rest-ext.sample.xqy b/apps/mljsrest/deploy/sample/rest-ext.sample.xqy similarity index 100% rename from mljsrest/deploy/sample/rest-ext.sample.xqy rename to apps/mljsrest/deploy/sample/rest-ext.sample.xqy diff --git a/mljsrest/deploy/sample/rest-transform.sample.xqy b/apps/mljsrest/deploy/sample/rest-transform.sample.xqy similarity index 100% rename from mljsrest/deploy/sample/rest-transform.sample.xqy rename to apps/mljsrest/deploy/sample/rest-transform.sample.xqy diff --git a/mljsrest/deploy/sample/rest-transform.sample.xslt b/apps/mljsrest/deploy/sample/rest-transform.sample.xslt similarity index 100% rename from mljsrest/deploy/sample/rest-transform.sample.xslt rename to apps/mljsrest/deploy/sample/rest-transform.sample.xslt diff --git a/mljsrest/deploy/test/data/ml4-config.xml b/apps/mljsrest/deploy/test/data/ml4-config.xml similarity index 100% rename from mljsrest/deploy/test/data/ml4-config.xml rename to apps/mljsrest/deploy/test/data/ml4-config.xml diff --git a/mljsrest/deploy/test/data/ml4-properties/build.properties b/apps/mljsrest/deploy/test/data/ml4-properties/build.properties similarity index 100% rename from mljsrest/deploy/test/data/ml4-properties/build.properties rename to apps/mljsrest/deploy/test/data/ml4-properties/build.properties diff --git a/mljsrest/deploy/test/data/ml4-properties/default.properties b/apps/mljsrest/deploy/test/data/ml4-properties/default.properties similarity index 100% rename from mljsrest/deploy/test/data/ml4-properties/default.properties rename to apps/mljsrest/deploy/test/data/ml4-properties/default.properties diff --git a/mljsrest/deploy/test/data/ml5-config.xml b/apps/mljsrest/deploy/test/data/ml5-config.xml similarity index 100% rename from mljsrest/deploy/test/data/ml5-config.xml rename to apps/mljsrest/deploy/test/data/ml5-config.xml diff --git a/mljsrest/deploy/test/data/ml5-properties/build.properties b/apps/mljsrest/deploy/test/data/ml5-properties/build.properties similarity index 100% rename from mljsrest/deploy/test/data/ml5-properties/build.properties rename to apps/mljsrest/deploy/test/data/ml5-properties/build.properties diff --git a/mljsrest/deploy/test/data/ml5-properties/default.properties b/apps/mljsrest/deploy/test/data/ml5-properties/default.properties similarity index 100% rename from mljsrest/deploy/test/data/ml5-properties/default.properties rename to apps/mljsrest/deploy/test/data/ml5-properties/default.properties diff --git a/mljsrest/deploy/test/data/ml6-config.xml b/apps/mljsrest/deploy/test/data/ml6-config.xml similarity index 100% rename from mljsrest/deploy/test/data/ml6-config.xml rename to apps/mljsrest/deploy/test/data/ml6-config.xml diff --git a/mljsrest/deploy/test/data/ml6-properties/build.properties b/apps/mljsrest/deploy/test/data/ml6-properties/build.properties similarity index 100% rename from mljsrest/deploy/test/data/ml6-properties/build.properties rename to apps/mljsrest/deploy/test/data/ml6-properties/build.properties diff --git a/mljsrest/deploy/test/data/ml6-properties/default.properties b/apps/mljsrest/deploy/test/data/ml6-properties/default.properties similarity index 100% rename from mljsrest/deploy/test/data/ml6-properties/default.properties rename to apps/mljsrest/deploy/test/data/ml6-properties/default.properties diff --git a/mljsrest/deploy/test/test_main.rb b/apps/mljsrest/deploy/test/test_main.rb similarity index 100% rename from mljsrest/deploy/test/test_main.rb rename to apps/mljsrest/deploy/test/test_main.rb diff --git a/mljsrest/deploy/test/test_server_config.rb b/apps/mljsrest/deploy/test/test_server_config.rb similarity index 100% rename from mljsrest/deploy/test/test_server_config.rb rename to apps/mljsrest/deploy/test/test_server_config.rb diff --git a/apps/mljsrest/deploy/vanprod3.properties b/apps/mljsrest/deploy/vanprod3.properties new file mode 100644 index 00000000..cbe316db --- /dev/null +++ b/apps/mljsrest/deploy/vanprod3.properties @@ -0,0 +1,9 @@ + +user=afowler +password=aF0wler + +vanprod3-server=van-prod3.demo.marklogic.com + + +app-port=8022 +xcc-port=8023 diff --git a/mljsrest/installextensions.sh b/apps/mljsrest/installextensions.sh similarity index 100% rename from mljsrest/installextensions.sh rename to apps/mljsrest/installextensions.sh diff --git a/mljsrest/license.txt b/apps/mljsrest/license.txt similarity index 100% rename from mljsrest/license.txt rename to apps/mljsrest/license.txt diff --git a/mljsrest/ml b/apps/mljsrest/ml similarity index 100% rename from mljsrest/ml rename to apps/mljsrest/ml diff --git a/mljsrest/ml.bat b/apps/mljsrest/ml.bat similarity index 100% rename from mljsrest/ml.bat rename to apps/mljsrest/ml.bat diff --git a/mljsrest/rest-api/config/options/all.xml b/apps/mljsrest/rest-api/config/options/all.xml similarity index 100% rename from mljsrest/rest-api/config/options/all.xml rename to apps/mljsrest/rest-api/config/options/all.xml diff --git a/mljsrest/rest-api/config/properties.xml b/apps/mljsrest/rest-api/config/properties.xml similarity index 100% rename from mljsrest/rest-api/config/properties.xml rename to apps/mljsrest/rest-api/config/properties.xml diff --git a/mljsrest/rest-api/ext/rdb2rdf.xqy b/apps/mljsrest/rest-api/ext/rdb2rdf.xqy similarity index 100% rename from mljsrest/rest-api/ext/rdb2rdf.xqy rename to apps/mljsrest/rest-api/ext/rdb2rdf.xqy diff --git a/mljsrest/rest-api/ext/version.xqy b/apps/mljsrest/rest-api/ext/version.xqy similarity index 100% rename from mljsrest/rest-api/ext/version.xqy rename to apps/mljsrest/rest-api/ext/version.xqy diff --git a/mljsrest/src/address.html b/apps/mljsrest/src/address.html similarity index 100% rename from mljsrest/src/address.html rename to apps/mljsrest/src/address.html diff --git a/mljsrest/src/angular.html b/apps/mljsrest/src/angular.html similarity index 100% rename from mljsrest/src/angular.html rename to apps/mljsrest/src/angular.html diff --git a/mljsrest/src/app/config/config.xqy b/apps/mljsrest/src/app/config/config.xqy similarity index 100% rename from mljsrest/src/app/config/config.xqy rename to apps/mljsrest/src/app/config/config.xqy diff --git a/mljsrest/src/app/models/lib-thesaurus.xqy b/apps/mljsrest/src/app/models/lib-thesaurus.xqy similarity index 100% rename from mljsrest/src/app/models/lib-thesaurus.xqy rename to apps/mljsrest/src/app/models/lib-thesaurus.xqy diff --git a/mljsrest/src/app/models/rdb2rdf-lib.xqy b/apps/mljsrest/src/app/models/rdb2rdf-lib.xqy similarity index 100% rename from mljsrest/src/app/models/rdb2rdf-lib.xqy rename to apps/mljsrest/src/app/models/rdb2rdf-lib.xqy diff --git a/mljsrest/src/app/models/sql.xqy b/apps/mljsrest/src/app/models/sql.xqy similarity index 100% rename from mljsrest/src/app/models/sql.xqy rename to apps/mljsrest/src/app/models/sql.xqy diff --git a/mljsrest/src/charts.html b/apps/mljsrest/src/charts.html similarity index 100% rename from mljsrest/src/charts.html rename to apps/mljsrest/src/charts.html diff --git a/mljsrest/src/chartsearch.html b/apps/mljsrest/src/chartsearch.html similarity index 100% rename from mljsrest/src/chartsearch.html rename to apps/mljsrest/src/chartsearch.html diff --git a/mljsrest/src/collectionuris.html b/apps/mljsrest/src/collectionuris.html similarity index 100% rename from mljsrest/src/collectionuris.html rename to apps/mljsrest/src/collectionuris.html diff --git a/mljsrest/src/css/960/960.css b/apps/mljsrest/src/css/960/960.css similarity index 100% rename from mljsrest/src/css/960/960.css rename to apps/mljsrest/src/css/960/960.css diff --git a/mljsrest/src/css/960/960_12_col.css b/apps/mljsrest/src/css/960/960_12_col.css similarity index 100% rename from mljsrest/src/css/960/960_12_col.css rename to apps/mljsrest/src/css/960/960_12_col.css diff --git a/mljsrest/src/css/960/960_12_col_rtl.css b/apps/mljsrest/src/css/960/960_12_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/960_12_col_rtl.css rename to apps/mljsrest/src/css/960/960_12_col_rtl.css diff --git a/mljsrest/src/css/960/960_16_col.css b/apps/mljsrest/src/css/960/960_16_col.css similarity index 100% rename from mljsrest/src/css/960/960_16_col.css rename to apps/mljsrest/src/css/960/960_16_col.css diff --git a/mljsrest/src/css/960/960_16_col_rtl.css b/apps/mljsrest/src/css/960/960_16_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/960_16_col_rtl.css rename to apps/mljsrest/src/css/960/960_16_col_rtl.css diff --git a/mljsrest/src/css/960/960_24_col.css b/apps/mljsrest/src/css/960/960_24_col.css similarity index 100% rename from mljsrest/src/css/960/960_24_col.css rename to apps/mljsrest/src/css/960/960_24_col.css diff --git a/mljsrest/src/css/960/960_24_col_rtl.css b/apps/mljsrest/src/css/960/960_24_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/960_24_col_rtl.css rename to apps/mljsrest/src/css/960/960_24_col_rtl.css diff --git a/mljsrest/src/css/960/960_rtl.css b/apps/mljsrest/src/css/960/960_rtl.css similarity index 100% rename from mljsrest/src/css/960/960_rtl.css rename to apps/mljsrest/src/css/960/960_rtl.css diff --git a/mljsrest/src/css/960/demo.css b/apps/mljsrest/src/css/960/demo.css similarity index 100% rename from mljsrest/src/css/960/demo.css rename to apps/mljsrest/src/css/960/demo.css diff --git a/mljsrest/src/css/960/min/960.css b/apps/mljsrest/src/css/960/min/960.css similarity index 100% rename from mljsrest/src/css/960/min/960.css rename to apps/mljsrest/src/css/960/min/960.css diff --git a/mljsrest/src/css/960/min/960_12_col.css b/apps/mljsrest/src/css/960/min/960_12_col.css similarity index 100% rename from mljsrest/src/css/960/min/960_12_col.css rename to apps/mljsrest/src/css/960/min/960_12_col.css diff --git a/mljsrest/src/css/960/min/960_12_col_rtl.css b/apps/mljsrest/src/css/960/min/960_12_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/960_12_col_rtl.css rename to apps/mljsrest/src/css/960/min/960_12_col_rtl.css diff --git a/mljsrest/src/css/960/min/960_16_col.css b/apps/mljsrest/src/css/960/min/960_16_col.css similarity index 100% rename from mljsrest/src/css/960/min/960_16_col.css rename to apps/mljsrest/src/css/960/min/960_16_col.css diff --git a/mljsrest/src/css/960/min/960_16_col_rtl.css b/apps/mljsrest/src/css/960/min/960_16_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/960_16_col_rtl.css rename to apps/mljsrest/src/css/960/min/960_16_col_rtl.css diff --git a/mljsrest/src/css/960/min/960_24_col.css b/apps/mljsrest/src/css/960/min/960_24_col.css similarity index 100% rename from mljsrest/src/css/960/min/960_24_col.css rename to apps/mljsrest/src/css/960/min/960_24_col.css diff --git a/mljsrest/src/css/960/min/960_24_col_rtl.css b/apps/mljsrest/src/css/960/min/960_24_col_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/960_24_col_rtl.css rename to apps/mljsrest/src/css/960/min/960_24_col_rtl.css diff --git a/mljsrest/src/css/960/min/960_rtl.css b/apps/mljsrest/src/css/960/min/960_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/960_rtl.css rename to apps/mljsrest/src/css/960/min/960_rtl.css diff --git a/mljsrest/src/css/960/min/reset.css b/apps/mljsrest/src/css/960/min/reset.css similarity index 100% rename from mljsrest/src/css/960/min/reset.css rename to apps/mljsrest/src/css/960/min/reset.css diff --git a/mljsrest/src/css/960/min/reset_rtl.css b/apps/mljsrest/src/css/960/min/reset_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/reset_rtl.css rename to apps/mljsrest/src/css/960/min/reset_rtl.css diff --git a/mljsrest/src/css/960/min/text.css b/apps/mljsrest/src/css/960/min/text.css similarity index 100% rename from mljsrest/src/css/960/min/text.css rename to apps/mljsrest/src/css/960/min/text.css diff --git a/mljsrest/src/css/960/min/text_rtl.css b/apps/mljsrest/src/css/960/min/text_rtl.css similarity index 100% rename from mljsrest/src/css/960/min/text_rtl.css rename to apps/mljsrest/src/css/960/min/text_rtl.css diff --git a/mljsrest/src/css/960/reset.css b/apps/mljsrest/src/css/960/reset.css similarity index 100% rename from mljsrest/src/css/960/reset.css rename to apps/mljsrest/src/css/960/reset.css diff --git a/mljsrest/src/css/960/reset_rtl.css b/apps/mljsrest/src/css/960/reset_rtl.css similarity index 100% rename from mljsrest/src/css/960/reset_rtl.css rename to apps/mljsrest/src/css/960/reset_rtl.css diff --git a/mljsrest/src/css/960/text.css b/apps/mljsrest/src/css/960/text.css similarity index 100% rename from mljsrest/src/css/960/text.css rename to apps/mljsrest/src/css/960/text.css diff --git a/mljsrest/src/css/960/text_rtl.css b/apps/mljsrest/src/css/960/text_rtl.css similarity index 100% rename from mljsrest/src/css/960/text_rtl.css rename to apps/mljsrest/src/css/960/text_rtl.css diff --git a/mljsrest/src/css/bootstrap-roxy.css b/apps/mljsrest/src/css/bootstrap-roxy.css similarity index 100% rename from mljsrest/src/css/bootstrap-roxy.css rename to apps/mljsrest/src/css/bootstrap-roxy.css diff --git a/mljsrest/src/css/kratu.css b/apps/mljsrest/src/css/kratu.css similarity index 100% rename from mljsrest/src/css/kratu.css rename to apps/mljsrest/src/css/kratu.css diff --git a/mldbwebtest/src/public/css/mljs/modal.css b/apps/mljsrest/src/css/mljs/modal.css similarity index 100% rename from mldbwebtest/src/public/css/mljs/modal.css rename to apps/mljsrest/src/css/mljs/modal.css diff --git a/mldbwebtest/src/public/css/mljs/widget-search.css b/apps/mljsrest/src/css/mljs/widget-search.css similarity index 100% rename from mldbwebtest/src/public/css/mljs/widget-search.css rename to apps/mljsrest/src/css/mljs/widget-search.css diff --git a/mldbwebtest/src/public/css/mljs/widgets.css b/apps/mljsrest/src/css/mljs/widgets.css similarity index 100% rename from mldbwebtest/src/public/css/mljs/widgets.css rename to apps/mljsrest/src/css/mljs/widgets.css diff --git a/mljsrest/src/css/one-column.css b/apps/mljsrest/src/css/one-column.css similarity index 100% rename from mljsrest/src/css/one-column.css rename to apps/mljsrest/src/css/one-column.css diff --git a/mljsrest/src/css/vars.css b/apps/mljsrest/src/css/vars.css similarity index 100% rename from mljsrest/src/css/vars.css rename to apps/mljsrest/src/css/vars.css diff --git a/mljsrest/src/dnd.html b/apps/mljsrest/src/dnd.html similarity index 100% rename from mljsrest/src/dnd.html rename to apps/mljsrest/src/dnd.html diff --git a/mljsrest/src/docbuilder.html b/apps/mljsrest/src/docbuilder.html similarity index 100% rename from mljsrest/src/docbuilder.html rename to apps/mljsrest/src/docbuilder.html diff --git a/mljsrest/src/docview.html b/apps/mljsrest/src/docview.html similarity index 100% rename from mljsrest/src/docview.html rename to apps/mljsrest/src/docview.html diff --git a/mljsrest/src/error.html b/apps/mljsrest/src/error.html similarity index 100% rename from mljsrest/src/error.html rename to apps/mljsrest/src/error.html diff --git a/mljsrest/src/explorer.html b/apps/mljsrest/src/explorer.html similarity index 100% rename from mljsrest/src/explorer.html rename to apps/mljsrest/src/explorer.html diff --git a/mljsrest/src/images/mljs/add-large.png b/apps/mljsrest/src/images/mljs/add-large.png similarity index 100% rename from mljsrest/src/images/mljs/add-large.png rename to apps/mljsrest/src/images/mljs/add-large.png diff --git a/mljsrest/src/images/mljs/add-medium.png b/apps/mljsrest/src/images/mljs/add-medium.png similarity index 100% rename from mljsrest/src/images/mljs/add-medium.png rename to apps/mljsrest/src/images/mljs/add-medium.png diff --git a/mljsrest/src/images/mljs/add-small.png b/apps/mljsrest/src/images/mljs/add-small.png similarity index 100% rename from mljsrest/src/images/mljs/add-small.png rename to apps/mljsrest/src/images/mljs/add-small.png diff --git a/mljsrest/src/images/mljs/add-vsmall.png b/apps/mljsrest/src/images/mljs/add-vsmall.png similarity index 100% rename from mljsrest/src/images/mljs/add-vsmall.png rename to apps/mljsrest/src/images/mljs/add-vsmall.png diff --git a/mljsrest/src/images/mljs/delete-small.png b/apps/mljsrest/src/images/mljs/delete-small.png similarity index 100% rename from mljsrest/src/images/mljs/delete-small.png rename to apps/mljsrest/src/images/mljs/delete-small.png diff --git a/mljsrest/src/images/mljs/delete-vsmall.png b/apps/mljsrest/src/images/mljs/delete-vsmall.png similarity index 100% rename from mljsrest/src/images/mljs/delete-vsmall.png rename to apps/mljsrest/src/images/mljs/delete-vsmall.png diff --git a/mljsrest/src/images/mljs/loading.gif b/apps/mljsrest/src/images/mljs/loading.gif similarity index 100% rename from mljsrest/src/images/mljs/loading.gif rename to apps/mljsrest/src/images/mljs/loading.gif diff --git a/mljsrest/src/images/mljs/question-mark.png b/apps/mljsrest/src/images/mljs/question-mark.png similarity index 100% rename from mljsrest/src/images/mljs/question-mark.png rename to apps/mljsrest/src/images/mljs/question-mark.png diff --git a/mljsrest/src/images/mljs/setting-large.png b/apps/mljsrest/src/images/mljs/setting-large.png similarity index 100% rename from mljsrest/src/images/mljs/setting-large.png rename to apps/mljsrest/src/images/mljs/setting-large.png diff --git a/mljsrest/src/images/mljs/setting-small.png b/apps/mljsrest/src/images/mljs/setting-small.png similarity index 100% rename from mljsrest/src/images/mljs/setting-small.png rename to apps/mljsrest/src/images/mljs/setting-small.png diff --git a/mljsrest/src/index.html b/apps/mljsrest/src/index.html similarity index 100% rename from mljsrest/src/index.html rename to apps/mljsrest/src/index.html diff --git a/mljsrest/src/js/OpenLayers-2.13.1/.gitignore b/apps/mljsrest/src/js/OpenLayers-2.13.1/.gitignore similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/.gitignore rename to apps/mljsrest/src/js/OpenLayers-2.13.1/.gitignore diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.debug.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.debug.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.debug.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.debug.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.debug.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.debug.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.debug.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.debug.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.light.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.debug.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/OpenLayers.mobile.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/arrows.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/arrows.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/arrows.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/arrows.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-maximize.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/layer-switcher-minimize.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/marker.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/marker.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/marker.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/marker.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-off.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-off.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-off.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-off.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-on.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-on.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-on.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/measuring-stick-on.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-off.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-off.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-off.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-off.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-on.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-on.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-on.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/panning-hand-on.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/slider.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/slider.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/slider.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/slider.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/zoom-world.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/zoom-world.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/zoom-world.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/zoom-world.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/art/zoombar.svg b/apps/mljsrest/src/js/OpenLayers-2.13.1/art/zoombar.svg similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/art/zoombar.svg rename to apps/mljsrest/src/js/OpenLayers-2.13.1/art/zoombar.svg diff --git a/mljsrest/src/js/OpenLayers-2.13.1/authors.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/authors.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/authors.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/authors.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/blank.gif b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/blank.gif similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/blank.gif rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/blank.gif diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/cloud-popup-relative.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/cloud-popup-relative.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/cloud-popup-relative.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/cloud-popup-relative.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/drag-rectangle-on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/east-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/east-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/east-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/east-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-maximize.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/layer-switcher-minimize.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/marker-blue.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-blue.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/marker-blue.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-blue.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/marker-gold.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-gold.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/marker-gold.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-gold.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/marker-green.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-green.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/marker-green.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker-green.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/marker.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/marker.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/marker.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/measuring-stick-on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/north-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/north-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/north-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/north-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/panning-hand-on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/slider.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/slider.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/slider.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/slider.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/south-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/south-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/south-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/south-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/west-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/west-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/west-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/west-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-minus-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-minus-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/zoom-minus-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-minus-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-plus-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-plus-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/zoom-plus-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-plus-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-world-mini.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-world-mini.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/zoom-world-mini.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoom-world-mini.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/img/zoombar.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoombar.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/img/zoombar.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/img/zoombar.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/errorIcon.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.html b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.html similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.html rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.html diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebug.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/firebugx.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/infoIcon.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/license.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/license.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/license.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/license.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/readme.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/readme.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/readme.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/readme.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Firebug/warningIcon.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Animation.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Bounds.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Class.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Date.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Element.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/LonLat.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Pixel.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/BaseTypes/Size.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Console.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ArgParser.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Attribution.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Button.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheRead.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/CacheWrite.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DragPan.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/DrawFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/EditingToolbar.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Geolocate.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/GetFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Graticule.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/KeyboardDefaults.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/LayerSwitcher.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Measure.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ModifyFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/MousePosition.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavToolbar.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Navigation.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/NavigationHistory.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/OverviewMap.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Pan.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanPanel.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoom.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PanZoomBar.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Panel.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Permalink.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/PinchZoom.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SLDSelect.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Scale.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ScaleLine.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/SelectFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Snapping.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Split.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TouchNavigation.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/TransformFeature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/UTFGrid.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMSGetFeatureInfo.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/WMTSGetFeatureInfo.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/Zoom.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomBox.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomIn.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomOut.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomPanel.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Control/ZoomToMaxExtent.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/buttonclick.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Events/featureclick.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Feature/Vector.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Comparison.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/FeatureId.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Function.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Logical.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Filter/Spatial.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/ArcXML/Features.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Atom.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CQL.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetDomain/v2_0_2.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/CSWGetRecords/v2_0_2.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Context.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/EncodedPolyline.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Filter/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/Base.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v2.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GML/v3.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GPX.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoJSON.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/GeoRSS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/JSON.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/KML.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OGCExceptionReport.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OSM.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSCommon/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/OWSContext/v0_3_1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/QueryStringFilter.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SLD/v1_0_0_GeoServer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSCapabilities/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetFeatureOfInterest.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/SOSGetObservation.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/Text.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WCSGetCoverage.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFSDescribeFeatureType.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WFST/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WKT.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMC/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_1_1_WMSC.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSCapabilities/v1_3_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSDescribeLayer/v1_1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMSGetFeatureInfo.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WMTSCapabilities/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSCapabilities/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSDescribeProcess.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/WPSExecute.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XLS/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Format/XML/VersionedOGC.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Collection.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Curve.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LineString.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/LinearRing.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiLineString.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPoint.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/MultiPolygon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Point.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Geometry/Polygon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Box.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Click.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Drag.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Feature.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Hover.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Keyboard.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/MouseWheel.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Path.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Pinch.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Point.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/Polygon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Handler/RegularPolygon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Icon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Kinetic.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ar.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/be-tarask.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/bg.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/br.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ca.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/cs-CZ.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/da-DK.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/de.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/el.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en-CA.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/en.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/es.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fi.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fr.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/fur.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gl.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/gsw.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hr.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hsb.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/hu.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ia.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/id.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/io.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/is.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/it.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ja.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/km.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ksh.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/lt.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nb.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nds.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nl.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/nn.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/oc.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pl.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt-BR.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/pt.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ro.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/ru.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sk.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/sv-SE.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/te.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/vi.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-CN.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Lang/zh-TW.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGIS93Rest.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcGISCache.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/ArcIMS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Bing.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Boxes.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/EventPane.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/FixedZoomLevels.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/GeoRSS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Google/v3.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Grid.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/HTTPRequest.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Image.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMap.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/KaMapCache.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapGuide.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/MapServer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Markers.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/OSM.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointGrid.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/PointTrack.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/SphericalMercator.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TMS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Text.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/TileCache.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/UTFGrid.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Vector/RootContainer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WMTS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/WorldWind.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/XYZ.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Layer/Zoomify.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Map.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Marker/Box.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Anchored.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/Framed.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Popup/FramedCloud.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Projection.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/CSW/v2_0_2.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/HTTP.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/SOS/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/Script.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_0_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Protocol/WFS/v1_1_0.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Canvas.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/Elements.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/SVG.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Renderer/VML.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Request/XMLHttpRequest.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Rule.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/SingleFile.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Spherical.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/BBOX.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Cluster.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Filter.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Fixed.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Paging.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Refresh.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Strategy/Save.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Style2.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/StyleMap.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Line.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Point.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Polygon.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Raster.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Symbolizer/Text.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/Image/IFrame.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tile/UTFGrid.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/TileManager.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Tween.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/Util/vendorPrefix.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSClient.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/OpenLayers/WPSProcess.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Color.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Color.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Color.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Color.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Corner.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Corner.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Corner.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/Corner.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/license.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/license.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/license.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/Rico/license.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/lib/deprecated.js b/apps/mljsrest/src/js/OpenLayers-2.13.1/lib/deprecated.js similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/lib/deprecated.js rename to apps/mljsrest/src/js/OpenLayers-2.13.1/lib/deprecated.js diff --git a/mljsrest/src/js/OpenLayers-2.13.1/license.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/license.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/license.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/license.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/APACHE-2.0.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/BSD-LICENSE.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt b/apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt rename to apps/mljsrest/src/js/OpenLayers-2.13.1/licenses/MIT-LICENSE.txt diff --git a/mljsrest/src/js/OpenLayers-2.13.1/notes/2.12.md b/apps/mljsrest/src/js/OpenLayers-2.13.1/notes/2.12.md similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/notes/2.12.md rename to apps/mljsrest/src/js/OpenLayers-2.13.1/notes/2.12.md diff --git a/mljsrest/src/js/OpenLayers-2.13.1/notes/2.13.md b/apps/mljsrest/src/js/OpenLayers-2.13.1/notes/2.13.md similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/notes/2.13.md rename to apps/mljsrest/src/js/OpenLayers-2.13.1/notes/2.13.md diff --git a/mljsrest/src/js/OpenLayers-2.13.1/readme.md b/apps/mljsrest/src/js/OpenLayers-2.13.1/readme.md similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/readme.md rename to apps/mljsrest/src/js/OpenLayers-2.13.1/readme.md diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.tidy.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.tidy.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.tidy.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/google.tidy.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/ie6-style.tidy.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/add_point_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/blank.gif b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/blank.gif similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/blank.gif rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/blank.gif diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/close.gif b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/close.gif similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/close.gif rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/close.gif diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/drag-rectangle-on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_line_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_point_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/draw_polygon_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/editing_tool_bar.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/move_feature_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/navigation_history.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/overview_replacement.gif diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel-NOALPHA.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan-panel.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/pan_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/panning-hand-on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/remove_point_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/ruler.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/ruler.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/ruler.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/ruler.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/save_features_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_next_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_off.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/view_previous_on.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel-NOALPHA.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/img/zoom-panel.png diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.mobile.tidy.css diff --git a/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.tidy.css b/apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.tidy.css similarity index 100% rename from mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.tidy.css rename to apps/mljsrest/src/js/OpenLayers-2.13.1/theme/default/style.tidy.css diff --git a/mljsrest/src/js/canvas.js b/apps/mljsrest/src/js/canvas.js similarity index 100% rename from mljsrest/src/js/canvas.js rename to apps/mljsrest/src/js/canvas.js diff --git a/mljsrest/src/js/dataproviders/csv.js b/apps/mljsrest/src/js/dataproviders/csv.js similarity index 100% rename from mljsrest/src/js/dataproviders/csv.js rename to apps/mljsrest/src/js/dataproviders/csv.js diff --git a/mljsrest/src/js/dataproviders/json.js b/apps/mljsrest/src/js/dataproviders/json.js similarity index 100% rename from mljsrest/src/js/dataproviders/json.js rename to apps/mljsrest/src/js/dataproviders/json.js diff --git a/mljsrest/src/js/heatmap/heatmap-openlayers.js b/apps/mljsrest/src/js/heatmap/heatmap-openlayers.js similarity index 100% rename from mljsrest/src/js/heatmap/heatmap-openlayers.js rename to apps/mljsrest/src/js/heatmap/heatmap-openlayers.js diff --git a/mljsrest/src/js/heatmap/heatmap.js b/apps/mljsrest/src/js/heatmap/heatmap.js similarity index 100% rename from mljsrest/src/js/heatmap/heatmap.js rename to apps/mljsrest/src/js/heatmap/heatmap.js diff --git a/mljsrest/src/js/highcharts.js b/apps/mljsrest/src/js/highcharts.js similarity index 100% rename from mljsrest/src/js/highcharts.js rename to apps/mljsrest/src/js/highcharts.js diff --git a/mljsrest/src/js/kratu.js b/apps/mljsrest/src/js/kratu.js similarity index 100% rename from mljsrest/src/js/kratu.js rename to apps/mljsrest/src/js/kratu.js diff --git a/mljsrest/src/js/kratuSignalAdjustments.js b/apps/mljsrest/src/js/kratuSignalAdjustments.js similarity index 100% rename from mljsrest/src/js/kratuSignalAdjustments.js rename to apps/mljsrest/src/js/kratuSignalAdjustments.js diff --git a/mljsrest/src/js/lib/jquery-1.7.1.min.js b/apps/mljsrest/src/js/lib/jquery-1.7.1.min.js similarity index 100% rename from mljsrest/src/js/lib/jquery-1.7.1.min.js rename to apps/mljsrest/src/js/lib/jquery-1.7.1.min.js diff --git a/mldbwebtest/src/public/js/mljs/mljs-jquery.js b/apps/mljsrest/src/js/mljs/mljs-jquery.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/mljs-jquery.js rename to apps/mljsrest/src/js/mljs/mljs-jquery.js diff --git a/mldbwebtest/src/public/js/mljs/mljs-prototype.js b/apps/mljsrest/src/js/mljs/mljs-prototype.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/mljs-prototype.js rename to apps/mljsrest/src/js/mljs/mljs-prototype.js diff --git a/mldbwebtest/src/public/js/mljs/mljs-xhr.js b/apps/mljsrest/src/js/mljs/mljs-xhr.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/mljs-xhr.js rename to apps/mljsrest/src/js/mljs/mljs-xhr.js diff --git a/mldbwebtest/src/public/js/mljs/mljs-xhr2.js b/apps/mljsrest/src/js/mljs/mljs-xhr2.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/mljs-xhr2.js rename to apps/mljsrest/src/js/mljs/mljs-xhr2.js diff --git a/mljs.js b/apps/mljsrest/src/js/mljs/mljs.js similarity index 100% rename from mljs.js rename to apps/mljsrest/src/js/mljs/mljs.js diff --git a/mldbwebtest/src/public/js/mljs/widget-address.js b/apps/mljsrest/src/js/mljs/widget-address.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-address.js rename to apps/mljsrest/src/js/mljs/widget-address.js diff --git a/mldbwebtest/src/public/js/mljs/widget-collections.js b/apps/mljsrest/src/js/mljs/widget-collections.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-collections.js rename to apps/mljsrest/src/js/mljs/widget-collections.js diff --git a/mldbwebtest/src/public/js/mljs/widget-cooccurence.js b/apps/mljsrest/src/js/mljs/widget-cooccurence.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-cooccurence.js rename to apps/mljsrest/src/js/mljs/widget-cooccurence.js diff --git a/mldbwebtest/src/public/js/mljs/widget-dls.js b/apps/mljsrest/src/js/mljs/widget-dls.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-dls.js rename to apps/mljsrest/src/js/mljs/widget-dls.js diff --git a/mldbwebtest/src/public/js/mljs/widget-docbuilder.js b/apps/mljsrest/src/js/mljs/widget-docbuilder.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-docbuilder.js rename to apps/mljsrest/src/js/mljs/widget-docbuilder.js diff --git a/mldbwebtest/src/public/js/mljs/widget-documents.js b/apps/mljsrest/src/js/mljs/widget-documents.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-documents.js rename to apps/mljsrest/src/js/mljs/widget-documents.js diff --git a/mldbwebtest/src/public/js/mljs/widget-explore.js b/apps/mljsrest/src/js/mljs/widget-explore.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-explore.js rename to apps/mljsrest/src/js/mljs/widget-explore.js diff --git a/mldbwebtest/src/public/js/mljs/widget-highcharts.js b/apps/mljsrest/src/js/mljs/widget-highcharts.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-highcharts.js rename to apps/mljsrest/src/js/mljs/widget-highcharts.js diff --git a/mldbwebtest/src/public/js/mljs/widget-ingest.js b/apps/mljsrest/src/js/mljs/widget-ingest.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-ingest.js rename to apps/mljsrest/src/js/mljs/widget-ingest.js diff --git a/mldbwebtest/src/public/js/mljs/widget-kratu.js b/apps/mljsrest/src/js/mljs/widget-kratu.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-kratu.js rename to apps/mljsrest/src/js/mljs/widget-kratu.js diff --git a/mldbwebtest/src/public/js/mljs/widget-markings.js b/apps/mljsrest/src/js/mljs/widget-markings.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-markings.js rename to apps/mljsrest/src/js/mljs/widget-markings.js diff --git a/mldbwebtest/src/public/js/mljs/widget-openlayers.js b/apps/mljsrest/src/js/mljs/widget-openlayers.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-openlayers.js rename to apps/mljsrest/src/js/mljs/widget-openlayers.js diff --git a/mldbwebtest/src/public/js/mljs/widget-profile.js b/apps/mljsrest/src/js/mljs/widget-profile.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-profile.js rename to apps/mljsrest/src/js/mljs/widget-profile.js diff --git a/mldbwebtest/src/public/js/mljs/widget-rdb2rdf.js b/apps/mljsrest/src/js/mljs/widget-rdb2rdf.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-rdb2rdf.js rename to apps/mljsrest/src/js/mljs/widget-rdb2rdf.js diff --git a/mldbwebtest/src/public/js/mljs/widget-search-oldinit.js b/apps/mljsrest/src/js/mljs/widget-search-oldinit.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-search-oldinit.js rename to apps/mljsrest/src/js/mljs/widget-search-oldinit.js diff --git a/mldbwebtest/src/public/js/mljs/widget-search.js b/apps/mljsrest/src/js/mljs/widget-search.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-search.js rename to apps/mljsrest/src/js/mljs/widget-search.js diff --git a/mldbwebtest/src/public/js/mljs/widget-tagcloud.js b/apps/mljsrest/src/js/mljs/widget-tagcloud.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-tagcloud.js rename to apps/mljsrest/src/js/mljs/widget-tagcloud.js diff --git a/mldbwebtest/src/public/js/mljs/widget-triples.js b/apps/mljsrest/src/js/mljs/widget-triples.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-triples.js rename to apps/mljsrest/src/js/mljs/widget-triples.js diff --git a/mldbwebtest/src/public/js/mljs/widget-workplace.js b/apps/mljsrest/src/js/mljs/widget-workplace.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widget-workplace.js rename to apps/mljsrest/src/js/mljs/widget-workplace.js diff --git a/mldbwebtest/src/public/js/mljs/widgets.js b/apps/mljsrest/src/js/mljs/widgets.js similarity index 100% rename from mldbwebtest/src/public/js/mljs/widgets.js rename to apps/mljsrest/src/js/mljs/widgets.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-address.js b/apps/mljsrest/src/js/mljstest/page-mljstest-address.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-address.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-address.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-angular.js b/apps/mljsrest/src/js/mljstest/page-mljstest-angular.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-angular.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-angular.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-charts.js b/apps/mljsrest/src/js/mljstest/page-mljstest-charts.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-charts.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-charts.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-chartsearch.js b/apps/mljsrest/src/js/mljstest/page-mljstest-chartsearch.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-chartsearch.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-chartsearch.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-collectionuris.js b/apps/mljsrest/src/js/mljstest/page-mljstest-collectionuris.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-collectionuris.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-collectionuris.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-dnd.js b/apps/mljsrest/src/js/mljstest/page-mljstest-dnd.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-dnd.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-dnd.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-docbuilder.js b/apps/mljsrest/src/js/mljstest/page-mljstest-docbuilder.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-docbuilder.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-docbuilder.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-docview.js b/apps/mljsrest/src/js/mljstest/page-mljstest-docview.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-docview.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-docview.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-error.js b/apps/mljsrest/src/js/mljstest/page-mljstest-error.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-error.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-error.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-explorer.js b/apps/mljsrest/src/js/mljstest/page-mljstest-explorer.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-explorer.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-explorer.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-kratu.js b/apps/mljsrest/src/js/mljstest/page-mljstest-kratu.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-kratu.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-kratu.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-main.js b/apps/mljsrest/src/js/mljstest/page-mljstest-main.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-main.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-main.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-movies.js b/apps/mljsrest/src/js/mljstest/page-mljstest-movies.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-movies.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-movies.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-openlayers.js b/apps/mljsrest/src/js/mljstest/page-mljstest-openlayers.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-openlayers.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-openlayers.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-rdb2rdf.js b/apps/mljsrest/src/js/mljstest/page-mljstest-rdb2rdf.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-rdb2rdf.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-rdb2rdf.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-search.js b/apps/mljsrest/src/js/mljstest/page-mljstest-search.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-search.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-search.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-snippets.js b/apps/mljsrest/src/js/mljstest/page-mljstest-snippets.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-snippets.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-snippets.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-sparqlbar.js b/apps/mljsrest/src/js/mljstest/page-mljstest-sparqlbar.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-sparqlbar.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-sparqlbar.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-tagcloud.js b/apps/mljsrest/src/js/mljstest/page-mljstest-tagcloud.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-tagcloud.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-tagcloud.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-upload.js b/apps/mljsrest/src/js/mljstest/page-mljstest-upload.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-upload.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-upload.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-workplace.js b/apps/mljsrest/src/js/mljstest/page-mljstest-workplace.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-workplace.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-workplace.js diff --git a/mljsrest/src/js/mljstest/page-mljstest-workplaceadmin.js b/apps/mljsrest/src/js/mljstest/page-mljstest-workplaceadmin.js similarity index 100% rename from mljsrest/src/js/mljstest/page-mljstest-workplaceadmin.js rename to apps/mljsrest/src/js/mljstest/page-mljstest-workplaceadmin.js diff --git a/mljsrest/src/kratu.html b/apps/mljsrest/src/kratu.html similarity index 100% rename from mljsrest/src/kratu.html rename to apps/mljsrest/src/kratu.html diff --git a/mljsrest/src/movies.html b/apps/mljsrest/src/movies.html similarity index 100% rename from mljsrest/src/movies.html rename to apps/mljsrest/src/movies.html diff --git a/mljsrest/src/openlayers.html b/apps/mljsrest/src/openlayers.html similarity index 100% rename from mljsrest/src/openlayers.html rename to apps/mljsrest/src/openlayers.html diff --git a/mljsrest/src/rdb2rdf.html b/apps/mljsrest/src/rdb2rdf.html similarity index 100% rename from mljsrest/src/rdb2rdf.html rename to apps/mljsrest/src/rdb2rdf.html diff --git a/mljsrest/src/roxy/config/defaults.xqy b/apps/mljsrest/src/roxy/config/defaults.xqy similarity index 100% rename from mljsrest/src/roxy/config/defaults.xqy rename to apps/mljsrest/src/roxy/config/defaults.xqy diff --git a/mljsrest/src/search.html b/apps/mljsrest/src/search.html similarity index 100% rename from mljsrest/src/search.html rename to apps/mljsrest/src/search.html diff --git a/mljsrest/src/snippets.html b/apps/mljsrest/src/snippets.html similarity index 100% rename from mljsrest/src/snippets.html rename to apps/mljsrest/src/snippets.html diff --git a/mljsrest/src/sparqlbar.html b/apps/mljsrest/src/sparqlbar.html similarity index 100% rename from mljsrest/src/sparqlbar.html rename to apps/mljsrest/src/sparqlbar.html diff --git a/mljsrest/src/tagcloud.html b/apps/mljsrest/src/tagcloud.html similarity index 100% rename from mljsrest/src/tagcloud.html rename to apps/mljsrest/src/tagcloud.html diff --git a/mljsrest/src/upload.html b/apps/mljsrest/src/upload.html similarity index 100% rename from mljsrest/src/upload.html rename to apps/mljsrest/src/upload.html diff --git a/mljsrest/src/workplace.html b/apps/mljsrest/src/workplace.html similarity index 100% rename from mljsrest/src/workplace.html rename to apps/mljsrest/src/workplace.html diff --git a/mljsrest/src/workplaceadmin.html b/apps/mljsrest/src/workplaceadmin.html similarity index 100% rename from mljsrest/src/workplaceadmin.html rename to apps/mljsrest/src/workplaceadmin.html diff --git a/mljsrest/u.sh b/apps/mljsrest/u.sh similarity index 56% rename from mljsrest/u.sh rename to apps/mljsrest/u.sh index 8034d550..f6a9c047 100755 --- a/mljsrest/u.sh +++ b/apps/mljsrest/u.sh @@ -1,6 +1,6 @@ #!/bin/sh -cd .. +cd ../.. ./updaterest.sh -cd mljsrest +cd apps/mljsrest exit 0 diff --git a/mljsrest/version.txt b/apps/mljsrest/version.txt similarity index 100% rename from mljsrest/version.txt rename to apps/mljsrest/version.txt diff --git a/bower.json b/bower.json index a91819fa..b664f046 100644 --- a/bower.json +++ b/bower.json @@ -19,6 +19,8 @@ "license": "Apache License, Version 2.0", "ignore": [ "**/.*", + ".*", + "node_modules", "bower_components", "test", diff --git a/build.sh b/build.sh index 1ea4c87c..ce8edb23 100755 --- a/build.sh +++ b/build.sh @@ -2,58 +2,31 @@ rm -rf dist mkdir dist -mkdir dist/mljs -mkdir dist/mljs/nodejs-raw -mkdir dist/mljs/nodejs-raw/lib -mkdir dist/mljs/browser-raw -mkdir dist/mljs/browser-raw/js -mkdir dist/mljs/browser-raw/css -mkdir dist/mljs/browser-raw/images -mkdir dist/mljs/browser-raw/mljstest -mkdir dist/mljs/browser-raw/roxy -mkdir dist/mljs/browser-raw/roxy/app -mkdir dist/mljs/browser-raw/roxy/app/controllers -mkdir dist/mljs/browser-raw/roxy/app/views -mkdir dist/mljs/browser-raw/roxy/app/views/mljstest -mkdir dist/mljs/browser-raw/roxy/app/views/layouts -mkdir dist/mljs/browser-raw/roxy/public -mkdir dist/mljs/browser-raw/roxy/public/css -mkdir dist/mljs/browser-raw/roxy/public/css/mljs -mkdir dist/mljs/browser-raw/roxy/public/js -mkdir dist/mljs/browser-raw/roxy/public/js/mljs -mkdir dist/mljs/browser-raw/roxy/public/js/mljstest -mkdir dist/mljs/nodejs-minified -mkdir dist/mljs/nodejs-minified/lib -mkdir dist/mljs/browser-minified -mkdir dist/mljs/browser-minified/js -mkdir dist/mljs/browser-minified/css -mkdir dist/mljs/browser-minified/images -mkdir dist/mljs/browser-minified/mljstest -mkdir dist/mljs/browser-minified/roxy -mkdir dist/mljs/browser-minified/roxy/app -mkdir dist/mljs/browser-minified/roxy/app/controllers -mkdir dist/mljs/browser-minified/roxy/app/views -mkdir dist/mljs/browser-minified/roxy/app/views/mljstest -mkdir dist/mljs/browser-minified/roxy/app/views/layouts -mkdir dist/mljs/browser-minified/roxy/public -mkdir dist/mljs/browser-minified/roxy/public/css -mkdir dist/mljs/browser-minified/roxy/public/css/mljs -mkdir dist/mljs/browser-minified/roxy/public/js -mkdir dist/mljs/browser-minified/roxy/public/js/mljs -mkdir dist/mljs/browser-minified/roxy/public/js/mljstest +mkdir dist/mljs/node-dev +mkdir dist/mljs/node-prod +mkdir dist/mljs/node-dev/lib +mkdir dist/mljs/node-prod/lib +mkdir dist/mljs/browser-dev +mkdir dist/mljs/browser-dev/js +mkdir dist/mljs/browser-dev/css +mkdir dist/mljs/browser-dev/images +mkdir dist/mljs/browser-prod +mkdir dist/mljs/browser-prod/js +mkdir dist/mljs/browser-prod/css +mkdir dist/mljs/browser-prod/images P=../mljs-pages/apidocs -SRC=./mldbwebtest/src -CS=./mldbwebtest/src/public/css/mljs -S=./mldbwebtest/src/public/js/mljs -SJ=./mldbwebtest/src/public/js -ST=./mldbwebtest/src/public/js/mljstest -L=./lib -D=./dist/mljs/browser-minified +SRC=./src +CS=./src/css +S=./src/js +SA=./apps/mldbwebtest/src +SJ=./apps/mldbwebtest/src/public/js +L=./src/lib +D=./dist/browser-prod DJ=$D/js -N=./dist/mljs/nodejs-raw -NM=./dist/mljs/nodejs-minified -R=./dist/mljs/browser-raw +N=./dist/node-dev +NM=./dist/node-prod +R=./dist/browser-dev RJ=$R/js J=./build-lib/jsmin @@ -62,41 +35,43 @@ J=./build-lib/jsmin ./updaterest.sh cp $L/*.js $N/lib/ -cp mljs.js $RJ/ -cp mljs.js $N/ +cp $S/mljs.js $RJ/ +cp $S/mljs.js $N/ cp $S/mljs-*.js $RJ/ cp $S/widget*.js $RJ/ cp $SJ/highcharts.js $RJ/ $J < $S/mljs.js > $DJ/mljs.js cp $DJ/mljs.js $NM/ -$J < ./lib/basic-wrapper.js > $NM/lib/basic-wrapper.js -$J < ./lib/digest-wrapper.js > $NM/lib/digest-wrapper.js -$J < ./lib/noop.js > $NM/lib/noop.js -$J < ./lib/passthrough-wrapper.js > $NM/lib/passthrough-wrapper.js - -$J < $S/mljs-jquery.js > $DJ/mljs-jquery.js -$J < $S/mljs-prototype.js > $DJ/mljs-prototype.js -$J < $S/mljs-xhr.js > $DJ/mljs-xhr.js -$J < $S/mljs-xhr2.js > $DJ/mljs-xhr2.js - -$J < $SJ/highcharts.js > $DJ/highcharts.js -$J < $S/widget-collections.js > $DJ/widget-collections.js -$J < $S/widget-cooccurence.js > $DJ/widget-cooccurence.js -$J < $S/widget-dls.js > $DJ/widget-dls.js -$J < $S/widget-docbuilder.js > $DJ/widget-docbuilder.js -$J < $S/widget-documents.js > $DJ/widget-documents.js -$J < $S/widget-explore.js > $DJ/widget-explore.js -$J < $S/widget-highcharts.js > $DJ/widget-highcharts.js -$J < $S/widget-kratu.js > $DJ/widget-kratu.js -$J < $S/widget-markings.js > $DJ/widget-markings.js -$J < $S/widget-openlayers.js > $DJ/widget-openlayers.js -$J < $S/widget-profile.js > $DJ/widget-profile.js -$J < $S/widget-rdb2rdf.js > $DJ/widget-rdb2rdf.js -$J < $S/widget-search.js > $DJ/widget-search.js -$J < $S/widget-triples.js > $DJ/widget-triples.js -$J < $S/widget-workplace.js > $DJ/widget-workplace.js -$J < $S/widgets.js > $DJ/widgets.js +$J < ./lib/basic-wrapper.js > $NM/lib/basic-wrapper.js +$J < ./lib/digest-wrapper.js > $NM/lib/digest-wrapper.js +$J < ./lib/noop.js > $NM/lib/noop.js +$J < ./lib/passthrough-wrapper.js > $NM/lib/passthrough-wrapper.js + +$J < $S/mljs-jquery.js > $DJ/mljs-jquery.js +$J < $S/mljs-prototype.js > $DJ/mljs-prototype.js +$J < $S/mljs-xhr.js > $DJ/mljs-xhr.js +$J < $S/mljs-xhr2.js > $DJ/mljs-xhr2.js + +$J < $SJ/highcharts.js > $DJ/highcharts.js +$J < $S/widget-address.js > $DJ/widget-address.js +$J < $S/widget-collections.js > $DJ/widget-collections.js +$J < $S/widget-cooccurence.js > $DJ/widget-cooccurence.js +$J < $S/widget-dls.js > $DJ/widget-dls.js +$J < $S/widget-docbuilder.js > $DJ/widget-docbuilder.js +$J < $S/widget-documents.js > $DJ/widget-documents.js +$J < $S/widget-explore.js > $DJ/widget-explore.js +$J < $S/widget-highcharts.js > $DJ/widget-highcharts.js +$J < $S/widget-kratu.js > $DJ/widget-kratu.js +$J < $S/widget-markings.js > $DJ/widget-markings.js +$J < $S/widget-openlayers.js > $DJ/widget-openlayers.js +$J < $S/widget-profile.js > $DJ/widget-profile.js +$J < $S/widget-rdb2rdf.js > $DJ/widget-rdb2rdf.js +$J < $S/widget-search.js > $DJ/widget-search.js +$J < $S/widget-tagcloud.js > $DJ/widget-tagcloud.js +$J < $S/widget-triples.js > $DJ/widget-triples.js +$J < $S/widget-workplace.js > $DJ/widget-workplace.js +$J < $S/widgets.js > $DJ/widgets.js cp $CS/widgets.css $D/css/widgets.css cp $CS/widgets.css $R/css/widgets.css @@ -107,35 +82,22 @@ cp $ST/page*.js $D/mljstest/ # Roxy controller, layout, etc. # NB non minified versions are copied for Roxy code - for ease of debugging on reported issues. -cp $SRC/app/controllers/mljstest.xqy $R/roxy/app/controllers/ -cp $SRC/app/views/mljstest/* $R/roxy/app/views/mljstest/ -cp $SRC/app/views/layouts/mljs-* $R/roxy/app/views/layouts/ -cp $SRC/public/css/one-column.less $R/roxy/public/css/ -cp $SRC/public/css/bootstrap-roxy.css $R/roxy/public/css/ -cp -R $SRC/public/css/960 $R/roxy/public/css/960 -cp $SRC/public/css/mljs/* $R/roxy/public/css/mljs/ -cp $SRC/public/js/mljs/* $R/roxy/public/js/mljs/ -cp $SRC/public/js/mljstest/* $R/roxy/public/js/mljstest/ -cp $SRC/public/js/highcharts.js $R/roxy/public/js/ -cp $SRC/public/js/kratu*.js $R/roxy/public/js/ -cp -R $SRC/public/js/dataproviders $R/roxy/public/js/ -cp -R $SRC/public/js/OpenLayers-2.13.1 $R/roxy/public/js/ -cp -R $SRC/public/js/heatmap $R/roxy/public/js/ - -cp $SRC/app/controllers/mljstest.xqy $D/roxy/app/controllers/ -cp $SRC/app/views/mljstest/* $D/roxy/app/views/mljstest/ -cp $SRC/app/views/layouts/mljs-* $D/roxy/app/views/layouts/ -cp $SRC/public/css/one-column.less $D/roxy/public/css/ -cp $SRC/public/css/bootstrap-roxy.css $D/roxy/public/css/ -cp -R $SRC/public/css/960 $D/roxy/public/css/960 -cp $SRC/public/css/mljs/* $D/roxy/public/css/mljs/ -cp $SRC/public/js/mljs/* $D/roxy/public/js/mljs/ -cp $SRC/public/js/mljstest/* $D/roxy/public/js/mljstest/ -cp $SRC/public/js/highcharts.js $D/roxy/public/js/ -cp $SRC/public/js/kratu*.js $D/roxy/public/js/ -cp -R $SRC/public/js/dataproviders $D/roxy/public/js/ -cp -R $SRC/public/js/OpenLayers-2.13.1 $D/roxy/public/js/ -cp -R $SRC/public/js/heatmap $D/roxy/public/js/ +#cp $SRC/app/controllers/mljstest.xqy $R/roxy/app/controllers/ +#cp $SRC/app/views/mljstest/* $R/roxy/app/views/mljstest/ +#cp $SRC/app/views/layouts/mljs-* $R/roxy/app/views/layouts/ +#cp $SRC/public/css/one-column.less $R/roxy/public/css/ +cp $SA/public/css/bootstrap-roxy.css $R/css/ +cp -R $SRC/public/css/960 $R/css/960 +#cp $SA/css/* $R/css/ +#cp $SA/js/* $R/js/ +#cp $SA/images/* $R/images/ +#cp $SRC/public/js/mljstest/* $R/roxy/public/js/mljstest/ +cp $SA/public/js/highcharts.js $R/js/ +cp $SA/public/js/kratu*.js $R/js/ +cp -R $SA/public/js/dataproviders $R/js/ +cp -R $SA/public/js/OpenLayers-2.13.1 $R/js/ +cp -R $SA/public/js/heatmap $R/js/ + # docs cp browser.md $D/README.md @@ -151,18 +113,18 @@ zip -vr ./dist/mljs-docs.zip ./dist/docs rm -rf dist/docs # zips and tars -tar czf ./dist/mljs-browser.tar.gz $R -tar czf ./dist/mljs-browser-minified.tar.gz $D -tar czf ./dist/mljs-nodejs.tar.gz $N -tar czf ./dist/mljs-nodejs-minified.tar.gz $NM -zip -vr ./dist/mljs-browser.zip $R -zip -vr ./dist/mljs-browser-minified.zip $D -zip -vr ./dist/mljs-nodejs.zip $N -zip -vr ./dist/mljs-nodejs-minified.zip $NM +tar czf ./dist/mljs-browser-dev.tar.gz $R +tar czf ./dist/mljs-browser-prod.tar.gz $D +tar czf ./dist/mljs-node-dev.tar.gz $N +tar czf ./dist/mljs-node-prod.tar.gz $NM +zip -vr ./dist/mljs-browser-dev.zip $R +zip -vr ./dist/mljs-browser-prod.zip $D +zip -vr ./dist/mljs-node-dev.zip $N +zip -vr ./dist/mljs-nodejs-prod.zip $NM # cleanup -rm -rf dist/mljs +#rm -rf dist/mljs echo "Done." -exit 0 +exit 0 diff --git a/cpjs.sh b/cpjs.sh index 5fbe4bf9..077317b3 100755 --- a/cpjs.sh +++ b/cpjs.sh @@ -1,4 +1,12 @@ #!/bin/sh -cp mljs.js ./mldbwebtest/src/public/js/mljs/ +cp src/js/mljs.js ./apps/mldbwebtest/src/public/js/mljs/ +cp src/js/widgets*.js ./apps/mldbwebtest/src/public/js/mljs/ +cp src/css/* ./apps/mldbwebtest/src/public/css/mljs/ +cp src/images/ ./apps/mldbwebtest/src/public/images/mljs/#!/bin/sh -echo "Copied mldb.js to webapp." +cp src/js/mljs.js ./apps/mljsrest/src/public/js/mljs/ +cp src/js/widgets*.js ./apps/mljsrest/src/public/js/mljs/ +cp src/css/* ./apps/mljsrest/src/public/css/mljs/ +cp src/images/ ./apps/mljsrest/src/public/images/mljs/ + +echo "Copied mljs files to webapps." diff --git a/gendocs.sh b/gendocs.sh index 9105af2d..2d9690bf 100755 --- a/gendocs.sh +++ b/gendocs.sh @@ -13,10 +13,10 @@ mkdir $D/core mkdir $D/widgets echo "Generating core documentation..." -$JSDOC --verbose -u ./tutorials -c jsdoc-conf.json --lenient -d $D/core mljs.js ./lib/basic-wrapper.js ./lib/digest-wrapper.js ./lib/noop.js ./lib/passthrough-wrapper.js core.md +$JSDOC --verbose -u ./tutorials -c jsdoc-conf.json --lenient -d $D/core ./src/js/mljs.js ./src/js/lib/basic-wrapper.js ./src/js/lib/digest-wrapper.js ./src/js/lib/noop.js ./src/js/lib/passthrough-wrapper.js core.md echo "...done." echo "Generating widget documentation..." -$JSDOC --verbose -u ./tutorials -c jsdoc-conf.json --lenient -d $D/widgets ./mldbwebtest/src/public/js/mljs/mljs-*.js ./mldbwebtest/src/public/js/mljs/widget*.js browser.md +$JSDOC --verbose -u ./tutorials -c jsdoc-conf.json --lenient -d $D/widgets ./src/js/mljs-*.js ./src/js/widget*.js browser.md echo "...done." cp -R $D/core $P/ @@ -39,4 +39,3 @@ cd ../mljs echo "Done All." exit 0 - diff --git a/mldbwebtest/docp.sh b/mldbwebtest/docp.sh deleted file mode 100755 index 0bd26e74..00000000 --- a/mldbwebtest/docp.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -cd .. -./cpjs.sh -cd mldbwebtest -echo "Back." diff --git a/package.json b/package.json index 6f13dba4..9c84e63c 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,10 @@ , "author": "Adam Fowler (http://adamfowlerml.wordpress.com)" , "keywords": ["MarkLogic", "mldb", "search", "data", "xml", "json", "nosql", "nodejs", "mljs"] , "dependencies": { "request": "~2.1.1", "underscore": "~1.1.7", "winston": "~0.6.2", "jsdom": "~0.6.5", "xmldom": "~0.1.17"} -, "devDependencies": { "async": "~0.1.9", "ensure": "0.3.0", "sleep": "1.1.0", "chai": "~1.8.1" } +, "devDependencies": { "async": "~0.1.9", "ensure": "0.3.0", "sleep": "1.1.0", "chai": "~1.8.1" , + "grunt": "~0.4.2", + "grunt-contrib-jshint": "~0.6.3" + } , "scripts": { "test": "./runtests.sh" } , "main": "./mljs.js" , "engines" : { "node" : ">=0.4.8" } diff --git a/mljsrest/src/css/mljs/modal.css b/src/css/modal.css similarity index 100% rename from mljsrest/src/css/mljs/modal.css rename to src/css/modal.css diff --git a/mljsrest/src/css/mljs/widget-search.css b/src/css/widget-search.css similarity index 100% rename from mljsrest/src/css/mljs/widget-search.css rename to src/css/widget-search.css diff --git a/mljsrest/src/css/mljs/widgets.css b/src/css/widgets.css similarity index 100% rename from mljsrest/src/css/mljs/widgets.css rename to src/css/widgets.css diff --git a/lib/basic-wrapper.js b/src/js/lib/basic-wrapper.js similarity index 100% rename from lib/basic-wrapper.js rename to src/js/lib/basic-wrapper.js diff --git a/lib/digest-wrapper.js b/src/js/lib/digest-wrapper.js similarity index 100% rename from lib/digest-wrapper.js rename to src/js/lib/digest-wrapper.js diff --git a/lib/noop.js b/src/js/lib/noop.js similarity index 100% rename from lib/noop.js rename to src/js/lib/noop.js diff --git a/lib/passthrough-wrapper.js b/src/js/lib/passthrough-wrapper.js similarity index 100% rename from lib/passthrough-wrapper.js rename to src/js/lib/passthrough-wrapper.js diff --git a/mljsrest/src/js/mljs/mljs-jquery.js b/src/js/mljs-jquery.js similarity index 100% rename from mljsrest/src/js/mljs/mljs-jquery.js rename to src/js/mljs-jquery.js diff --git a/mljsrest/src/js/mljs/mljs-prototype.js b/src/js/mljs-prototype.js similarity index 100% rename from mljsrest/src/js/mljs/mljs-prototype.js rename to src/js/mljs-prototype.js diff --git a/mljsrest/src/js/mljs/mljs-xhr.js b/src/js/mljs-xhr.js similarity index 100% rename from mljsrest/src/js/mljs/mljs-xhr.js rename to src/js/mljs-xhr.js diff --git a/mljsrest/src/js/mljs/mljs-xhr2.js b/src/js/mljs-xhr2.js similarity index 100% rename from mljsrest/src/js/mljs/mljs-xhr2.js rename to src/js/mljs-xhr2.js diff --git a/mljsrest/src/js/mljs/mljs.js b/src/js/mljs.js similarity index 100% rename from mljsrest/src/js/mljs/mljs.js rename to src/js/mljs.js diff --git a/mljsrest/src/js/mljs/widget-address.js b/src/js/widget-address.js similarity index 100% rename from mljsrest/src/js/mljs/widget-address.js rename to src/js/widget-address.js diff --git a/mljsrest/src/js/mljs/widget-collections.js b/src/js/widget-collections.js similarity index 100% rename from mljsrest/src/js/mljs/widget-collections.js rename to src/js/widget-collections.js diff --git a/mljsrest/src/js/mljs/widget-cooccurence.js b/src/js/widget-cooccurence.js similarity index 100% rename from mljsrest/src/js/mljs/widget-cooccurence.js rename to src/js/widget-cooccurence.js diff --git a/mljsrest/src/js/mljs/widget-dls.js b/src/js/widget-dls.js similarity index 100% rename from mljsrest/src/js/mljs/widget-dls.js rename to src/js/widget-dls.js diff --git a/mljsrest/src/js/mljs/widget-docbuilder.js b/src/js/widget-docbuilder.js similarity index 100% rename from mljsrest/src/js/mljs/widget-docbuilder.js rename to src/js/widget-docbuilder.js diff --git a/mljsrest/src/js/mljs/widget-documents.js b/src/js/widget-documents.js similarity index 100% rename from mljsrest/src/js/mljs/widget-documents.js rename to src/js/widget-documents.js diff --git a/mljsrest/src/js/mljs/widget-explore.js b/src/js/widget-explore.js similarity index 100% rename from mljsrest/src/js/mljs/widget-explore.js rename to src/js/widget-explore.js diff --git a/mljsrest/src/js/mljs/widget-highcharts.js b/src/js/widget-highcharts.js similarity index 100% rename from mljsrest/src/js/mljs/widget-highcharts.js rename to src/js/widget-highcharts.js diff --git a/mljsrest/src/js/mljs/widget-ingest.js b/src/js/widget-ingest.js similarity index 100% rename from mljsrest/src/js/mljs/widget-ingest.js rename to src/js/widget-ingest.js diff --git a/mljsrest/src/js/mljs/widget-kratu.js b/src/js/widget-kratu.js similarity index 100% rename from mljsrest/src/js/mljs/widget-kratu.js rename to src/js/widget-kratu.js diff --git a/mljsrest/src/js/mljs/widget-markings.js b/src/js/widget-markings.js similarity index 100% rename from mljsrest/src/js/mljs/widget-markings.js rename to src/js/widget-markings.js diff --git a/mljsrest/src/js/mljs/widget-openlayers.js b/src/js/widget-openlayers.js similarity index 100% rename from mljsrest/src/js/mljs/widget-openlayers.js rename to src/js/widget-openlayers.js diff --git a/mljsrest/src/js/mljs/widget-profile.js b/src/js/widget-profile.js similarity index 100% rename from mljsrest/src/js/mljs/widget-profile.js rename to src/js/widget-profile.js diff --git a/mljsrest/src/js/mljs/widget-rdb2rdf.js b/src/js/widget-rdb2rdf.js similarity index 100% rename from mljsrest/src/js/mljs/widget-rdb2rdf.js rename to src/js/widget-rdb2rdf.js diff --git a/mljsrest/src/js/mljs/widget-search-oldinit.js b/src/js/widget-search-oldinit.js similarity index 100% rename from mljsrest/src/js/mljs/widget-search-oldinit.js rename to src/js/widget-search-oldinit.js diff --git a/mljsrest/src/js/mljs/widget-search.js b/src/js/widget-search.js similarity index 100% rename from mljsrest/src/js/mljs/widget-search.js rename to src/js/widget-search.js diff --git a/mljsrest/src/js/mljs/widget-tagcloud.js b/src/js/widget-tagcloud.js similarity index 100% rename from mljsrest/src/js/mljs/widget-tagcloud.js rename to src/js/widget-tagcloud.js diff --git a/mljsrest/src/js/mljs/widget-triples.js b/src/js/widget-triples.js similarity index 100% rename from mljsrest/src/js/mljs/widget-triples.js rename to src/js/widget-triples.js diff --git a/mljsrest/src/js/mljs/widget-workplace.js b/src/js/widget-workplace.js similarity index 100% rename from mljsrest/src/js/mljs/widget-workplace.js rename to src/js/widget-workplace.js diff --git a/mljsrest/src/js/mljs/widgets.js b/src/js/widgets.js similarity index 100% rename from mljsrest/src/js/mljs/widgets.js rename to src/js/widgets.js diff --git a/updaterest.sh b/updaterest.sh index 71f6ab40..94a648b6 100755 --- a/updaterest.sh +++ b/updaterest.sh @@ -1,23 +1,13 @@ #!/bin/sh -./cpjs.sh - -mkdir mljsrest/src/js -mkdir mljsrest/src/js/lib -mkdir mljsrest/src/js/mljs -mkdir mljsrest/src/js/mljstest -mkdir mljsrest/src/css -mkdir mljsrest/src/css/mljs -mkdir mljsrest/src/images -mkdir mljsrest/src/images/mljs +./cpjs.sh + +cd apps + mkdir mljsrest/src/app mkdir mljsrest/src/app/models mkdir mljsrest/src/roxy mkdir mljsrest/src/roxy/config -cp -R mldbwebtest/src/public/js/mljs mljsrest/src/js -cp -R mldbwebtest/src/public/js/mljstest mljsrest/src/js -cp -R mldbwebtest/src/public/css/mljs mljsrest/src/css -cp -R mldbwebtest/src/public/images/mljs mljsrest/src/images # other dependencies now cp -R mldbwebtest/src/public/js/OpenLayers-2.13.1 mljsrest/src/js @@ -27,7 +17,7 @@ cp mldbwebtest/src/public/js/highcharts.js mljsrest/src/js/ cp mldbwebtest/src/public/js/kratu.js mljsrest/src/js/ cp mldbwebtest/src/public/js/kratuSignalAdjustments.js mljsrest/src/js/ -cp mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js mljsrest/src/js/lib/ +cp mldbwebtest/src/public/js/lib/jquery-1.7.1.min.js mljsrest/src/js/lib/ #copy once, never again #cp mldbwebtest/src/public/css/one-column.less mljsrest/src/css/one-column.css @@ -47,5 +37,7 @@ cp mldbwebtest/src/app/config/config.xqy mljsrest/src/app/config/ cp mldbwebtest/src/roxy/config/defaults.xqy mljsrest/src/roxy/config/ cp mldbwebtest/src/app/models/sql.xqy mljsrest/src/app/models/ +cd .. + echo "Done." exit 0