From: Thierry Parmentelat Date: Mon, 23 Sep 2013 14:43:52 +0000 (+0200) Subject: move a few things away in to-be-integrated/ X-Git-Tag: myslice-0.2-4~50^2 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=31540dd504798e0aca69e10d8144fbedc5b16af8 move a few things away in to-be-integrated/ also fix for loginrequired (somehow it was not found in views/) --- diff --git a/plugins/debug_platform/__init__.py b/plugins/debug_platform/__init__.py index 543fa5c0..e14a478e 100644 --- a/plugins/debug_platform/__init__.py +++ b/plugins/debug_platform/__init__.py @@ -1,6 +1,6 @@ from unfold.plugin import Plugin from unfold.page import Page -from plugins.code_editor import CodeEditor +#from plugins.code_editor import CodeEditor from plugins.hazelnut import Hazelnut class DebugPlatform(Plugin): diff --git a/portal/accountview.py b/portal/accountview.py index 5bc30ca9..71e68e68 100644 --- a/portal/accountview.py +++ b/portal/accountview.py @@ -1,4 +1,4 @@ -from views.loginrequired import LoginRequiredAutoLogoutView +from unfold.loginrequired import LoginRequiredAutoLogoutView # from manifold.core.query import Query from manifold.manifoldapi import execute_query diff --git a/portal/dashboardview.py b/portal/dashboardview.py index 1a053591..a6dc46de 100644 --- a/portal/dashboardview.py +++ b/portal/dashboardview.py @@ -3,7 +3,7 @@ from unfold.page import Page from plugins.lists.simplelist import SimpleList -from views.loginrequired import LoginRequiredAutoLogoutView +from unfold.loginrequired import LoginRequiredAutoLogoutView from myslice.viewutils import topmenu_items, the_user diff --git a/portal/slicerequestview.py b/portal/slicerequestview.py index c9219861..8d2104f2 100644 --- a/portal/slicerequestview.py +++ b/portal/slicerequestview.py @@ -8,7 +8,7 @@ from manifold.manifoldapi import execute_query from portal.models import PendingSlice from portal.actions import authority_get_pi_emails from portal.forms import SliceRequestForm -from views.loginrequired import LoginRequiredAutoLogoutView +from unfold.loginrequired import LoginRequiredAutoLogoutView from myslice.viewutils import topmenu_items, the_user class SliceRequestView (LoginRequiredAutoLogoutView): diff --git a/portal/sliceview.py b/portal/sliceview.py index 5e8ddf9b..b265e796 100644 --- a/portal/sliceview.py +++ b/portal/sliceview.py @@ -1,7 +1,7 @@ from django.template import RequestContext from django.shortcuts import render_to_response -from views.loginrequired import LoginRequiredAutoLogoutView +from unfold.loginrequired import LoginRequiredAutoLogoutView from unfold.page import Page from manifold.core.query import Query, AnalyzedQuery diff --git a/portal/views.py b/portal/views.py index 2029e70b..60f16137 100644 --- a/portal/views.py +++ b/portal/views.py @@ -30,8 +30,10 @@ from django.template.loader import render_to_string from myslice.viewutils import topmenu_items, the_user -from plugins.pres_view import PresView from portal.event import Event +# presview is put in observation for now +#from plugins.pres_view import PresView +from plugins.raw import Raw # these seem totally unused for now #from portal.util import RegistrationView, ActivationView @@ -54,7 +56,8 @@ class PresViewView(TemplateView): page = Page(self.request) - pres_view = PresView(page = page) +# pres_view = PresView(page = page) + pres_view = Raw(page = page,html="

PresView needs to be integrated

") context = super(PresViewView, self).get_context_data(**kwargs) diff --git a/to-be-integrated/README b/to-be-integrated/README new file mode 100644 index 00000000..d54d28a8 --- /dev/null +++ b/to-be-integrated/README @@ -0,0 +1,17 @@ +-- Thierry - sept. 23 2013 + +This area is for pieces that need a bit more tuning before being plugged into the framework + +** pres_view + +. the whole naming presview / presviewview kind of sucks overall - an understatement +. please at least rename the plugin into something that does not have 'view' in it +. also please review the static contents to re-use what we already have as third-party, + or to add in there what is still missing + +** code editor / codemirror + +. I could not find where this is used +. the most painful impact of this is that it depends on codemirror, that comes with a huge amount + of static files +. this is why I move it away for now diff --git a/plugins/code_editor/__init__.py b/to-be-integrated/plugins/code_editor/__init__.py similarity index 100% rename from plugins/code_editor/__init__.py rename to to-be-integrated/plugins/code_editor/__init__.py diff --git a/plugins/code_editor/static/img/handle-h.png b/to-be-integrated/plugins/code_editor/static/img/handle-h.png similarity index 100% rename from plugins/code_editor/static/img/handle-h.png rename to to-be-integrated/plugins/code_editor/static/img/handle-h.png diff --git a/plugins/code_editor/static/img/handle-v.png b/to-be-integrated/plugins/code_editor/static/img/handle-v.png similarity index 100% rename from plugins/code_editor/static/img/handle-v.png rename to to-be-integrated/plugins/code_editor/static/img/handle-v.png diff --git a/plugins/code_editor/static/img/initializing.png b/to-be-integrated/plugins/code_editor/static/img/initializing.png similarity index 100% rename from plugins/code_editor/static/img/initializing.png rename to to-be-integrated/plugins/code_editor/static/img/initializing.png diff --git a/plugins/code_editor/static/js/Actions.js b/to-be-integrated/plugins/code_editor/static/js/Actions.js similarity index 100% rename from plugins/code_editor/static/js/Actions.js rename to to-be-integrated/plugins/code_editor/static/js/Actions.js diff --git a/plugins/code_editor/static/js/EditorCM.js b/to-be-integrated/plugins/code_editor/static/js/EditorCM.js similarity index 100% rename from plugins/code_editor/static/js/EditorCM.js rename to to-be-integrated/plugins/code_editor/static/js/EditorCM.js diff --git a/plugins/code_editor/static/js/LayoutCM.js b/to-be-integrated/plugins/code_editor/static/js/LayoutCM.js similarity index 100% rename from plugins/code_editor/static/js/LayoutCM.js rename to to-be-integrated/plugins/code_editor/static/js/LayoutCM.js diff --git a/plugins/code_editor/static/js/code_editor.js b/to-be-integrated/plugins/code_editor/static/js/code_editor.js similarity index 100% rename from plugins/code_editor/static/js/code_editor.js rename to to-be-integrated/plugins/code_editor/static/js/code_editor.js diff --git a/plugins/code_editor/static/js/moo-clientcide-1.3.js b/to-be-integrated/plugins/code_editor/static/js/moo-clientcide-1.3.js similarity index 100% rename from plugins/code_editor/static/js/moo-clientcide-1.3.js rename to to-be-integrated/plugins/code_editor/static/js/moo-clientcide-1.3.js diff --git a/plugins/code_editor/templates/code_editor.html b/to-be-integrated/plugins/code_editor/templates/code_editor.html similarity index 100% rename from plugins/code_editor/templates/code_editor.html rename to to-be-integrated/plugins/code_editor/templates/code_editor.html diff --git a/plugins/pres_view/__init__.py b/to-be-integrated/plugins/pres_view/__init__.py similarity index 100% rename from plugins/pres_view/__init__.py rename to to-be-integrated/plugins/pres_view/__init__.py diff --git a/plugins/pres_view/config_method_animation b/to-be-integrated/plugins/pres_view/config_method_animation similarity index 100% rename from plugins/pres_view/config_method_animation rename to to-be-integrated/plugins/pres_view/config_method_animation diff --git a/plugins/pres_view/config_method_dynamic b/to-be-integrated/plugins/pres_view/config_method_dynamic similarity index 100% rename from plugins/pres_view/config_method_dynamic rename to to-be-integrated/plugins/pres_view/config_method_dynamic diff --git a/plugins/pres_view/config_method_static b/to-be-integrated/plugins/pres_view/config_method_static similarity index 100% rename from plugins/pres_view/config_method_static rename to to-be-integrated/plugins/pres_view/config_method_static diff --git a/plugins/pres_view/config_method_static.bk b/to-be-integrated/plugins/pres_view/config_method_static.bk similarity index 100% rename from plugins/pres_view/config_method_static.bk rename to to-be-integrated/plugins/pres_view/config_method_static.bk diff --git a/plugins/pres_view/daemon-todo/daemon.py b/to-be-integrated/plugins/pres_view/daemon-todo/daemon.py similarity index 100% rename from plugins/pres_view/daemon-todo/daemon.py rename to to-be-integrated/plugins/pres_view/daemon-todo/daemon.py diff --git a/plugins/pres_view/daemon-todo/event2.py b/to-be-integrated/plugins/pres_view/daemon-todo/event2.py similarity index 100% rename from plugins/pres_view/daemon-todo/event2.py rename to to-be-integrated/plugins/pres_view/daemon-todo/event2.py diff --git a/plugins/pres_view/daemon-todo/eventc.py b/to-be-integrated/plugins/pres_view/daemon-todo/eventc.py similarity index 100% rename from plugins/pres_view/daemon-todo/eventc.py rename to to-be-integrated/plugins/pres_view/daemon-todo/eventc.py diff --git a/plugins/pres_view/daemon-todo/eventd.py b/to-be-integrated/plugins/pres_view/daemon-todo/eventd.py similarity index 100% rename from plugins/pres_view/daemon-todo/eventd.py rename to to-be-integrated/plugins/pres_view/daemon-todo/eventd.py diff --git a/plugins/pres_view/static/css/jquery-ui.css b/to-be-integrated/plugins/pres_view/static/css/jquery-ui.css similarity index 100% rename from plugins/pres_view/static/css/jquery-ui.css rename to to-be-integrated/plugins/pres_view/static/css/jquery-ui.css diff --git a/plugins/pres_view/static/css/pres_view.css b/to-be-integrated/plugins/pres_view/static/css/pres_view.css similarity index 100% rename from plugins/pres_view/static/css/pres_view.css rename to to-be-integrated/plugins/pres_view/static/css/pres_view.css diff --git a/plugins/pres_view/static/js/MooTools.js b/to-be-integrated/plugins/pres_view/static/js/MooTools.js similarity index 100% rename from plugins/pres_view/static/js/MooTools.js rename to to-be-integrated/plugins/pres_view/static/js/MooTools.js diff --git a/plugins/pres_view/static/js/afficher_par_id.js b/to-be-integrated/plugins/pres_view/static/js/afficher_par_id.js similarity index 100% rename from plugins/pres_view/static/js/afficher_par_id.js rename to to-be-integrated/plugins/pres_view/static/js/afficher_par_id.js diff --git a/plugins/pres_view/static/js/config.js b/to-be-integrated/plugins/pres_view/static/js/config.js similarity index 100% rename from plugins/pres_view/static/js/config.js rename to to-be-integrated/plugins/pres_view/static/js/config.js diff --git a/plugins/pres_view/static/js/dynamic.js b/to-be-integrated/plugins/pres_view/static/js/dynamic.js similarity index 100% rename from plugins/pres_view/static/js/dynamic.js rename to to-be-integrated/plugins/pres_view/static/js/dynamic.js diff --git a/plugins/pres_view/static/js/initmap.js b/to-be-integrated/plugins/pres_view/static/js/initmap.js similarity index 100% rename from plugins/pres_view/static/js/initmap.js rename to to-be-integrated/plugins/pres_view/static/js/initmap.js diff --git a/plugins/pres_view/static/js/jquery-1.7.2.min.js b/to-be-integrated/plugins/pres_view/static/js/jquery-1.7.2.min.js similarity index 100% rename from plugins/pres_view/static/js/jquery-1.7.2.min.js rename to to-be-integrated/plugins/pres_view/static/js/jquery-1.7.2.min.js diff --git a/plugins/pres_view/static/js/jquery-ui.min.js b/to-be-integrated/plugins/pres_view/static/js/jquery-ui.min.js similarity index 100% rename from plugins/pres_view/static/js/jquery-ui.min.js rename to to-be-integrated/plugins/pres_view/static/js/jquery-ui.min.js diff --git a/plugins/pres_view/static/js/mootools-core.js b/to-be-integrated/plugins/pres_view/static/js/mootools-core.js similarity index 100% rename from plugins/pres_view/static/js/mootools-core.js rename to to-be-integrated/plugins/pres_view/static/js/mootools-core.js diff --git a/plugins/pres_view/static/js/pres_view.js b/to-be-integrated/plugins/pres_view/static/js/pres_view.js similarity index 100% rename from plugins/pres_view/static/js/pres_view.js rename to to-be-integrated/plugins/pres_view/static/js/pres_view.js diff --git a/plugins/pres_view/static/js/recup_data.js b/to-be-integrated/plugins/pres_view/static/js/recup_data.js similarity index 100% rename from plugins/pres_view/static/js/recup_data.js rename to to-be-integrated/plugins/pres_view/static/js/recup_data.js diff --git a/plugins/pres_view/static/js/recup_direct.js b/to-be-integrated/plugins/pres_view/static/js/recup_direct.js similarity index 100% rename from plugins/pres_view/static/js/recup_direct.js rename to to-be-integrated/plugins/pres_view/static/js/recup_direct.js diff --git a/plugins/pres_view/static/js/recup_liste.js b/to-be-integrated/plugins/pres_view/static/js/recup_liste.js similarity index 100% rename from plugins/pres_view/static/js/recup_liste.js rename to to-be-integrated/plugins/pres_view/static/js/recup_liste.js diff --git a/plugins/pres_view/static/js/recup_tout_sites.js b/to-be-integrated/plugins/pres_view/static/js/recup_tout_sites.js similarity index 100% rename from plugins/pres_view/static/js/recup_tout_sites.js rename to to-be-integrated/plugins/pres_view/static/js/recup_tout_sites.js diff --git a/plugins/pres_view/static/js/visible.js b/to-be-integrated/plugins/pres_view/static/js/visible.js similarity index 100% rename from plugins/pres_view/static/js/visible.js rename to to-be-integrated/plugins/pres_view/static/js/visible.js diff --git a/plugins/pres_view/templates/pres_view.html b/to-be-integrated/plugins/pres_view/templates/pres_view.html similarity index 100% rename from plugins/pres_view/templates/pres_view.html rename to to-be-integrated/plugins/pres_view/templates/pres_view.html diff --git a/third-party/codemirror b/to-be-integrated/third-party/codemirror similarity index 100% rename from third-party/codemirror rename to to-be-integrated/third-party/codemirror diff --git a/third-party/codemirror-3.15/.gitattributes b/to-be-integrated/third-party/codemirror-3.15/.gitattributes similarity index 100% rename from third-party/codemirror-3.15/.gitattributes rename to to-be-integrated/third-party/codemirror-3.15/.gitattributes diff --git a/third-party/codemirror-3.15/.gitignore b/to-be-integrated/third-party/codemirror-3.15/.gitignore similarity index 100% rename from third-party/codemirror-3.15/.gitignore rename to to-be-integrated/third-party/codemirror-3.15/.gitignore diff --git a/third-party/codemirror-3.15/.travis.yml b/to-be-integrated/third-party/codemirror-3.15/.travis.yml similarity index 100% rename from third-party/codemirror-3.15/.travis.yml rename to to-be-integrated/third-party/codemirror-3.15/.travis.yml diff --git a/third-party/codemirror-3.15/CONTRIBUTING.md b/to-be-integrated/third-party/codemirror-3.15/CONTRIBUTING.md similarity index 100% rename from third-party/codemirror-3.15/CONTRIBUTING.md rename to to-be-integrated/third-party/codemirror-3.15/CONTRIBUTING.md diff --git a/third-party/codemirror-3.15/LICENSE b/to-be-integrated/third-party/codemirror-3.15/LICENSE similarity index 100% rename from third-party/codemirror-3.15/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/LICENSE diff --git a/third-party/codemirror-3.15/README.md b/to-be-integrated/third-party/codemirror-3.15/README.md similarity index 100% rename from third-party/codemirror-3.15/README.md rename to to-be-integrated/third-party/codemirror-3.15/README.md diff --git a/third-party/codemirror-3.15/addon/comment/comment.js b/to-be-integrated/third-party/codemirror-3.15/addon/comment/comment.js similarity index 100% rename from third-party/codemirror-3.15/addon/comment/comment.js rename to to-be-integrated/third-party/codemirror-3.15/addon/comment/comment.js diff --git a/third-party/codemirror-3.15/addon/dialog/dialog.css b/to-be-integrated/third-party/codemirror-3.15/addon/dialog/dialog.css similarity index 100% rename from third-party/codemirror-3.15/addon/dialog/dialog.css rename to to-be-integrated/third-party/codemirror-3.15/addon/dialog/dialog.css diff --git a/third-party/codemirror-3.15/addon/dialog/dialog.js b/to-be-integrated/third-party/codemirror-3.15/addon/dialog/dialog.js similarity index 100% rename from third-party/codemirror-3.15/addon/dialog/dialog.js rename to to-be-integrated/third-party/codemirror-3.15/addon/dialog/dialog.js diff --git a/third-party/codemirror-3.15/addon/display/placeholder.js b/to-be-integrated/third-party/codemirror-3.15/addon/display/placeholder.js similarity index 100% rename from third-party/codemirror-3.15/addon/display/placeholder.js rename to to-be-integrated/third-party/codemirror-3.15/addon/display/placeholder.js diff --git a/third-party/codemirror-3.15/addon/edit/closebrackets.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/closebrackets.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/closebrackets.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/closebrackets.js diff --git a/third-party/codemirror-3.15/addon/edit/closetag.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/closetag.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/closetag.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/closetag.js diff --git a/third-party/codemirror-3.15/addon/edit/continuecomment.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/continuecomment.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/continuecomment.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/continuecomment.js diff --git a/third-party/codemirror-3.15/addon/edit/continuelist.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/continuelist.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/continuelist.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/continuelist.js diff --git a/third-party/codemirror-3.15/addon/edit/matchbrackets.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/matchbrackets.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/matchbrackets.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/matchbrackets.js diff --git a/third-party/codemirror-3.15/addon/edit/matchtags.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/matchtags.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/matchtags.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/matchtags.js diff --git a/third-party/codemirror-3.15/addon/edit/trailingspace.js b/to-be-integrated/third-party/codemirror-3.15/addon/edit/trailingspace.js similarity index 100% rename from third-party/codemirror-3.15/addon/edit/trailingspace.js rename to to-be-integrated/third-party/codemirror-3.15/addon/edit/trailingspace.js diff --git a/third-party/codemirror-3.15/addon/fold/brace-fold.js b/to-be-integrated/third-party/codemirror-3.15/addon/fold/brace-fold.js similarity index 100% rename from third-party/codemirror-3.15/addon/fold/brace-fold.js rename to to-be-integrated/third-party/codemirror-3.15/addon/fold/brace-fold.js diff --git a/third-party/codemirror-3.15/addon/fold/foldcode.js b/to-be-integrated/third-party/codemirror-3.15/addon/fold/foldcode.js similarity index 100% rename from third-party/codemirror-3.15/addon/fold/foldcode.js rename to to-be-integrated/third-party/codemirror-3.15/addon/fold/foldcode.js diff --git a/third-party/codemirror-3.15/addon/fold/foldgutter.js b/to-be-integrated/third-party/codemirror-3.15/addon/fold/foldgutter.js similarity index 100% rename from third-party/codemirror-3.15/addon/fold/foldgutter.js rename to to-be-integrated/third-party/codemirror-3.15/addon/fold/foldgutter.js diff --git a/third-party/codemirror-3.15/addon/fold/indent-fold.js b/to-be-integrated/third-party/codemirror-3.15/addon/fold/indent-fold.js similarity index 100% rename from third-party/codemirror-3.15/addon/fold/indent-fold.js rename to to-be-integrated/third-party/codemirror-3.15/addon/fold/indent-fold.js diff --git a/third-party/codemirror-3.15/addon/fold/xml-fold.js b/to-be-integrated/third-party/codemirror-3.15/addon/fold/xml-fold.js similarity index 100% rename from third-party/codemirror-3.15/addon/fold/xml-fold.js rename to to-be-integrated/third-party/codemirror-3.15/addon/fold/xml-fold.js diff --git a/third-party/codemirror-3.15/addon/hint/anyword-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/anyword-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/anyword-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/anyword-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/html-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/html-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/html-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/html-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/javascript-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/javascript-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/javascript-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/javascript-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/pig-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/pig-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/pig-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/pig-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/python-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/python-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/python-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/python-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/show-hint.css b/to-be-integrated/third-party/codemirror-3.15/addon/hint/show-hint.css similarity index 100% rename from third-party/codemirror-3.15/addon/hint/show-hint.css rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/show-hint.css diff --git a/third-party/codemirror-3.15/addon/hint/show-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/show-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/show-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/show-hint.js diff --git a/third-party/codemirror-3.15/addon/hint/xml-hint.js b/to-be-integrated/third-party/codemirror-3.15/addon/hint/xml-hint.js similarity index 100% rename from third-party/codemirror-3.15/addon/hint/xml-hint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/hint/xml-hint.js diff --git a/third-party/codemirror-3.15/addon/lint/coffeescript-lint.js b/to-be-integrated/third-party/codemirror-3.15/addon/lint/coffeescript-lint.js similarity index 100% rename from third-party/codemirror-3.15/addon/lint/coffeescript-lint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/lint/coffeescript-lint.js diff --git a/third-party/codemirror-3.15/addon/lint/javascript-lint.js b/to-be-integrated/third-party/codemirror-3.15/addon/lint/javascript-lint.js similarity index 100% rename from third-party/codemirror-3.15/addon/lint/javascript-lint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/lint/javascript-lint.js diff --git a/third-party/codemirror-3.15/addon/lint/json-lint.js b/to-be-integrated/third-party/codemirror-3.15/addon/lint/json-lint.js similarity index 100% rename from third-party/codemirror-3.15/addon/lint/json-lint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/lint/json-lint.js diff --git a/third-party/codemirror-3.15/addon/lint/lint.css b/to-be-integrated/third-party/codemirror-3.15/addon/lint/lint.css similarity index 100% rename from third-party/codemirror-3.15/addon/lint/lint.css rename to to-be-integrated/third-party/codemirror-3.15/addon/lint/lint.css diff --git a/third-party/codemirror-3.15/addon/lint/lint.js b/to-be-integrated/third-party/codemirror-3.15/addon/lint/lint.js similarity index 100% rename from third-party/codemirror-3.15/addon/lint/lint.js rename to to-be-integrated/third-party/codemirror-3.15/addon/lint/lint.js diff --git a/third-party/codemirror-3.15/addon/merge/dep/diff_match_patch.js b/to-be-integrated/third-party/codemirror-3.15/addon/merge/dep/diff_match_patch.js similarity index 100% rename from third-party/codemirror-3.15/addon/merge/dep/diff_match_patch.js rename to to-be-integrated/third-party/codemirror-3.15/addon/merge/dep/diff_match_patch.js diff --git a/third-party/codemirror-3.15/addon/merge/merge.css b/to-be-integrated/third-party/codemirror-3.15/addon/merge/merge.css similarity index 100% rename from third-party/codemirror-3.15/addon/merge/merge.css rename to to-be-integrated/third-party/codemirror-3.15/addon/merge/merge.css diff --git a/third-party/codemirror-3.15/addon/merge/merge.js b/to-be-integrated/third-party/codemirror-3.15/addon/merge/merge.js similarity index 100% rename from third-party/codemirror-3.15/addon/merge/merge.js rename to to-be-integrated/third-party/codemirror-3.15/addon/merge/merge.js diff --git a/third-party/codemirror-3.15/addon/mode/loadmode.js b/to-be-integrated/third-party/codemirror-3.15/addon/mode/loadmode.js similarity index 100% rename from third-party/codemirror-3.15/addon/mode/loadmode.js rename to to-be-integrated/third-party/codemirror-3.15/addon/mode/loadmode.js diff --git a/third-party/codemirror-3.15/addon/mode/multiplex.js b/to-be-integrated/third-party/codemirror-3.15/addon/mode/multiplex.js similarity index 100% rename from third-party/codemirror-3.15/addon/mode/multiplex.js rename to to-be-integrated/third-party/codemirror-3.15/addon/mode/multiplex.js diff --git a/third-party/codemirror-3.15/addon/mode/multiplex_test.js b/to-be-integrated/third-party/codemirror-3.15/addon/mode/multiplex_test.js similarity index 100% rename from third-party/codemirror-3.15/addon/mode/multiplex_test.js rename to to-be-integrated/third-party/codemirror-3.15/addon/mode/multiplex_test.js diff --git a/third-party/codemirror-3.15/addon/mode/overlay.js b/to-be-integrated/third-party/codemirror-3.15/addon/mode/overlay.js similarity index 100% rename from third-party/codemirror-3.15/addon/mode/overlay.js rename to to-be-integrated/third-party/codemirror-3.15/addon/mode/overlay.js diff --git a/third-party/codemirror-3.15/addon/runmode/colorize.js b/to-be-integrated/third-party/codemirror-3.15/addon/runmode/colorize.js similarity index 100% rename from third-party/codemirror-3.15/addon/runmode/colorize.js rename to to-be-integrated/third-party/codemirror-3.15/addon/runmode/colorize.js diff --git a/third-party/codemirror-3.15/addon/runmode/runmode-standalone.js b/to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode-standalone.js similarity index 100% rename from third-party/codemirror-3.15/addon/runmode/runmode-standalone.js rename to to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode-standalone.js diff --git a/third-party/codemirror-3.15/addon/runmode/runmode.js b/to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode.js similarity index 100% rename from third-party/codemirror-3.15/addon/runmode/runmode.js rename to to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode.js diff --git a/third-party/codemirror-3.15/addon/runmode/runmode.node.js b/to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode.node.js similarity index 100% rename from third-party/codemirror-3.15/addon/runmode/runmode.node.js rename to to-be-integrated/third-party/codemirror-3.15/addon/runmode/runmode.node.js diff --git a/third-party/codemirror-3.15/addon/search/match-highlighter.js b/to-be-integrated/third-party/codemirror-3.15/addon/search/match-highlighter.js similarity index 100% rename from third-party/codemirror-3.15/addon/search/match-highlighter.js rename to to-be-integrated/third-party/codemirror-3.15/addon/search/match-highlighter.js diff --git a/third-party/codemirror-3.15/addon/search/search.js b/to-be-integrated/third-party/codemirror-3.15/addon/search/search.js similarity index 100% rename from third-party/codemirror-3.15/addon/search/search.js rename to to-be-integrated/third-party/codemirror-3.15/addon/search/search.js diff --git a/third-party/codemirror-3.15/addon/search/searchcursor.js b/to-be-integrated/third-party/codemirror-3.15/addon/search/searchcursor.js similarity index 100% rename from third-party/codemirror-3.15/addon/search/searchcursor.js rename to to-be-integrated/third-party/codemirror-3.15/addon/search/searchcursor.js diff --git a/third-party/codemirror-3.15/addon/selection/active-line.js b/to-be-integrated/third-party/codemirror-3.15/addon/selection/active-line.js similarity index 100% rename from third-party/codemirror-3.15/addon/selection/active-line.js rename to to-be-integrated/third-party/codemirror-3.15/addon/selection/active-line.js diff --git a/third-party/codemirror-3.15/addon/selection/mark-selection.js b/to-be-integrated/third-party/codemirror-3.15/addon/selection/mark-selection.js similarity index 100% rename from third-party/codemirror-3.15/addon/selection/mark-selection.js rename to to-be-integrated/third-party/codemirror-3.15/addon/selection/mark-selection.js diff --git a/third-party/codemirror-3.15/addon/tern/tern.css b/to-be-integrated/third-party/codemirror-3.15/addon/tern/tern.css similarity index 100% rename from third-party/codemirror-3.15/addon/tern/tern.css rename to to-be-integrated/third-party/codemirror-3.15/addon/tern/tern.css diff --git a/third-party/codemirror-3.15/addon/tern/tern.js b/to-be-integrated/third-party/codemirror-3.15/addon/tern/tern.js similarity index 100% rename from third-party/codemirror-3.15/addon/tern/tern.js rename to to-be-integrated/third-party/codemirror-3.15/addon/tern/tern.js diff --git a/third-party/codemirror-3.15/addon/tern/worker.js b/to-be-integrated/third-party/codemirror-3.15/addon/tern/worker.js similarity index 100% rename from third-party/codemirror-3.15/addon/tern/worker.js rename to to-be-integrated/third-party/codemirror-3.15/addon/tern/worker.js diff --git a/third-party/codemirror-3.15/bin/compress b/to-be-integrated/third-party/codemirror-3.15/bin/compress similarity index 100% rename from third-party/codemirror-3.15/bin/compress rename to to-be-integrated/third-party/codemirror-3.15/bin/compress diff --git a/third-party/codemirror-3.15/bin/lint b/to-be-integrated/third-party/codemirror-3.15/bin/lint similarity index 100% rename from third-party/codemirror-3.15/bin/lint rename to to-be-integrated/third-party/codemirror-3.15/bin/lint diff --git a/third-party/codemirror-3.15/bin/source-highlight b/to-be-integrated/third-party/codemirror-3.15/bin/source-highlight similarity index 100% rename from third-party/codemirror-3.15/bin/source-highlight rename to to-be-integrated/third-party/codemirror-3.15/bin/source-highlight diff --git a/third-party/codemirror-3.15/bower.json b/to-be-integrated/third-party/codemirror-3.15/bower.json similarity index 100% rename from third-party/codemirror-3.15/bower.json rename to to-be-integrated/third-party/codemirror-3.15/bower.json diff --git a/third-party/codemirror-3.15/demo/activeline.html b/to-be-integrated/third-party/codemirror-3.15/demo/activeline.html similarity index 100% rename from third-party/codemirror-3.15/demo/activeline.html rename to to-be-integrated/third-party/codemirror-3.15/demo/activeline.html diff --git a/third-party/codemirror-3.15/demo/anywordhint.html b/to-be-integrated/third-party/codemirror-3.15/demo/anywordhint.html similarity index 100% rename from third-party/codemirror-3.15/demo/anywordhint.html rename to to-be-integrated/third-party/codemirror-3.15/demo/anywordhint.html diff --git a/third-party/codemirror-3.15/demo/bidi.html b/to-be-integrated/third-party/codemirror-3.15/demo/bidi.html similarity index 100% rename from third-party/codemirror-3.15/demo/bidi.html rename to to-be-integrated/third-party/codemirror-3.15/demo/bidi.html diff --git a/third-party/codemirror-3.15/demo/btree.html b/to-be-integrated/third-party/codemirror-3.15/demo/btree.html similarity index 100% rename from third-party/codemirror-3.15/demo/btree.html rename to to-be-integrated/third-party/codemirror-3.15/demo/btree.html diff --git a/third-party/codemirror-3.15/demo/buffers.html b/to-be-integrated/third-party/codemirror-3.15/demo/buffers.html similarity index 100% rename from third-party/codemirror-3.15/demo/buffers.html rename to to-be-integrated/third-party/codemirror-3.15/demo/buffers.html diff --git a/third-party/codemirror-3.15/demo/changemode.html b/to-be-integrated/third-party/codemirror-3.15/demo/changemode.html similarity index 100% rename from third-party/codemirror-3.15/demo/changemode.html rename to to-be-integrated/third-party/codemirror-3.15/demo/changemode.html diff --git a/third-party/codemirror-3.15/demo/closebrackets.html b/to-be-integrated/third-party/codemirror-3.15/demo/closebrackets.html similarity index 100% rename from third-party/codemirror-3.15/demo/closebrackets.html rename to to-be-integrated/third-party/codemirror-3.15/demo/closebrackets.html diff --git a/third-party/codemirror-3.15/demo/closetag.html b/to-be-integrated/third-party/codemirror-3.15/demo/closetag.html similarity index 100% rename from third-party/codemirror-3.15/demo/closetag.html rename to to-be-integrated/third-party/codemirror-3.15/demo/closetag.html diff --git a/third-party/codemirror-3.15/demo/complete.html b/to-be-integrated/third-party/codemirror-3.15/demo/complete.html similarity index 100% rename from third-party/codemirror-3.15/demo/complete.html rename to to-be-integrated/third-party/codemirror-3.15/demo/complete.html diff --git a/third-party/codemirror-3.15/demo/emacs.html b/to-be-integrated/third-party/codemirror-3.15/demo/emacs.html similarity index 100% rename from third-party/codemirror-3.15/demo/emacs.html rename to to-be-integrated/third-party/codemirror-3.15/demo/emacs.html diff --git a/third-party/codemirror-3.15/demo/folding.html b/to-be-integrated/third-party/codemirror-3.15/demo/folding.html similarity index 100% rename from third-party/codemirror-3.15/demo/folding.html rename to to-be-integrated/third-party/codemirror-3.15/demo/folding.html diff --git a/third-party/codemirror-3.15/demo/fullscreen.html b/to-be-integrated/third-party/codemirror-3.15/demo/fullscreen.html similarity index 100% rename from third-party/codemirror-3.15/demo/fullscreen.html rename to to-be-integrated/third-party/codemirror-3.15/demo/fullscreen.html diff --git a/third-party/codemirror-3.15/demo/html5complete.html b/to-be-integrated/third-party/codemirror-3.15/demo/html5complete.html similarity index 100% rename from third-party/codemirror-3.15/demo/html5complete.html rename to to-be-integrated/third-party/codemirror-3.15/demo/html5complete.html diff --git a/third-party/codemirror-3.15/demo/indentwrap.html b/to-be-integrated/third-party/codemirror-3.15/demo/indentwrap.html similarity index 100% rename from third-party/codemirror-3.15/demo/indentwrap.html rename to to-be-integrated/third-party/codemirror-3.15/demo/indentwrap.html diff --git a/third-party/codemirror-3.15/demo/lint.html b/to-be-integrated/third-party/codemirror-3.15/demo/lint.html similarity index 100% rename from third-party/codemirror-3.15/demo/lint.html rename to to-be-integrated/third-party/codemirror-3.15/demo/lint.html diff --git a/third-party/codemirror-3.15/demo/loadmode.html b/to-be-integrated/third-party/codemirror-3.15/demo/loadmode.html similarity index 100% rename from third-party/codemirror-3.15/demo/loadmode.html rename to to-be-integrated/third-party/codemirror-3.15/demo/loadmode.html diff --git a/third-party/codemirror-3.15/demo/marker.html b/to-be-integrated/third-party/codemirror-3.15/demo/marker.html similarity index 100% rename from third-party/codemirror-3.15/demo/marker.html rename to to-be-integrated/third-party/codemirror-3.15/demo/marker.html diff --git a/third-party/codemirror-3.15/demo/markselection.html b/to-be-integrated/third-party/codemirror-3.15/demo/markselection.html similarity index 100% rename from third-party/codemirror-3.15/demo/markselection.html rename to to-be-integrated/third-party/codemirror-3.15/demo/markselection.html diff --git a/third-party/codemirror-3.15/demo/matchhighlighter.html b/to-be-integrated/third-party/codemirror-3.15/demo/matchhighlighter.html similarity index 100% rename from third-party/codemirror-3.15/demo/matchhighlighter.html rename to to-be-integrated/third-party/codemirror-3.15/demo/matchhighlighter.html diff --git a/third-party/codemirror-3.15/demo/matchtags.html b/to-be-integrated/third-party/codemirror-3.15/demo/matchtags.html similarity index 100% rename from third-party/codemirror-3.15/demo/matchtags.html rename to to-be-integrated/third-party/codemirror-3.15/demo/matchtags.html diff --git a/third-party/codemirror-3.15/demo/merge.html b/to-be-integrated/third-party/codemirror-3.15/demo/merge.html similarity index 100% rename from third-party/codemirror-3.15/demo/merge.html rename to to-be-integrated/third-party/codemirror-3.15/demo/merge.html diff --git a/third-party/codemirror-3.15/demo/multiplex.html b/to-be-integrated/third-party/codemirror-3.15/demo/multiplex.html similarity index 100% rename from third-party/codemirror-3.15/demo/multiplex.html rename to to-be-integrated/third-party/codemirror-3.15/demo/multiplex.html diff --git a/third-party/codemirror-3.15/demo/mustache.html b/to-be-integrated/third-party/codemirror-3.15/demo/mustache.html similarity index 100% rename from third-party/codemirror-3.15/demo/mustache.html rename to to-be-integrated/third-party/codemirror-3.15/demo/mustache.html diff --git a/third-party/codemirror-3.15/demo/placeholder.html b/to-be-integrated/third-party/codemirror-3.15/demo/placeholder.html similarity index 100% rename from third-party/codemirror-3.15/demo/placeholder.html rename to to-be-integrated/third-party/codemirror-3.15/demo/placeholder.html diff --git a/third-party/codemirror-3.15/demo/preview.html b/to-be-integrated/third-party/codemirror-3.15/demo/preview.html similarity index 100% rename from third-party/codemirror-3.15/demo/preview.html rename to to-be-integrated/third-party/codemirror-3.15/demo/preview.html diff --git a/third-party/codemirror-3.15/demo/resize.html b/to-be-integrated/third-party/codemirror-3.15/demo/resize.html similarity index 100% rename from third-party/codemirror-3.15/demo/resize.html rename to to-be-integrated/third-party/codemirror-3.15/demo/resize.html diff --git a/third-party/codemirror-3.15/demo/runmode.html b/to-be-integrated/third-party/codemirror-3.15/demo/runmode.html similarity index 100% rename from third-party/codemirror-3.15/demo/runmode.html rename to to-be-integrated/third-party/codemirror-3.15/demo/runmode.html diff --git a/third-party/codemirror-3.15/demo/search.html b/to-be-integrated/third-party/codemirror-3.15/demo/search.html similarity index 100% rename from third-party/codemirror-3.15/demo/search.html rename to to-be-integrated/third-party/codemirror-3.15/demo/search.html diff --git a/third-party/codemirror-3.15/demo/spanaffectswrapping_shim.html b/to-be-integrated/third-party/codemirror-3.15/demo/spanaffectswrapping_shim.html similarity index 100% rename from third-party/codemirror-3.15/demo/spanaffectswrapping_shim.html rename to to-be-integrated/third-party/codemirror-3.15/demo/spanaffectswrapping_shim.html diff --git a/third-party/codemirror-3.15/demo/tern.html b/to-be-integrated/third-party/codemirror-3.15/demo/tern.html similarity index 100% rename from third-party/codemirror-3.15/demo/tern.html rename to to-be-integrated/third-party/codemirror-3.15/demo/tern.html diff --git a/third-party/codemirror-3.15/demo/theme.html b/to-be-integrated/third-party/codemirror-3.15/demo/theme.html similarity index 100% rename from third-party/codemirror-3.15/demo/theme.html rename to to-be-integrated/third-party/codemirror-3.15/demo/theme.html diff --git a/third-party/codemirror-3.15/demo/trailingspace.html b/to-be-integrated/third-party/codemirror-3.15/demo/trailingspace.html similarity index 100% rename from third-party/codemirror-3.15/demo/trailingspace.html rename to to-be-integrated/third-party/codemirror-3.15/demo/trailingspace.html diff --git a/third-party/codemirror-3.15/demo/variableheight.html b/to-be-integrated/third-party/codemirror-3.15/demo/variableheight.html similarity index 100% rename from third-party/codemirror-3.15/demo/variableheight.html rename to to-be-integrated/third-party/codemirror-3.15/demo/variableheight.html diff --git a/third-party/codemirror-3.15/demo/vim.html b/to-be-integrated/third-party/codemirror-3.15/demo/vim.html similarity index 100% rename from third-party/codemirror-3.15/demo/vim.html rename to to-be-integrated/third-party/codemirror-3.15/demo/vim.html diff --git a/third-party/codemirror-3.15/demo/visibletabs.html b/to-be-integrated/third-party/codemirror-3.15/demo/visibletabs.html similarity index 100% rename from third-party/codemirror-3.15/demo/visibletabs.html rename to to-be-integrated/third-party/codemirror-3.15/demo/visibletabs.html diff --git a/third-party/codemirror-3.15/demo/widget.html b/to-be-integrated/third-party/codemirror-3.15/demo/widget.html similarity index 100% rename from third-party/codemirror-3.15/demo/widget.html rename to to-be-integrated/third-party/codemirror-3.15/demo/widget.html diff --git a/third-party/codemirror-3.15/demo/xmlcomplete.html b/to-be-integrated/third-party/codemirror-3.15/demo/xmlcomplete.html similarity index 100% rename from third-party/codemirror-3.15/demo/xmlcomplete.html rename to to-be-integrated/third-party/codemirror-3.15/demo/xmlcomplete.html diff --git a/third-party/codemirror-3.15/doc/baboon.png b/to-be-integrated/third-party/codemirror-3.15/doc/baboon.png similarity index 100% rename from third-party/codemirror-3.15/doc/baboon.png rename to to-be-integrated/third-party/codemirror-3.15/doc/baboon.png diff --git a/third-party/codemirror-3.15/doc/baboon_vector.svg b/to-be-integrated/third-party/codemirror-3.15/doc/baboon_vector.svg similarity index 100% rename from third-party/codemirror-3.15/doc/baboon_vector.svg rename to to-be-integrated/third-party/codemirror-3.15/doc/baboon_vector.svg diff --git a/third-party/codemirror-3.15/doc/compress.html b/to-be-integrated/third-party/codemirror-3.15/doc/compress.html similarity index 100% rename from third-party/codemirror-3.15/doc/compress.html rename to to-be-integrated/third-party/codemirror-3.15/doc/compress.html diff --git a/third-party/codemirror-3.15/doc/docs.css b/to-be-integrated/third-party/codemirror-3.15/doc/docs.css similarity index 100% rename from third-party/codemirror-3.15/doc/docs.css rename to to-be-integrated/third-party/codemirror-3.15/doc/docs.css diff --git a/third-party/codemirror-3.15/doc/internals.html b/to-be-integrated/third-party/codemirror-3.15/doc/internals.html similarity index 100% rename from third-party/codemirror-3.15/doc/internals.html rename to to-be-integrated/third-party/codemirror-3.15/doc/internals.html diff --git a/third-party/codemirror-3.15/doc/manual.html b/to-be-integrated/third-party/codemirror-3.15/doc/manual.html similarity index 100% rename from third-party/codemirror-3.15/doc/manual.html rename to to-be-integrated/third-party/codemirror-3.15/doc/manual.html diff --git a/third-party/codemirror-3.15/doc/modes.html b/to-be-integrated/third-party/codemirror-3.15/doc/modes.html similarity index 100% rename from third-party/codemirror-3.15/doc/modes.html rename to to-be-integrated/third-party/codemirror-3.15/doc/modes.html diff --git a/third-party/codemirror-3.15/doc/oldrelease.html b/to-be-integrated/third-party/codemirror-3.15/doc/oldrelease.html similarity index 100% rename from third-party/codemirror-3.15/doc/oldrelease.html rename to to-be-integrated/third-party/codemirror-3.15/doc/oldrelease.html diff --git a/third-party/codemirror-3.15/doc/realworld.html b/to-be-integrated/third-party/codemirror-3.15/doc/realworld.html similarity index 100% rename from third-party/codemirror-3.15/doc/realworld.html rename to to-be-integrated/third-party/codemirror-3.15/doc/realworld.html diff --git a/third-party/codemirror-3.15/doc/reporting.html b/to-be-integrated/third-party/codemirror-3.15/doc/reporting.html similarity index 100% rename from third-party/codemirror-3.15/doc/reporting.html rename to to-be-integrated/third-party/codemirror-3.15/doc/reporting.html diff --git a/third-party/codemirror-3.15/doc/upgrade_v2.2.html b/to-be-integrated/third-party/codemirror-3.15/doc/upgrade_v2.2.html similarity index 100% rename from third-party/codemirror-3.15/doc/upgrade_v2.2.html rename to to-be-integrated/third-party/codemirror-3.15/doc/upgrade_v2.2.html diff --git a/third-party/codemirror-3.15/doc/upgrade_v3.html b/to-be-integrated/third-party/codemirror-3.15/doc/upgrade_v3.html similarity index 100% rename from third-party/codemirror-3.15/doc/upgrade_v3.html rename to to-be-integrated/third-party/codemirror-3.15/doc/upgrade_v3.html diff --git a/third-party/codemirror-3.15/index.html b/to-be-integrated/third-party/codemirror-3.15/index.html similarity index 100% rename from third-party/codemirror-3.15/index.html rename to to-be-integrated/third-party/codemirror-3.15/index.html diff --git a/third-party/codemirror-3.15/keymap/emacs.js b/to-be-integrated/third-party/codemirror-3.15/keymap/emacs.js similarity index 100% rename from third-party/codemirror-3.15/keymap/emacs.js rename to to-be-integrated/third-party/codemirror-3.15/keymap/emacs.js diff --git a/third-party/codemirror-3.15/keymap/extra.js b/to-be-integrated/third-party/codemirror-3.15/keymap/extra.js similarity index 100% rename from third-party/codemirror-3.15/keymap/extra.js rename to to-be-integrated/third-party/codemirror-3.15/keymap/extra.js diff --git a/third-party/codemirror-3.15/keymap/vim.js b/to-be-integrated/third-party/codemirror-3.15/keymap/vim.js similarity index 100% rename from third-party/codemirror-3.15/keymap/vim.js rename to to-be-integrated/third-party/codemirror-3.15/keymap/vim.js diff --git a/third-party/codemirror-3.15/lib/codemirror.css b/to-be-integrated/third-party/codemirror-3.15/lib/codemirror.css similarity index 100% rename from third-party/codemirror-3.15/lib/codemirror.css rename to to-be-integrated/third-party/codemirror-3.15/lib/codemirror.css diff --git a/third-party/codemirror-3.15/lib/codemirror.js b/to-be-integrated/third-party/codemirror-3.15/lib/codemirror.js similarity index 100% rename from third-party/codemirror-3.15/lib/codemirror.js rename to to-be-integrated/third-party/codemirror-3.15/lib/codemirror.js diff --git a/third-party/codemirror-3.15/mode/apl/apl.js b/to-be-integrated/third-party/codemirror-3.15/mode/apl/apl.js similarity index 100% rename from third-party/codemirror-3.15/mode/apl/apl.js rename to to-be-integrated/third-party/codemirror-3.15/mode/apl/apl.js diff --git a/third-party/codemirror-3.15/mode/apl/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/apl/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/apl/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/apl/index.html diff --git a/third-party/codemirror-3.15/mode/asterisk/asterisk.js b/to-be-integrated/third-party/codemirror-3.15/mode/asterisk/asterisk.js similarity index 100% rename from third-party/codemirror-3.15/mode/asterisk/asterisk.js rename to to-be-integrated/third-party/codemirror-3.15/mode/asterisk/asterisk.js diff --git a/third-party/codemirror-3.15/mode/asterisk/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/asterisk/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/asterisk/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/asterisk/index.html diff --git a/third-party/codemirror-3.15/mode/clike/clike.js b/to-be-integrated/third-party/codemirror-3.15/mode/clike/clike.js similarity index 100% rename from third-party/codemirror-3.15/mode/clike/clike.js rename to to-be-integrated/third-party/codemirror-3.15/mode/clike/clike.js diff --git a/third-party/codemirror-3.15/mode/clike/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/clike/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/clike/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/clike/index.html diff --git a/third-party/codemirror-3.15/mode/clike/scala.html b/to-be-integrated/third-party/codemirror-3.15/mode/clike/scala.html similarity index 100% rename from third-party/codemirror-3.15/mode/clike/scala.html rename to to-be-integrated/third-party/codemirror-3.15/mode/clike/scala.html diff --git a/third-party/codemirror-3.15/mode/clojure/clojure.js b/to-be-integrated/third-party/codemirror-3.15/mode/clojure/clojure.js similarity index 100% rename from third-party/codemirror-3.15/mode/clojure/clojure.js rename to to-be-integrated/third-party/codemirror-3.15/mode/clojure/clojure.js diff --git a/third-party/codemirror-3.15/mode/clojure/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/clojure/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/clojure/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/clojure/index.html diff --git a/third-party/codemirror-3.15/mode/cobol/cobol.js b/to-be-integrated/third-party/codemirror-3.15/mode/cobol/cobol.js similarity index 100% rename from third-party/codemirror-3.15/mode/cobol/cobol.js rename to to-be-integrated/third-party/codemirror-3.15/mode/cobol/cobol.js diff --git a/third-party/codemirror-3.15/mode/cobol/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/cobol/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/cobol/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/cobol/index.html diff --git a/third-party/codemirror-3.15/mode/coffeescript/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/coffeescript/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/LICENSE diff --git a/third-party/codemirror-3.15/mode/coffeescript/coffeescript.js b/to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/coffeescript.js similarity index 100% rename from third-party/codemirror-3.15/mode/coffeescript/coffeescript.js rename to to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/coffeescript.js diff --git a/third-party/codemirror-3.15/mode/coffeescript/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/coffeescript/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/coffeescript/index.html diff --git a/third-party/codemirror-3.15/mode/commonlisp/commonlisp.js b/to-be-integrated/third-party/codemirror-3.15/mode/commonlisp/commonlisp.js similarity index 100% rename from third-party/codemirror-3.15/mode/commonlisp/commonlisp.js rename to to-be-integrated/third-party/codemirror-3.15/mode/commonlisp/commonlisp.js diff --git a/third-party/codemirror-3.15/mode/commonlisp/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/commonlisp/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/commonlisp/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/commonlisp/index.html diff --git a/third-party/codemirror-3.15/mode/css/css.js b/to-be-integrated/third-party/codemirror-3.15/mode/css/css.js similarity index 100% rename from third-party/codemirror-3.15/mode/css/css.js rename to to-be-integrated/third-party/codemirror-3.15/mode/css/css.js diff --git a/third-party/codemirror-3.15/mode/css/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/css/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/css/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/css/index.html diff --git a/third-party/codemirror-3.15/mode/css/scss.html b/to-be-integrated/third-party/codemirror-3.15/mode/css/scss.html similarity index 100% rename from third-party/codemirror-3.15/mode/css/scss.html rename to to-be-integrated/third-party/codemirror-3.15/mode/css/scss.html diff --git a/third-party/codemirror-3.15/mode/css/scss_test.js b/to-be-integrated/third-party/codemirror-3.15/mode/css/scss_test.js similarity index 100% rename from third-party/codemirror-3.15/mode/css/scss_test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/css/scss_test.js diff --git a/third-party/codemirror-3.15/mode/css/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/css/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/css/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/css/test.js diff --git a/third-party/codemirror-3.15/mode/d/d.js b/to-be-integrated/third-party/codemirror-3.15/mode/d/d.js similarity index 100% rename from third-party/codemirror-3.15/mode/d/d.js rename to to-be-integrated/third-party/codemirror-3.15/mode/d/d.js diff --git a/third-party/codemirror-3.15/mode/d/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/d/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/d/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/d/index.html diff --git a/third-party/codemirror-3.15/mode/diff/diff.js b/to-be-integrated/third-party/codemirror-3.15/mode/diff/diff.js similarity index 100% rename from third-party/codemirror-3.15/mode/diff/diff.js rename to to-be-integrated/third-party/codemirror-3.15/mode/diff/diff.js diff --git a/third-party/codemirror-3.15/mode/diff/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/diff/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/diff/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/diff/index.html diff --git a/third-party/codemirror-3.15/mode/ecl/ecl.js b/to-be-integrated/third-party/codemirror-3.15/mode/ecl/ecl.js similarity index 100% rename from third-party/codemirror-3.15/mode/ecl/ecl.js rename to to-be-integrated/third-party/codemirror-3.15/mode/ecl/ecl.js diff --git a/third-party/codemirror-3.15/mode/ecl/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/ecl/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/ecl/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/ecl/index.html diff --git a/third-party/codemirror-3.15/mode/erlang/erlang.js b/to-be-integrated/third-party/codemirror-3.15/mode/erlang/erlang.js similarity index 100% rename from third-party/codemirror-3.15/mode/erlang/erlang.js rename to to-be-integrated/third-party/codemirror-3.15/mode/erlang/erlang.js diff --git a/third-party/codemirror-3.15/mode/erlang/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/erlang/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/erlang/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/erlang/index.html diff --git a/third-party/codemirror-3.15/mode/gas/gas.js b/to-be-integrated/third-party/codemirror-3.15/mode/gas/gas.js similarity index 100% rename from third-party/codemirror-3.15/mode/gas/gas.js rename to to-be-integrated/third-party/codemirror-3.15/mode/gas/gas.js diff --git a/third-party/codemirror-3.15/mode/gas/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/gas/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/gas/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/gas/index.html diff --git a/third-party/codemirror-3.15/mode/gfm/gfm.js b/to-be-integrated/third-party/codemirror-3.15/mode/gfm/gfm.js similarity index 100% rename from third-party/codemirror-3.15/mode/gfm/gfm.js rename to to-be-integrated/third-party/codemirror-3.15/mode/gfm/gfm.js diff --git a/third-party/codemirror-3.15/mode/gfm/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/gfm/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/gfm/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/gfm/index.html diff --git a/third-party/codemirror-3.15/mode/gfm/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/gfm/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/gfm/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/gfm/test.js diff --git a/third-party/codemirror-3.15/mode/go/go.js b/to-be-integrated/third-party/codemirror-3.15/mode/go/go.js similarity index 100% rename from third-party/codemirror-3.15/mode/go/go.js rename to to-be-integrated/third-party/codemirror-3.15/mode/go/go.js diff --git a/third-party/codemirror-3.15/mode/go/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/go/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/go/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/go/index.html diff --git a/third-party/codemirror-3.15/mode/groovy/groovy.js b/to-be-integrated/third-party/codemirror-3.15/mode/groovy/groovy.js similarity index 100% rename from third-party/codemirror-3.15/mode/groovy/groovy.js rename to to-be-integrated/third-party/codemirror-3.15/mode/groovy/groovy.js diff --git a/third-party/codemirror-3.15/mode/groovy/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/groovy/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/groovy/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/groovy/index.html diff --git a/third-party/codemirror-3.15/mode/haml/haml.js b/to-be-integrated/third-party/codemirror-3.15/mode/haml/haml.js similarity index 100% rename from third-party/codemirror-3.15/mode/haml/haml.js rename to to-be-integrated/third-party/codemirror-3.15/mode/haml/haml.js diff --git a/third-party/codemirror-3.15/mode/haml/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/haml/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/haml/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/haml/index.html diff --git a/third-party/codemirror-3.15/mode/haml/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/haml/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/haml/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/haml/test.js diff --git a/third-party/codemirror-3.15/mode/haskell/haskell.js b/to-be-integrated/third-party/codemirror-3.15/mode/haskell/haskell.js similarity index 100% rename from third-party/codemirror-3.15/mode/haskell/haskell.js rename to to-be-integrated/third-party/codemirror-3.15/mode/haskell/haskell.js diff --git a/third-party/codemirror-3.15/mode/haskell/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/haskell/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/haskell/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/haskell/index.html diff --git a/third-party/codemirror-3.15/mode/haxe/haxe.js b/to-be-integrated/third-party/codemirror-3.15/mode/haxe/haxe.js similarity index 100% rename from third-party/codemirror-3.15/mode/haxe/haxe.js rename to to-be-integrated/third-party/codemirror-3.15/mode/haxe/haxe.js diff --git a/third-party/codemirror-3.15/mode/haxe/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/haxe/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/haxe/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/haxe/index.html diff --git a/third-party/codemirror-3.15/mode/htmlembedded/htmlembedded.js b/to-be-integrated/third-party/codemirror-3.15/mode/htmlembedded/htmlembedded.js similarity index 100% rename from third-party/codemirror-3.15/mode/htmlembedded/htmlembedded.js rename to to-be-integrated/third-party/codemirror-3.15/mode/htmlembedded/htmlembedded.js diff --git a/third-party/codemirror-3.15/mode/htmlembedded/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/htmlembedded/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/htmlembedded/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/htmlembedded/index.html diff --git a/third-party/codemirror-3.15/mode/htmlmixed/htmlmixed.js b/to-be-integrated/third-party/codemirror-3.15/mode/htmlmixed/htmlmixed.js similarity index 100% rename from third-party/codemirror-3.15/mode/htmlmixed/htmlmixed.js rename to to-be-integrated/third-party/codemirror-3.15/mode/htmlmixed/htmlmixed.js diff --git a/third-party/codemirror-3.15/mode/htmlmixed/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/htmlmixed/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/htmlmixed/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/htmlmixed/index.html diff --git a/third-party/codemirror-3.15/mode/http/http.js b/to-be-integrated/third-party/codemirror-3.15/mode/http/http.js similarity index 100% rename from third-party/codemirror-3.15/mode/http/http.js rename to to-be-integrated/third-party/codemirror-3.15/mode/http/http.js diff --git a/third-party/codemirror-3.15/mode/http/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/http/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/http/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/http/index.html diff --git a/third-party/codemirror-3.15/mode/jade/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/jade/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/jade/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/jade/index.html diff --git a/third-party/codemirror-3.15/mode/jade/jade.js b/to-be-integrated/third-party/codemirror-3.15/mode/jade/jade.js similarity index 100% rename from third-party/codemirror-3.15/mode/jade/jade.js rename to to-be-integrated/third-party/codemirror-3.15/mode/jade/jade.js diff --git a/third-party/codemirror-3.15/mode/javascript/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/javascript/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/javascript/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/javascript/index.html diff --git a/third-party/codemirror-3.15/mode/javascript/javascript.js b/to-be-integrated/third-party/codemirror-3.15/mode/javascript/javascript.js similarity index 100% rename from third-party/codemirror-3.15/mode/javascript/javascript.js rename to to-be-integrated/third-party/codemirror-3.15/mode/javascript/javascript.js diff --git a/third-party/codemirror-3.15/mode/javascript/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/javascript/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/javascript/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/javascript/test.js diff --git a/third-party/codemirror-3.15/mode/javascript/typescript.html b/to-be-integrated/third-party/codemirror-3.15/mode/javascript/typescript.html similarity index 100% rename from third-party/codemirror-3.15/mode/javascript/typescript.html rename to to-be-integrated/third-party/codemirror-3.15/mode/javascript/typescript.html diff --git a/third-party/codemirror-3.15/mode/jinja2/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/jinja2/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/jinja2/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/jinja2/index.html diff --git a/third-party/codemirror-3.15/mode/jinja2/jinja2.js b/to-be-integrated/third-party/codemirror-3.15/mode/jinja2/jinja2.js similarity index 100% rename from third-party/codemirror-3.15/mode/jinja2/jinja2.js rename to to-be-integrated/third-party/codemirror-3.15/mode/jinja2/jinja2.js diff --git a/third-party/codemirror-3.15/mode/less/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/less/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/less/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/less/index.html diff --git a/third-party/codemirror-3.15/mode/less/less.js b/to-be-integrated/third-party/codemirror-3.15/mode/less/less.js similarity index 100% rename from third-party/codemirror-3.15/mode/less/less.js rename to to-be-integrated/third-party/codemirror-3.15/mode/less/less.js diff --git a/third-party/codemirror-3.15/mode/livescript/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/livescript/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/livescript/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/livescript/LICENSE diff --git a/third-party/codemirror-3.15/mode/livescript/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/livescript/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/livescript/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/livescript/index.html diff --git a/third-party/codemirror-3.15/mode/livescript/livescript.js b/to-be-integrated/third-party/codemirror-3.15/mode/livescript/livescript.js similarity index 100% rename from third-party/codemirror-3.15/mode/livescript/livescript.js rename to to-be-integrated/third-party/codemirror-3.15/mode/livescript/livescript.js diff --git a/third-party/codemirror-3.15/mode/livescript/livescript.ls b/to-be-integrated/third-party/codemirror-3.15/mode/livescript/livescript.ls similarity index 100% rename from third-party/codemirror-3.15/mode/livescript/livescript.ls rename to to-be-integrated/third-party/codemirror-3.15/mode/livescript/livescript.ls diff --git a/third-party/codemirror-3.15/mode/lua/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/lua/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/lua/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/lua/index.html diff --git a/third-party/codemirror-3.15/mode/lua/lua.js b/to-be-integrated/third-party/codemirror-3.15/mode/lua/lua.js similarity index 100% rename from third-party/codemirror-3.15/mode/lua/lua.js rename to to-be-integrated/third-party/codemirror-3.15/mode/lua/lua.js diff --git a/third-party/codemirror-3.15/mode/markdown/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/markdown/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/markdown/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/markdown/index.html diff --git a/third-party/codemirror-3.15/mode/markdown/markdown.js b/to-be-integrated/third-party/codemirror-3.15/mode/markdown/markdown.js similarity index 100% rename from third-party/codemirror-3.15/mode/markdown/markdown.js rename to to-be-integrated/third-party/codemirror-3.15/mode/markdown/markdown.js diff --git a/third-party/codemirror-3.15/mode/markdown/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/markdown/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/markdown/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/markdown/test.js diff --git a/third-party/codemirror-3.15/mode/meta.js b/to-be-integrated/third-party/codemirror-3.15/mode/meta.js similarity index 100% rename from third-party/codemirror-3.15/mode/meta.js rename to to-be-integrated/third-party/codemirror-3.15/mode/meta.js diff --git a/third-party/codemirror-3.15/mode/mirc/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/mirc/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/mirc/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/mirc/index.html diff --git a/third-party/codemirror-3.15/mode/mirc/mirc.js b/to-be-integrated/third-party/codemirror-3.15/mode/mirc/mirc.js similarity index 100% rename from third-party/codemirror-3.15/mode/mirc/mirc.js rename to to-be-integrated/third-party/codemirror-3.15/mode/mirc/mirc.js diff --git a/third-party/codemirror-3.15/mode/nginx/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/nginx/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/nginx/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/nginx/index.html diff --git a/third-party/codemirror-3.15/mode/nginx/nginx.js b/to-be-integrated/third-party/codemirror-3.15/mode/nginx/nginx.js similarity index 100% rename from third-party/codemirror-3.15/mode/nginx/nginx.js rename to to-be-integrated/third-party/codemirror-3.15/mode/nginx/nginx.js diff --git a/third-party/codemirror-3.15/mode/ntriples/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/ntriples/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/ntriples/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/ntriples/index.html diff --git a/third-party/codemirror-3.15/mode/ntriples/ntriples.js b/to-be-integrated/third-party/codemirror-3.15/mode/ntriples/ntriples.js similarity index 100% rename from third-party/codemirror-3.15/mode/ntriples/ntriples.js rename to to-be-integrated/third-party/codemirror-3.15/mode/ntriples/ntriples.js diff --git a/third-party/codemirror-3.15/mode/ocaml/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/ocaml/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/ocaml/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/ocaml/index.html diff --git a/third-party/codemirror-3.15/mode/ocaml/ocaml.js b/to-be-integrated/third-party/codemirror-3.15/mode/ocaml/ocaml.js similarity index 100% rename from third-party/codemirror-3.15/mode/ocaml/ocaml.js rename to to-be-integrated/third-party/codemirror-3.15/mode/ocaml/ocaml.js diff --git a/third-party/codemirror-3.15/mode/pascal/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/pascal/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/pascal/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/pascal/LICENSE diff --git a/third-party/codemirror-3.15/mode/pascal/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/pascal/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/pascal/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/pascal/index.html diff --git a/third-party/codemirror-3.15/mode/pascal/pascal.js b/to-be-integrated/third-party/codemirror-3.15/mode/pascal/pascal.js similarity index 100% rename from third-party/codemirror-3.15/mode/pascal/pascal.js rename to to-be-integrated/third-party/codemirror-3.15/mode/pascal/pascal.js diff --git a/third-party/codemirror-3.15/mode/perl/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/perl/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/perl/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/perl/LICENSE diff --git a/third-party/codemirror-3.15/mode/perl/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/perl/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/perl/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/perl/index.html diff --git a/third-party/codemirror-3.15/mode/perl/perl.js b/to-be-integrated/third-party/codemirror-3.15/mode/perl/perl.js similarity index 100% rename from third-party/codemirror-3.15/mode/perl/perl.js rename to to-be-integrated/third-party/codemirror-3.15/mode/perl/perl.js diff --git a/third-party/codemirror-3.15/mode/php/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/php/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/php/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/php/index.html diff --git a/third-party/codemirror-3.15/mode/php/php.js b/to-be-integrated/third-party/codemirror-3.15/mode/php/php.js similarity index 100% rename from third-party/codemirror-3.15/mode/php/php.js rename to to-be-integrated/third-party/codemirror-3.15/mode/php/php.js diff --git a/third-party/codemirror-3.15/mode/pig/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/pig/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/pig/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/pig/index.html diff --git a/third-party/codemirror-3.15/mode/pig/pig.js b/to-be-integrated/third-party/codemirror-3.15/mode/pig/pig.js similarity index 100% rename from third-party/codemirror-3.15/mode/pig/pig.js rename to to-be-integrated/third-party/codemirror-3.15/mode/pig/pig.js diff --git a/third-party/codemirror-3.15/mode/properties/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/properties/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/properties/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/properties/index.html diff --git a/third-party/codemirror-3.15/mode/properties/properties.js b/to-be-integrated/third-party/codemirror-3.15/mode/properties/properties.js similarity index 100% rename from third-party/codemirror-3.15/mode/properties/properties.js rename to to-be-integrated/third-party/codemirror-3.15/mode/properties/properties.js diff --git a/third-party/codemirror-3.15/mode/python/LICENSE.txt b/to-be-integrated/third-party/codemirror-3.15/mode/python/LICENSE.txt similarity index 100% rename from third-party/codemirror-3.15/mode/python/LICENSE.txt rename to to-be-integrated/third-party/codemirror-3.15/mode/python/LICENSE.txt diff --git a/third-party/codemirror-3.15/mode/python/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/python/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/python/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/python/index.html diff --git a/third-party/codemirror-3.15/mode/python/python.js b/to-be-integrated/third-party/codemirror-3.15/mode/python/python.js similarity index 100% rename from third-party/codemirror-3.15/mode/python/python.js rename to to-be-integrated/third-party/codemirror-3.15/mode/python/python.js diff --git a/third-party/codemirror-3.15/mode/q/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/q/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/q/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/q/index.html diff --git a/third-party/codemirror-3.15/mode/q/q.js b/to-be-integrated/third-party/codemirror-3.15/mode/q/q.js similarity index 100% rename from third-party/codemirror-3.15/mode/q/q.js rename to to-be-integrated/third-party/codemirror-3.15/mode/q/q.js diff --git a/third-party/codemirror-3.15/mode/r/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/r/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/r/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/r/LICENSE diff --git a/third-party/codemirror-3.15/mode/r/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/r/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/r/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/r/index.html diff --git a/third-party/codemirror-3.15/mode/r/r.js b/to-be-integrated/third-party/codemirror-3.15/mode/r/r.js similarity index 100% rename from third-party/codemirror-3.15/mode/r/r.js rename to to-be-integrated/third-party/codemirror-3.15/mode/r/r.js diff --git a/third-party/codemirror-3.15/mode/rpm/changes/changes.js b/to-be-integrated/third-party/codemirror-3.15/mode/rpm/changes/changes.js similarity index 100% rename from third-party/codemirror-3.15/mode/rpm/changes/changes.js rename to to-be-integrated/third-party/codemirror-3.15/mode/rpm/changes/changes.js diff --git a/third-party/codemirror-3.15/mode/rpm/changes/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/rpm/changes/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/rpm/changes/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/rpm/changes/index.html diff --git a/third-party/codemirror-3.15/mode/rpm/spec/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/rpm/spec/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/index.html diff --git a/third-party/codemirror-3.15/mode/rpm/spec/spec.css b/to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/spec.css similarity index 100% rename from third-party/codemirror-3.15/mode/rpm/spec/spec.css rename to to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/spec.css diff --git a/third-party/codemirror-3.15/mode/rpm/spec/spec.js b/to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/spec.js similarity index 100% rename from third-party/codemirror-3.15/mode/rpm/spec/spec.js rename to to-be-integrated/third-party/codemirror-3.15/mode/rpm/spec/spec.js diff --git a/third-party/codemirror-3.15/mode/rst/LICENSE.txt b/to-be-integrated/third-party/codemirror-3.15/mode/rst/LICENSE.txt similarity index 100% rename from third-party/codemirror-3.15/mode/rst/LICENSE.txt rename to to-be-integrated/third-party/codemirror-3.15/mode/rst/LICENSE.txt diff --git a/third-party/codemirror-3.15/mode/rst/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/rst/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/rst/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/rst/index.html diff --git a/third-party/codemirror-3.15/mode/rst/rst.js b/to-be-integrated/third-party/codemirror-3.15/mode/rst/rst.js similarity index 100% rename from third-party/codemirror-3.15/mode/rst/rst.js rename to to-be-integrated/third-party/codemirror-3.15/mode/rst/rst.js diff --git a/third-party/codemirror-3.15/mode/ruby/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/ruby/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/ruby/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/ruby/LICENSE diff --git a/third-party/codemirror-3.15/mode/ruby/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/ruby/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/ruby/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/ruby/index.html diff --git a/third-party/codemirror-3.15/mode/ruby/ruby.js b/to-be-integrated/third-party/codemirror-3.15/mode/ruby/ruby.js similarity index 100% rename from third-party/codemirror-3.15/mode/ruby/ruby.js rename to to-be-integrated/third-party/codemirror-3.15/mode/ruby/ruby.js diff --git a/third-party/codemirror-3.15/mode/rust/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/rust/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/rust/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/rust/index.html diff --git a/third-party/codemirror-3.15/mode/rust/rust.js b/to-be-integrated/third-party/codemirror-3.15/mode/rust/rust.js similarity index 100% rename from third-party/codemirror-3.15/mode/rust/rust.js rename to to-be-integrated/third-party/codemirror-3.15/mode/rust/rust.js diff --git a/third-party/codemirror-3.15/mode/sass/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/sass/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/sass/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/sass/index.html diff --git a/third-party/codemirror-3.15/mode/sass/sass.js b/to-be-integrated/third-party/codemirror-3.15/mode/sass/sass.js similarity index 100% rename from third-party/codemirror-3.15/mode/sass/sass.js rename to to-be-integrated/third-party/codemirror-3.15/mode/sass/sass.js diff --git a/third-party/codemirror-3.15/mode/scheme/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/scheme/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/scheme/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/scheme/index.html diff --git a/third-party/codemirror-3.15/mode/scheme/scheme.js b/to-be-integrated/third-party/codemirror-3.15/mode/scheme/scheme.js similarity index 100% rename from third-party/codemirror-3.15/mode/scheme/scheme.js rename to to-be-integrated/third-party/codemirror-3.15/mode/scheme/scheme.js diff --git a/third-party/codemirror-3.15/mode/shell/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/shell/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/shell/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/shell/index.html diff --git a/third-party/codemirror-3.15/mode/shell/shell.js b/to-be-integrated/third-party/codemirror-3.15/mode/shell/shell.js similarity index 100% rename from third-party/codemirror-3.15/mode/shell/shell.js rename to to-be-integrated/third-party/codemirror-3.15/mode/shell/shell.js diff --git a/third-party/codemirror-3.15/mode/sieve/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/sieve/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/sieve/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/sieve/LICENSE diff --git a/third-party/codemirror-3.15/mode/sieve/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/sieve/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/sieve/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/sieve/index.html diff --git a/third-party/codemirror-3.15/mode/sieve/sieve.js b/to-be-integrated/third-party/codemirror-3.15/mode/sieve/sieve.js similarity index 100% rename from third-party/codemirror-3.15/mode/sieve/sieve.js rename to to-be-integrated/third-party/codemirror-3.15/mode/sieve/sieve.js diff --git a/third-party/codemirror-3.15/mode/smalltalk/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/smalltalk/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/smalltalk/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/smalltalk/index.html diff --git a/third-party/codemirror-3.15/mode/smalltalk/smalltalk.js b/to-be-integrated/third-party/codemirror-3.15/mode/smalltalk/smalltalk.js similarity index 100% rename from third-party/codemirror-3.15/mode/smalltalk/smalltalk.js rename to to-be-integrated/third-party/codemirror-3.15/mode/smalltalk/smalltalk.js diff --git a/third-party/codemirror-3.15/mode/smarty/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/smarty/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/smarty/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/smarty/index.html diff --git a/third-party/codemirror-3.15/mode/smarty/smarty.js b/to-be-integrated/third-party/codemirror-3.15/mode/smarty/smarty.js similarity index 100% rename from third-party/codemirror-3.15/mode/smarty/smarty.js rename to to-be-integrated/third-party/codemirror-3.15/mode/smarty/smarty.js diff --git a/third-party/codemirror-3.15/mode/smartymixed/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/smartymixed/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/smartymixed/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/smartymixed/index.html diff --git a/third-party/codemirror-3.15/mode/smartymixed/smartymixed.js b/to-be-integrated/third-party/codemirror-3.15/mode/smartymixed/smartymixed.js similarity index 100% rename from third-party/codemirror-3.15/mode/smartymixed/smartymixed.js rename to to-be-integrated/third-party/codemirror-3.15/mode/smartymixed/smartymixed.js diff --git a/third-party/codemirror-3.15/mode/sparql/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/sparql/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/sparql/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/sparql/index.html diff --git a/third-party/codemirror-3.15/mode/sparql/sparql.js b/to-be-integrated/third-party/codemirror-3.15/mode/sparql/sparql.js similarity index 100% rename from third-party/codemirror-3.15/mode/sparql/sparql.js rename to to-be-integrated/third-party/codemirror-3.15/mode/sparql/sparql.js diff --git a/third-party/codemirror-3.15/mode/sql/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/sql/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/sql/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/sql/index.html diff --git a/third-party/codemirror-3.15/mode/sql/sql.js b/to-be-integrated/third-party/codemirror-3.15/mode/sql/sql.js similarity index 100% rename from third-party/codemirror-3.15/mode/sql/sql.js rename to to-be-integrated/third-party/codemirror-3.15/mode/sql/sql.js diff --git a/third-party/codemirror-3.15/mode/stex/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/stex/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/stex/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/stex/index.html diff --git a/third-party/codemirror-3.15/mode/stex/stex.js b/to-be-integrated/third-party/codemirror-3.15/mode/stex/stex.js similarity index 100% rename from third-party/codemirror-3.15/mode/stex/stex.js rename to to-be-integrated/third-party/codemirror-3.15/mode/stex/stex.js diff --git a/third-party/codemirror-3.15/mode/stex/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/stex/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/stex/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/stex/test.js diff --git a/third-party/codemirror-3.15/mode/tcl/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/tcl/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/tcl/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/tcl/index.html diff --git a/third-party/codemirror-3.15/mode/tcl/tcl.js b/to-be-integrated/third-party/codemirror-3.15/mode/tcl/tcl.js similarity index 100% rename from third-party/codemirror-3.15/mode/tcl/tcl.js rename to to-be-integrated/third-party/codemirror-3.15/mode/tcl/tcl.js diff --git a/third-party/codemirror-3.15/mode/tiddlywiki/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/tiddlywiki/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/index.html diff --git a/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.css b/to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.css similarity index 100% rename from third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.css rename to to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.css diff --git a/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.js b/to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.js similarity index 100% rename from third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.js rename to to-be-integrated/third-party/codemirror-3.15/mode/tiddlywiki/tiddlywiki.js diff --git a/third-party/codemirror-3.15/mode/tiki/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/tiki/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/tiki/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/tiki/index.html diff --git a/third-party/codemirror-3.15/mode/tiki/tiki.css b/to-be-integrated/third-party/codemirror-3.15/mode/tiki/tiki.css similarity index 100% rename from third-party/codemirror-3.15/mode/tiki/tiki.css rename to to-be-integrated/third-party/codemirror-3.15/mode/tiki/tiki.css diff --git a/third-party/codemirror-3.15/mode/tiki/tiki.js b/to-be-integrated/third-party/codemirror-3.15/mode/tiki/tiki.js similarity index 100% rename from third-party/codemirror-3.15/mode/tiki/tiki.js rename to to-be-integrated/third-party/codemirror-3.15/mode/tiki/tiki.js diff --git a/third-party/codemirror-3.15/mode/turtle/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/turtle/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/turtle/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/turtle/index.html diff --git a/third-party/codemirror-3.15/mode/turtle/turtle.js b/to-be-integrated/third-party/codemirror-3.15/mode/turtle/turtle.js similarity index 100% rename from third-party/codemirror-3.15/mode/turtle/turtle.js rename to to-be-integrated/third-party/codemirror-3.15/mode/turtle/turtle.js diff --git a/third-party/codemirror-3.15/mode/vb/LICENSE.txt b/to-be-integrated/third-party/codemirror-3.15/mode/vb/LICENSE.txt similarity index 100% rename from third-party/codemirror-3.15/mode/vb/LICENSE.txt rename to to-be-integrated/third-party/codemirror-3.15/mode/vb/LICENSE.txt diff --git a/third-party/codemirror-3.15/mode/vb/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/vb/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/vb/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/vb/index.html diff --git a/third-party/codemirror-3.15/mode/vb/vb.js b/to-be-integrated/third-party/codemirror-3.15/mode/vb/vb.js similarity index 100% rename from third-party/codemirror-3.15/mode/vb/vb.js rename to to-be-integrated/third-party/codemirror-3.15/mode/vb/vb.js diff --git a/third-party/codemirror-3.15/mode/vbscript/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/vbscript/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/vbscript/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/vbscript/index.html diff --git a/third-party/codemirror-3.15/mode/vbscript/vbscript.js b/to-be-integrated/third-party/codemirror-3.15/mode/vbscript/vbscript.js similarity index 100% rename from third-party/codemirror-3.15/mode/vbscript/vbscript.js rename to to-be-integrated/third-party/codemirror-3.15/mode/vbscript/vbscript.js diff --git a/third-party/codemirror-3.15/mode/velocity/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/velocity/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/velocity/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/velocity/index.html diff --git a/third-party/codemirror-3.15/mode/velocity/velocity.js b/to-be-integrated/third-party/codemirror-3.15/mode/velocity/velocity.js similarity index 100% rename from third-party/codemirror-3.15/mode/velocity/velocity.js rename to to-be-integrated/third-party/codemirror-3.15/mode/velocity/velocity.js diff --git a/third-party/codemirror-3.15/mode/verilog/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/verilog/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/verilog/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/verilog/index.html diff --git a/third-party/codemirror-3.15/mode/verilog/verilog.js b/to-be-integrated/third-party/codemirror-3.15/mode/verilog/verilog.js similarity index 100% rename from third-party/codemirror-3.15/mode/verilog/verilog.js rename to to-be-integrated/third-party/codemirror-3.15/mode/verilog/verilog.js diff --git a/third-party/codemirror-3.15/mode/xml/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/xml/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/xml/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/xml/index.html diff --git a/third-party/codemirror-3.15/mode/xml/xml.js b/to-be-integrated/third-party/codemirror-3.15/mode/xml/xml.js similarity index 100% rename from third-party/codemirror-3.15/mode/xml/xml.js rename to to-be-integrated/third-party/codemirror-3.15/mode/xml/xml.js diff --git a/third-party/codemirror-3.15/mode/xquery/LICENSE b/to-be-integrated/third-party/codemirror-3.15/mode/xquery/LICENSE similarity index 100% rename from third-party/codemirror-3.15/mode/xquery/LICENSE rename to to-be-integrated/third-party/codemirror-3.15/mode/xquery/LICENSE diff --git a/third-party/codemirror-3.15/mode/xquery/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/xquery/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/xquery/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/xquery/index.html diff --git a/third-party/codemirror-3.15/mode/xquery/test.js b/to-be-integrated/third-party/codemirror-3.15/mode/xquery/test.js similarity index 100% rename from third-party/codemirror-3.15/mode/xquery/test.js rename to to-be-integrated/third-party/codemirror-3.15/mode/xquery/test.js diff --git a/third-party/codemirror-3.15/mode/xquery/xquery.js b/to-be-integrated/third-party/codemirror-3.15/mode/xquery/xquery.js similarity index 100% rename from third-party/codemirror-3.15/mode/xquery/xquery.js rename to to-be-integrated/third-party/codemirror-3.15/mode/xquery/xquery.js diff --git a/third-party/codemirror-3.15/mode/yaml/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/yaml/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/yaml/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/yaml/index.html diff --git a/third-party/codemirror-3.15/mode/yaml/yaml.js b/to-be-integrated/third-party/codemirror-3.15/mode/yaml/yaml.js similarity index 100% rename from third-party/codemirror-3.15/mode/yaml/yaml.js rename to to-be-integrated/third-party/codemirror-3.15/mode/yaml/yaml.js diff --git a/third-party/codemirror-3.15/mode/z80/index.html b/to-be-integrated/third-party/codemirror-3.15/mode/z80/index.html similarity index 100% rename from third-party/codemirror-3.15/mode/z80/index.html rename to to-be-integrated/third-party/codemirror-3.15/mode/z80/index.html diff --git a/third-party/codemirror-3.15/mode/z80/z80.js b/to-be-integrated/third-party/codemirror-3.15/mode/z80/z80.js similarity index 100% rename from third-party/codemirror-3.15/mode/z80/z80.js rename to to-be-integrated/third-party/codemirror-3.15/mode/z80/z80.js diff --git a/third-party/codemirror-3.15/package.json b/to-be-integrated/third-party/codemirror-3.15/package.json similarity index 100% rename from third-party/codemirror-3.15/package.json rename to to-be-integrated/third-party/codemirror-3.15/package.json diff --git a/third-party/codemirror-3.15/test/comment_test.js b/to-be-integrated/third-party/codemirror-3.15/test/comment_test.js similarity index 100% rename from third-party/codemirror-3.15/test/comment_test.js rename to to-be-integrated/third-party/codemirror-3.15/test/comment_test.js diff --git a/third-party/codemirror-3.15/test/doc_test.js b/to-be-integrated/third-party/codemirror-3.15/test/doc_test.js similarity index 100% rename from third-party/codemirror-3.15/test/doc_test.js rename to to-be-integrated/third-party/codemirror-3.15/test/doc_test.js diff --git a/third-party/codemirror-3.15/test/driver.js b/to-be-integrated/third-party/codemirror-3.15/test/driver.js similarity index 100% rename from third-party/codemirror-3.15/test/driver.js rename to to-be-integrated/third-party/codemirror-3.15/test/driver.js diff --git a/third-party/codemirror-3.15/test/emacs_test.js b/to-be-integrated/third-party/codemirror-3.15/test/emacs_test.js similarity index 100% rename from third-party/codemirror-3.15/test/emacs_test.js rename to to-be-integrated/third-party/codemirror-3.15/test/emacs_test.js diff --git a/third-party/codemirror-3.15/test/index.html b/to-be-integrated/third-party/codemirror-3.15/test/index.html similarity index 100% rename from third-party/codemirror-3.15/test/index.html rename to to-be-integrated/third-party/codemirror-3.15/test/index.html diff --git a/third-party/codemirror-3.15/test/lint/acorn.js b/to-be-integrated/third-party/codemirror-3.15/test/lint/acorn.js similarity index 100% rename from third-party/codemirror-3.15/test/lint/acorn.js rename to to-be-integrated/third-party/codemirror-3.15/test/lint/acorn.js diff --git a/third-party/codemirror-3.15/test/lint/lint.js b/to-be-integrated/third-party/codemirror-3.15/test/lint/lint.js similarity index 100% rename from third-party/codemirror-3.15/test/lint/lint.js rename to to-be-integrated/third-party/codemirror-3.15/test/lint/lint.js diff --git a/third-party/codemirror-3.15/test/lint/parse-js.js b/to-be-integrated/third-party/codemirror-3.15/test/lint/parse-js.js similarity index 100% rename from third-party/codemirror-3.15/test/lint/parse-js.js rename to to-be-integrated/third-party/codemirror-3.15/test/lint/parse-js.js diff --git a/third-party/codemirror-3.15/test/lint/walk.js b/to-be-integrated/third-party/codemirror-3.15/test/lint/walk.js similarity index 100% rename from third-party/codemirror-3.15/test/lint/walk.js rename to to-be-integrated/third-party/codemirror-3.15/test/lint/walk.js diff --git a/third-party/codemirror-3.15/test/mode_test.css b/to-be-integrated/third-party/codemirror-3.15/test/mode_test.css similarity index 100% rename from third-party/codemirror-3.15/test/mode_test.css rename to to-be-integrated/third-party/codemirror-3.15/test/mode_test.css diff --git a/third-party/codemirror-3.15/test/mode_test.js b/to-be-integrated/third-party/codemirror-3.15/test/mode_test.js similarity index 100% rename from third-party/codemirror-3.15/test/mode_test.js rename to to-be-integrated/third-party/codemirror-3.15/test/mode_test.js diff --git a/third-party/codemirror-3.15/test/phantom_driver.js b/to-be-integrated/third-party/codemirror-3.15/test/phantom_driver.js similarity index 100% rename from third-party/codemirror-3.15/test/phantom_driver.js rename to to-be-integrated/third-party/codemirror-3.15/test/phantom_driver.js diff --git a/third-party/codemirror-3.15/test/run.js b/to-be-integrated/third-party/codemirror-3.15/test/run.js similarity index 100% rename from third-party/codemirror-3.15/test/run.js rename to to-be-integrated/third-party/codemirror-3.15/test/run.js diff --git a/third-party/codemirror-3.15/test/test.js b/to-be-integrated/third-party/codemirror-3.15/test/test.js similarity index 100% rename from third-party/codemirror-3.15/test/test.js rename to to-be-integrated/third-party/codemirror-3.15/test/test.js diff --git a/third-party/codemirror-3.15/test/vim_test.js b/to-be-integrated/third-party/codemirror-3.15/test/vim_test.js similarity index 100% rename from third-party/codemirror-3.15/test/vim_test.js rename to to-be-integrated/third-party/codemirror-3.15/test/vim_test.js diff --git a/third-party/codemirror-3.15/theme/3024-day.css b/to-be-integrated/third-party/codemirror-3.15/theme/3024-day.css similarity index 100% rename from third-party/codemirror-3.15/theme/3024-day.css rename to to-be-integrated/third-party/codemirror-3.15/theme/3024-day.css diff --git a/third-party/codemirror-3.15/theme/3024-night.css b/to-be-integrated/third-party/codemirror-3.15/theme/3024-night.css similarity index 100% rename from third-party/codemirror-3.15/theme/3024-night.css rename to to-be-integrated/third-party/codemirror-3.15/theme/3024-night.css diff --git a/third-party/codemirror-3.15/theme/ambiance-mobile.css b/to-be-integrated/third-party/codemirror-3.15/theme/ambiance-mobile.css similarity index 100% rename from third-party/codemirror-3.15/theme/ambiance-mobile.css rename to to-be-integrated/third-party/codemirror-3.15/theme/ambiance-mobile.css diff --git a/third-party/codemirror-3.15/theme/ambiance.css b/to-be-integrated/third-party/codemirror-3.15/theme/ambiance.css similarity index 100% rename from third-party/codemirror-3.15/theme/ambiance.css rename to to-be-integrated/third-party/codemirror-3.15/theme/ambiance.css diff --git a/third-party/codemirror-3.15/theme/base16-dark.css b/to-be-integrated/third-party/codemirror-3.15/theme/base16-dark.css similarity index 100% rename from third-party/codemirror-3.15/theme/base16-dark.css rename to to-be-integrated/third-party/codemirror-3.15/theme/base16-dark.css diff --git a/third-party/codemirror-3.15/theme/base16-light.css b/to-be-integrated/third-party/codemirror-3.15/theme/base16-light.css similarity index 100% rename from third-party/codemirror-3.15/theme/base16-light.css rename to to-be-integrated/third-party/codemirror-3.15/theme/base16-light.css diff --git a/third-party/codemirror-3.15/theme/blackboard.css b/to-be-integrated/third-party/codemirror-3.15/theme/blackboard.css similarity index 100% rename from third-party/codemirror-3.15/theme/blackboard.css rename to to-be-integrated/third-party/codemirror-3.15/theme/blackboard.css diff --git a/third-party/codemirror-3.15/theme/cobalt.css b/to-be-integrated/third-party/codemirror-3.15/theme/cobalt.css similarity index 100% rename from third-party/codemirror-3.15/theme/cobalt.css rename to to-be-integrated/third-party/codemirror-3.15/theme/cobalt.css diff --git a/third-party/codemirror-3.15/theme/eclipse.css b/to-be-integrated/third-party/codemirror-3.15/theme/eclipse.css similarity index 100% rename from third-party/codemirror-3.15/theme/eclipse.css rename to to-be-integrated/third-party/codemirror-3.15/theme/eclipse.css diff --git a/third-party/codemirror-3.15/theme/elegant.css b/to-be-integrated/third-party/codemirror-3.15/theme/elegant.css similarity index 100% rename from third-party/codemirror-3.15/theme/elegant.css rename to to-be-integrated/third-party/codemirror-3.15/theme/elegant.css diff --git a/third-party/codemirror-3.15/theme/erlang-dark.css b/to-be-integrated/third-party/codemirror-3.15/theme/erlang-dark.css similarity index 100% rename from third-party/codemirror-3.15/theme/erlang-dark.css rename to to-be-integrated/third-party/codemirror-3.15/theme/erlang-dark.css diff --git a/third-party/codemirror-3.15/theme/lesser-dark.css b/to-be-integrated/third-party/codemirror-3.15/theme/lesser-dark.css similarity index 100% rename from third-party/codemirror-3.15/theme/lesser-dark.css rename to to-be-integrated/third-party/codemirror-3.15/theme/lesser-dark.css diff --git a/third-party/codemirror-3.15/theme/midnight.css b/to-be-integrated/third-party/codemirror-3.15/theme/midnight.css similarity index 100% rename from third-party/codemirror-3.15/theme/midnight.css rename to to-be-integrated/third-party/codemirror-3.15/theme/midnight.css diff --git a/third-party/codemirror-3.15/theme/monokai.css b/to-be-integrated/third-party/codemirror-3.15/theme/monokai.css similarity index 100% rename from third-party/codemirror-3.15/theme/monokai.css rename to to-be-integrated/third-party/codemirror-3.15/theme/monokai.css diff --git a/third-party/codemirror-3.15/theme/neat.css b/to-be-integrated/third-party/codemirror-3.15/theme/neat.css similarity index 100% rename from third-party/codemirror-3.15/theme/neat.css rename to to-be-integrated/third-party/codemirror-3.15/theme/neat.css diff --git a/third-party/codemirror-3.15/theme/night.css b/to-be-integrated/third-party/codemirror-3.15/theme/night.css similarity index 100% rename from third-party/codemirror-3.15/theme/night.css rename to to-be-integrated/third-party/codemirror-3.15/theme/night.css diff --git a/third-party/codemirror-3.15/theme/rubyblue.css b/to-be-integrated/third-party/codemirror-3.15/theme/rubyblue.css similarity index 100% rename from third-party/codemirror-3.15/theme/rubyblue.css rename to to-be-integrated/third-party/codemirror-3.15/theme/rubyblue.css diff --git a/third-party/codemirror-3.15/theme/solarized.css b/to-be-integrated/third-party/codemirror-3.15/theme/solarized.css similarity index 100% rename from third-party/codemirror-3.15/theme/solarized.css rename to to-be-integrated/third-party/codemirror-3.15/theme/solarized.css diff --git a/third-party/codemirror-3.15/theme/tomorrow-night-eighties.css b/to-be-integrated/third-party/codemirror-3.15/theme/tomorrow-night-eighties.css similarity index 100% rename from third-party/codemirror-3.15/theme/tomorrow-night-eighties.css rename to to-be-integrated/third-party/codemirror-3.15/theme/tomorrow-night-eighties.css diff --git a/third-party/codemirror-3.15/theme/twilight.css b/to-be-integrated/third-party/codemirror-3.15/theme/twilight.css similarity index 100% rename from third-party/codemirror-3.15/theme/twilight.css rename to to-be-integrated/third-party/codemirror-3.15/theme/twilight.css diff --git a/third-party/codemirror-3.15/theme/vibrant-ink.css b/to-be-integrated/third-party/codemirror-3.15/theme/vibrant-ink.css similarity index 100% rename from third-party/codemirror-3.15/theme/vibrant-ink.css rename to to-be-integrated/third-party/codemirror-3.15/theme/vibrant-ink.css diff --git a/third-party/codemirror-3.15/theme/xq-dark.css b/to-be-integrated/third-party/codemirror-3.15/theme/xq-dark.css similarity index 100% rename from third-party/codemirror-3.15/theme/xq-dark.css rename to to-be-integrated/third-party/codemirror-3.15/theme/xq-dark.css diff --git a/third-party/codemirror-3.15/theme/xq-light.css b/to-be-integrated/third-party/codemirror-3.15/theme/xq-light.css similarity index 100% rename from third-party/codemirror-3.15/theme/xq-light.css rename to to-be-integrated/third-party/codemirror-3.15/theme/xq-light.css diff --git a/views/loginrequired.py b/unfold/loginrequired.py similarity index 100% rename from views/loginrequired.py rename to unfold/loginrequired.py