diff --git a/.gitignore b/.gitignore
index 84c41c9..6e7070b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,9 @@
*.pyc
htdocs/media/
+media/
+.gitignore
+.idea/
+.project
+.pydevproject
+.settings/
*~
diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml
new file mode 100644
index 0000000..1244138
--- /dev/null
+++ b/.idea/dataSources.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ mysql
+ true
+ com.mysql.jdbc.Driver
+ jdbc:mariadb://127.0.0.1/kasu
+
+
+
+
+
+
+
+
+
+ file:///usr/share/java/mariadb-jdbc/mariadb-java-client.jar
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..d821048
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/kasu.iml b/.idea/kasu.iml
new file mode 100644
index 0000000..0eebf16
--- /dev/null
+++ b/.idea/kasu.iml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..95ff5db
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..25d7ef2
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml
new file mode 100644
index 0000000..922003b
--- /dev/null
+++ b/.idea/scopes/scope_settings.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/aggregator/__init__.py b/aggregator/__init__.py
similarity index 100%
rename from src/aggregator/__init__.py
rename to aggregator/__init__.py
diff --git a/src/aggregator/admin.py b/aggregator/admin.py
similarity index 100%
rename from src/aggregator/admin.py
rename to aggregator/admin.py
diff --git a/src/aggregator/feeds.py b/aggregator/feeds.py
similarity index 100%
rename from src/aggregator/feeds.py
rename to aggregator/feeds.py
diff --git a/src/aggregator/management/__init__.py b/aggregator/management/__init__.py
similarity index 100%
rename from src/aggregator/management/__init__.py
rename to aggregator/management/__init__.py
diff --git a/src/aggregator/management/commands/__init__.py b/aggregator/management/commands/__init__.py
similarity index 100%
rename from src/aggregator/management/commands/__init__.py
rename to aggregator/management/commands/__init__.py
diff --git a/src/aggregator/management/commands/update-feeds.py b/aggregator/management/commands/update-feeds.py
similarity index 100%
rename from src/aggregator/management/commands/update-feeds.py
rename to aggregator/management/commands/update-feeds.py
diff --git a/src/aggregator/models.py b/aggregator/models.py
similarity index 100%
rename from src/aggregator/models.py
rename to aggregator/models.py
diff --git a/src/aggregator/sitemaps.py b/aggregator/sitemaps.py
similarity index 100%
rename from src/aggregator/sitemaps.py
rename to aggregator/sitemaps.py
diff --git a/src/aggregator/templatetags/aggregator.py b/aggregator/templatetags/aggregator.py
similarity index 100%
rename from src/aggregator/templatetags/aggregator.py
rename to aggregator/templatetags/aggregator.py
diff --git a/src/__init__.py b/content/__init__.py
similarity index 100%
rename from src/__init__.py
rename to content/__init__.py
diff --git a/src/content/admin.py b/content/admin.py
similarity index 100%
rename from src/content/admin.py
rename to content/admin.py
diff --git a/src/content/context_processors.py b/content/context_processors.py
similarity index 100%
rename from src/content/context_processors.py
rename to content/context_processors.py
diff --git a/src/content/feeds.py b/content/feeds.py
similarity index 100%
rename from src/content/feeds.py
rename to content/feeds.py
diff --git a/src/content/forms.py b/content/forms.py
similarity index 100%
rename from src/content/forms.py
rename to content/forms.py
diff --git a/src/content/management/__init__.py b/content/management/__init__.py
similarity index 100%
rename from src/content/management/__init__.py
rename to content/management/__init__.py
diff --git a/src/content/management/commands/__init__.py b/content/management/commands/__init__.py
similarity index 100%
rename from src/content/management/commands/__init__.py
rename to content/management/commands/__init__.py
diff --git a/src/content/management/commands/importarticles.py b/content/management/commands/importarticles.py
similarity index 100%
rename from src/content/management/commands/importarticles.py
rename to content/management/commands/importarticles.py
diff --git a/src/content/management/commands/importgalleries.py b/content/management/commands/importgalleries.py
similarity index 100%
rename from src/content/management/commands/importgalleries.py
rename to content/management/commands/importgalleries.py
diff --git a/src/content/models.py b/content/models.py
similarity index 100%
rename from src/content/models.py
rename to content/models.py
diff --git a/src/content/specs.py b/content/specs.py
similarity index 100%
rename from src/content/specs.py
rename to content/specs.py
diff --git a/src/templates/content/article_archive.html b/content/templates/content/article_archive.html
similarity index 100%
rename from src/templates/content/article_archive.html
rename to content/templates/content/article_archive.html
diff --git a/src/templates/content/article_archive_month.html b/content/templates/content/article_archive_month.html
similarity index 100%
rename from src/templates/content/article_archive_month.html
rename to content/templates/content/article_archive_month.html
diff --git a/src/templates/content/article_archive_year.html b/content/templates/content/article_archive_year.html
similarity index 100%
rename from src/templates/content/article_archive_year.html
rename to content/templates/content/article_archive_year.html
diff --git a/src/templates/content/article_detail.html b/content/templates/content/article_detail.html
similarity index 100%
rename from src/templates/content/article_detail.html
rename to content/templates/content/article_detail.html
diff --git a/src/templates/content/article_form.html b/content/templates/content/article_form.html
similarity index 100%
rename from src/templates/content/article_form.html
rename to content/templates/content/article_form.html
diff --git a/src/templates/content/clear_page.html b/content/templates/content/clear_page.html
similarity index 100%
rename from src/templates/content/clear_page.html
rename to content/templates/content/clear_page.html
diff --git a/src/templates/content/page.html b/content/templates/content/page.html
similarity index 100%
rename from src/templates/content/page.html
rename to content/templates/content/page.html
diff --git a/src/templates/content/page_form.html b/content/templates/content/page_form.html
similarity index 100%
rename from src/templates/content/page_form.html
rename to content/templates/content/page_form.html
diff --git a/src/templates/content/page_pdf.html b/content/templates/content/page_pdf.html
similarity index 100%
rename from src/templates/content/page_pdf.html
rename to content/templates/content/page_pdf.html
diff --git a/src/content/__init__.py b/content/templatetags/__init__.py
similarity index 100%
rename from src/content/__init__.py
rename to content/templatetags/__init__.py
diff --git a/src/content/templatetags/fieldset_extras.py b/content/templatetags/fieldset_extras.py
similarity index 100%
rename from src/content/templatetags/fieldset_extras.py
rename to content/templatetags/fieldset_extras.py
diff --git a/src/content/tests.py b/content/tests.py
similarity index 100%
rename from src/content/tests.py
rename to content/tests.py
diff --git a/src/content/views.py b/content/views.py
similarity index 100%
rename from src/content/views.py
rename to content/views.py
diff --git a/src/content/templatetags/__init__.py b/events/__init__.py
similarity index 100%
rename from src/content/templatetags/__init__.py
rename to events/__init__.py
diff --git a/src/events/admin.py b/events/admin.py
similarity index 100%
rename from src/events/admin.py
rename to events/admin.py
diff --git a/src/events/forms.py b/events/forms.py
similarity index 100%
rename from src/events/forms.py
rename to events/forms.py
diff --git a/src/events/models.py b/events/models.py
similarity index 100%
rename from src/events/models.py
rename to events/models.py
diff --git a/src/events/specs.py b/events/specs.py
similarity index 100%
rename from src/events/specs.py
rename to events/specs.py
diff --git a/src/templates/events/event_archive.html b/events/templates/events/event_archive.html
similarity index 100%
rename from src/templates/events/event_archive.html
rename to events/templates/events/event_archive.html
diff --git a/src/templates/events/event_detail.html b/events/templates/events/event_detail.html
similarity index 100%
rename from src/templates/events/event_detail.html
rename to events/templates/events/event_detail.html
diff --git a/src/templates/events/event_form.html b/events/templates/events/event_form.html
similarity index 100%
rename from src/templates/events/event_form.html
rename to events/templates/events/event_form.html
diff --git a/src/templates/events/event_list.html b/events/templates/events/event_list.html
similarity index 100%
rename from src/templates/events/event_list.html
rename to events/templates/events/event_list.html
diff --git a/src/templates/events/event_site.html b/events/templates/events/event_site.html
similarity index 100%
rename from src/templates/events/event_site.html
rename to events/templates/events/event_site.html
diff --git a/src/templates/events/page.html b/events/templates/events/page.html
similarity index 100%
rename from src/templates/events/page.html
rename to events/templates/events/page.html
diff --git a/src/templates/events/photo_confirm_delete.html b/events/templates/events/photo_confirm_delete.html
similarity index 100%
rename from src/templates/events/photo_confirm_delete.html
rename to events/templates/events/photo_confirm_delete.html
diff --git a/src/templates/events/photo_detail.html b/events/templates/events/photo_detail.html
similarity index 100%
rename from src/templates/events/photo_detail.html
rename to events/templates/events/photo_detail.html
diff --git a/src/templates/events/photo_gallery.html b/events/templates/events/photo_gallery.html
similarity index 100%
rename from src/templates/events/photo_gallery.html
rename to events/templates/events/photo_gallery.html
diff --git a/src/templates/events/photo_list.html b/events/templates/events/photo_list.html
similarity index 100%
rename from src/templates/events/photo_list.html
rename to events/templates/events/photo_list.html
diff --git a/src/templates/events/photo_upload.html b/events/templates/events/photo_upload.html
similarity index 100%
rename from src/templates/events/photo_upload.html
rename to events/templates/events/photo_upload.html
diff --git a/src/events/tests.py b/events/tests.py
similarity index 100%
rename from src/events/tests.py
rename to events/tests.py
diff --git a/src/events/views.py b/events/views.py
similarity index 100%
rename from src/events/views.py
rename to events/views.py
diff --git a/src/events/__init__.py b/kasu/__init__.py
similarity index 100%
rename from src/events/__init__.py
rename to kasu/__init__.py
diff --git a/src/kasu.wsgi b/kasu/kasu.wsgi
similarity index 100%
rename from src/kasu.wsgi
rename to kasu/kasu.wsgi
diff --git a/src/locale/de/LC_MESSAGES/django.mo b/kasu/locale/de/LC_MESSAGES/django.mo
similarity index 100%
rename from src/locale/de/LC_MESSAGES/django.mo
rename to kasu/locale/de/LC_MESSAGES/django.mo
diff --git a/src/locale/de/LC_MESSAGES/django.po b/kasu/locale/de/LC_MESSAGES/django.po
similarity index 100%
rename from src/locale/de/LC_MESSAGES/django.po
rename to kasu/locale/de/LC_MESSAGES/django.po
diff --git a/src/locale/de_AT/LC_MESSAGES/django.mo b/kasu/locale/de_AT/LC_MESSAGES/django.mo
similarity index 100%
rename from src/locale/de_AT/LC_MESSAGES/django.mo
rename to kasu/locale/de_AT/LC_MESSAGES/django.mo
diff --git a/src/locale/de_AT/LC_MESSAGES/django.po b/kasu/locale/de_AT/LC_MESSAGES/django.po
similarity index 100%
rename from src/locale/de_AT/LC_MESSAGES/django.po
rename to kasu/locale/de_AT/LC_MESSAGES/django.po
diff --git a/src/logging.conf b/kasu/logging.conf
similarity index 100%
rename from src/logging.conf
rename to kasu/logging.conf
diff --git a/src/output.txt b/kasu/output.txt
similarity index 100%
rename from src/output.txt
rename to kasu/output.txt
diff --git a/src/utils/templatetags/__init__.py b/kasu/settings/__init__.py
similarity index 100%
rename from src/utils/templatetags/__init__.py
rename to kasu/settings/__init__.py
diff --git a/src/settings.py b/kasu/settings/base.py
similarity index 71%
rename from src/settings.py
rename to kasu/settings/base.py
index 9d5068c..47bca7c 100644
--- a/src/settings.py
+++ b/kasu/settings/base.py
@@ -2,11 +2,7 @@ from os import path
from django.template.defaultfilters import slugify
gettext = lambda s: s
-
-DEBUG = False
-TEMPLATE_DEBUG = DEBUG
-PROJECT_PATH = path.abspath(path.join(path.dirname(__file__), '..'))
-
+PROJECT_PATH = path.abspath(path.join(path.dirname(__file__), '..', '..'))
INSTALLED_APPS = [
'grappelli',
@@ -40,7 +36,7 @@ EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = "webmaster@kasu.at"
-LOCALE_PATHS = (path.join(PROJECT_PATH, 'src', 'locale/'),)
+LOCALE_PATHS = (path.join(PROJECT_PATH, 'kasu', 'locale/'),)
AUTH_PROFILE_MODULE = 'membership.Membership'
AUTHENTICATION_BACKENDS = (
@@ -96,7 +92,7 @@ USE_L10N = True
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
-MEDIA_ROOT = path.join(PROJECT_PATH, 'htdocs', 'media')
+MEDIA_ROOT = path.join(PROJECT_PATH, 'media')
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
@@ -108,7 +104,7 @@ MEDIA_URL = '/media/'
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
-STATIC_ROOT = path.join(PROJECT_PATH, 'htdocs')
+STATIC_ROOT = path.join(PROJECT_PATH, 'static')
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
@@ -120,7 +116,7 @@ STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
- path.join(PROJECT_PATH, 'static'),
+ path.join(PROJECT_PATH, 'kasu','static'),
)
# List of finder classes that know how to find static files in
@@ -142,7 +138,7 @@ MIDDLEWARE_CLASSES = [
'django.contrib.messages.middleware.MessageMiddleware',
]
-ROOT_URLCONF = 'urls'
+ROOT_URLCONF = 'kasu.urls'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
@@ -171,62 +167,6 @@ TEMPLATE_CONTEXT_PROCESSORS = (
# PREFIX_DEFAULT_LOCALE = True
-# A sample logging configuration. The only tangible logging
-# performed by this configuration is to send an email to
-# the site admins on every HTTP 500 error.
-# See http://docs.djangoproject.com/en/dev/topics/logging for
-# more details on how to customize your logging configuration.
-LOGGING = {
- 'version': 1,
- 'disable_existing_loggers': True,
- 'filters': {
- 'require_debug_false': {
- '()': 'django.utils.log.RequireDebugFalse'
- }
- },
- 'formatters': {
- 'verbose': {
- 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s' # @IgnorePep8
- },
- 'simple': {
- 'format': '%(levelname)s %(message)s'
- },
- },
- 'handlers': {
- 'null': {
- 'level': 'DEBUG',
- 'class': 'django.utils.log.NullHandler',
- },
- 'console': {
- 'level': 'DEBUG',
- 'class': 'logging.StreamHandler',
- 'formatter': 'simple'
- },
- 'mail_admins': {
- 'level': 'ERROR',
- 'filters': ['require_debug_false'],
- 'class': 'django.utils.log.AdminEmailHandler',
- }
- },
- 'loggers': {
- 'django': {
- 'handlers': ['console'],
- 'level': 'INFO',
- 'propagate': True,
- },
- 'django.request': {
- 'handlers': ['console', 'mail_admins'],
- 'level': 'ERROR',
- 'propagate': False,
- },
- 'kasu': {
- 'handlers': ['console', 'mail_admins'],
- 'level': 'DEBUG',
- 'propagate': False,
- },
-
- }
-}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
@@ -264,22 +204,3 @@ SOCIAL_AUTH_TWITTER_SECRET = 'xLhz4zwAn3Lyl9MmJAiL85IurdmYzjDpoQF36du8tWg'
SESSION_COOKIE_DOMAIN = '.kasu.at' # Die ganze Domain Kasu
SESSION_COOKIE_AGE = 4838400 # Session dauer: 4 Wochen
-########################################
-# Tools for the development enviroment #
-########################################
-
-if DEBUG:
- # Load the Rosetta Translation Tool if available
- try:
- import rosetta # @UnusedImport
- INSTALLED_APPS.append('rosetta')
- except ImportError:
- pass
-
- # Load the Django Debug Toolbar if installed
- try:
- import debug_toolbar # @UnusedImport
- INSTALLED_APPS.append('debug_toolbar')
- MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware') # @IgnorePep8
- except ImportError:
- pass
diff --git a/kasu/settings/dev.py b/kasu/settings/dev.py
new file mode 100644
index 0000000..3d55956
--- /dev/null
+++ b/kasu/settings/dev.py
@@ -0,0 +1,23 @@
+###########################################
+# Settings for the development enviroment #
+###########################################
+__author__ = 'Christian Berg'
+from base import *
+
+DEBUG = True
+TEMPLATE_DEBUG = True
+
+# Load the Rosetta translation tool
+try:
+ import rosetta # @UnusedImport
+ INSTALLED_APPS.append('rosetta')
+except ImportError:
+ pass
+
+# Load the Django debug toolbar
+try:
+ import debug_toolbar # @UnusedImport
+ INSTALLED_APPS.append('debug_toolbar')
+ MIDDLEWARE_CLASSES.append('debug_toolbar.middleware.DebugToolbarMiddleware') # @IgnorePep8
+except ImportError:
+ pass
diff --git a/kasu/settings/production.py b/kasu/settings/production.py
new file mode 100644
index 0000000..3009ba5
--- /dev/null
+++ b/kasu/settings/production.py
@@ -0,0 +1,63 @@
+__author__ = "christian"
+from base import *
+
+# A sample logging configuration. The only tangible logging
+# performed by this configuration is to send an email to
+# the site admins on every HTTP 500 error.
+# See http://docs.djangoproject.com/en/dev/topics/logging for
+# more details on how to customize your logging configuration.
+DEBUG = False
+TEMPLATE_DEBUG = DEBUG
+
+LOGGING = {
+ 'version': 1,
+ 'disable_existing_loggers': True,
+ 'filters': {
+ 'require_debug_false': {
+ '()': 'django.utils.log.RequireDebugFalse'
+ }
+ },
+ 'formatters': {
+ 'verbose': {
+ 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s' # @IgnorePep8
+ },
+ 'simple': {
+ 'format': '%(levelname)s %(message)s'
+ },
+ },
+ 'handlers': {
+ 'null': {
+ 'level': 'DEBUG',
+ 'class': 'django.utils.log.NullHandler',
+ },
+ 'console': {
+ 'level': 'DEBUG',
+ 'class': 'logging.StreamHandler',
+ 'formatter': 'simple'
+ },
+ 'mail_admins': {
+ 'level': 'ERROR',
+ 'filters': ['require_debug_false'],
+ 'class': 'django.utils.log.AdminEmailHandler',
+ }
+ },
+ 'loggers': {
+ 'django': {
+ 'handlers': ['console'],
+ 'level': 'INFO',
+ 'propagate': True,
+ },
+ 'django.request': {
+ 'handlers': ['console', 'mail_admins'],
+ 'level': 'ERROR',
+ 'propagate': False,
+ },
+ 'kasu': {
+ 'handlers': ['console', 'mail_admins'],
+ 'level': 'DEBUG',
+ 'propagate': False,
+ },
+
+ }
+}
+
diff --git a/htdocs/admin/css/base.css b/kasu/static/admin/css/base.css
similarity index 100%
rename from htdocs/admin/css/base.css
rename to kasu/static/admin/css/base.css
diff --git a/htdocs/admin/css/changelists.css b/kasu/static/admin/css/changelists.css
similarity index 100%
rename from htdocs/admin/css/changelists.css
rename to kasu/static/admin/css/changelists.css
diff --git a/htdocs/admin/css/dashboard.css b/kasu/static/admin/css/dashboard.css
similarity index 100%
rename from htdocs/admin/css/dashboard.css
rename to kasu/static/admin/css/dashboard.css
diff --git a/htdocs/admin/css/forms.css b/kasu/static/admin/css/forms.css
similarity index 100%
rename from htdocs/admin/css/forms.css
rename to kasu/static/admin/css/forms.css
diff --git a/htdocs/admin/css/ie.css b/kasu/static/admin/css/ie.css
similarity index 100%
rename from htdocs/admin/css/ie.css
rename to kasu/static/admin/css/ie.css
diff --git a/htdocs/admin/css/login.css b/kasu/static/admin/css/login.css
similarity index 100%
rename from htdocs/admin/css/login.css
rename to kasu/static/admin/css/login.css
diff --git a/htdocs/admin/css/rtl.css b/kasu/static/admin/css/rtl.css
similarity index 100%
rename from htdocs/admin/css/rtl.css
rename to kasu/static/admin/css/rtl.css
diff --git a/htdocs/admin/css/widgets.css b/kasu/static/admin/css/widgets.css
similarity index 100%
rename from htdocs/admin/css/widgets.css
rename to kasu/static/admin/css/widgets.css
diff --git a/htdocs/admin/img/changelist-bg.gif b/kasu/static/admin/img/changelist-bg.gif
similarity index 100%
rename from htdocs/admin/img/changelist-bg.gif
rename to kasu/static/admin/img/changelist-bg.gif
diff --git a/htdocs/admin/img/changelist-bg_rtl.gif b/kasu/static/admin/img/changelist-bg_rtl.gif
similarity index 100%
rename from htdocs/admin/img/changelist-bg_rtl.gif
rename to kasu/static/admin/img/changelist-bg_rtl.gif
diff --git a/htdocs/admin/img/chooser-bg.gif b/kasu/static/admin/img/chooser-bg.gif
similarity index 100%
rename from htdocs/admin/img/chooser-bg.gif
rename to kasu/static/admin/img/chooser-bg.gif
diff --git a/htdocs/admin/img/chooser_stacked-bg.gif b/kasu/static/admin/img/chooser_stacked-bg.gif
similarity index 100%
rename from htdocs/admin/img/chooser_stacked-bg.gif
rename to kasu/static/admin/img/chooser_stacked-bg.gif
diff --git a/htdocs/admin/img/default-bg-reverse.gif b/kasu/static/admin/img/default-bg-reverse.gif
similarity index 100%
rename from htdocs/admin/img/default-bg-reverse.gif
rename to kasu/static/admin/img/default-bg-reverse.gif
diff --git a/htdocs/admin/img/default-bg.gif b/kasu/static/admin/img/default-bg.gif
similarity index 100%
rename from htdocs/admin/img/default-bg.gif
rename to kasu/static/admin/img/default-bg.gif
diff --git a/htdocs/admin/img/deleted-overlay.gif b/kasu/static/admin/img/deleted-overlay.gif
similarity index 100%
rename from htdocs/admin/img/deleted-overlay.gif
rename to kasu/static/admin/img/deleted-overlay.gif
diff --git a/htdocs/admin/img/gis/move_vertex_off.png b/kasu/static/admin/img/gis/move_vertex_off.png
similarity index 100%
rename from htdocs/admin/img/gis/move_vertex_off.png
rename to kasu/static/admin/img/gis/move_vertex_off.png
diff --git a/htdocs/admin/img/gis/move_vertex_on.png b/kasu/static/admin/img/gis/move_vertex_on.png
similarity index 100%
rename from htdocs/admin/img/gis/move_vertex_on.png
rename to kasu/static/admin/img/gis/move_vertex_on.png
diff --git a/htdocs/admin/img/icon-no.gif b/kasu/static/admin/img/icon-no.gif
similarity index 100%
rename from htdocs/admin/img/icon-no.gif
rename to kasu/static/admin/img/icon-no.gif
diff --git a/htdocs/admin/img/icon-unknown.gif b/kasu/static/admin/img/icon-unknown.gif
similarity index 100%
rename from htdocs/admin/img/icon-unknown.gif
rename to kasu/static/admin/img/icon-unknown.gif
diff --git a/htdocs/admin/img/icon-yes.gif b/kasu/static/admin/img/icon-yes.gif
similarity index 100%
rename from htdocs/admin/img/icon-yes.gif
rename to kasu/static/admin/img/icon-yes.gif
diff --git a/htdocs/admin/img/icon_addlink.gif b/kasu/static/admin/img/icon_addlink.gif
similarity index 100%
rename from htdocs/admin/img/icon_addlink.gif
rename to kasu/static/admin/img/icon_addlink.gif
diff --git a/htdocs/admin/img/icon_alert.gif b/kasu/static/admin/img/icon_alert.gif
similarity index 100%
rename from htdocs/admin/img/icon_alert.gif
rename to kasu/static/admin/img/icon_alert.gif
diff --git a/htdocs/admin/img/icon_calendar.gif b/kasu/static/admin/img/icon_calendar.gif
similarity index 100%
rename from htdocs/admin/img/icon_calendar.gif
rename to kasu/static/admin/img/icon_calendar.gif
diff --git a/htdocs/admin/img/icon_changelink.gif b/kasu/static/admin/img/icon_changelink.gif
similarity index 100%
rename from htdocs/admin/img/icon_changelink.gif
rename to kasu/static/admin/img/icon_changelink.gif
diff --git a/htdocs/admin/img/icon_clock.gif b/kasu/static/admin/img/icon_clock.gif
similarity index 100%
rename from htdocs/admin/img/icon_clock.gif
rename to kasu/static/admin/img/icon_clock.gif
diff --git a/htdocs/admin/img/icon_deletelink.gif b/kasu/static/admin/img/icon_deletelink.gif
similarity index 100%
rename from htdocs/admin/img/icon_deletelink.gif
rename to kasu/static/admin/img/icon_deletelink.gif
diff --git a/htdocs/admin/img/icon_error.gif b/kasu/static/admin/img/icon_error.gif
similarity index 100%
rename from htdocs/admin/img/icon_error.gif
rename to kasu/static/admin/img/icon_error.gif
diff --git a/htdocs/admin/img/icon_searchbox.png b/kasu/static/admin/img/icon_searchbox.png
similarity index 100%
rename from htdocs/admin/img/icon_searchbox.png
rename to kasu/static/admin/img/icon_searchbox.png
diff --git a/htdocs/admin/img/icon_success.gif b/kasu/static/admin/img/icon_success.gif
similarity index 100%
rename from htdocs/admin/img/icon_success.gif
rename to kasu/static/admin/img/icon_success.gif
diff --git a/htdocs/admin/img/inline-delete-8bit.png b/kasu/static/admin/img/inline-delete-8bit.png
similarity index 100%
rename from htdocs/admin/img/inline-delete-8bit.png
rename to kasu/static/admin/img/inline-delete-8bit.png
diff --git a/htdocs/admin/img/inline-delete.png b/kasu/static/admin/img/inline-delete.png
similarity index 100%
rename from htdocs/admin/img/inline-delete.png
rename to kasu/static/admin/img/inline-delete.png
diff --git a/htdocs/admin/img/inline-restore-8bit.png b/kasu/static/admin/img/inline-restore-8bit.png
similarity index 100%
rename from htdocs/admin/img/inline-restore-8bit.png
rename to kasu/static/admin/img/inline-restore-8bit.png
diff --git a/htdocs/admin/img/inline-restore.png b/kasu/static/admin/img/inline-restore.png
similarity index 100%
rename from htdocs/admin/img/inline-restore.png
rename to kasu/static/admin/img/inline-restore.png
diff --git a/htdocs/admin/img/inline-splitter-bg.gif b/kasu/static/admin/img/inline-splitter-bg.gif
similarity index 100%
rename from htdocs/admin/img/inline-splitter-bg.gif
rename to kasu/static/admin/img/inline-splitter-bg.gif
diff --git a/htdocs/admin/img/nav-bg-grabber.gif b/kasu/static/admin/img/nav-bg-grabber.gif
similarity index 100%
rename from htdocs/admin/img/nav-bg-grabber.gif
rename to kasu/static/admin/img/nav-bg-grabber.gif
diff --git a/htdocs/admin/img/nav-bg-reverse.gif b/kasu/static/admin/img/nav-bg-reverse.gif
similarity index 100%
rename from htdocs/admin/img/nav-bg-reverse.gif
rename to kasu/static/admin/img/nav-bg-reverse.gif
diff --git a/htdocs/admin/img/nav-bg-selected.gif b/kasu/static/admin/img/nav-bg-selected.gif
similarity index 100%
rename from htdocs/admin/img/nav-bg-selected.gif
rename to kasu/static/admin/img/nav-bg-selected.gif
diff --git a/htdocs/admin/img/nav-bg.gif b/kasu/static/admin/img/nav-bg.gif
similarity index 100%
rename from htdocs/admin/img/nav-bg.gif
rename to kasu/static/admin/img/nav-bg.gif
diff --git a/htdocs/admin/img/selector-icons.gif b/kasu/static/admin/img/selector-icons.gif
similarity index 100%
rename from htdocs/admin/img/selector-icons.gif
rename to kasu/static/admin/img/selector-icons.gif
diff --git a/htdocs/admin/img/selector-search.gif b/kasu/static/admin/img/selector-search.gif
similarity index 100%
rename from htdocs/admin/img/selector-search.gif
rename to kasu/static/admin/img/selector-search.gif
diff --git a/htdocs/admin/img/sorting-icons.gif b/kasu/static/admin/img/sorting-icons.gif
similarity index 100%
rename from htdocs/admin/img/sorting-icons.gif
rename to kasu/static/admin/img/sorting-icons.gif
diff --git a/htdocs/admin/img/tool-left.gif b/kasu/static/admin/img/tool-left.gif
similarity index 100%
rename from htdocs/admin/img/tool-left.gif
rename to kasu/static/admin/img/tool-left.gif
diff --git a/htdocs/admin/img/tool-left_over.gif b/kasu/static/admin/img/tool-left_over.gif
similarity index 100%
rename from htdocs/admin/img/tool-left_over.gif
rename to kasu/static/admin/img/tool-left_over.gif
diff --git a/htdocs/admin/img/tool-right.gif b/kasu/static/admin/img/tool-right.gif
similarity index 100%
rename from htdocs/admin/img/tool-right.gif
rename to kasu/static/admin/img/tool-right.gif
diff --git a/htdocs/admin/img/tool-right_over.gif b/kasu/static/admin/img/tool-right_over.gif
similarity index 100%
rename from htdocs/admin/img/tool-right_over.gif
rename to kasu/static/admin/img/tool-right_over.gif
diff --git a/htdocs/admin/img/tooltag-add.gif b/kasu/static/admin/img/tooltag-add.gif
similarity index 100%
rename from htdocs/admin/img/tooltag-add.gif
rename to kasu/static/admin/img/tooltag-add.gif
diff --git a/htdocs/admin/img/tooltag-add_over.gif b/kasu/static/admin/img/tooltag-add_over.gif
similarity index 100%
rename from htdocs/admin/img/tooltag-add_over.gif
rename to kasu/static/admin/img/tooltag-add_over.gif
diff --git a/htdocs/admin/img/tooltag-arrowright.gif b/kasu/static/admin/img/tooltag-arrowright.gif
similarity index 100%
rename from htdocs/admin/img/tooltag-arrowright.gif
rename to kasu/static/admin/img/tooltag-arrowright.gif
diff --git a/htdocs/admin/img/tooltag-arrowright_over.gif b/kasu/static/admin/img/tooltag-arrowright_over.gif
similarity index 100%
rename from htdocs/admin/img/tooltag-arrowright_over.gif
rename to kasu/static/admin/img/tooltag-arrowright_over.gif
diff --git a/htdocs/admin/js/LICENSE-JQUERY.txt b/kasu/static/admin/js/LICENSE-JQUERY.txt
similarity index 100%
rename from htdocs/admin/js/LICENSE-JQUERY.txt
rename to kasu/static/admin/js/LICENSE-JQUERY.txt
diff --git a/htdocs/admin/js/SelectBox.js b/kasu/static/admin/js/SelectBox.js
similarity index 100%
rename from htdocs/admin/js/SelectBox.js
rename to kasu/static/admin/js/SelectBox.js
diff --git a/htdocs/admin/js/SelectFilter2.js b/kasu/static/admin/js/SelectFilter2.js
similarity index 100%
rename from htdocs/admin/js/SelectFilter2.js
rename to kasu/static/admin/js/SelectFilter2.js
diff --git a/htdocs/admin/js/actions.js b/kasu/static/admin/js/actions.js
similarity index 100%
rename from htdocs/admin/js/actions.js
rename to kasu/static/admin/js/actions.js
diff --git a/htdocs/admin/js/actions.min.js b/kasu/static/admin/js/actions.min.js
similarity index 100%
rename from htdocs/admin/js/actions.min.js
rename to kasu/static/admin/js/actions.min.js
diff --git a/htdocs/admin/js/admin/DateTimeShortcuts.js b/kasu/static/admin/js/admin/DateTimeShortcuts.js
similarity index 100%
rename from htdocs/admin/js/admin/DateTimeShortcuts.js
rename to kasu/static/admin/js/admin/DateTimeShortcuts.js
diff --git a/htdocs/admin/js/admin/RelatedObjectLookups.js b/kasu/static/admin/js/admin/RelatedObjectLookups.js
similarity index 100%
rename from htdocs/admin/js/admin/RelatedObjectLookups.js
rename to kasu/static/admin/js/admin/RelatedObjectLookups.js
diff --git a/htdocs/admin/js/admin/ordering.js b/kasu/static/admin/js/admin/ordering.js
similarity index 100%
rename from htdocs/admin/js/admin/ordering.js
rename to kasu/static/admin/js/admin/ordering.js
diff --git a/htdocs/admin/js/calendar.js b/kasu/static/admin/js/calendar.js
similarity index 100%
rename from htdocs/admin/js/calendar.js
rename to kasu/static/admin/js/calendar.js
diff --git a/htdocs/admin/js/collapse.js b/kasu/static/admin/js/collapse.js
similarity index 100%
rename from htdocs/admin/js/collapse.js
rename to kasu/static/admin/js/collapse.js
diff --git a/htdocs/admin/js/collapse.min.js b/kasu/static/admin/js/collapse.min.js
similarity index 100%
rename from htdocs/admin/js/collapse.min.js
rename to kasu/static/admin/js/collapse.min.js
diff --git a/htdocs/admin/js/compress.py b/kasu/static/admin/js/compress.py
similarity index 100%
rename from htdocs/admin/js/compress.py
rename to kasu/static/admin/js/compress.py
diff --git a/htdocs/admin/js/core.js b/kasu/static/admin/js/core.js
similarity index 100%
rename from htdocs/admin/js/core.js
rename to kasu/static/admin/js/core.js
diff --git a/htdocs/admin/js/dateparse.js b/kasu/static/admin/js/dateparse.js
similarity index 100%
rename from htdocs/admin/js/dateparse.js
rename to kasu/static/admin/js/dateparse.js
diff --git a/htdocs/admin/js/getElementsBySelector.js b/kasu/static/admin/js/getElementsBySelector.js
similarity index 100%
rename from htdocs/admin/js/getElementsBySelector.js
rename to kasu/static/admin/js/getElementsBySelector.js
diff --git a/htdocs/admin/js/inlines.js b/kasu/static/admin/js/inlines.js
similarity index 100%
rename from htdocs/admin/js/inlines.js
rename to kasu/static/admin/js/inlines.js
diff --git a/htdocs/admin/js/inlines.min.js b/kasu/static/admin/js/inlines.min.js
similarity index 100%
rename from htdocs/admin/js/inlines.min.js
rename to kasu/static/admin/js/inlines.min.js
diff --git a/htdocs/admin/js/jquery.init.js b/kasu/static/admin/js/jquery.init.js
similarity index 100%
rename from htdocs/admin/js/jquery.init.js
rename to kasu/static/admin/js/jquery.init.js
diff --git a/htdocs/admin/js/jquery.js b/kasu/static/admin/js/jquery.js
similarity index 100%
rename from htdocs/admin/js/jquery.js
rename to kasu/static/admin/js/jquery.js
diff --git a/htdocs/admin/js/jquery.min.js b/kasu/static/admin/js/jquery.min.js
similarity index 100%
rename from htdocs/admin/js/jquery.min.js
rename to kasu/static/admin/js/jquery.min.js
diff --git a/htdocs/admin/js/json.min.js b/kasu/static/admin/js/json.min.js
similarity index 100%
rename from htdocs/admin/js/json.min.js
rename to kasu/static/admin/js/json.min.js
diff --git a/htdocs/admin/js/prepopulate.js b/kasu/static/admin/js/prepopulate.js
similarity index 100%
rename from htdocs/admin/js/prepopulate.js
rename to kasu/static/admin/js/prepopulate.js
diff --git a/htdocs/admin/js/prepopulate.min.js b/kasu/static/admin/js/prepopulate.min.js
similarity index 100%
rename from htdocs/admin/js/prepopulate.min.js
rename to kasu/static/admin/js/prepopulate.min.js
diff --git a/htdocs/admin/js/timeparse.js b/kasu/static/admin/js/timeparse.js
similarity index 100%
rename from htdocs/admin/js/timeparse.js
rename to kasu/static/admin/js/timeparse.js
diff --git a/htdocs/admin/js/urlify.js b/kasu/static/admin/js/urlify.js
similarity index 100%
rename from htdocs/admin/js/urlify.js
rename to kasu/static/admin/js/urlify.js
diff --git a/htdocs/css/background.png b/kasu/static/css/background.png
similarity index 100%
rename from htdocs/css/background.png
rename to kasu/static/css/background.png
diff --git a/htdocs/css/common.css b/kasu/static/css/common.css
similarity index 100%
rename from htdocs/css/common.css
rename to kasu/static/css/common.css
diff --git a/htdocs/css/desktop-backup.css b/kasu/static/css/desktop-backup.css
similarity index 100%
rename from htdocs/css/desktop-backup.css
rename to kasu/static/css/desktop-backup.css
diff --git a/htdocs/css/desktop.css b/kasu/static/css/desktop.css
similarity index 100%
rename from htdocs/css/desktop.css
rename to kasu/static/css/desktop.css
diff --git a/htdocs/css/jquery-ui-1.8.16.custom.css b/kasu/static/css/jquery-ui-1.8.16.custom.css
similarity index 100%
rename from htdocs/css/jquery-ui-1.8.16.custom.css
rename to kasu/static/css/jquery-ui-1.8.16.custom.css
diff --git a/htdocs/css/mobile.css b/kasu/static/css/mobile.css
similarity index 100%
rename from htdocs/css/mobile.css
rename to kasu/static/css/mobile.css
diff --git a/htdocs/css/navigataur.css b/kasu/static/css/navigataur.css
similarity index 100%
rename from htdocs/css/navigataur.css
rename to kasu/static/css/navigataur.css
diff --git a/htdocs/css/print.css b/kasu/static/css/print.css
similarity index 100%
rename from htdocs/css/print.css
rename to kasu/static/css/print.css
diff --git a/htdocs/css/screen.css b/kasu/static/css/screen.css
similarity index 100%
rename from htdocs/css/screen.css
rename to kasu/static/css/screen.css
diff --git a/htdocs/django_markdown/jquery.init.js b/kasu/static/django_markdown/jquery.init.js
similarity index 100%
rename from htdocs/django_markdown/jquery.init.js
rename to kasu/static/django_markdown/jquery.init.js
diff --git a/htdocs/django_markdown/jquery.markitup.js b/kasu/static/django_markdown/jquery.markitup.js
similarity index 100%
rename from htdocs/django_markdown/jquery.markitup.js
rename to kasu/static/django_markdown/jquery.markitup.js
diff --git a/htdocs/django_markdown/preview.css b/kasu/static/django_markdown/preview.css
similarity index 100%
rename from htdocs/django_markdown/preview.css
rename to kasu/static/django_markdown/preview.css
diff --git a/htdocs/django_markdown/sets/markdown/images/bold.png b/kasu/static/django_markdown/sets/markdown/images/bold.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/bold.png
rename to kasu/static/django_markdown/sets/markdown/images/bold.png
diff --git a/htdocs/django_markdown/sets/markdown/images/clean.png b/kasu/static/django_markdown/sets/markdown/images/clean.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/clean.png
rename to kasu/static/django_markdown/sets/markdown/images/clean.png
diff --git a/htdocs/django_markdown/sets/markdown/images/code.png b/kasu/static/django_markdown/sets/markdown/images/code.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/code.png
rename to kasu/static/django_markdown/sets/markdown/images/code.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h1.png b/kasu/static/django_markdown/sets/markdown/images/h1.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h1.png
rename to kasu/static/django_markdown/sets/markdown/images/h1.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h2.png b/kasu/static/django_markdown/sets/markdown/images/h2.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h2.png
rename to kasu/static/django_markdown/sets/markdown/images/h2.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h3.png b/kasu/static/django_markdown/sets/markdown/images/h3.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h3.png
rename to kasu/static/django_markdown/sets/markdown/images/h3.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h4.png b/kasu/static/django_markdown/sets/markdown/images/h4.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h4.png
rename to kasu/static/django_markdown/sets/markdown/images/h4.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h5.png b/kasu/static/django_markdown/sets/markdown/images/h5.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h5.png
rename to kasu/static/django_markdown/sets/markdown/images/h5.png
diff --git a/htdocs/django_markdown/sets/markdown/images/h6.png b/kasu/static/django_markdown/sets/markdown/images/h6.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/h6.png
rename to kasu/static/django_markdown/sets/markdown/images/h6.png
diff --git a/htdocs/django_markdown/sets/markdown/images/image.png b/kasu/static/django_markdown/sets/markdown/images/image.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/image.png
rename to kasu/static/django_markdown/sets/markdown/images/image.png
diff --git a/htdocs/django_markdown/sets/markdown/images/italic.png b/kasu/static/django_markdown/sets/markdown/images/italic.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/italic.png
rename to kasu/static/django_markdown/sets/markdown/images/italic.png
diff --git a/htdocs/django_markdown/sets/markdown/images/link.png b/kasu/static/django_markdown/sets/markdown/images/link.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/link.png
rename to kasu/static/django_markdown/sets/markdown/images/link.png
diff --git a/htdocs/django_markdown/sets/markdown/images/list-bullet.png b/kasu/static/django_markdown/sets/markdown/images/list-bullet.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/list-bullet.png
rename to kasu/static/django_markdown/sets/markdown/images/list-bullet.png
diff --git a/htdocs/django_markdown/sets/markdown/images/list-numeric.png b/kasu/static/django_markdown/sets/markdown/images/list-numeric.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/list-numeric.png
rename to kasu/static/django_markdown/sets/markdown/images/list-numeric.png
diff --git a/htdocs/django_markdown/sets/markdown/images/picture.png b/kasu/static/django_markdown/sets/markdown/images/picture.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/picture.png
rename to kasu/static/django_markdown/sets/markdown/images/picture.png
diff --git a/htdocs/django_markdown/sets/markdown/images/preview.png b/kasu/static/django_markdown/sets/markdown/images/preview.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/preview.png
rename to kasu/static/django_markdown/sets/markdown/images/preview.png
diff --git a/htdocs/django_markdown/sets/markdown/images/quotes.png b/kasu/static/django_markdown/sets/markdown/images/quotes.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/quotes.png
rename to kasu/static/django_markdown/sets/markdown/images/quotes.png
diff --git a/htdocs/django_markdown/sets/markdown/images/stroke.png b/kasu/static/django_markdown/sets/markdown/images/stroke.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/images/stroke.png
rename to kasu/static/django_markdown/sets/markdown/images/stroke.png
diff --git a/htdocs/django_markdown/sets/markdown/set.js b/kasu/static/django_markdown/sets/markdown/set.js
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/set.js
rename to kasu/static/django_markdown/sets/markdown/set.js
diff --git a/htdocs/django_markdown/sets/markdown/style.css b/kasu/static/django_markdown/sets/markdown/style.css
similarity index 100%
rename from htdocs/django_markdown/sets/markdown/style.css
rename to kasu/static/django_markdown/sets/markdown/style.css
diff --git a/htdocs/django_markdown/sets/markdownextra/images/bold.png b/kasu/static/django_markdown/sets/markdownextra/images/bold.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/bold.png
rename to kasu/static/django_markdown/sets/markdownextra/images/bold.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/book_open.png b/kasu/static/django_markdown/sets/markdownextra/images/book_open.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/book_open.png
rename to kasu/static/django_markdown/sets/markdownextra/images/book_open.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/code.png b/kasu/static/django_markdown/sets/markdownextra/images/code.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/code.png
rename to kasu/static/django_markdown/sets/markdownextra/images/code.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h1.png b/kasu/static/django_markdown/sets/markdownextra/images/h1.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h1.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h1.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h2.png b/kasu/static/django_markdown/sets/markdownextra/images/h2.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h2.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h2.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h3.png b/kasu/static/django_markdown/sets/markdownextra/images/h3.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h3.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h3.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h4.png b/kasu/static/django_markdown/sets/markdownextra/images/h4.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h4.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h4.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h5.png b/kasu/static/django_markdown/sets/markdownextra/images/h5.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h5.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h5.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/h6.png b/kasu/static/django_markdown/sets/markdownextra/images/h6.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/h6.png
rename to kasu/static/django_markdown/sets/markdownextra/images/h6.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/italic.png b/kasu/static/django_markdown/sets/markdownextra/images/italic.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/italic.png
rename to kasu/static/django_markdown/sets/markdownextra/images/italic.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/link.png b/kasu/static/django_markdown/sets/markdownextra/images/link.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/link.png
rename to kasu/static/django_markdown/sets/markdownextra/images/link.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/list-bullet.png b/kasu/static/django_markdown/sets/markdownextra/images/list-bullet.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/list-bullet.png
rename to kasu/static/django_markdown/sets/markdownextra/images/list-bullet.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/list-numeric.png b/kasu/static/django_markdown/sets/markdownextra/images/list-numeric.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/list-numeric.png
rename to kasu/static/django_markdown/sets/markdownextra/images/list-numeric.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/picture.png b/kasu/static/django_markdown/sets/markdownextra/images/picture.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/picture.png
rename to kasu/static/django_markdown/sets/markdownextra/images/picture.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/preview.png b/kasu/static/django_markdown/sets/markdownextra/images/preview.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/preview.png
rename to kasu/static/django_markdown/sets/markdownextra/images/preview.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/quotes.png b/kasu/static/django_markdown/sets/markdownextra/images/quotes.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/quotes.png
rename to kasu/static/django_markdown/sets/markdownextra/images/quotes.png
diff --git a/htdocs/django_markdown/sets/markdownextra/images/table.png b/kasu/static/django_markdown/sets/markdownextra/images/table.png
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/images/table.png
rename to kasu/static/django_markdown/sets/markdownextra/images/table.png
diff --git a/htdocs/django_markdown/sets/markdownextra/set.js b/kasu/static/django_markdown/sets/markdownextra/set.js
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/set.js
rename to kasu/static/django_markdown/sets/markdownextra/set.js
diff --git a/htdocs/django_markdown/sets/markdownextra/style.css b/kasu/static/django_markdown/sets/markdownextra/style.css
similarity index 100%
rename from htdocs/django_markdown/sets/markdownextra/style.css
rename to kasu/static/django_markdown/sets/markdownextra/style.css
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-container.png b/kasu/static/django_markdown/skins/markitup/images/bg-container.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-container.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-container.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-bbcode.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-bbcode.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-bbcode.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-bbcode.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-dotclear.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-dotclear.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-dotclear.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-dotclear.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-html.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-html.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-html.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-html.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-json.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-json.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-json.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-json.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-markdown.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-markdown.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-markdown.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-markdown.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-textile.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-textile.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-textile.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-textile.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-wiki.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-wiki.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-wiki.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-wiki.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor-xml.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor-xml.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor-xml.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor-xml.png
diff --git a/htdocs/django_markdown/skins/markitup/images/bg-editor.png b/kasu/static/django_markdown/skins/markitup/images/bg-editor.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/bg-editor.png
rename to kasu/static/django_markdown/skins/markitup/images/bg-editor.png
diff --git a/htdocs/django_markdown/skins/markitup/images/handle.png b/kasu/static/django_markdown/skins/markitup/images/handle.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/handle.png
rename to kasu/static/django_markdown/skins/markitup/images/handle.png
diff --git a/htdocs/django_markdown/skins/markitup/images/menu.png b/kasu/static/django_markdown/skins/markitup/images/menu.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/menu.png
rename to kasu/static/django_markdown/skins/markitup/images/menu.png
diff --git a/htdocs/django_markdown/skins/markitup/images/submenu.png b/kasu/static/django_markdown/skins/markitup/images/submenu.png
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/images/submenu.png
rename to kasu/static/django_markdown/skins/markitup/images/submenu.png
diff --git a/htdocs/django_markdown/skins/markitup/style.css b/kasu/static/django_markdown/skins/markitup/style.css
similarity index 100%
rename from htdocs/django_markdown/skins/markitup/style.css
rename to kasu/static/django_markdown/skins/markitup/style.css
diff --git a/htdocs/django_markdown/skins/simple/images/handle.png b/kasu/static/django_markdown/skins/simple/images/handle.png
similarity index 100%
rename from htdocs/django_markdown/skins/simple/images/handle.png
rename to kasu/static/django_markdown/skins/simple/images/handle.png
diff --git a/htdocs/django_markdown/skins/simple/images/menu.png b/kasu/static/django_markdown/skins/simple/images/menu.png
similarity index 100%
rename from htdocs/django_markdown/skins/simple/images/menu.png
rename to kasu/static/django_markdown/skins/simple/images/menu.png
diff --git a/htdocs/django_markdown/skins/simple/images/submenu.png b/kasu/static/django_markdown/skins/simple/images/submenu.png
similarity index 100%
rename from htdocs/django_markdown/skins/simple/images/submenu.png
rename to kasu/static/django_markdown/skins/simple/images/submenu.png
diff --git a/htdocs/django_markdown/skins/simple/style.css b/kasu/static/django_markdown/skins/simple/style.css
similarity index 100%
rename from htdocs/django_markdown/skins/simple/style.css
rename to kasu/static/django_markdown/skins/simple/style.css
diff --git a/htdocs/fonts/amerikasans.eot b/kasu/static/fonts/amerikasans.eot
similarity index 100%
rename from htdocs/fonts/amerikasans.eot
rename to kasu/static/fonts/amerikasans.eot
diff --git a/htdocs/fonts/amerikasans.svg b/kasu/static/fonts/amerikasans.svg
similarity index 100%
rename from htdocs/fonts/amerikasans.svg
rename to kasu/static/fonts/amerikasans.svg
diff --git a/htdocs/fonts/amerikasans.ttf b/kasu/static/fonts/amerikasans.ttf
similarity index 100%
rename from htdocs/fonts/amerikasans.ttf
rename to kasu/static/fonts/amerikasans.ttf
diff --git a/htdocs/fonts/amerikasans.woff b/kasu/static/fonts/amerikasans.woff
similarity index 100%
rename from htdocs/fonts/amerikasans.woff
rename to kasu/static/fonts/amerikasans.woff
diff --git a/htdocs/fonts/philosopher.svg b/kasu/static/fonts/philosopher.svg
similarity index 100%
rename from htdocs/fonts/philosopher.svg
rename to kasu/static/fonts/philosopher.svg
diff --git a/htdocs/fonts/philosopher.ttf b/kasu/static/fonts/philosopher.ttf
similarity index 100%
rename from htdocs/fonts/philosopher.ttf
rename to kasu/static/fonts/philosopher.ttf
diff --git a/htdocs/fonts/philosopher.woff b/kasu/static/fonts/philosopher.woff
similarity index 100%
rename from htdocs/fonts/philosopher.woff
rename to kasu/static/fonts/philosopher.woff
diff --git a/htdocs/fonts/stylesheet.css b/kasu/static/fonts/stylesheet.css
similarity index 100%
rename from htdocs/fonts/stylesheet.css
rename to kasu/static/fonts/stylesheet.css
diff --git a/htdocs/grappelli/images/backgrounds/changelist-results.png b/kasu/static/grappelli/images/backgrounds/changelist-results.png
similarity index 100%
rename from htdocs/grappelli/images/backgrounds/changelist-results.png
rename to kasu/static/grappelli/images/backgrounds/changelist-results.png
diff --git a/htdocs/grappelli/images/backgrounds/loading-small.gif b/kasu/static/grappelli/images/backgrounds/loading-small.gif
similarity index 100%
rename from htdocs/grappelli/images/backgrounds/loading-small.gif
rename to kasu/static/grappelli/images/backgrounds/loading-small.gif
diff --git a/htdocs/grappelli/images/backgrounds/messagelist.png b/kasu/static/grappelli/images/backgrounds/messagelist.png
similarity index 100%
rename from htdocs/grappelli/images/backgrounds/messagelist.png
rename to kasu/static/grappelli/images/backgrounds/messagelist.png
diff --git a/htdocs/grappelli/images/backgrounds/nav-grabber.gif b/kasu/static/grappelli/images/backgrounds/nav-grabber.gif
similarity index 100%
rename from htdocs/grappelli/images/backgrounds/nav-grabber.gif
rename to kasu/static/grappelli/images/backgrounds/nav-grabber.gif
diff --git a/htdocs/grappelli/images/backgrounds/ui-sortable-placeholder.png b/kasu/static/grappelli/images/backgrounds/ui-sortable-placeholder.png
similarity index 100%
rename from htdocs/grappelli/images/backgrounds/ui-sortable-placeholder.png
rename to kasu/static/grappelli/images/backgrounds/ui-sortable-placeholder.png
diff --git a/htdocs/grappelli/images/icons-s0e29227ce9.png b/kasu/static/grappelli/images/icons-s0e29227ce9.png
similarity index 100%
rename from htdocs/grappelli/images/icons-s0e29227ce9.png
rename to kasu/static/grappelli/images/icons-s0e29227ce9.png
diff --git a/htdocs/grappelli/images/icons-s96d5c23000.png b/kasu/static/grappelli/images/icons-s96d5c23000.png
similarity index 100%
rename from htdocs/grappelli/images/icons-s96d5c23000.png
rename to kasu/static/grappelli/images/icons-s96d5c23000.png
diff --git a/htdocs/grappelli/images/icons-small-s7d28d7943b.png b/kasu/static/grappelli/images/icons-small-s7d28d7943b.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small-s7d28d7943b.png
rename to kasu/static/grappelli/images/icons-small-s7d28d7943b.png
diff --git a/htdocs/grappelli/images/icons-small/add-link.png b/kasu/static/grappelli/images/icons-small/add-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/add-link.png
rename to kasu/static/grappelli/images/icons-small/add-link.png
diff --git a/htdocs/grappelli/images/icons-small/add-link_hover.png b/kasu/static/grappelli/images/icons-small/add-link_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/add-link_hover.png
rename to kasu/static/grappelli/images/icons-small/add-link_hover.png
diff --git a/htdocs/grappelli/images/icons-small/change-link.png b/kasu/static/grappelli/images/icons-small/change-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/change-link.png
rename to kasu/static/grappelli/images/icons-small/change-link.png
diff --git a/htdocs/grappelli/images/icons-small/change-link_hover.png b/kasu/static/grappelli/images/icons-small/change-link_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/change-link_hover.png
rename to kasu/static/grappelli/images/icons-small/change-link_hover.png
diff --git a/htdocs/grappelli/images/icons-small/delete-link.png b/kasu/static/grappelli/images/icons-small/delete-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/delete-link.png
rename to kasu/static/grappelli/images/icons-small/delete-link.png
diff --git a/htdocs/grappelli/images/icons-small/filter-choice-selected.png b/kasu/static/grappelli/images/icons-small/filter-choice-selected.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/filter-choice-selected.png
rename to kasu/static/grappelli/images/icons-small/filter-choice-selected.png
diff --git a/htdocs/grappelli/images/icons-small/link-external.png b/kasu/static/grappelli/images/icons-small/link-external.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/link-external.png
rename to kasu/static/grappelli/images/icons-small/link-external.png
diff --git a/htdocs/grappelli/images/icons-small/link-external_hover.png b/kasu/static/grappelli/images/icons-small/link-external_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/link-external_hover.png
rename to kasu/static/grappelli/images/icons-small/link-external_hover.png
diff --git a/htdocs/grappelli/images/icons-small/link-internal.png b/kasu/static/grappelli/images/icons-small/link-internal.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/link-internal.png
rename to kasu/static/grappelli/images/icons-small/link-internal.png
diff --git a/htdocs/grappelli/images/icons-small/link-internal_hover.png b/kasu/static/grappelli/images/icons-small/link-internal_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/link-internal_hover.png
rename to kasu/static/grappelli/images/icons-small/link-internal_hover.png
diff --git a/htdocs/grappelli/images/icons-small/sort-remove.png b/kasu/static/grappelli/images/icons-small/sort-remove.png
similarity index 100%
rename from htdocs/grappelli/images/icons-small/sort-remove.png
rename to kasu/static/grappelli/images/icons-small/sort-remove.png
diff --git a/htdocs/grappelli/images/icons/add-another.png b/kasu/static/grappelli/images/icons/add-another.png
similarity index 100%
rename from htdocs/grappelli/images/icons/add-another.png
rename to kasu/static/grappelli/images/icons/add-another.png
diff --git a/htdocs/grappelli/images/icons/add-another_hover.png b/kasu/static/grappelli/images/icons/add-another_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/add-another_hover.png
rename to kasu/static/grappelli/images/icons/add-another_hover.png
diff --git a/htdocs/grappelli/images/icons/back-link.png b/kasu/static/grappelli/images/icons/back-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons/back-link.png
rename to kasu/static/grappelli/images/icons/back-link.png
diff --git a/htdocs/grappelli/images/icons/back-link_hover.png b/kasu/static/grappelli/images/icons/back-link_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/back-link_hover.png
rename to kasu/static/grappelli/images/icons/back-link_hover.png
diff --git a/htdocs/grappelli/images/icons/breadcrumbs-rtl.png b/kasu/static/grappelli/images/icons/breadcrumbs-rtl.png
similarity index 100%
rename from htdocs/grappelli/images/icons/breadcrumbs-rtl.png
rename to kasu/static/grappelli/images/icons/breadcrumbs-rtl.png
diff --git a/htdocs/grappelli/images/icons/breadcrumbs-rtl_hover.png b/kasu/static/grappelli/images/icons/breadcrumbs-rtl_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/breadcrumbs-rtl_hover.png
rename to kasu/static/grappelli/images/icons/breadcrumbs-rtl_hover.png
diff --git a/htdocs/grappelli/images/icons/breadcrumbs.png b/kasu/static/grappelli/images/icons/breadcrumbs.png
similarity index 100%
rename from htdocs/grappelli/images/icons/breadcrumbs.png
rename to kasu/static/grappelli/images/icons/breadcrumbs.png
diff --git a/htdocs/grappelli/images/icons/breadcrumbs_hover.png b/kasu/static/grappelli/images/icons/breadcrumbs_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/breadcrumbs_hover.png
rename to kasu/static/grappelli/images/icons/breadcrumbs_hover.png
diff --git a/htdocs/grappelli/images/icons/date-hierarchy-back-rtl.png b/kasu/static/grappelli/images/icons/date-hierarchy-back-rtl.png
similarity index 100%
rename from htdocs/grappelli/images/icons/date-hierarchy-back-rtl.png
rename to kasu/static/grappelli/images/icons/date-hierarchy-back-rtl.png
diff --git a/htdocs/grappelli/images/icons/date-hierarchy-back-rtl_hover.png b/kasu/static/grappelli/images/icons/date-hierarchy-back-rtl_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/date-hierarchy-back-rtl_hover.png
rename to kasu/static/grappelli/images/icons/date-hierarchy-back-rtl_hover.png
diff --git a/htdocs/grappelli/images/icons/date-hierarchy-back.png b/kasu/static/grappelli/images/icons/date-hierarchy-back.png
similarity index 100%
rename from htdocs/grappelli/images/icons/date-hierarchy-back.png
rename to kasu/static/grappelli/images/icons/date-hierarchy-back.png
diff --git a/htdocs/grappelli/images/icons/date-hierarchy-back_hover.png b/kasu/static/grappelli/images/icons/date-hierarchy-back_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/date-hierarchy-back_hover.png
rename to kasu/static/grappelli/images/icons/date-hierarchy-back_hover.png
diff --git a/htdocs/grappelli/images/icons/datepicker.png b/kasu/static/grappelli/images/icons/datepicker.png
similarity index 100%
rename from htdocs/grappelli/images/icons/datepicker.png
rename to kasu/static/grappelli/images/icons/datepicker.png
diff --git a/htdocs/grappelli/images/icons/datepicker_hover.png b/kasu/static/grappelli/images/icons/datepicker_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/datepicker_hover.png
rename to kasu/static/grappelli/images/icons/datepicker_hover.png
diff --git a/htdocs/grappelli/images/icons/datetime-now.png b/kasu/static/grappelli/images/icons/datetime-now.png
similarity index 100%
rename from htdocs/grappelli/images/icons/datetime-now.png
rename to kasu/static/grappelli/images/icons/datetime-now.png
diff --git a/htdocs/grappelli/images/icons/datetime-now_hover.png b/kasu/static/grappelli/images/icons/datetime-now_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/datetime-now_hover.png
rename to kasu/static/grappelli/images/icons/datetime-now_hover.png
diff --git a/htdocs/grappelli/images/icons/form-select.png b/kasu/static/grappelli/images/icons/form-select.png
similarity index 100%
rename from htdocs/grappelli/images/icons/form-select.png
rename to kasu/static/grappelli/images/icons/form-select.png
diff --git a/htdocs/grappelli/images/icons/object-tools-add-link.png b/kasu/static/grappelli/images/icons/object-tools-add-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons/object-tools-add-link.png
rename to kasu/static/grappelli/images/icons/object-tools-add-link.png
diff --git a/htdocs/grappelli/images/icons/object-tools-viewsite-link.png b/kasu/static/grappelli/images/icons/object-tools-viewsite-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons/object-tools-viewsite-link.png
rename to kasu/static/grappelli/images/icons/object-tools-viewsite-link.png
diff --git a/htdocs/grappelli/images/icons/pulldown-handler.png b/kasu/static/grappelli/images/icons/pulldown-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/pulldown-handler.png
rename to kasu/static/grappelli/images/icons/pulldown-handler.png
diff --git a/htdocs/grappelli/images/icons/pulldown-handler_hover.png b/kasu/static/grappelli/images/icons/pulldown-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/pulldown-handler_hover.png
rename to kasu/static/grappelli/images/icons/pulldown-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/pulldown-handler_selected.png b/kasu/static/grappelli/images/icons/pulldown-handler_selected.png
similarity index 100%
rename from htdocs/grappelli/images/icons/pulldown-handler_selected.png
rename to kasu/static/grappelli/images/icons/pulldown-handler_selected.png
diff --git a/htdocs/grappelli/images/icons/related-lookup-m2m.png b/kasu/static/grappelli/images/icons/related-lookup-m2m.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-lookup-m2m.png
rename to kasu/static/grappelli/images/icons/related-lookup-m2m.png
diff --git a/htdocs/grappelli/images/icons/related-lookup-m2m_hover.png b/kasu/static/grappelli/images/icons/related-lookup-m2m_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-lookup-m2m_hover.png
rename to kasu/static/grappelli/images/icons/related-lookup-m2m_hover.png
diff --git a/htdocs/grappelli/images/icons/related-lookup.png b/kasu/static/grappelli/images/icons/related-lookup.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-lookup.png
rename to kasu/static/grappelli/images/icons/related-lookup.png
diff --git a/htdocs/grappelli/images/icons/related-lookup_hover.png b/kasu/static/grappelli/images/icons/related-lookup_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-lookup_hover.png
rename to kasu/static/grappelli/images/icons/related-lookup_hover.png
diff --git a/htdocs/grappelli/images/icons/related-remove.png b/kasu/static/grappelli/images/icons/related-remove.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-remove.png
rename to kasu/static/grappelli/images/icons/related-remove.png
diff --git a/htdocs/grappelli/images/icons/related-remove_hover.png b/kasu/static/grappelli/images/icons/related-remove_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/related-remove_hover.png
rename to kasu/static/grappelli/images/icons/related-remove_hover.png
diff --git a/htdocs/grappelli/images/icons/searchbox.png b/kasu/static/grappelli/images/icons/searchbox.png
similarity index 100%
rename from htdocs/grappelli/images/icons/searchbox.png
rename to kasu/static/grappelli/images/icons/searchbox.png
diff --git a/htdocs/grappelli/images/icons/selector-add-m2m-horizontal.png b/kasu/static/grappelli/images/icons/selector-add-m2m-horizontal.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-add-m2m-horizontal.png
rename to kasu/static/grappelli/images/icons/selector-add-m2m-horizontal.png
diff --git a/htdocs/grappelli/images/icons/selector-add-m2m-horizontal_hover.png b/kasu/static/grappelli/images/icons/selector-add-m2m-horizontal_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-add-m2m-horizontal_hover.png
rename to kasu/static/grappelli/images/icons/selector-add-m2m-horizontal_hover.png
diff --git a/htdocs/grappelli/images/icons/selector-add-m2m-vertical.png b/kasu/static/grappelli/images/icons/selector-add-m2m-vertical.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-add-m2m-vertical.png
rename to kasu/static/grappelli/images/icons/selector-add-m2m-vertical.png
diff --git a/htdocs/grappelli/images/icons/selector-add-m2m-vertical_hover.png b/kasu/static/grappelli/images/icons/selector-add-m2m-vertical_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-add-m2m-vertical_hover.png
rename to kasu/static/grappelli/images/icons/selector-add-m2m-vertical_hover.png
diff --git a/htdocs/grappelli/images/icons/selector-filter.png b/kasu/static/grappelli/images/icons/selector-filter.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-filter.png
rename to kasu/static/grappelli/images/icons/selector-filter.png
diff --git a/htdocs/grappelli/images/icons/selector-remove-m2m-horizontal.png b/kasu/static/grappelli/images/icons/selector-remove-m2m-horizontal.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-remove-m2m-horizontal.png
rename to kasu/static/grappelli/images/icons/selector-remove-m2m-horizontal.png
diff --git a/htdocs/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png b/kasu/static/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png
rename to kasu/static/grappelli/images/icons/selector-remove-m2m-horizontal_hover.png
diff --git a/htdocs/grappelli/images/icons/selector-remove-m2m-vertical.png b/kasu/static/grappelli/images/icons/selector-remove-m2m-vertical.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-remove-m2m-vertical.png
rename to kasu/static/grappelli/images/icons/selector-remove-m2m-vertical.png
diff --git a/htdocs/grappelli/images/icons/selector-remove-m2m-vertical_hover.png b/kasu/static/grappelli/images/icons/selector-remove-m2m-vertical_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/selector-remove-m2m-vertical_hover.png
rename to kasu/static/grappelli/images/icons/selector-remove-m2m-vertical_hover.png
diff --git a/htdocs/grappelli/images/icons/sort-remove.png b/kasu/static/grappelli/images/icons/sort-remove.png
similarity index 100%
rename from htdocs/grappelli/images/icons/sort-remove.png
rename to kasu/static/grappelli/images/icons/sort-remove.png
diff --git a/htdocs/grappelli/images/icons/sort-remove_hover.png b/kasu/static/grappelli/images/icons/sort-remove_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/sort-remove_hover.png
rename to kasu/static/grappelli/images/icons/sort-remove_hover.png
diff --git a/htdocs/grappelli/images/icons/sorted-ascending.png b/kasu/static/grappelli/images/icons/sorted-ascending.png
similarity index 100%
rename from htdocs/grappelli/images/icons/sorted-ascending.png
rename to kasu/static/grappelli/images/icons/sorted-ascending.png
diff --git a/htdocs/grappelli/images/icons/sorted-descending.png b/kasu/static/grappelli/images/icons/sorted-descending.png
similarity index 100%
rename from htdocs/grappelli/images/icons/sorted-descending.png
rename to kasu/static/grappelli/images/icons/sorted-descending.png
diff --git a/htdocs/grappelli/images/icons/status-no.png b/kasu/static/grappelli/images/icons/status-no.png
similarity index 100%
rename from htdocs/grappelli/images/icons/status-no.png
rename to kasu/static/grappelli/images/icons/status-no.png
diff --git a/htdocs/grappelli/images/icons/status-unknown.png b/kasu/static/grappelli/images/icons/status-unknown.png
similarity index 100%
rename from htdocs/grappelli/images/icons/status-unknown.png
rename to kasu/static/grappelli/images/icons/status-unknown.png
diff --git a/htdocs/grappelli/images/icons/status-yes.png b/kasu/static/grappelli/images/icons/status-yes.png
similarity index 100%
rename from htdocs/grappelli/images/icons/status-yes.png
rename to kasu/static/grappelli/images/icons/status-yes.png
diff --git a/htdocs/grappelli/images/icons/th-ascending.png b/kasu/static/grappelli/images/icons/th-ascending.png
similarity index 100%
rename from htdocs/grappelli/images/icons/th-ascending.png
rename to kasu/static/grappelli/images/icons/th-ascending.png
diff --git a/htdocs/grappelli/images/icons/th-descending.png b/kasu/static/grappelli/images/icons/th-descending.png
similarity index 100%
rename from htdocs/grappelli/images/icons/th-descending.png
rename to kasu/static/grappelli/images/icons/th-descending.png
diff --git a/htdocs/grappelli/images/icons/timepicker.png b/kasu/static/grappelli/images/icons/timepicker.png
similarity index 100%
rename from htdocs/grappelli/images/icons/timepicker.png
rename to kasu/static/grappelli/images/icons/timepicker.png
diff --git a/htdocs/grappelli/images/icons/timepicker_hover.png b/kasu/static/grappelli/images/icons/timepicker_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/timepicker_hover.png
rename to kasu/static/grappelli/images/icons/timepicker_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-add-handler.png b/kasu/static/grappelli/images/icons/tools-add-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-add-handler.png
rename to kasu/static/grappelli/images/icons/tools-add-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-add-handler_hover.png b/kasu/static/grappelli/images/icons/tools-add-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-add-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-add-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-arrow-down-handler.png b/kasu/static/grappelli/images/icons/tools-arrow-down-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-arrow-down-handler.png
rename to kasu/static/grappelli/images/icons/tools-arrow-down-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-arrow-down-handler_hover.png b/kasu/static/grappelli/images/icons/tools-arrow-down-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-arrow-down-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-arrow-down-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-arrow-up-handler.png b/kasu/static/grappelli/images/icons/tools-arrow-up-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-arrow-up-handler.png
rename to kasu/static/grappelli/images/icons/tools-arrow-up-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-arrow-up-handler_hover.png b/kasu/static/grappelli/images/icons/tools-arrow-up-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-arrow-up-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-arrow-up-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-close-handler.png b/kasu/static/grappelli/images/icons/tools-close-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-close-handler.png
rename to kasu/static/grappelli/images/icons/tools-close-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-close-handler_hover.png b/kasu/static/grappelli/images/icons/tools-close-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-close-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-close-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-delete-handler-predelete.png b/kasu/static/grappelli/images/icons/tools-delete-handler-predelete.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-delete-handler-predelete.png
rename to kasu/static/grappelli/images/icons/tools-delete-handler-predelete.png
diff --git a/htdocs/grappelli/images/icons/tools-delete-handler.png b/kasu/static/grappelli/images/icons/tools-delete-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-delete-handler.png
rename to kasu/static/grappelli/images/icons/tools-delete-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-delete-handler_hover.png b/kasu/static/grappelli/images/icons/tools-delete-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-delete-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-delete-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-drag-handler.png b/kasu/static/grappelli/images/icons/tools-drag-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-drag-handler.png
rename to kasu/static/grappelli/images/icons/tools-drag-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-drag-handler_hover.png b/kasu/static/grappelli/images/icons/tools-drag-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-drag-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-drag-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-open-handler.png b/kasu/static/grappelli/images/icons/tools-open-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-open-handler.png
rename to kasu/static/grappelli/images/icons/tools-open-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-open-handler_hover.png b/kasu/static/grappelli/images/icons/tools-open-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-open-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-open-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-remove-handler.png b/kasu/static/grappelli/images/icons/tools-remove-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-remove-handler.png
rename to kasu/static/grappelli/images/icons/tools-remove-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-remove-handler_hover.png b/kasu/static/grappelli/images/icons/tools-remove-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-remove-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-remove-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-trash-handler.png b/kasu/static/grappelli/images/icons/tools-trash-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-trash-handler.png
rename to kasu/static/grappelli/images/icons/tools-trash-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-trash-handler_hover.png b/kasu/static/grappelli/images/icons/tools-trash-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-trash-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-trash-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-trash-list-toggle-handler.png b/kasu/static/grappelli/images/icons/tools-trash-list-toggle-handler.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-trash-list-toggle-handler.png
rename to kasu/static/grappelli/images/icons/tools-trash-list-toggle-handler.png
diff --git a/htdocs/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png b/kasu/static/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png
rename to kasu/static/grappelli/images/icons/tools-trash-list-toggle-handler_hover.png
diff --git a/htdocs/grappelli/images/icons/tools-viewsite-link.png b/kasu/static/grappelli/images/icons/tools-viewsite-link.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-viewsite-link.png
rename to kasu/static/grappelli/images/icons/tools-viewsite-link.png
diff --git a/htdocs/grappelli/images/icons/tools-viewsite-link_hover.png b/kasu/static/grappelli/images/icons/tools-viewsite-link_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/tools-viewsite-link_hover.png
rename to kasu/static/grappelli/images/icons/tools-viewsite-link_hover.png
diff --git a/htdocs/grappelli/images/icons/ui-datepicker-next.png b/kasu/static/grappelli/images/icons/ui-datepicker-next.png
similarity index 100%
rename from htdocs/grappelli/images/icons/ui-datepicker-next.png
rename to kasu/static/grappelli/images/icons/ui-datepicker-next.png
diff --git a/htdocs/grappelli/images/icons/ui-datepicker-next_hover.png b/kasu/static/grappelli/images/icons/ui-datepicker-next_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/ui-datepicker-next_hover.png
rename to kasu/static/grappelli/images/icons/ui-datepicker-next_hover.png
diff --git a/htdocs/grappelli/images/icons/ui-datepicker-prev.png b/kasu/static/grappelli/images/icons/ui-datepicker-prev.png
similarity index 100%
rename from htdocs/grappelli/images/icons/ui-datepicker-prev.png
rename to kasu/static/grappelli/images/icons/ui-datepicker-prev.png
diff --git a/htdocs/grappelli/images/icons/ui-datepicker-prev_hover.png b/kasu/static/grappelli/images/icons/ui-datepicker-prev_hover.png
similarity index 100%
rename from htdocs/grappelli/images/icons/ui-datepicker-prev_hover.png
rename to kasu/static/grappelli/images/icons/ui-datepicker-prev_hover.png
diff --git a/htdocs/grappelli/img/admin/arrow-down.gif b/kasu/static/grappelli/img/admin/arrow-down.gif
similarity index 100%
rename from htdocs/grappelli/img/admin/arrow-down.gif
rename to kasu/static/grappelli/img/admin/arrow-down.gif
diff --git a/htdocs/grappelli/img/admin/arrow-up.gif b/kasu/static/grappelli/img/admin/arrow-up.gif
similarity index 100%
rename from htdocs/grappelli/img/admin/arrow-up.gif
rename to kasu/static/grappelli/img/admin/arrow-up.gif
diff --git a/htdocs/grappelli/jquery/i18n/ui.datepicker-de.js b/kasu/static/grappelli/jquery/i18n/ui.datepicker-de.js
similarity index 100%
rename from htdocs/grappelli/jquery/i18n/ui.datepicker-de.js
rename to kasu/static/grappelli/jquery/i18n/ui.datepicker-de.js
diff --git a/htdocs/grappelli/jquery/i18n/ui.datepicker-fr.js b/kasu/static/grappelli/jquery/i18n/ui.datepicker-fr.js
similarity index 100%
rename from htdocs/grappelli/jquery/i18n/ui.datepicker-fr.js
rename to kasu/static/grappelli/jquery/i18n/ui.datepicker-fr.js
diff --git a/htdocs/grappelli/jquery/jquery-1.7.2.min.js b/kasu/static/grappelli/jquery/jquery-1.7.2.min.js
similarity index 100%
rename from htdocs/grappelli/jquery/jquery-1.7.2.min.js
rename to kasu/static/grappelli/jquery/jquery-1.7.2.min.js
diff --git a/htdocs/grappelli/jquery/jquery-1.9.1.min.js b/kasu/static/grappelli/jquery/jquery-1.9.1.min.js
similarity index 100%
rename from htdocs/grappelli/jquery/jquery-1.9.1.min.js
rename to kasu/static/grappelli/jquery/jquery-1.9.1.min.js
diff --git a/htdocs/grappelli/jquery/jquery.cookie.min.js b/kasu/static/grappelli/jquery/jquery.cookie.min.js
similarity index 100%
rename from htdocs/grappelli/jquery/jquery.cookie.min.js
rename to kasu/static/grappelli/jquery/jquery.cookie.min.js
diff --git a/htdocs/grappelli/jquery/jquery.form.js b/kasu/static/grappelli/jquery/jquery.form.js
similarity index 100%
rename from htdocs/grappelli/jquery/jquery.form.js
rename to kasu/static/grappelli/jquery/jquery.form.js
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/animated-overlay.gif b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/animated-overlay.gif
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/animated-overlay.gif
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/animated-overlay.gif
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_444444_40x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_444444_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_444444_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_444444_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_888888_40x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_888888_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_888888_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_888888_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_eeeeee_40x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_eeeeee_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_eeeeee_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_0_eeeeee_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_444444_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_444444_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_444444_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_444444_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_CEE9F2_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_CEE9F2_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_CEE9F2_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_CEE9F2_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_bf3030_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_bf3030_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_bf3030_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_bf3030_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_ffffff_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_ffffff_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_ffffff_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_0_ffffff_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_25_e1f0f5_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_25_e1f0f5_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_25_e1f0f5_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_25_e1f0f5_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_55_444444_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_55_444444_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_55_444444_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_55_444444_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_0_d6d6d6_1x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_0_d6d6d6_1x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_0_d6d6d6_1x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_0_d6d6d6_1x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_222222_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_222222_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_222222_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_222222_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_309bbf_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_309bbf_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_309bbf_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_309bbf_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_444444_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_444444_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_444444_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_444444_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_454545_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_454545_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_454545_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_454545_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_bf3030_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_bf3030_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_bf3030_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_bf3030_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_ffffff_256x240.png b/kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_ffffff_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/images/ui-icons_ffffff_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/images/ui-icons_ffffff_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.css b/kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.css
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.css
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.css
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.min.css b/kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.min.css
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.min.css
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.10.3.custom.min.css
diff --git a/htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.8.18.custom.css b/kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.8.18.custom.css
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.8.18.custom.css
rename to kasu/static/grappelli/jquery/ui/css/custom-theme/jquery-ui-1.8.18.custom.css
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/animated-overlay.gif b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/animated-overlay.gif
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/animated-overlay.gif
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/animated-overlay.gif
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_222222_256x240.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_222222_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_222222_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_222222_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png b/kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png
similarity index 100%
rename from htdocs/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png
rename to kasu/static/grappelli/jquery/ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png
diff --git a/htdocs/grappelli/jquery/ui/js/jquery-ui-1.10.3.custom.min.js b/kasu/static/grappelli/jquery/ui/js/jquery-ui-1.10.3.custom.min.js
similarity index 100%
rename from htdocs/grappelli/jquery/ui/js/jquery-ui-1.10.3.custom.min.js
rename to kasu/static/grappelli/jquery/ui/js/jquery-ui-1.10.3.custom.min.js
diff --git a/htdocs/grappelli/jquery/ui/js/jquery-ui-1.8.18.custom.min.js b/kasu/static/grappelli/jquery/ui/js/jquery-ui-1.8.18.custom.min.js
similarity index 100%
rename from htdocs/grappelli/jquery/ui/js/jquery-ui-1.8.18.custom.min.js
rename to kasu/static/grappelli/jquery/ui/js/jquery-ui-1.8.18.custom.min.js
diff --git a/htdocs/grappelli/js/grappelli.js b/kasu/static/grappelli/js/grappelli.js
similarity index 100%
rename from htdocs/grappelli/js/grappelli.js
rename to kasu/static/grappelli/js/grappelli.js
diff --git a/htdocs/grappelli/js/grappelli.min.js b/kasu/static/grappelli/js/grappelli.min.js
similarity index 100%
rename from htdocs/grappelli/js/grappelli.min.js
rename to kasu/static/grappelli/js/grappelli.min.js
diff --git a/htdocs/grappelli/js/jquery.grp_autocomplete_fk.js b/kasu/static/grappelli/js/jquery.grp_autocomplete_fk.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_autocomplete_fk.js
rename to kasu/static/grappelli/js/jquery.grp_autocomplete_fk.js
diff --git a/htdocs/grappelli/js/jquery.grp_autocomplete_generic.js b/kasu/static/grappelli/js/jquery.grp_autocomplete_generic.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_autocomplete_generic.js
rename to kasu/static/grappelli/js/jquery.grp_autocomplete_generic.js
diff --git a/htdocs/grappelli/js/jquery.grp_autocomplete_m2m.js b/kasu/static/grappelli/js/jquery.grp_autocomplete_m2m.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_autocomplete_m2m.js
rename to kasu/static/grappelli/js/jquery.grp_autocomplete_m2m.js
diff --git a/htdocs/grappelli/js/jquery.grp_collapsible.js b/kasu/static/grappelli/js/jquery.grp_collapsible.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_collapsible.js
rename to kasu/static/grappelli/js/jquery.grp_collapsible.js
diff --git a/htdocs/grappelli/js/jquery.grp_collapsible_group.js b/kasu/static/grappelli/js/jquery.grp_collapsible_group.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_collapsible_group.js
rename to kasu/static/grappelli/js/jquery.grp_collapsible_group.js
diff --git a/htdocs/grappelli/js/jquery.grp_inline.js b/kasu/static/grappelli/js/jquery.grp_inline.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_inline.js
rename to kasu/static/grappelli/js/jquery.grp_inline.js
diff --git a/htdocs/grappelli/js/jquery.grp_related_fk.js b/kasu/static/grappelli/js/jquery.grp_related_fk.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_related_fk.js
rename to kasu/static/grappelli/js/jquery.grp_related_fk.js
diff --git a/htdocs/grappelli/js/jquery.grp_related_generic.js b/kasu/static/grappelli/js/jquery.grp_related_generic.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_related_generic.js
rename to kasu/static/grappelli/js/jquery.grp_related_generic.js
diff --git a/htdocs/grappelli/js/jquery.grp_related_m2m.js b/kasu/static/grappelli/js/jquery.grp_related_m2m.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_related_m2m.js
rename to kasu/static/grappelli/js/jquery.grp_related_m2m.js
diff --git a/htdocs/grappelli/js/jquery.grp_timepicker.js b/kasu/static/grappelli/js/jquery.grp_timepicker.js
similarity index 100%
rename from htdocs/grappelli/js/jquery.grp_timepicker.js
rename to kasu/static/grappelli/js/jquery.grp_timepicker.js
diff --git a/htdocs/grappelli/stylesheets/mueller/grid/output-rtl.css b/kasu/static/grappelli/stylesheets/mueller/grid/output-rtl.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/mueller/grid/output-rtl.css
rename to kasu/static/grappelli/stylesheets/mueller/grid/output-rtl.css
diff --git a/htdocs/grappelli/stylesheets/mueller/grid/output.css b/kasu/static/grappelli/stylesheets/mueller/grid/output.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/mueller/grid/output.css
rename to kasu/static/grappelli/stylesheets/mueller/grid/output.css
diff --git a/htdocs/grappelli/stylesheets/mueller/screen.css b/kasu/static/grappelli/stylesheets/mueller/screen.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/mueller/screen.css
rename to kasu/static/grappelli/stylesheets/mueller/screen.css
diff --git a/htdocs/grappelli/stylesheets/partials/custom/tinymce.css b/kasu/static/grappelli/stylesheets/partials/custom/tinymce.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/partials/custom/tinymce.css
rename to kasu/static/grappelli/stylesheets/partials/custom/tinymce.css
diff --git a/htdocs/grappelli/stylesheets/rtl.css b/kasu/static/grappelli/stylesheets/rtl.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/rtl.css
rename to kasu/static/grappelli/stylesheets/rtl.css
diff --git a/htdocs/grappelli/stylesheets/screen.css b/kasu/static/grappelli/stylesheets/screen.css
similarity index 100%
rename from htdocs/grappelli/stylesheets/screen.css
rename to kasu/static/grappelli/stylesheets/screen.css
diff --git a/htdocs/grappelli/tinymce/changelog.txt b/kasu/static/grappelli/tinymce/changelog.txt
similarity index 100%
rename from htdocs/grappelli/tinymce/changelog.txt
rename to kasu/static/grappelli/tinymce/changelog.txt
diff --git a/htdocs/grappelli/tinymce/examples/accessibility.html b/kasu/static/grappelli/tinymce/examples/accessibility.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/accessibility.html
rename to kasu/static/grappelli/tinymce/examples/accessibility.html
diff --git a/htdocs/grappelli/tinymce/examples/css/content.css b/kasu/static/grappelli/tinymce/examples/css/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/css/content.css
rename to kasu/static/grappelli/tinymce/examples/css/content.css
diff --git a/htdocs/grappelli/tinymce/examples/css/word.css b/kasu/static/grappelli/tinymce/examples/css/word.css
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/css/word.css
rename to kasu/static/grappelli/tinymce/examples/css/word.css
diff --git a/htdocs/grappelli/tinymce/examples/custom_formats.html b/kasu/static/grappelli/tinymce/examples/custom_formats.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/custom_formats.html
rename to kasu/static/grappelli/tinymce/examples/custom_formats.html
diff --git a/htdocs/grappelli/tinymce/examples/full.html b/kasu/static/grappelli/tinymce/examples/full.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/full.html
rename to kasu/static/grappelli/tinymce/examples/full.html
diff --git a/htdocs/grappelli/tinymce/examples/index.html b/kasu/static/grappelli/tinymce/examples/index.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/index.html
rename to kasu/static/grappelli/tinymce/examples/index.html
diff --git a/htdocs/grappelli/tinymce/examples/lists/image_list.js b/kasu/static/grappelli/tinymce/examples/lists/image_list.js
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/lists/image_list.js
rename to kasu/static/grappelli/tinymce/examples/lists/image_list.js
diff --git a/htdocs/grappelli/tinymce/examples/lists/link_list.js b/kasu/static/grappelli/tinymce/examples/lists/link_list.js
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/lists/link_list.js
rename to kasu/static/grappelli/tinymce/examples/lists/link_list.js
diff --git a/htdocs/grappelli/tinymce/examples/lists/media_list.js b/kasu/static/grappelli/tinymce/examples/lists/media_list.js
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/lists/media_list.js
rename to kasu/static/grappelli/tinymce/examples/lists/media_list.js
diff --git a/htdocs/grappelli/tinymce/examples/lists/template_list.js b/kasu/static/grappelli/tinymce/examples/lists/template_list.js
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/lists/template_list.js
rename to kasu/static/grappelli/tinymce/examples/lists/template_list.js
diff --git a/htdocs/grappelli/tinymce/examples/media/logo.jpg b/kasu/static/grappelli/tinymce/examples/media/logo.jpg
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/logo.jpg
rename to kasu/static/grappelli/tinymce/examples/media/logo.jpg
diff --git a/htdocs/grappelli/tinymce/examples/media/logo_over.jpg b/kasu/static/grappelli/tinymce/examples/media/logo_over.jpg
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/logo_over.jpg
rename to kasu/static/grappelli/tinymce/examples/media/logo_over.jpg
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.avi b/kasu/static/grappelli/tinymce/examples/media/sample.avi
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.avi
rename to kasu/static/grappelli/tinymce/examples/media/sample.avi
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.dcr b/kasu/static/grappelli/tinymce/examples/media/sample.dcr
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.dcr
rename to kasu/static/grappelli/tinymce/examples/media/sample.dcr
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.flv b/kasu/static/grappelli/tinymce/examples/media/sample.flv
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.flv
rename to kasu/static/grappelli/tinymce/examples/media/sample.flv
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.mov b/kasu/static/grappelli/tinymce/examples/media/sample.mov
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.mov
rename to kasu/static/grappelli/tinymce/examples/media/sample.mov
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.ram b/kasu/static/grappelli/tinymce/examples/media/sample.ram
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.ram
rename to kasu/static/grappelli/tinymce/examples/media/sample.ram
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.rm b/kasu/static/grappelli/tinymce/examples/media/sample.rm
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.rm
rename to kasu/static/grappelli/tinymce/examples/media/sample.rm
diff --git a/htdocs/grappelli/tinymce/examples/media/sample.swf b/kasu/static/grappelli/tinymce/examples/media/sample.swf
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/media/sample.swf
rename to kasu/static/grappelli/tinymce/examples/media/sample.swf
diff --git a/htdocs/grappelli/tinymce/examples/menu.html b/kasu/static/grappelli/tinymce/examples/menu.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/menu.html
rename to kasu/static/grappelli/tinymce/examples/menu.html
diff --git a/htdocs/grappelli/tinymce/examples/simple.html b/kasu/static/grappelli/tinymce/examples/simple.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/simple.html
rename to kasu/static/grappelli/tinymce/examples/simple.html
diff --git a/htdocs/grappelli/tinymce/examples/skins.html b/kasu/static/grappelli/tinymce/examples/skins.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/skins.html
rename to kasu/static/grappelli/tinymce/examples/skins.html
diff --git a/htdocs/grappelli/tinymce/examples/templates/layout1.htm b/kasu/static/grappelli/tinymce/examples/templates/layout1.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/templates/layout1.htm
rename to kasu/static/grappelli/tinymce/examples/templates/layout1.htm
diff --git a/htdocs/grappelli/tinymce/examples/templates/snippet1.htm b/kasu/static/grappelli/tinymce/examples/templates/snippet1.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/templates/snippet1.htm
rename to kasu/static/grappelli/tinymce/examples/templates/snippet1.htm
diff --git a/htdocs/grappelli/tinymce/examples/word.html b/kasu/static/grappelli/tinymce/examples/word.html
similarity index 100%
rename from htdocs/grappelli/tinymce/examples/word.html
rename to kasu/static/grappelli/tinymce/examples/word.html
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/langs/de.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/langs/de.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/langs/de.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/langs/de.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/license.txt b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/license.txt
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/license.txt
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/license.txt
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advhr/rule.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/css/advimage.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/image.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/img/sample.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/js/image.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/css/advimage.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/css/advimage.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/css/advimage.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/css/advimage.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/image.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/image.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/image.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/image.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/img/sample.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/js/image.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/js/image.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/js/image.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/js/image.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advimage_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/css/advlink.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/js/advlink.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink/link.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/css/advlink.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/css/advlink.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/css/advlink.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/css/advlink.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/js/advlink.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/js/advlink.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/js/advlink.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/js/advlink.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/link.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/link.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/link.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlink_orig/link.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/emotions.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/fullpage.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/js/fullpage.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullpage/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/fullscreen/fullscreen.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/show_advanced.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/img/visualchars.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/cs.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/cs.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/cs.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/cs.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/de.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/de.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/de.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/de.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/fr.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/fr.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/fr.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/fr.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/pl.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/pl.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/pl.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/pl.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/ru.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/ru.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/ru.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli/langs/ru.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/cs.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/cs.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/cs.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/cs.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/de.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/de.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/de.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/de.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/fr.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/fr.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/fr.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/fr.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/pl.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/pl.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/pl.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/pl.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/ru.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/ru.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/ru.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/grappelli_contextmenu/langs/ru.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/inlinepopups/template.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/css/media.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/css/media.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/css/media.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/css/media.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/embed.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/media.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/media.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/media.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/js/media.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/media.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/media.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/media.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/media.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/css/media.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/css/media.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/css/media.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/css/media.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/embed.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/embed.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/embed.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/embed.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/media.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/media.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/media.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/js/media.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/media.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/media.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/media.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/media.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/media_orig/moxieplayer.swf
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/css/pasteword.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/js/pasteword.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pastetext.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pastetext.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pastetext.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pastetext.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pasteword.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pasteword.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pasteword.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/js/pasteword.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pastetext.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pastetext.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pastetext.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pastetext.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pasteword.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pasteword.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pasteword.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/paste_orig/pasteword.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/example.html b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/example.html
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/example.html
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/example.html
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/jscripts/embed.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/preview.html b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/preview.html
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/preview.html
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/preview/preview.html
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/js/searchreplace.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace/searchreplace.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/css/searchreplace.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/css/searchreplace.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/css/searchreplace.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/css/searchreplace.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/js/searchreplace.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/js/searchreplace.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/js/searchreplace.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/js/searchreplace.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/searchreplace.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/searchreplace.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/searchreplace.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/searchreplace_orig/searchreplace.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/css/props.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/css/props.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/css/props.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/css/props.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/js/props.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/js/props.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/js/props.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/js/props.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/props.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/props.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/props.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/props.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/readme.txt b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/readme.txt
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/style/readme.txt
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/style/readme.txt
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/cell.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/cell.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/cell.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/cell.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/row.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/row.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/row.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/row.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/table.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/table.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/table.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/css/table.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/cell.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/row.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/row.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/row.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/row.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/table.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/table.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/table.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/js/table.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/row.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/row.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/row.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/row.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/table.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/table.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/table/table.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/table/table.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/blank.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/blank.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/blank.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/blank.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/css/template.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/css/template.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/css/template.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/css/template.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/js/template.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/js/template.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/js/template.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/js/template.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/template.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/template.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template/template.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template/template.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/blank.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/blank.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/blank.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/blank.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/css/template.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/css/template.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/css/template.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/css/template.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/js/template.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/js/template.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/js/template.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/js/template.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/template.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/template.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/template.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/template_orig/template.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/wordcount/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/abbr.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/acronym.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/attributes.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/cite.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/del.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/ins.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/element_common.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/ins.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/about.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/about.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/about.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/about.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/anchor.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/charmap.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/color_picker.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/editor_template_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/image.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/image.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/about.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/charmap.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/color_picker.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/image.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/link.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/js/source_editor.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/de_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/link.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/link.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/shortcuts.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_base.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_base.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_base.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_base.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_cs.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_cs.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_cs.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_cs.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_de.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_de.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_de.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_de.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_en.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_en.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_en.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_en.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_pl.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_pl.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_pl.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_documentstructure_pl.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_grid.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_grid.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_grid.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_grid.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_typography.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_typography.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_typography.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/content_typography.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/customized.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/customized.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/customized.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/customized.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/dialog.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/dialog.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/dialog.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/dialog.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/blockquote.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bold.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/bullist.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/charmap.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/cleanup.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/code.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/fullscreen.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/image.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/italic.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/link.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/media.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/numlist.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/pasteword.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/redo.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/search.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/show_advanced.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_cell_props.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_after.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_col_before.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_col.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_delete_row.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_merge_cells.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_after.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_before.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_row_props.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/table_split_cells.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/template.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/underline.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/undo.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/unlink.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/buttons/visualchars.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/button_pagebreak.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/customized/pagebreak.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show-hover.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-fb_show.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/icons/icon-mceResize.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/img/menu/icon-mceOpen.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/grappelli/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/editor_template_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/de.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/de.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/de.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/de.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/default/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/ui.css
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_popup.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_popup.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_popup.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_popup.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_src.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_src.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_src.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/tiny_mce_src.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/editable_selects.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/editable_selects.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/editable_selects.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/editable_selects.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/form_utils.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/form_utils.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/form_utils.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/form_utils.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/mctabs.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/mctabs.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/mctabs.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/mctabs.js
diff --git a/htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/validate.js b/kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/validate.js
similarity index 100%
rename from htdocs/grappelli/tinymce/jscripts/tiny_mce/utils/validate.js
rename to kasu/static/grappelli/tinymce/jscripts/tiny_mce/utils/validate.js
diff --git a/htdocs/grappelli/tinymce_setup/tinymce_setup.js b/kasu/static/grappelli/tinymce_setup/tinymce_setup.js
similarity index 100%
rename from htdocs/grappelli/tinymce_setup/tinymce_setup.js
rename to kasu/static/grappelli/tinymce_setup/tinymce_setup.js
diff --git a/htdocs/icons/accept.png b/kasu/static/icons/accept.png
similarity index 100%
rename from htdocs/icons/accept.png
rename to kasu/static/icons/accept.png
diff --git a/htdocs/icons/add.png b/kasu/static/icons/add.png
similarity index 100%
rename from htdocs/icons/add.png
rename to kasu/static/icons/add.png
diff --git a/htdocs/icons/anchor.png b/kasu/static/icons/anchor.png
similarity index 100%
rename from htdocs/icons/anchor.png
rename to kasu/static/icons/anchor.png
diff --git a/htdocs/icons/application.png b/kasu/static/icons/application.png
similarity index 100%
rename from htdocs/icons/application.png
rename to kasu/static/icons/application.png
diff --git a/htdocs/icons/application_add.png b/kasu/static/icons/application_add.png
similarity index 100%
rename from htdocs/icons/application_add.png
rename to kasu/static/icons/application_add.png
diff --git a/htdocs/icons/application_cascade.png b/kasu/static/icons/application_cascade.png
similarity index 100%
rename from htdocs/icons/application_cascade.png
rename to kasu/static/icons/application_cascade.png
diff --git a/htdocs/icons/application_delete.png b/kasu/static/icons/application_delete.png
similarity index 100%
rename from htdocs/icons/application_delete.png
rename to kasu/static/icons/application_delete.png
diff --git a/htdocs/icons/application_double.png b/kasu/static/icons/application_double.png
similarity index 100%
rename from htdocs/icons/application_double.png
rename to kasu/static/icons/application_double.png
diff --git a/htdocs/icons/application_edit.png b/kasu/static/icons/application_edit.png
similarity index 100%
rename from htdocs/icons/application_edit.png
rename to kasu/static/icons/application_edit.png
diff --git a/htdocs/icons/application_error.png b/kasu/static/icons/application_error.png
similarity index 100%
rename from htdocs/icons/application_error.png
rename to kasu/static/icons/application_error.png
diff --git a/htdocs/icons/application_form.png b/kasu/static/icons/application_form.png
similarity index 100%
rename from htdocs/icons/application_form.png
rename to kasu/static/icons/application_form.png
diff --git a/htdocs/icons/application_form_add.png b/kasu/static/icons/application_form_add.png
similarity index 100%
rename from htdocs/icons/application_form_add.png
rename to kasu/static/icons/application_form_add.png
diff --git a/htdocs/icons/application_form_delete.png b/kasu/static/icons/application_form_delete.png
similarity index 100%
rename from htdocs/icons/application_form_delete.png
rename to kasu/static/icons/application_form_delete.png
diff --git a/htdocs/icons/application_form_edit.png b/kasu/static/icons/application_form_edit.png
similarity index 100%
rename from htdocs/icons/application_form_edit.png
rename to kasu/static/icons/application_form_edit.png
diff --git a/htdocs/icons/application_form_magnify.png b/kasu/static/icons/application_form_magnify.png
similarity index 100%
rename from htdocs/icons/application_form_magnify.png
rename to kasu/static/icons/application_form_magnify.png
diff --git a/htdocs/icons/application_get.png b/kasu/static/icons/application_get.png
similarity index 100%
rename from htdocs/icons/application_get.png
rename to kasu/static/icons/application_get.png
diff --git a/htdocs/icons/application_go.png b/kasu/static/icons/application_go.png
similarity index 100%
rename from htdocs/icons/application_go.png
rename to kasu/static/icons/application_go.png
diff --git a/htdocs/icons/application_home.png b/kasu/static/icons/application_home.png
similarity index 100%
rename from htdocs/icons/application_home.png
rename to kasu/static/icons/application_home.png
diff --git a/htdocs/icons/application_key.png b/kasu/static/icons/application_key.png
similarity index 100%
rename from htdocs/icons/application_key.png
rename to kasu/static/icons/application_key.png
diff --git a/htdocs/icons/application_lightning.png b/kasu/static/icons/application_lightning.png
similarity index 100%
rename from htdocs/icons/application_lightning.png
rename to kasu/static/icons/application_lightning.png
diff --git a/htdocs/icons/application_link.png b/kasu/static/icons/application_link.png
similarity index 100%
rename from htdocs/icons/application_link.png
rename to kasu/static/icons/application_link.png
diff --git a/htdocs/icons/application_osx.png b/kasu/static/icons/application_osx.png
similarity index 100%
rename from htdocs/icons/application_osx.png
rename to kasu/static/icons/application_osx.png
diff --git a/htdocs/icons/application_osx_terminal.png b/kasu/static/icons/application_osx_terminal.png
similarity index 100%
rename from htdocs/icons/application_osx_terminal.png
rename to kasu/static/icons/application_osx_terminal.png
diff --git a/htdocs/icons/application_put.png b/kasu/static/icons/application_put.png
similarity index 100%
rename from htdocs/icons/application_put.png
rename to kasu/static/icons/application_put.png
diff --git a/htdocs/icons/application_side_boxes.png b/kasu/static/icons/application_side_boxes.png
similarity index 100%
rename from htdocs/icons/application_side_boxes.png
rename to kasu/static/icons/application_side_boxes.png
diff --git a/htdocs/icons/application_side_contract.png b/kasu/static/icons/application_side_contract.png
similarity index 100%
rename from htdocs/icons/application_side_contract.png
rename to kasu/static/icons/application_side_contract.png
diff --git a/htdocs/icons/application_side_expand.png b/kasu/static/icons/application_side_expand.png
similarity index 100%
rename from htdocs/icons/application_side_expand.png
rename to kasu/static/icons/application_side_expand.png
diff --git a/htdocs/icons/application_side_list.png b/kasu/static/icons/application_side_list.png
similarity index 100%
rename from htdocs/icons/application_side_list.png
rename to kasu/static/icons/application_side_list.png
diff --git a/htdocs/icons/application_side_tree.png b/kasu/static/icons/application_side_tree.png
similarity index 100%
rename from htdocs/icons/application_side_tree.png
rename to kasu/static/icons/application_side_tree.png
diff --git a/htdocs/icons/application_split.png b/kasu/static/icons/application_split.png
similarity index 100%
rename from htdocs/icons/application_split.png
rename to kasu/static/icons/application_split.png
diff --git a/htdocs/icons/application_tile_horizontal.png b/kasu/static/icons/application_tile_horizontal.png
similarity index 100%
rename from htdocs/icons/application_tile_horizontal.png
rename to kasu/static/icons/application_tile_horizontal.png
diff --git a/htdocs/icons/application_tile_vertical.png b/kasu/static/icons/application_tile_vertical.png
similarity index 100%
rename from htdocs/icons/application_tile_vertical.png
rename to kasu/static/icons/application_tile_vertical.png
diff --git a/htdocs/icons/application_view_columns.png b/kasu/static/icons/application_view_columns.png
similarity index 100%
rename from htdocs/icons/application_view_columns.png
rename to kasu/static/icons/application_view_columns.png
diff --git a/htdocs/icons/application_view_detail.png b/kasu/static/icons/application_view_detail.png
similarity index 100%
rename from htdocs/icons/application_view_detail.png
rename to kasu/static/icons/application_view_detail.png
diff --git a/htdocs/icons/application_view_gallery.png b/kasu/static/icons/application_view_gallery.png
similarity index 100%
rename from htdocs/icons/application_view_gallery.png
rename to kasu/static/icons/application_view_gallery.png
diff --git a/htdocs/icons/application_view_icons.png b/kasu/static/icons/application_view_icons.png
similarity index 100%
rename from htdocs/icons/application_view_icons.png
rename to kasu/static/icons/application_view_icons.png
diff --git a/htdocs/icons/application_view_list.png b/kasu/static/icons/application_view_list.png
similarity index 100%
rename from htdocs/icons/application_view_list.png
rename to kasu/static/icons/application_view_list.png
diff --git a/htdocs/icons/application_view_tile.png b/kasu/static/icons/application_view_tile.png
similarity index 100%
rename from htdocs/icons/application_view_tile.png
rename to kasu/static/icons/application_view_tile.png
diff --git a/htdocs/icons/application_xp.png b/kasu/static/icons/application_xp.png
similarity index 100%
rename from htdocs/icons/application_xp.png
rename to kasu/static/icons/application_xp.png
diff --git a/htdocs/icons/application_xp_terminal.png b/kasu/static/icons/application_xp_terminal.png
similarity index 100%
rename from htdocs/icons/application_xp_terminal.png
rename to kasu/static/icons/application_xp_terminal.png
diff --git a/htdocs/icons/arrow_branch.png b/kasu/static/icons/arrow_branch.png
similarity index 100%
rename from htdocs/icons/arrow_branch.png
rename to kasu/static/icons/arrow_branch.png
diff --git a/htdocs/icons/arrow_divide.png b/kasu/static/icons/arrow_divide.png
similarity index 100%
rename from htdocs/icons/arrow_divide.png
rename to kasu/static/icons/arrow_divide.png
diff --git a/htdocs/icons/arrow_down.png b/kasu/static/icons/arrow_down.png
similarity index 100%
rename from htdocs/icons/arrow_down.png
rename to kasu/static/icons/arrow_down.png
diff --git a/htdocs/icons/arrow_in.png b/kasu/static/icons/arrow_in.png
similarity index 100%
rename from htdocs/icons/arrow_in.png
rename to kasu/static/icons/arrow_in.png
diff --git a/htdocs/icons/arrow_inout.png b/kasu/static/icons/arrow_inout.png
similarity index 100%
rename from htdocs/icons/arrow_inout.png
rename to kasu/static/icons/arrow_inout.png
diff --git a/htdocs/icons/arrow_join.png b/kasu/static/icons/arrow_join.png
similarity index 100%
rename from htdocs/icons/arrow_join.png
rename to kasu/static/icons/arrow_join.png
diff --git a/htdocs/icons/arrow_left.png b/kasu/static/icons/arrow_left.png
similarity index 100%
rename from htdocs/icons/arrow_left.png
rename to kasu/static/icons/arrow_left.png
diff --git a/htdocs/icons/arrow_merge.png b/kasu/static/icons/arrow_merge.png
similarity index 100%
rename from htdocs/icons/arrow_merge.png
rename to kasu/static/icons/arrow_merge.png
diff --git a/htdocs/icons/arrow_out.png b/kasu/static/icons/arrow_out.png
similarity index 100%
rename from htdocs/icons/arrow_out.png
rename to kasu/static/icons/arrow_out.png
diff --git a/htdocs/icons/arrow_redo.png b/kasu/static/icons/arrow_redo.png
similarity index 100%
rename from htdocs/icons/arrow_redo.png
rename to kasu/static/icons/arrow_redo.png
diff --git a/htdocs/icons/arrow_refresh.png b/kasu/static/icons/arrow_refresh.png
similarity index 100%
rename from htdocs/icons/arrow_refresh.png
rename to kasu/static/icons/arrow_refresh.png
diff --git a/htdocs/icons/arrow_refresh_small.png b/kasu/static/icons/arrow_refresh_small.png
similarity index 100%
rename from htdocs/icons/arrow_refresh_small.png
rename to kasu/static/icons/arrow_refresh_small.png
diff --git a/htdocs/icons/arrow_right.png b/kasu/static/icons/arrow_right.png
similarity index 100%
rename from htdocs/icons/arrow_right.png
rename to kasu/static/icons/arrow_right.png
diff --git a/htdocs/icons/arrow_rotate_anticlockwise.png b/kasu/static/icons/arrow_rotate_anticlockwise.png
similarity index 100%
rename from htdocs/icons/arrow_rotate_anticlockwise.png
rename to kasu/static/icons/arrow_rotate_anticlockwise.png
diff --git a/htdocs/icons/arrow_rotate_clockwise.png b/kasu/static/icons/arrow_rotate_clockwise.png
similarity index 100%
rename from htdocs/icons/arrow_rotate_clockwise.png
rename to kasu/static/icons/arrow_rotate_clockwise.png
diff --git a/htdocs/icons/arrow_switch.png b/kasu/static/icons/arrow_switch.png
similarity index 100%
rename from htdocs/icons/arrow_switch.png
rename to kasu/static/icons/arrow_switch.png
diff --git a/htdocs/icons/arrow_turn_left.png b/kasu/static/icons/arrow_turn_left.png
similarity index 100%
rename from htdocs/icons/arrow_turn_left.png
rename to kasu/static/icons/arrow_turn_left.png
diff --git a/htdocs/icons/arrow_turn_right.png b/kasu/static/icons/arrow_turn_right.png
similarity index 100%
rename from htdocs/icons/arrow_turn_right.png
rename to kasu/static/icons/arrow_turn_right.png
diff --git a/htdocs/icons/arrow_undo.png b/kasu/static/icons/arrow_undo.png
similarity index 100%
rename from htdocs/icons/arrow_undo.png
rename to kasu/static/icons/arrow_undo.png
diff --git a/htdocs/icons/arrow_up.png b/kasu/static/icons/arrow_up.png
similarity index 100%
rename from htdocs/icons/arrow_up.png
rename to kasu/static/icons/arrow_up.png
diff --git a/htdocs/icons/asterisk_orange.png b/kasu/static/icons/asterisk_orange.png
similarity index 100%
rename from htdocs/icons/asterisk_orange.png
rename to kasu/static/icons/asterisk_orange.png
diff --git a/htdocs/icons/asterisk_yellow.png b/kasu/static/icons/asterisk_yellow.png
similarity index 100%
rename from htdocs/icons/asterisk_yellow.png
rename to kasu/static/icons/asterisk_yellow.png
diff --git a/htdocs/icons/attach.png b/kasu/static/icons/attach.png
similarity index 100%
rename from htdocs/icons/attach.png
rename to kasu/static/icons/attach.png
diff --git a/htdocs/icons/award_star_add.png b/kasu/static/icons/award_star_add.png
similarity index 100%
rename from htdocs/icons/award_star_add.png
rename to kasu/static/icons/award_star_add.png
diff --git a/htdocs/icons/award_star_bronze_1.png b/kasu/static/icons/award_star_bronze_1.png
similarity index 100%
rename from htdocs/icons/award_star_bronze_1.png
rename to kasu/static/icons/award_star_bronze_1.png
diff --git a/htdocs/icons/award_star_bronze_2.png b/kasu/static/icons/award_star_bronze_2.png
similarity index 100%
rename from htdocs/icons/award_star_bronze_2.png
rename to kasu/static/icons/award_star_bronze_2.png
diff --git a/htdocs/icons/award_star_bronze_3.png b/kasu/static/icons/award_star_bronze_3.png
similarity index 100%
rename from htdocs/icons/award_star_bronze_3.png
rename to kasu/static/icons/award_star_bronze_3.png
diff --git a/htdocs/icons/award_star_delete.png b/kasu/static/icons/award_star_delete.png
similarity index 100%
rename from htdocs/icons/award_star_delete.png
rename to kasu/static/icons/award_star_delete.png
diff --git a/htdocs/icons/award_star_gold_1.png b/kasu/static/icons/award_star_gold_1.png
similarity index 100%
rename from htdocs/icons/award_star_gold_1.png
rename to kasu/static/icons/award_star_gold_1.png
diff --git a/htdocs/icons/award_star_gold_2.png b/kasu/static/icons/award_star_gold_2.png
similarity index 100%
rename from htdocs/icons/award_star_gold_2.png
rename to kasu/static/icons/award_star_gold_2.png
diff --git a/htdocs/icons/award_star_gold_3.png b/kasu/static/icons/award_star_gold_3.png
similarity index 100%
rename from htdocs/icons/award_star_gold_3.png
rename to kasu/static/icons/award_star_gold_3.png
diff --git a/htdocs/icons/award_star_silver_1.png b/kasu/static/icons/award_star_silver_1.png
similarity index 100%
rename from htdocs/icons/award_star_silver_1.png
rename to kasu/static/icons/award_star_silver_1.png
diff --git a/htdocs/icons/award_star_silver_2.png b/kasu/static/icons/award_star_silver_2.png
similarity index 100%
rename from htdocs/icons/award_star_silver_2.png
rename to kasu/static/icons/award_star_silver_2.png
diff --git a/htdocs/icons/award_star_silver_3.png b/kasu/static/icons/award_star_silver_3.png
similarity index 100%
rename from htdocs/icons/award_star_silver_3.png
rename to kasu/static/icons/award_star_silver_3.png
diff --git a/htdocs/icons/basket.png b/kasu/static/icons/basket.png
similarity index 100%
rename from htdocs/icons/basket.png
rename to kasu/static/icons/basket.png
diff --git a/htdocs/icons/basket_add.png b/kasu/static/icons/basket_add.png
similarity index 100%
rename from htdocs/icons/basket_add.png
rename to kasu/static/icons/basket_add.png
diff --git a/htdocs/icons/basket_delete.png b/kasu/static/icons/basket_delete.png
similarity index 100%
rename from htdocs/icons/basket_delete.png
rename to kasu/static/icons/basket_delete.png
diff --git a/htdocs/icons/basket_edit.png b/kasu/static/icons/basket_edit.png
similarity index 100%
rename from htdocs/icons/basket_edit.png
rename to kasu/static/icons/basket_edit.png
diff --git a/htdocs/icons/basket_error.png b/kasu/static/icons/basket_error.png
similarity index 100%
rename from htdocs/icons/basket_error.png
rename to kasu/static/icons/basket_error.png
diff --git a/htdocs/icons/basket_go.png b/kasu/static/icons/basket_go.png
similarity index 100%
rename from htdocs/icons/basket_go.png
rename to kasu/static/icons/basket_go.png
diff --git a/htdocs/icons/basket_put.png b/kasu/static/icons/basket_put.png
similarity index 100%
rename from htdocs/icons/basket_put.png
rename to kasu/static/icons/basket_put.png
diff --git a/htdocs/icons/basket_remove.png b/kasu/static/icons/basket_remove.png
similarity index 100%
rename from htdocs/icons/basket_remove.png
rename to kasu/static/icons/basket_remove.png
diff --git a/htdocs/icons/bell.png b/kasu/static/icons/bell.png
similarity index 100%
rename from htdocs/icons/bell.png
rename to kasu/static/icons/bell.png
diff --git a/htdocs/icons/bell_add.png b/kasu/static/icons/bell_add.png
similarity index 100%
rename from htdocs/icons/bell_add.png
rename to kasu/static/icons/bell_add.png
diff --git a/htdocs/icons/bell_delete.png b/kasu/static/icons/bell_delete.png
similarity index 100%
rename from htdocs/icons/bell_delete.png
rename to kasu/static/icons/bell_delete.png
diff --git a/htdocs/icons/bell_error.png b/kasu/static/icons/bell_error.png
similarity index 100%
rename from htdocs/icons/bell_error.png
rename to kasu/static/icons/bell_error.png
diff --git a/htdocs/icons/bell_go.png b/kasu/static/icons/bell_go.png
similarity index 100%
rename from htdocs/icons/bell_go.png
rename to kasu/static/icons/bell_go.png
diff --git a/htdocs/icons/bell_link.png b/kasu/static/icons/bell_link.png
similarity index 100%
rename from htdocs/icons/bell_link.png
rename to kasu/static/icons/bell_link.png
diff --git a/htdocs/icons/bin.png b/kasu/static/icons/bin.png
similarity index 100%
rename from htdocs/icons/bin.png
rename to kasu/static/icons/bin.png
diff --git a/htdocs/icons/bin_closed.png b/kasu/static/icons/bin_closed.png
similarity index 100%
rename from htdocs/icons/bin_closed.png
rename to kasu/static/icons/bin_closed.png
diff --git a/htdocs/icons/bin_empty.png b/kasu/static/icons/bin_empty.png
similarity index 100%
rename from htdocs/icons/bin_empty.png
rename to kasu/static/icons/bin_empty.png
diff --git a/htdocs/icons/bomb.png b/kasu/static/icons/bomb.png
similarity index 100%
rename from htdocs/icons/bomb.png
rename to kasu/static/icons/bomb.png
diff --git a/htdocs/icons/book.png b/kasu/static/icons/book.png
similarity index 100%
rename from htdocs/icons/book.png
rename to kasu/static/icons/book.png
diff --git a/htdocs/icons/book_add.png b/kasu/static/icons/book_add.png
similarity index 100%
rename from htdocs/icons/book_add.png
rename to kasu/static/icons/book_add.png
diff --git a/htdocs/icons/book_addresses.png b/kasu/static/icons/book_addresses.png
similarity index 100%
rename from htdocs/icons/book_addresses.png
rename to kasu/static/icons/book_addresses.png
diff --git a/htdocs/icons/book_delete.png b/kasu/static/icons/book_delete.png
similarity index 100%
rename from htdocs/icons/book_delete.png
rename to kasu/static/icons/book_delete.png
diff --git a/htdocs/icons/book_edit.png b/kasu/static/icons/book_edit.png
similarity index 100%
rename from htdocs/icons/book_edit.png
rename to kasu/static/icons/book_edit.png
diff --git a/htdocs/icons/book_error.png b/kasu/static/icons/book_error.png
similarity index 100%
rename from htdocs/icons/book_error.png
rename to kasu/static/icons/book_error.png
diff --git a/htdocs/icons/book_go.png b/kasu/static/icons/book_go.png
similarity index 100%
rename from htdocs/icons/book_go.png
rename to kasu/static/icons/book_go.png
diff --git a/htdocs/icons/book_key.png b/kasu/static/icons/book_key.png
similarity index 100%
rename from htdocs/icons/book_key.png
rename to kasu/static/icons/book_key.png
diff --git a/htdocs/icons/book_link.png b/kasu/static/icons/book_link.png
similarity index 100%
rename from htdocs/icons/book_link.png
rename to kasu/static/icons/book_link.png
diff --git a/htdocs/icons/book_next.png b/kasu/static/icons/book_next.png
similarity index 100%
rename from htdocs/icons/book_next.png
rename to kasu/static/icons/book_next.png
diff --git a/htdocs/icons/book_open.png b/kasu/static/icons/book_open.png
similarity index 100%
rename from htdocs/icons/book_open.png
rename to kasu/static/icons/book_open.png
diff --git a/htdocs/icons/book_previous.png b/kasu/static/icons/book_previous.png
similarity index 100%
rename from htdocs/icons/book_previous.png
rename to kasu/static/icons/book_previous.png
diff --git a/htdocs/icons/box.png b/kasu/static/icons/box.png
similarity index 100%
rename from htdocs/icons/box.png
rename to kasu/static/icons/box.png
diff --git a/htdocs/icons/brick.png b/kasu/static/icons/brick.png
similarity index 100%
rename from htdocs/icons/brick.png
rename to kasu/static/icons/brick.png
diff --git a/htdocs/icons/brick_add.png b/kasu/static/icons/brick_add.png
similarity index 100%
rename from htdocs/icons/brick_add.png
rename to kasu/static/icons/brick_add.png
diff --git a/htdocs/icons/brick_delete.png b/kasu/static/icons/brick_delete.png
similarity index 100%
rename from htdocs/icons/brick_delete.png
rename to kasu/static/icons/brick_delete.png
diff --git a/htdocs/icons/brick_edit.png b/kasu/static/icons/brick_edit.png
similarity index 100%
rename from htdocs/icons/brick_edit.png
rename to kasu/static/icons/brick_edit.png
diff --git a/htdocs/icons/brick_error.png b/kasu/static/icons/brick_error.png
similarity index 100%
rename from htdocs/icons/brick_error.png
rename to kasu/static/icons/brick_error.png
diff --git a/htdocs/icons/brick_go.png b/kasu/static/icons/brick_go.png
similarity index 100%
rename from htdocs/icons/brick_go.png
rename to kasu/static/icons/brick_go.png
diff --git a/htdocs/icons/brick_link.png b/kasu/static/icons/brick_link.png
similarity index 100%
rename from htdocs/icons/brick_link.png
rename to kasu/static/icons/brick_link.png
diff --git a/htdocs/icons/bricks.png b/kasu/static/icons/bricks.png
similarity index 100%
rename from htdocs/icons/bricks.png
rename to kasu/static/icons/bricks.png
diff --git a/htdocs/icons/briefcase.png b/kasu/static/icons/briefcase.png
similarity index 100%
rename from htdocs/icons/briefcase.png
rename to kasu/static/icons/briefcase.png
diff --git a/htdocs/icons/bug.png b/kasu/static/icons/bug.png
similarity index 100%
rename from htdocs/icons/bug.png
rename to kasu/static/icons/bug.png
diff --git a/htdocs/icons/bug_add.png b/kasu/static/icons/bug_add.png
similarity index 100%
rename from htdocs/icons/bug_add.png
rename to kasu/static/icons/bug_add.png
diff --git a/htdocs/icons/bug_delete.png b/kasu/static/icons/bug_delete.png
similarity index 100%
rename from htdocs/icons/bug_delete.png
rename to kasu/static/icons/bug_delete.png
diff --git a/htdocs/icons/bug_edit.png b/kasu/static/icons/bug_edit.png
similarity index 100%
rename from htdocs/icons/bug_edit.png
rename to kasu/static/icons/bug_edit.png
diff --git a/htdocs/icons/bug_error.png b/kasu/static/icons/bug_error.png
similarity index 100%
rename from htdocs/icons/bug_error.png
rename to kasu/static/icons/bug_error.png
diff --git a/htdocs/icons/bug_go.png b/kasu/static/icons/bug_go.png
similarity index 100%
rename from htdocs/icons/bug_go.png
rename to kasu/static/icons/bug_go.png
diff --git a/htdocs/icons/bug_link.png b/kasu/static/icons/bug_link.png
similarity index 100%
rename from htdocs/icons/bug_link.png
rename to kasu/static/icons/bug_link.png
diff --git a/htdocs/icons/building.png b/kasu/static/icons/building.png
similarity index 100%
rename from htdocs/icons/building.png
rename to kasu/static/icons/building.png
diff --git a/htdocs/icons/building_add.png b/kasu/static/icons/building_add.png
similarity index 100%
rename from htdocs/icons/building_add.png
rename to kasu/static/icons/building_add.png
diff --git a/htdocs/icons/building_delete.png b/kasu/static/icons/building_delete.png
similarity index 100%
rename from htdocs/icons/building_delete.png
rename to kasu/static/icons/building_delete.png
diff --git a/htdocs/icons/building_edit.png b/kasu/static/icons/building_edit.png
similarity index 100%
rename from htdocs/icons/building_edit.png
rename to kasu/static/icons/building_edit.png
diff --git a/htdocs/icons/building_error.png b/kasu/static/icons/building_error.png
similarity index 100%
rename from htdocs/icons/building_error.png
rename to kasu/static/icons/building_error.png
diff --git a/htdocs/icons/building_go.png b/kasu/static/icons/building_go.png
similarity index 100%
rename from htdocs/icons/building_go.png
rename to kasu/static/icons/building_go.png
diff --git a/htdocs/icons/building_key.png b/kasu/static/icons/building_key.png
similarity index 100%
rename from htdocs/icons/building_key.png
rename to kasu/static/icons/building_key.png
diff --git a/htdocs/icons/building_link.png b/kasu/static/icons/building_link.png
similarity index 100%
rename from htdocs/icons/building_link.png
rename to kasu/static/icons/building_link.png
diff --git a/htdocs/icons/bullet_add.png b/kasu/static/icons/bullet_add.png
similarity index 100%
rename from htdocs/icons/bullet_add.png
rename to kasu/static/icons/bullet_add.png
diff --git a/htdocs/icons/bullet_arrow_bottom.png b/kasu/static/icons/bullet_arrow_bottom.png
similarity index 100%
rename from htdocs/icons/bullet_arrow_bottom.png
rename to kasu/static/icons/bullet_arrow_bottom.png
diff --git a/htdocs/icons/bullet_arrow_down.png b/kasu/static/icons/bullet_arrow_down.png
similarity index 100%
rename from htdocs/icons/bullet_arrow_down.png
rename to kasu/static/icons/bullet_arrow_down.png
diff --git a/htdocs/icons/bullet_arrow_top.png b/kasu/static/icons/bullet_arrow_top.png
similarity index 100%
rename from htdocs/icons/bullet_arrow_top.png
rename to kasu/static/icons/bullet_arrow_top.png
diff --git a/htdocs/icons/bullet_arrow_up.png b/kasu/static/icons/bullet_arrow_up.png
similarity index 100%
rename from htdocs/icons/bullet_arrow_up.png
rename to kasu/static/icons/bullet_arrow_up.png
diff --git a/htdocs/icons/bullet_black.png b/kasu/static/icons/bullet_black.png
similarity index 100%
rename from htdocs/icons/bullet_black.png
rename to kasu/static/icons/bullet_black.png
diff --git a/htdocs/icons/bullet_blue.png b/kasu/static/icons/bullet_blue.png
similarity index 100%
rename from htdocs/icons/bullet_blue.png
rename to kasu/static/icons/bullet_blue.png
diff --git a/htdocs/icons/bullet_delete.png b/kasu/static/icons/bullet_delete.png
similarity index 100%
rename from htdocs/icons/bullet_delete.png
rename to kasu/static/icons/bullet_delete.png
diff --git a/htdocs/icons/bullet_disk.png b/kasu/static/icons/bullet_disk.png
similarity index 100%
rename from htdocs/icons/bullet_disk.png
rename to kasu/static/icons/bullet_disk.png
diff --git a/htdocs/icons/bullet_error.png b/kasu/static/icons/bullet_error.png
similarity index 100%
rename from htdocs/icons/bullet_error.png
rename to kasu/static/icons/bullet_error.png
diff --git a/htdocs/icons/bullet_feed.png b/kasu/static/icons/bullet_feed.png
similarity index 100%
rename from htdocs/icons/bullet_feed.png
rename to kasu/static/icons/bullet_feed.png
diff --git a/htdocs/icons/bullet_go.png b/kasu/static/icons/bullet_go.png
similarity index 100%
rename from htdocs/icons/bullet_go.png
rename to kasu/static/icons/bullet_go.png
diff --git a/htdocs/icons/bullet_green.png b/kasu/static/icons/bullet_green.png
similarity index 100%
rename from htdocs/icons/bullet_green.png
rename to kasu/static/icons/bullet_green.png
diff --git a/htdocs/icons/bullet_key.png b/kasu/static/icons/bullet_key.png
similarity index 100%
rename from htdocs/icons/bullet_key.png
rename to kasu/static/icons/bullet_key.png
diff --git a/htdocs/icons/bullet_orange.png b/kasu/static/icons/bullet_orange.png
similarity index 100%
rename from htdocs/icons/bullet_orange.png
rename to kasu/static/icons/bullet_orange.png
diff --git a/htdocs/icons/bullet_picture.png b/kasu/static/icons/bullet_picture.png
similarity index 100%
rename from htdocs/icons/bullet_picture.png
rename to kasu/static/icons/bullet_picture.png
diff --git a/htdocs/icons/bullet_pink.png b/kasu/static/icons/bullet_pink.png
similarity index 100%
rename from htdocs/icons/bullet_pink.png
rename to kasu/static/icons/bullet_pink.png
diff --git a/htdocs/icons/bullet_purple.png b/kasu/static/icons/bullet_purple.png
similarity index 100%
rename from htdocs/icons/bullet_purple.png
rename to kasu/static/icons/bullet_purple.png
diff --git a/htdocs/icons/bullet_red.png b/kasu/static/icons/bullet_red.png
similarity index 100%
rename from htdocs/icons/bullet_red.png
rename to kasu/static/icons/bullet_red.png
diff --git a/htdocs/icons/bullet_star.png b/kasu/static/icons/bullet_star.png
similarity index 100%
rename from htdocs/icons/bullet_star.png
rename to kasu/static/icons/bullet_star.png
diff --git a/htdocs/icons/bullet_toggle_minus.png b/kasu/static/icons/bullet_toggle_minus.png
similarity index 100%
rename from htdocs/icons/bullet_toggle_minus.png
rename to kasu/static/icons/bullet_toggle_minus.png
diff --git a/htdocs/icons/bullet_toggle_plus.png b/kasu/static/icons/bullet_toggle_plus.png
similarity index 100%
rename from htdocs/icons/bullet_toggle_plus.png
rename to kasu/static/icons/bullet_toggle_plus.png
diff --git a/htdocs/icons/bullet_white.png b/kasu/static/icons/bullet_white.png
similarity index 100%
rename from htdocs/icons/bullet_white.png
rename to kasu/static/icons/bullet_white.png
diff --git a/htdocs/icons/bullet_wrench.png b/kasu/static/icons/bullet_wrench.png
similarity index 100%
rename from htdocs/icons/bullet_wrench.png
rename to kasu/static/icons/bullet_wrench.png
diff --git a/htdocs/icons/bullet_yellow.png b/kasu/static/icons/bullet_yellow.png
similarity index 100%
rename from htdocs/icons/bullet_yellow.png
rename to kasu/static/icons/bullet_yellow.png
diff --git a/htdocs/icons/cake.png b/kasu/static/icons/cake.png
similarity index 100%
rename from htdocs/icons/cake.png
rename to kasu/static/icons/cake.png
diff --git a/htdocs/icons/calculator.png b/kasu/static/icons/calculator.png
similarity index 100%
rename from htdocs/icons/calculator.png
rename to kasu/static/icons/calculator.png
diff --git a/htdocs/icons/calculator_add.png b/kasu/static/icons/calculator_add.png
similarity index 100%
rename from htdocs/icons/calculator_add.png
rename to kasu/static/icons/calculator_add.png
diff --git a/htdocs/icons/calculator_delete.png b/kasu/static/icons/calculator_delete.png
similarity index 100%
rename from htdocs/icons/calculator_delete.png
rename to kasu/static/icons/calculator_delete.png
diff --git a/htdocs/icons/calculator_edit.png b/kasu/static/icons/calculator_edit.png
similarity index 100%
rename from htdocs/icons/calculator_edit.png
rename to kasu/static/icons/calculator_edit.png
diff --git a/htdocs/icons/calculator_error.png b/kasu/static/icons/calculator_error.png
similarity index 100%
rename from htdocs/icons/calculator_error.png
rename to kasu/static/icons/calculator_error.png
diff --git a/htdocs/icons/calculator_link.png b/kasu/static/icons/calculator_link.png
similarity index 100%
rename from htdocs/icons/calculator_link.png
rename to kasu/static/icons/calculator_link.png
diff --git a/htdocs/icons/calendar.png b/kasu/static/icons/calendar.png
similarity index 100%
rename from htdocs/icons/calendar.png
rename to kasu/static/icons/calendar.png
diff --git a/htdocs/icons/calendar_add.png b/kasu/static/icons/calendar_add.png
similarity index 100%
rename from htdocs/icons/calendar_add.png
rename to kasu/static/icons/calendar_add.png
diff --git a/htdocs/icons/calendar_delete.png b/kasu/static/icons/calendar_delete.png
similarity index 100%
rename from htdocs/icons/calendar_delete.png
rename to kasu/static/icons/calendar_delete.png
diff --git a/htdocs/icons/calendar_edit.png b/kasu/static/icons/calendar_edit.png
similarity index 100%
rename from htdocs/icons/calendar_edit.png
rename to kasu/static/icons/calendar_edit.png
diff --git a/htdocs/icons/calendar_link.png b/kasu/static/icons/calendar_link.png
similarity index 100%
rename from htdocs/icons/calendar_link.png
rename to kasu/static/icons/calendar_link.png
diff --git a/htdocs/icons/calendar_view_day.png b/kasu/static/icons/calendar_view_day.png
similarity index 100%
rename from htdocs/icons/calendar_view_day.png
rename to kasu/static/icons/calendar_view_day.png
diff --git a/htdocs/icons/calendar_view_month.png b/kasu/static/icons/calendar_view_month.png
similarity index 100%
rename from htdocs/icons/calendar_view_month.png
rename to kasu/static/icons/calendar_view_month.png
diff --git a/htdocs/icons/calendar_view_week.png b/kasu/static/icons/calendar_view_week.png
similarity index 100%
rename from htdocs/icons/calendar_view_week.png
rename to kasu/static/icons/calendar_view_week.png
diff --git a/htdocs/icons/camera.png b/kasu/static/icons/camera.png
similarity index 100%
rename from htdocs/icons/camera.png
rename to kasu/static/icons/camera.png
diff --git a/htdocs/icons/camera_add.png b/kasu/static/icons/camera_add.png
similarity index 100%
rename from htdocs/icons/camera_add.png
rename to kasu/static/icons/camera_add.png
diff --git a/htdocs/icons/camera_delete.png b/kasu/static/icons/camera_delete.png
similarity index 100%
rename from htdocs/icons/camera_delete.png
rename to kasu/static/icons/camera_delete.png
diff --git a/htdocs/icons/camera_edit.png b/kasu/static/icons/camera_edit.png
similarity index 100%
rename from htdocs/icons/camera_edit.png
rename to kasu/static/icons/camera_edit.png
diff --git a/htdocs/icons/camera_error.png b/kasu/static/icons/camera_error.png
similarity index 100%
rename from htdocs/icons/camera_error.png
rename to kasu/static/icons/camera_error.png
diff --git a/htdocs/icons/camera_go.png b/kasu/static/icons/camera_go.png
similarity index 100%
rename from htdocs/icons/camera_go.png
rename to kasu/static/icons/camera_go.png
diff --git a/htdocs/icons/camera_link.png b/kasu/static/icons/camera_link.png
similarity index 100%
rename from htdocs/icons/camera_link.png
rename to kasu/static/icons/camera_link.png
diff --git a/htdocs/icons/camera_small.png b/kasu/static/icons/camera_small.png
similarity index 100%
rename from htdocs/icons/camera_small.png
rename to kasu/static/icons/camera_small.png
diff --git a/htdocs/icons/cancel.png b/kasu/static/icons/cancel.png
similarity index 100%
rename from htdocs/icons/cancel.png
rename to kasu/static/icons/cancel.png
diff --git a/htdocs/icons/car.png b/kasu/static/icons/car.png
similarity index 100%
rename from htdocs/icons/car.png
rename to kasu/static/icons/car.png
diff --git a/htdocs/icons/car_add.png b/kasu/static/icons/car_add.png
similarity index 100%
rename from htdocs/icons/car_add.png
rename to kasu/static/icons/car_add.png
diff --git a/htdocs/icons/car_delete.png b/kasu/static/icons/car_delete.png
similarity index 100%
rename from htdocs/icons/car_delete.png
rename to kasu/static/icons/car_delete.png
diff --git a/htdocs/icons/cart.png b/kasu/static/icons/cart.png
similarity index 100%
rename from htdocs/icons/cart.png
rename to kasu/static/icons/cart.png
diff --git a/htdocs/icons/cart_add.png b/kasu/static/icons/cart_add.png
similarity index 100%
rename from htdocs/icons/cart_add.png
rename to kasu/static/icons/cart_add.png
diff --git a/htdocs/icons/cart_delete.png b/kasu/static/icons/cart_delete.png
similarity index 100%
rename from htdocs/icons/cart_delete.png
rename to kasu/static/icons/cart_delete.png
diff --git a/htdocs/icons/cart_edit.png b/kasu/static/icons/cart_edit.png
similarity index 100%
rename from htdocs/icons/cart_edit.png
rename to kasu/static/icons/cart_edit.png
diff --git a/htdocs/icons/cart_error.png b/kasu/static/icons/cart_error.png
similarity index 100%
rename from htdocs/icons/cart_error.png
rename to kasu/static/icons/cart_error.png
diff --git a/htdocs/icons/cart_go.png b/kasu/static/icons/cart_go.png
similarity index 100%
rename from htdocs/icons/cart_go.png
rename to kasu/static/icons/cart_go.png
diff --git a/htdocs/icons/cart_put.png b/kasu/static/icons/cart_put.png
similarity index 100%
rename from htdocs/icons/cart_put.png
rename to kasu/static/icons/cart_put.png
diff --git a/htdocs/icons/cart_remove.png b/kasu/static/icons/cart_remove.png
similarity index 100%
rename from htdocs/icons/cart_remove.png
rename to kasu/static/icons/cart_remove.png
diff --git a/htdocs/icons/cd.png b/kasu/static/icons/cd.png
similarity index 100%
rename from htdocs/icons/cd.png
rename to kasu/static/icons/cd.png
diff --git a/htdocs/icons/cd_add.png b/kasu/static/icons/cd_add.png
similarity index 100%
rename from htdocs/icons/cd_add.png
rename to kasu/static/icons/cd_add.png
diff --git a/htdocs/icons/cd_burn.png b/kasu/static/icons/cd_burn.png
similarity index 100%
rename from htdocs/icons/cd_burn.png
rename to kasu/static/icons/cd_burn.png
diff --git a/htdocs/icons/cd_delete.png b/kasu/static/icons/cd_delete.png
similarity index 100%
rename from htdocs/icons/cd_delete.png
rename to kasu/static/icons/cd_delete.png
diff --git a/htdocs/icons/cd_edit.png b/kasu/static/icons/cd_edit.png
similarity index 100%
rename from htdocs/icons/cd_edit.png
rename to kasu/static/icons/cd_edit.png
diff --git a/htdocs/icons/cd_eject.png b/kasu/static/icons/cd_eject.png
similarity index 100%
rename from htdocs/icons/cd_eject.png
rename to kasu/static/icons/cd_eject.png
diff --git a/htdocs/icons/cd_go.png b/kasu/static/icons/cd_go.png
similarity index 100%
rename from htdocs/icons/cd_go.png
rename to kasu/static/icons/cd_go.png
diff --git a/htdocs/icons/chart_bar.png b/kasu/static/icons/chart_bar.png
similarity index 100%
rename from htdocs/icons/chart_bar.png
rename to kasu/static/icons/chart_bar.png
diff --git a/htdocs/icons/chart_bar_add.png b/kasu/static/icons/chart_bar_add.png
similarity index 100%
rename from htdocs/icons/chart_bar_add.png
rename to kasu/static/icons/chart_bar_add.png
diff --git a/htdocs/icons/chart_bar_delete.png b/kasu/static/icons/chart_bar_delete.png
similarity index 100%
rename from htdocs/icons/chart_bar_delete.png
rename to kasu/static/icons/chart_bar_delete.png
diff --git a/htdocs/icons/chart_bar_edit.png b/kasu/static/icons/chart_bar_edit.png
similarity index 100%
rename from htdocs/icons/chart_bar_edit.png
rename to kasu/static/icons/chart_bar_edit.png
diff --git a/htdocs/icons/chart_bar_error.png b/kasu/static/icons/chart_bar_error.png
similarity index 100%
rename from htdocs/icons/chart_bar_error.png
rename to kasu/static/icons/chart_bar_error.png
diff --git a/htdocs/icons/chart_bar_link.png b/kasu/static/icons/chart_bar_link.png
similarity index 100%
rename from htdocs/icons/chart_bar_link.png
rename to kasu/static/icons/chart_bar_link.png
diff --git a/htdocs/icons/chart_curve.png b/kasu/static/icons/chart_curve.png
similarity index 100%
rename from htdocs/icons/chart_curve.png
rename to kasu/static/icons/chart_curve.png
diff --git a/htdocs/icons/chart_curve_add.png b/kasu/static/icons/chart_curve_add.png
similarity index 100%
rename from htdocs/icons/chart_curve_add.png
rename to kasu/static/icons/chart_curve_add.png
diff --git a/htdocs/icons/chart_curve_delete.png b/kasu/static/icons/chart_curve_delete.png
similarity index 100%
rename from htdocs/icons/chart_curve_delete.png
rename to kasu/static/icons/chart_curve_delete.png
diff --git a/htdocs/icons/chart_curve_edit.png b/kasu/static/icons/chart_curve_edit.png
similarity index 100%
rename from htdocs/icons/chart_curve_edit.png
rename to kasu/static/icons/chart_curve_edit.png
diff --git a/htdocs/icons/chart_curve_error.png b/kasu/static/icons/chart_curve_error.png
similarity index 100%
rename from htdocs/icons/chart_curve_error.png
rename to kasu/static/icons/chart_curve_error.png
diff --git a/htdocs/icons/chart_curve_go.png b/kasu/static/icons/chart_curve_go.png
similarity index 100%
rename from htdocs/icons/chart_curve_go.png
rename to kasu/static/icons/chart_curve_go.png
diff --git a/htdocs/icons/chart_curve_link.png b/kasu/static/icons/chart_curve_link.png
similarity index 100%
rename from htdocs/icons/chart_curve_link.png
rename to kasu/static/icons/chart_curve_link.png
diff --git a/htdocs/icons/chart_line.png b/kasu/static/icons/chart_line.png
similarity index 100%
rename from htdocs/icons/chart_line.png
rename to kasu/static/icons/chart_line.png
diff --git a/htdocs/icons/chart_line_add.png b/kasu/static/icons/chart_line_add.png
similarity index 100%
rename from htdocs/icons/chart_line_add.png
rename to kasu/static/icons/chart_line_add.png
diff --git a/htdocs/icons/chart_line_delete.png b/kasu/static/icons/chart_line_delete.png
similarity index 100%
rename from htdocs/icons/chart_line_delete.png
rename to kasu/static/icons/chart_line_delete.png
diff --git a/htdocs/icons/chart_line_edit.png b/kasu/static/icons/chart_line_edit.png
similarity index 100%
rename from htdocs/icons/chart_line_edit.png
rename to kasu/static/icons/chart_line_edit.png
diff --git a/htdocs/icons/chart_line_error.png b/kasu/static/icons/chart_line_error.png
similarity index 100%
rename from htdocs/icons/chart_line_error.png
rename to kasu/static/icons/chart_line_error.png
diff --git a/htdocs/icons/chart_line_link.png b/kasu/static/icons/chart_line_link.png
similarity index 100%
rename from htdocs/icons/chart_line_link.png
rename to kasu/static/icons/chart_line_link.png
diff --git a/htdocs/icons/chart_organisation.png b/kasu/static/icons/chart_organisation.png
similarity index 100%
rename from htdocs/icons/chart_organisation.png
rename to kasu/static/icons/chart_organisation.png
diff --git a/htdocs/icons/chart_organisation_add.png b/kasu/static/icons/chart_organisation_add.png
similarity index 100%
rename from htdocs/icons/chart_organisation_add.png
rename to kasu/static/icons/chart_organisation_add.png
diff --git a/htdocs/icons/chart_organisation_delete.png b/kasu/static/icons/chart_organisation_delete.png
similarity index 100%
rename from htdocs/icons/chart_organisation_delete.png
rename to kasu/static/icons/chart_organisation_delete.png
diff --git a/htdocs/icons/chart_pie.png b/kasu/static/icons/chart_pie.png
similarity index 100%
rename from htdocs/icons/chart_pie.png
rename to kasu/static/icons/chart_pie.png
diff --git a/htdocs/icons/chart_pie_add.png b/kasu/static/icons/chart_pie_add.png
similarity index 100%
rename from htdocs/icons/chart_pie_add.png
rename to kasu/static/icons/chart_pie_add.png
diff --git a/htdocs/icons/chart_pie_delete.png b/kasu/static/icons/chart_pie_delete.png
similarity index 100%
rename from htdocs/icons/chart_pie_delete.png
rename to kasu/static/icons/chart_pie_delete.png
diff --git a/htdocs/icons/chart_pie_edit.png b/kasu/static/icons/chart_pie_edit.png
similarity index 100%
rename from htdocs/icons/chart_pie_edit.png
rename to kasu/static/icons/chart_pie_edit.png
diff --git a/htdocs/icons/chart_pie_error.png b/kasu/static/icons/chart_pie_error.png
similarity index 100%
rename from htdocs/icons/chart_pie_error.png
rename to kasu/static/icons/chart_pie_error.png
diff --git a/htdocs/icons/chart_pie_link.png b/kasu/static/icons/chart_pie_link.png
similarity index 100%
rename from htdocs/icons/chart_pie_link.png
rename to kasu/static/icons/chart_pie_link.png
diff --git a/htdocs/icons/clock.png b/kasu/static/icons/clock.png
similarity index 100%
rename from htdocs/icons/clock.png
rename to kasu/static/icons/clock.png
diff --git a/htdocs/icons/clock_add.png b/kasu/static/icons/clock_add.png
similarity index 100%
rename from htdocs/icons/clock_add.png
rename to kasu/static/icons/clock_add.png
diff --git a/htdocs/icons/clock_delete.png b/kasu/static/icons/clock_delete.png
similarity index 100%
rename from htdocs/icons/clock_delete.png
rename to kasu/static/icons/clock_delete.png
diff --git a/htdocs/icons/clock_edit.png b/kasu/static/icons/clock_edit.png
similarity index 100%
rename from htdocs/icons/clock_edit.png
rename to kasu/static/icons/clock_edit.png
diff --git a/htdocs/icons/clock_error.png b/kasu/static/icons/clock_error.png
similarity index 100%
rename from htdocs/icons/clock_error.png
rename to kasu/static/icons/clock_error.png
diff --git a/htdocs/icons/clock_go.png b/kasu/static/icons/clock_go.png
similarity index 100%
rename from htdocs/icons/clock_go.png
rename to kasu/static/icons/clock_go.png
diff --git a/htdocs/icons/clock_link.png b/kasu/static/icons/clock_link.png
similarity index 100%
rename from htdocs/icons/clock_link.png
rename to kasu/static/icons/clock_link.png
diff --git a/htdocs/icons/clock_pause.png b/kasu/static/icons/clock_pause.png
similarity index 100%
rename from htdocs/icons/clock_pause.png
rename to kasu/static/icons/clock_pause.png
diff --git a/htdocs/icons/clock_play.png b/kasu/static/icons/clock_play.png
similarity index 100%
rename from htdocs/icons/clock_play.png
rename to kasu/static/icons/clock_play.png
diff --git a/htdocs/icons/clock_red.png b/kasu/static/icons/clock_red.png
similarity index 100%
rename from htdocs/icons/clock_red.png
rename to kasu/static/icons/clock_red.png
diff --git a/htdocs/icons/clock_stop.png b/kasu/static/icons/clock_stop.png
similarity index 100%
rename from htdocs/icons/clock_stop.png
rename to kasu/static/icons/clock_stop.png
diff --git a/htdocs/icons/cog.png b/kasu/static/icons/cog.png
similarity index 100%
rename from htdocs/icons/cog.png
rename to kasu/static/icons/cog.png
diff --git a/htdocs/icons/cog_add.png b/kasu/static/icons/cog_add.png
similarity index 100%
rename from htdocs/icons/cog_add.png
rename to kasu/static/icons/cog_add.png
diff --git a/htdocs/icons/cog_delete.png b/kasu/static/icons/cog_delete.png
similarity index 100%
rename from htdocs/icons/cog_delete.png
rename to kasu/static/icons/cog_delete.png
diff --git a/htdocs/icons/cog_edit.png b/kasu/static/icons/cog_edit.png
similarity index 100%
rename from htdocs/icons/cog_edit.png
rename to kasu/static/icons/cog_edit.png
diff --git a/htdocs/icons/cog_error.png b/kasu/static/icons/cog_error.png
similarity index 100%
rename from htdocs/icons/cog_error.png
rename to kasu/static/icons/cog_error.png
diff --git a/htdocs/icons/cog_go.png b/kasu/static/icons/cog_go.png
similarity index 100%
rename from htdocs/icons/cog_go.png
rename to kasu/static/icons/cog_go.png
diff --git a/htdocs/icons/coins.png b/kasu/static/icons/coins.png
similarity index 100%
rename from htdocs/icons/coins.png
rename to kasu/static/icons/coins.png
diff --git a/htdocs/icons/coins_add.png b/kasu/static/icons/coins_add.png
similarity index 100%
rename from htdocs/icons/coins_add.png
rename to kasu/static/icons/coins_add.png
diff --git a/htdocs/icons/coins_delete.png b/kasu/static/icons/coins_delete.png
similarity index 100%
rename from htdocs/icons/coins_delete.png
rename to kasu/static/icons/coins_delete.png
diff --git a/htdocs/icons/color_swatch.png b/kasu/static/icons/color_swatch.png
similarity index 100%
rename from htdocs/icons/color_swatch.png
rename to kasu/static/icons/color_swatch.png
diff --git a/htdocs/icons/color_wheel.png b/kasu/static/icons/color_wheel.png
similarity index 100%
rename from htdocs/icons/color_wheel.png
rename to kasu/static/icons/color_wheel.png
diff --git a/htdocs/icons/comment.png b/kasu/static/icons/comment.png
similarity index 100%
rename from htdocs/icons/comment.png
rename to kasu/static/icons/comment.png
diff --git a/htdocs/icons/comment_add.png b/kasu/static/icons/comment_add.png
similarity index 100%
rename from htdocs/icons/comment_add.png
rename to kasu/static/icons/comment_add.png
diff --git a/htdocs/icons/comment_delete.png b/kasu/static/icons/comment_delete.png
similarity index 100%
rename from htdocs/icons/comment_delete.png
rename to kasu/static/icons/comment_delete.png
diff --git a/htdocs/icons/comment_edit.png b/kasu/static/icons/comment_edit.png
similarity index 100%
rename from htdocs/icons/comment_edit.png
rename to kasu/static/icons/comment_edit.png
diff --git a/htdocs/icons/comments.png b/kasu/static/icons/comments.png
similarity index 100%
rename from htdocs/icons/comments.png
rename to kasu/static/icons/comments.png
diff --git a/htdocs/icons/comments_add.png b/kasu/static/icons/comments_add.png
similarity index 100%
rename from htdocs/icons/comments_add.png
rename to kasu/static/icons/comments_add.png
diff --git a/htdocs/icons/comments_delete.png b/kasu/static/icons/comments_delete.png
similarity index 100%
rename from htdocs/icons/comments_delete.png
rename to kasu/static/icons/comments_delete.png
diff --git a/htdocs/icons/compress.png b/kasu/static/icons/compress.png
similarity index 100%
rename from htdocs/icons/compress.png
rename to kasu/static/icons/compress.png
diff --git a/htdocs/icons/computer.png b/kasu/static/icons/computer.png
similarity index 100%
rename from htdocs/icons/computer.png
rename to kasu/static/icons/computer.png
diff --git a/htdocs/icons/computer_add.png b/kasu/static/icons/computer_add.png
similarity index 100%
rename from htdocs/icons/computer_add.png
rename to kasu/static/icons/computer_add.png
diff --git a/htdocs/icons/computer_delete.png b/kasu/static/icons/computer_delete.png
similarity index 100%
rename from htdocs/icons/computer_delete.png
rename to kasu/static/icons/computer_delete.png
diff --git a/htdocs/icons/computer_edit.png b/kasu/static/icons/computer_edit.png
similarity index 100%
rename from htdocs/icons/computer_edit.png
rename to kasu/static/icons/computer_edit.png
diff --git a/htdocs/icons/computer_error.png b/kasu/static/icons/computer_error.png
similarity index 100%
rename from htdocs/icons/computer_error.png
rename to kasu/static/icons/computer_error.png
diff --git a/htdocs/icons/computer_go.png b/kasu/static/icons/computer_go.png
similarity index 100%
rename from htdocs/icons/computer_go.png
rename to kasu/static/icons/computer_go.png
diff --git a/htdocs/icons/computer_key.png b/kasu/static/icons/computer_key.png
similarity index 100%
rename from htdocs/icons/computer_key.png
rename to kasu/static/icons/computer_key.png
diff --git a/htdocs/icons/computer_link.png b/kasu/static/icons/computer_link.png
similarity index 100%
rename from htdocs/icons/computer_link.png
rename to kasu/static/icons/computer_link.png
diff --git a/htdocs/icons/connect.png b/kasu/static/icons/connect.png
similarity index 100%
rename from htdocs/icons/connect.png
rename to kasu/static/icons/connect.png
diff --git a/htdocs/icons/contrast.png b/kasu/static/icons/contrast.png
similarity index 100%
rename from htdocs/icons/contrast.png
rename to kasu/static/icons/contrast.png
diff --git a/htdocs/icons/contrast_decrease.png b/kasu/static/icons/contrast_decrease.png
similarity index 100%
rename from htdocs/icons/contrast_decrease.png
rename to kasu/static/icons/contrast_decrease.png
diff --git a/htdocs/icons/contrast_high.png b/kasu/static/icons/contrast_high.png
similarity index 100%
rename from htdocs/icons/contrast_high.png
rename to kasu/static/icons/contrast_high.png
diff --git a/htdocs/icons/contrast_increase.png b/kasu/static/icons/contrast_increase.png
similarity index 100%
rename from htdocs/icons/contrast_increase.png
rename to kasu/static/icons/contrast_increase.png
diff --git a/htdocs/icons/contrast_low.png b/kasu/static/icons/contrast_low.png
similarity index 100%
rename from htdocs/icons/contrast_low.png
rename to kasu/static/icons/contrast_low.png
diff --git a/htdocs/icons/control_eject.png b/kasu/static/icons/control_eject.png
similarity index 100%
rename from htdocs/icons/control_eject.png
rename to kasu/static/icons/control_eject.png
diff --git a/htdocs/icons/control_eject_blue.png b/kasu/static/icons/control_eject_blue.png
similarity index 100%
rename from htdocs/icons/control_eject_blue.png
rename to kasu/static/icons/control_eject_blue.png
diff --git a/htdocs/icons/control_end.png b/kasu/static/icons/control_end.png
similarity index 100%
rename from htdocs/icons/control_end.png
rename to kasu/static/icons/control_end.png
diff --git a/htdocs/icons/control_end_blue.png b/kasu/static/icons/control_end_blue.png
similarity index 100%
rename from htdocs/icons/control_end_blue.png
rename to kasu/static/icons/control_end_blue.png
diff --git a/htdocs/icons/control_equalizer.png b/kasu/static/icons/control_equalizer.png
similarity index 100%
rename from htdocs/icons/control_equalizer.png
rename to kasu/static/icons/control_equalizer.png
diff --git a/htdocs/icons/control_equalizer_blue.png b/kasu/static/icons/control_equalizer_blue.png
similarity index 100%
rename from htdocs/icons/control_equalizer_blue.png
rename to kasu/static/icons/control_equalizer_blue.png
diff --git a/htdocs/icons/control_fastforward.png b/kasu/static/icons/control_fastforward.png
similarity index 100%
rename from htdocs/icons/control_fastforward.png
rename to kasu/static/icons/control_fastforward.png
diff --git a/htdocs/icons/control_fastforward_blue.png b/kasu/static/icons/control_fastforward_blue.png
similarity index 100%
rename from htdocs/icons/control_fastforward_blue.png
rename to kasu/static/icons/control_fastforward_blue.png
diff --git a/htdocs/icons/control_pause.png b/kasu/static/icons/control_pause.png
similarity index 100%
rename from htdocs/icons/control_pause.png
rename to kasu/static/icons/control_pause.png
diff --git a/htdocs/icons/control_pause_blue.png b/kasu/static/icons/control_pause_blue.png
similarity index 100%
rename from htdocs/icons/control_pause_blue.png
rename to kasu/static/icons/control_pause_blue.png
diff --git a/htdocs/icons/control_play.png b/kasu/static/icons/control_play.png
similarity index 100%
rename from htdocs/icons/control_play.png
rename to kasu/static/icons/control_play.png
diff --git a/htdocs/icons/control_play_blue.png b/kasu/static/icons/control_play_blue.png
similarity index 100%
rename from htdocs/icons/control_play_blue.png
rename to kasu/static/icons/control_play_blue.png
diff --git a/htdocs/icons/control_repeat.png b/kasu/static/icons/control_repeat.png
similarity index 100%
rename from htdocs/icons/control_repeat.png
rename to kasu/static/icons/control_repeat.png
diff --git a/htdocs/icons/control_repeat_blue.png b/kasu/static/icons/control_repeat_blue.png
similarity index 100%
rename from htdocs/icons/control_repeat_blue.png
rename to kasu/static/icons/control_repeat_blue.png
diff --git a/htdocs/icons/control_rewind.png b/kasu/static/icons/control_rewind.png
similarity index 100%
rename from htdocs/icons/control_rewind.png
rename to kasu/static/icons/control_rewind.png
diff --git a/htdocs/icons/control_rewind_blue.png b/kasu/static/icons/control_rewind_blue.png
similarity index 100%
rename from htdocs/icons/control_rewind_blue.png
rename to kasu/static/icons/control_rewind_blue.png
diff --git a/htdocs/icons/control_start.png b/kasu/static/icons/control_start.png
similarity index 100%
rename from htdocs/icons/control_start.png
rename to kasu/static/icons/control_start.png
diff --git a/htdocs/icons/control_start_blue.png b/kasu/static/icons/control_start_blue.png
similarity index 100%
rename from htdocs/icons/control_start_blue.png
rename to kasu/static/icons/control_start_blue.png
diff --git a/htdocs/icons/control_stop.png b/kasu/static/icons/control_stop.png
similarity index 100%
rename from htdocs/icons/control_stop.png
rename to kasu/static/icons/control_stop.png
diff --git a/htdocs/icons/control_stop_blue.png b/kasu/static/icons/control_stop_blue.png
similarity index 100%
rename from htdocs/icons/control_stop_blue.png
rename to kasu/static/icons/control_stop_blue.png
diff --git a/htdocs/icons/controller.png b/kasu/static/icons/controller.png
similarity index 100%
rename from htdocs/icons/controller.png
rename to kasu/static/icons/controller.png
diff --git a/htdocs/icons/controller_add.png b/kasu/static/icons/controller_add.png
similarity index 100%
rename from htdocs/icons/controller_add.png
rename to kasu/static/icons/controller_add.png
diff --git a/htdocs/icons/controller_delete.png b/kasu/static/icons/controller_delete.png
similarity index 100%
rename from htdocs/icons/controller_delete.png
rename to kasu/static/icons/controller_delete.png
diff --git a/htdocs/icons/controller_error.png b/kasu/static/icons/controller_error.png
similarity index 100%
rename from htdocs/icons/controller_error.png
rename to kasu/static/icons/controller_error.png
diff --git a/htdocs/icons/creditcards.png b/kasu/static/icons/creditcards.png
similarity index 100%
rename from htdocs/icons/creditcards.png
rename to kasu/static/icons/creditcards.png
diff --git a/htdocs/icons/cross.png b/kasu/static/icons/cross.png
similarity index 100%
rename from htdocs/icons/cross.png
rename to kasu/static/icons/cross.png
diff --git a/htdocs/icons/css.png b/kasu/static/icons/css.png
similarity index 100%
rename from htdocs/icons/css.png
rename to kasu/static/icons/css.png
diff --git a/htdocs/icons/css_add.png b/kasu/static/icons/css_add.png
similarity index 100%
rename from htdocs/icons/css_add.png
rename to kasu/static/icons/css_add.png
diff --git a/htdocs/icons/css_delete.png b/kasu/static/icons/css_delete.png
similarity index 100%
rename from htdocs/icons/css_delete.png
rename to kasu/static/icons/css_delete.png
diff --git a/htdocs/icons/css_go.png b/kasu/static/icons/css_go.png
similarity index 100%
rename from htdocs/icons/css_go.png
rename to kasu/static/icons/css_go.png
diff --git a/htdocs/icons/css_valid.png b/kasu/static/icons/css_valid.png
similarity index 100%
rename from htdocs/icons/css_valid.png
rename to kasu/static/icons/css_valid.png
diff --git a/htdocs/icons/cup.png b/kasu/static/icons/cup.png
similarity index 100%
rename from htdocs/icons/cup.png
rename to kasu/static/icons/cup.png
diff --git a/htdocs/icons/cup_add.png b/kasu/static/icons/cup_add.png
similarity index 100%
rename from htdocs/icons/cup_add.png
rename to kasu/static/icons/cup_add.png
diff --git a/htdocs/icons/cup_delete.png b/kasu/static/icons/cup_delete.png
similarity index 100%
rename from htdocs/icons/cup_delete.png
rename to kasu/static/icons/cup_delete.png
diff --git a/htdocs/icons/cup_edit.png b/kasu/static/icons/cup_edit.png
similarity index 100%
rename from htdocs/icons/cup_edit.png
rename to kasu/static/icons/cup_edit.png
diff --git a/htdocs/icons/cup_error.png b/kasu/static/icons/cup_error.png
similarity index 100%
rename from htdocs/icons/cup_error.png
rename to kasu/static/icons/cup_error.png
diff --git a/htdocs/icons/cup_go.png b/kasu/static/icons/cup_go.png
similarity index 100%
rename from htdocs/icons/cup_go.png
rename to kasu/static/icons/cup_go.png
diff --git a/htdocs/icons/cup_key.png b/kasu/static/icons/cup_key.png
similarity index 100%
rename from htdocs/icons/cup_key.png
rename to kasu/static/icons/cup_key.png
diff --git a/htdocs/icons/cup_link.png b/kasu/static/icons/cup_link.png
similarity index 100%
rename from htdocs/icons/cup_link.png
rename to kasu/static/icons/cup_link.png
diff --git a/htdocs/icons/cursor.png b/kasu/static/icons/cursor.png
similarity index 100%
rename from htdocs/icons/cursor.png
rename to kasu/static/icons/cursor.png
diff --git a/htdocs/icons/cut.png b/kasu/static/icons/cut.png
similarity index 100%
rename from htdocs/icons/cut.png
rename to kasu/static/icons/cut.png
diff --git a/htdocs/icons/cut_red.png b/kasu/static/icons/cut_red.png
similarity index 100%
rename from htdocs/icons/cut_red.png
rename to kasu/static/icons/cut_red.png
diff --git a/htdocs/icons/database.png b/kasu/static/icons/database.png
similarity index 100%
rename from htdocs/icons/database.png
rename to kasu/static/icons/database.png
diff --git a/htdocs/icons/database_add.png b/kasu/static/icons/database_add.png
similarity index 100%
rename from htdocs/icons/database_add.png
rename to kasu/static/icons/database_add.png
diff --git a/htdocs/icons/database_connect.png b/kasu/static/icons/database_connect.png
similarity index 100%
rename from htdocs/icons/database_connect.png
rename to kasu/static/icons/database_connect.png
diff --git a/htdocs/icons/database_delete.png b/kasu/static/icons/database_delete.png
similarity index 100%
rename from htdocs/icons/database_delete.png
rename to kasu/static/icons/database_delete.png
diff --git a/htdocs/icons/database_edit.png b/kasu/static/icons/database_edit.png
similarity index 100%
rename from htdocs/icons/database_edit.png
rename to kasu/static/icons/database_edit.png
diff --git a/htdocs/icons/database_error.png b/kasu/static/icons/database_error.png
similarity index 100%
rename from htdocs/icons/database_error.png
rename to kasu/static/icons/database_error.png
diff --git a/htdocs/icons/database_gear.png b/kasu/static/icons/database_gear.png
similarity index 100%
rename from htdocs/icons/database_gear.png
rename to kasu/static/icons/database_gear.png
diff --git a/htdocs/icons/database_go.png b/kasu/static/icons/database_go.png
similarity index 100%
rename from htdocs/icons/database_go.png
rename to kasu/static/icons/database_go.png
diff --git a/htdocs/icons/database_key.png b/kasu/static/icons/database_key.png
similarity index 100%
rename from htdocs/icons/database_key.png
rename to kasu/static/icons/database_key.png
diff --git a/htdocs/icons/database_lightning.png b/kasu/static/icons/database_lightning.png
similarity index 100%
rename from htdocs/icons/database_lightning.png
rename to kasu/static/icons/database_lightning.png
diff --git a/htdocs/icons/database_link.png b/kasu/static/icons/database_link.png
similarity index 100%
rename from htdocs/icons/database_link.png
rename to kasu/static/icons/database_link.png
diff --git a/htdocs/icons/database_refresh.png b/kasu/static/icons/database_refresh.png
similarity index 100%
rename from htdocs/icons/database_refresh.png
rename to kasu/static/icons/database_refresh.png
diff --git a/htdocs/icons/database_save.png b/kasu/static/icons/database_save.png
similarity index 100%
rename from htdocs/icons/database_save.png
rename to kasu/static/icons/database_save.png
diff --git a/htdocs/icons/database_table.png b/kasu/static/icons/database_table.png
similarity index 100%
rename from htdocs/icons/database_table.png
rename to kasu/static/icons/database_table.png
diff --git a/htdocs/icons/date.png b/kasu/static/icons/date.png
similarity index 100%
rename from htdocs/icons/date.png
rename to kasu/static/icons/date.png
diff --git a/htdocs/icons/date_add.png b/kasu/static/icons/date_add.png
similarity index 100%
rename from htdocs/icons/date_add.png
rename to kasu/static/icons/date_add.png
diff --git a/htdocs/icons/date_delete.png b/kasu/static/icons/date_delete.png
similarity index 100%
rename from htdocs/icons/date_delete.png
rename to kasu/static/icons/date_delete.png
diff --git a/htdocs/icons/date_edit.png b/kasu/static/icons/date_edit.png
similarity index 100%
rename from htdocs/icons/date_edit.png
rename to kasu/static/icons/date_edit.png
diff --git a/htdocs/icons/date_error.png b/kasu/static/icons/date_error.png
similarity index 100%
rename from htdocs/icons/date_error.png
rename to kasu/static/icons/date_error.png
diff --git a/htdocs/icons/date_go.png b/kasu/static/icons/date_go.png
similarity index 100%
rename from htdocs/icons/date_go.png
rename to kasu/static/icons/date_go.png
diff --git a/htdocs/icons/date_link.png b/kasu/static/icons/date_link.png
similarity index 100%
rename from htdocs/icons/date_link.png
rename to kasu/static/icons/date_link.png
diff --git a/htdocs/icons/date_magnify.png b/kasu/static/icons/date_magnify.png
similarity index 100%
rename from htdocs/icons/date_magnify.png
rename to kasu/static/icons/date_magnify.png
diff --git a/htdocs/icons/date_next.png b/kasu/static/icons/date_next.png
similarity index 100%
rename from htdocs/icons/date_next.png
rename to kasu/static/icons/date_next.png
diff --git a/htdocs/icons/date_previous.png b/kasu/static/icons/date_previous.png
similarity index 100%
rename from htdocs/icons/date_previous.png
rename to kasu/static/icons/date_previous.png
diff --git a/htdocs/icons/delete.png b/kasu/static/icons/delete.png
similarity index 100%
rename from htdocs/icons/delete.png
rename to kasu/static/icons/delete.png
diff --git a/htdocs/icons/disconnect.png b/kasu/static/icons/disconnect.png
similarity index 100%
rename from htdocs/icons/disconnect.png
rename to kasu/static/icons/disconnect.png
diff --git a/htdocs/icons/disk.png b/kasu/static/icons/disk.png
similarity index 100%
rename from htdocs/icons/disk.png
rename to kasu/static/icons/disk.png
diff --git a/htdocs/icons/disk_multiple.png b/kasu/static/icons/disk_multiple.png
similarity index 100%
rename from htdocs/icons/disk_multiple.png
rename to kasu/static/icons/disk_multiple.png
diff --git a/htdocs/icons/door.png b/kasu/static/icons/door.png
similarity index 100%
rename from htdocs/icons/door.png
rename to kasu/static/icons/door.png
diff --git a/htdocs/icons/door_in.png b/kasu/static/icons/door_in.png
similarity index 100%
rename from htdocs/icons/door_in.png
rename to kasu/static/icons/door_in.png
diff --git a/htdocs/icons/door_open.png b/kasu/static/icons/door_open.png
similarity index 100%
rename from htdocs/icons/door_open.png
rename to kasu/static/icons/door_open.png
diff --git a/htdocs/icons/door_out.png b/kasu/static/icons/door_out.png
similarity index 100%
rename from htdocs/icons/door_out.png
rename to kasu/static/icons/door_out.png
diff --git a/htdocs/icons/drink.png b/kasu/static/icons/drink.png
similarity index 100%
rename from htdocs/icons/drink.png
rename to kasu/static/icons/drink.png
diff --git a/htdocs/icons/drink_empty.png b/kasu/static/icons/drink_empty.png
similarity index 100%
rename from htdocs/icons/drink_empty.png
rename to kasu/static/icons/drink_empty.png
diff --git a/htdocs/icons/drive.png b/kasu/static/icons/drive.png
similarity index 100%
rename from htdocs/icons/drive.png
rename to kasu/static/icons/drive.png
diff --git a/htdocs/icons/drive_add.png b/kasu/static/icons/drive_add.png
similarity index 100%
rename from htdocs/icons/drive_add.png
rename to kasu/static/icons/drive_add.png
diff --git a/htdocs/icons/drive_burn.png b/kasu/static/icons/drive_burn.png
similarity index 100%
rename from htdocs/icons/drive_burn.png
rename to kasu/static/icons/drive_burn.png
diff --git a/htdocs/icons/drive_cd.png b/kasu/static/icons/drive_cd.png
similarity index 100%
rename from htdocs/icons/drive_cd.png
rename to kasu/static/icons/drive_cd.png
diff --git a/htdocs/icons/drive_cd_empty.png b/kasu/static/icons/drive_cd_empty.png
similarity index 100%
rename from htdocs/icons/drive_cd_empty.png
rename to kasu/static/icons/drive_cd_empty.png
diff --git a/htdocs/icons/drive_delete.png b/kasu/static/icons/drive_delete.png
similarity index 100%
rename from htdocs/icons/drive_delete.png
rename to kasu/static/icons/drive_delete.png
diff --git a/htdocs/icons/drive_disk.png b/kasu/static/icons/drive_disk.png
similarity index 100%
rename from htdocs/icons/drive_disk.png
rename to kasu/static/icons/drive_disk.png
diff --git a/htdocs/icons/drive_edit.png b/kasu/static/icons/drive_edit.png
similarity index 100%
rename from htdocs/icons/drive_edit.png
rename to kasu/static/icons/drive_edit.png
diff --git a/htdocs/icons/drive_error.png b/kasu/static/icons/drive_error.png
similarity index 100%
rename from htdocs/icons/drive_error.png
rename to kasu/static/icons/drive_error.png
diff --git a/htdocs/icons/drive_go.png b/kasu/static/icons/drive_go.png
similarity index 100%
rename from htdocs/icons/drive_go.png
rename to kasu/static/icons/drive_go.png
diff --git a/htdocs/icons/drive_key.png b/kasu/static/icons/drive_key.png
similarity index 100%
rename from htdocs/icons/drive_key.png
rename to kasu/static/icons/drive_key.png
diff --git a/htdocs/icons/drive_link.png b/kasu/static/icons/drive_link.png
similarity index 100%
rename from htdocs/icons/drive_link.png
rename to kasu/static/icons/drive_link.png
diff --git a/htdocs/icons/drive_magnify.png b/kasu/static/icons/drive_magnify.png
similarity index 100%
rename from htdocs/icons/drive_magnify.png
rename to kasu/static/icons/drive_magnify.png
diff --git a/htdocs/icons/drive_network.png b/kasu/static/icons/drive_network.png
similarity index 100%
rename from htdocs/icons/drive_network.png
rename to kasu/static/icons/drive_network.png
diff --git a/htdocs/icons/drive_rename.png b/kasu/static/icons/drive_rename.png
similarity index 100%
rename from htdocs/icons/drive_rename.png
rename to kasu/static/icons/drive_rename.png
diff --git a/htdocs/icons/drive_user.png b/kasu/static/icons/drive_user.png
similarity index 100%
rename from htdocs/icons/drive_user.png
rename to kasu/static/icons/drive_user.png
diff --git a/htdocs/icons/drive_web.png b/kasu/static/icons/drive_web.png
similarity index 100%
rename from htdocs/icons/drive_web.png
rename to kasu/static/icons/drive_web.png
diff --git a/htdocs/icons/dvd.png b/kasu/static/icons/dvd.png
similarity index 100%
rename from htdocs/icons/dvd.png
rename to kasu/static/icons/dvd.png
diff --git a/htdocs/icons/dvd_add.png b/kasu/static/icons/dvd_add.png
similarity index 100%
rename from htdocs/icons/dvd_add.png
rename to kasu/static/icons/dvd_add.png
diff --git a/htdocs/icons/dvd_delete.png b/kasu/static/icons/dvd_delete.png
similarity index 100%
rename from htdocs/icons/dvd_delete.png
rename to kasu/static/icons/dvd_delete.png
diff --git a/htdocs/icons/dvd_edit.png b/kasu/static/icons/dvd_edit.png
similarity index 100%
rename from htdocs/icons/dvd_edit.png
rename to kasu/static/icons/dvd_edit.png
diff --git a/htdocs/icons/dvd_error.png b/kasu/static/icons/dvd_error.png
similarity index 100%
rename from htdocs/icons/dvd_error.png
rename to kasu/static/icons/dvd_error.png
diff --git a/htdocs/icons/dvd_go.png b/kasu/static/icons/dvd_go.png
similarity index 100%
rename from htdocs/icons/dvd_go.png
rename to kasu/static/icons/dvd_go.png
diff --git a/htdocs/icons/dvd_key.png b/kasu/static/icons/dvd_key.png
similarity index 100%
rename from htdocs/icons/dvd_key.png
rename to kasu/static/icons/dvd_key.png
diff --git a/htdocs/icons/dvd_link.png b/kasu/static/icons/dvd_link.png
similarity index 100%
rename from htdocs/icons/dvd_link.png
rename to kasu/static/icons/dvd_link.png
diff --git a/htdocs/icons/email.png b/kasu/static/icons/email.png
similarity index 100%
rename from htdocs/icons/email.png
rename to kasu/static/icons/email.png
diff --git a/htdocs/icons/email_add.png b/kasu/static/icons/email_add.png
similarity index 100%
rename from htdocs/icons/email_add.png
rename to kasu/static/icons/email_add.png
diff --git a/htdocs/icons/email_attach.png b/kasu/static/icons/email_attach.png
similarity index 100%
rename from htdocs/icons/email_attach.png
rename to kasu/static/icons/email_attach.png
diff --git a/htdocs/icons/email_delete.png b/kasu/static/icons/email_delete.png
similarity index 100%
rename from htdocs/icons/email_delete.png
rename to kasu/static/icons/email_delete.png
diff --git a/htdocs/icons/email_edit.png b/kasu/static/icons/email_edit.png
similarity index 100%
rename from htdocs/icons/email_edit.png
rename to kasu/static/icons/email_edit.png
diff --git a/htdocs/icons/email_error.png b/kasu/static/icons/email_error.png
similarity index 100%
rename from htdocs/icons/email_error.png
rename to kasu/static/icons/email_error.png
diff --git a/htdocs/icons/email_go.png b/kasu/static/icons/email_go.png
similarity index 100%
rename from htdocs/icons/email_go.png
rename to kasu/static/icons/email_go.png
diff --git a/htdocs/icons/email_link.png b/kasu/static/icons/email_link.png
similarity index 100%
rename from htdocs/icons/email_link.png
rename to kasu/static/icons/email_link.png
diff --git a/htdocs/icons/email_open.png b/kasu/static/icons/email_open.png
similarity index 100%
rename from htdocs/icons/email_open.png
rename to kasu/static/icons/email_open.png
diff --git a/htdocs/icons/email_open_image.png b/kasu/static/icons/email_open_image.png
similarity index 100%
rename from htdocs/icons/email_open_image.png
rename to kasu/static/icons/email_open_image.png
diff --git a/htdocs/icons/emoticon_evilgrin.png b/kasu/static/icons/emoticon_evilgrin.png
similarity index 100%
rename from htdocs/icons/emoticon_evilgrin.png
rename to kasu/static/icons/emoticon_evilgrin.png
diff --git a/htdocs/icons/emoticon_grin.png b/kasu/static/icons/emoticon_grin.png
similarity index 100%
rename from htdocs/icons/emoticon_grin.png
rename to kasu/static/icons/emoticon_grin.png
diff --git a/htdocs/icons/emoticon_happy.png b/kasu/static/icons/emoticon_happy.png
similarity index 100%
rename from htdocs/icons/emoticon_happy.png
rename to kasu/static/icons/emoticon_happy.png
diff --git a/htdocs/icons/emoticon_smile.png b/kasu/static/icons/emoticon_smile.png
similarity index 100%
rename from htdocs/icons/emoticon_smile.png
rename to kasu/static/icons/emoticon_smile.png
diff --git a/htdocs/icons/emoticon_surprised.png b/kasu/static/icons/emoticon_surprised.png
similarity index 100%
rename from htdocs/icons/emoticon_surprised.png
rename to kasu/static/icons/emoticon_surprised.png
diff --git a/htdocs/icons/emoticon_tongue.png b/kasu/static/icons/emoticon_tongue.png
similarity index 100%
rename from htdocs/icons/emoticon_tongue.png
rename to kasu/static/icons/emoticon_tongue.png
diff --git a/htdocs/icons/emoticon_unhappy.png b/kasu/static/icons/emoticon_unhappy.png
similarity index 100%
rename from htdocs/icons/emoticon_unhappy.png
rename to kasu/static/icons/emoticon_unhappy.png
diff --git a/htdocs/icons/emoticon_waii.png b/kasu/static/icons/emoticon_waii.png
similarity index 100%
rename from htdocs/icons/emoticon_waii.png
rename to kasu/static/icons/emoticon_waii.png
diff --git a/htdocs/icons/emoticon_wink.png b/kasu/static/icons/emoticon_wink.png
similarity index 100%
rename from htdocs/icons/emoticon_wink.png
rename to kasu/static/icons/emoticon_wink.png
diff --git a/htdocs/icons/error.png b/kasu/static/icons/error.png
similarity index 100%
rename from htdocs/icons/error.png
rename to kasu/static/icons/error.png
diff --git a/htdocs/icons/error_add.png b/kasu/static/icons/error_add.png
similarity index 100%
rename from htdocs/icons/error_add.png
rename to kasu/static/icons/error_add.png
diff --git a/htdocs/icons/error_delete.png b/kasu/static/icons/error_delete.png
similarity index 100%
rename from htdocs/icons/error_delete.png
rename to kasu/static/icons/error_delete.png
diff --git a/htdocs/icons/error_go.png b/kasu/static/icons/error_go.png
similarity index 100%
rename from htdocs/icons/error_go.png
rename to kasu/static/icons/error_go.png
diff --git a/htdocs/icons/exclamation.png b/kasu/static/icons/exclamation.png
similarity index 100%
rename from htdocs/icons/exclamation.png
rename to kasu/static/icons/exclamation.png
diff --git a/htdocs/icons/eye.png b/kasu/static/icons/eye.png
similarity index 100%
rename from htdocs/icons/eye.png
rename to kasu/static/icons/eye.png
diff --git a/htdocs/icons/feed.png b/kasu/static/icons/feed.png
similarity index 100%
rename from htdocs/icons/feed.png
rename to kasu/static/icons/feed.png
diff --git a/htdocs/icons/feed_add.png b/kasu/static/icons/feed_add.png
similarity index 100%
rename from htdocs/icons/feed_add.png
rename to kasu/static/icons/feed_add.png
diff --git a/htdocs/icons/feed_delete.png b/kasu/static/icons/feed_delete.png
similarity index 100%
rename from htdocs/icons/feed_delete.png
rename to kasu/static/icons/feed_delete.png
diff --git a/htdocs/icons/feed_disk.png b/kasu/static/icons/feed_disk.png
similarity index 100%
rename from htdocs/icons/feed_disk.png
rename to kasu/static/icons/feed_disk.png
diff --git a/htdocs/icons/feed_edit.png b/kasu/static/icons/feed_edit.png
similarity index 100%
rename from htdocs/icons/feed_edit.png
rename to kasu/static/icons/feed_edit.png
diff --git a/htdocs/icons/feed_error.png b/kasu/static/icons/feed_error.png
similarity index 100%
rename from htdocs/icons/feed_error.png
rename to kasu/static/icons/feed_error.png
diff --git a/htdocs/icons/feed_go.png b/kasu/static/icons/feed_go.png
similarity index 100%
rename from htdocs/icons/feed_go.png
rename to kasu/static/icons/feed_go.png
diff --git a/htdocs/icons/feed_key.png b/kasu/static/icons/feed_key.png
similarity index 100%
rename from htdocs/icons/feed_key.png
rename to kasu/static/icons/feed_key.png
diff --git a/htdocs/icons/feed_link.png b/kasu/static/icons/feed_link.png
similarity index 100%
rename from htdocs/icons/feed_link.png
rename to kasu/static/icons/feed_link.png
diff --git a/htdocs/icons/feed_magnify.png b/kasu/static/icons/feed_magnify.png
similarity index 100%
rename from htdocs/icons/feed_magnify.png
rename to kasu/static/icons/feed_magnify.png
diff --git a/htdocs/icons/female.png b/kasu/static/icons/female.png
similarity index 100%
rename from htdocs/icons/female.png
rename to kasu/static/icons/female.png
diff --git a/htdocs/icons/film.png b/kasu/static/icons/film.png
similarity index 100%
rename from htdocs/icons/film.png
rename to kasu/static/icons/film.png
diff --git a/htdocs/icons/film_add.png b/kasu/static/icons/film_add.png
similarity index 100%
rename from htdocs/icons/film_add.png
rename to kasu/static/icons/film_add.png
diff --git a/htdocs/icons/film_delete.png b/kasu/static/icons/film_delete.png
similarity index 100%
rename from htdocs/icons/film_delete.png
rename to kasu/static/icons/film_delete.png
diff --git a/htdocs/icons/film_edit.png b/kasu/static/icons/film_edit.png
similarity index 100%
rename from htdocs/icons/film_edit.png
rename to kasu/static/icons/film_edit.png
diff --git a/htdocs/icons/film_error.png b/kasu/static/icons/film_error.png
similarity index 100%
rename from htdocs/icons/film_error.png
rename to kasu/static/icons/film_error.png
diff --git a/htdocs/icons/film_go.png b/kasu/static/icons/film_go.png
similarity index 100%
rename from htdocs/icons/film_go.png
rename to kasu/static/icons/film_go.png
diff --git a/htdocs/icons/film_key.png b/kasu/static/icons/film_key.png
similarity index 100%
rename from htdocs/icons/film_key.png
rename to kasu/static/icons/film_key.png
diff --git a/htdocs/icons/film_link.png b/kasu/static/icons/film_link.png
similarity index 100%
rename from htdocs/icons/film_link.png
rename to kasu/static/icons/film_link.png
diff --git a/htdocs/icons/film_save.png b/kasu/static/icons/film_save.png
similarity index 100%
rename from htdocs/icons/film_save.png
rename to kasu/static/icons/film_save.png
diff --git a/htdocs/icons/find.png b/kasu/static/icons/find.png
similarity index 100%
rename from htdocs/icons/find.png
rename to kasu/static/icons/find.png
diff --git a/htdocs/icons/flag_blue.png b/kasu/static/icons/flag_blue.png
similarity index 100%
rename from htdocs/icons/flag_blue.png
rename to kasu/static/icons/flag_blue.png
diff --git a/htdocs/icons/flag_green.png b/kasu/static/icons/flag_green.png
similarity index 100%
rename from htdocs/icons/flag_green.png
rename to kasu/static/icons/flag_green.png
diff --git a/htdocs/icons/flag_orange.png b/kasu/static/icons/flag_orange.png
similarity index 100%
rename from htdocs/icons/flag_orange.png
rename to kasu/static/icons/flag_orange.png
diff --git a/htdocs/icons/flag_pink.png b/kasu/static/icons/flag_pink.png
similarity index 100%
rename from htdocs/icons/flag_pink.png
rename to kasu/static/icons/flag_pink.png
diff --git a/htdocs/icons/flag_purple.png b/kasu/static/icons/flag_purple.png
similarity index 100%
rename from htdocs/icons/flag_purple.png
rename to kasu/static/icons/flag_purple.png
diff --git a/htdocs/icons/flag_red.png b/kasu/static/icons/flag_red.png
similarity index 100%
rename from htdocs/icons/flag_red.png
rename to kasu/static/icons/flag_red.png
diff --git a/htdocs/icons/flag_yellow.png b/kasu/static/icons/flag_yellow.png
similarity index 100%
rename from htdocs/icons/flag_yellow.png
rename to kasu/static/icons/flag_yellow.png
diff --git a/htdocs/icons/folder.png b/kasu/static/icons/folder.png
similarity index 100%
rename from htdocs/icons/folder.png
rename to kasu/static/icons/folder.png
diff --git a/htdocs/icons/folder_add.png b/kasu/static/icons/folder_add.png
similarity index 100%
rename from htdocs/icons/folder_add.png
rename to kasu/static/icons/folder_add.png
diff --git a/htdocs/icons/folder_bell.png b/kasu/static/icons/folder_bell.png
similarity index 100%
rename from htdocs/icons/folder_bell.png
rename to kasu/static/icons/folder_bell.png
diff --git a/htdocs/icons/folder_brick.png b/kasu/static/icons/folder_brick.png
similarity index 100%
rename from htdocs/icons/folder_brick.png
rename to kasu/static/icons/folder_brick.png
diff --git a/htdocs/icons/folder_bug.png b/kasu/static/icons/folder_bug.png
similarity index 100%
rename from htdocs/icons/folder_bug.png
rename to kasu/static/icons/folder_bug.png
diff --git a/htdocs/icons/folder_camera.png b/kasu/static/icons/folder_camera.png
similarity index 100%
rename from htdocs/icons/folder_camera.png
rename to kasu/static/icons/folder_camera.png
diff --git a/htdocs/icons/folder_database.png b/kasu/static/icons/folder_database.png
similarity index 100%
rename from htdocs/icons/folder_database.png
rename to kasu/static/icons/folder_database.png
diff --git a/htdocs/icons/folder_delete.png b/kasu/static/icons/folder_delete.png
similarity index 100%
rename from htdocs/icons/folder_delete.png
rename to kasu/static/icons/folder_delete.png
diff --git a/htdocs/icons/folder_edit.png b/kasu/static/icons/folder_edit.png
similarity index 100%
rename from htdocs/icons/folder_edit.png
rename to kasu/static/icons/folder_edit.png
diff --git a/htdocs/icons/folder_error.png b/kasu/static/icons/folder_error.png
similarity index 100%
rename from htdocs/icons/folder_error.png
rename to kasu/static/icons/folder_error.png
diff --git a/htdocs/icons/folder_explore.png b/kasu/static/icons/folder_explore.png
similarity index 100%
rename from htdocs/icons/folder_explore.png
rename to kasu/static/icons/folder_explore.png
diff --git a/htdocs/icons/folder_feed.png b/kasu/static/icons/folder_feed.png
similarity index 100%
rename from htdocs/icons/folder_feed.png
rename to kasu/static/icons/folder_feed.png
diff --git a/htdocs/icons/folder_find.png b/kasu/static/icons/folder_find.png
similarity index 100%
rename from htdocs/icons/folder_find.png
rename to kasu/static/icons/folder_find.png
diff --git a/htdocs/icons/folder_go.png b/kasu/static/icons/folder_go.png
similarity index 100%
rename from htdocs/icons/folder_go.png
rename to kasu/static/icons/folder_go.png
diff --git a/htdocs/icons/folder_heart.png b/kasu/static/icons/folder_heart.png
similarity index 100%
rename from htdocs/icons/folder_heart.png
rename to kasu/static/icons/folder_heart.png
diff --git a/htdocs/icons/folder_image.png b/kasu/static/icons/folder_image.png
similarity index 100%
rename from htdocs/icons/folder_image.png
rename to kasu/static/icons/folder_image.png
diff --git a/htdocs/icons/folder_key.png b/kasu/static/icons/folder_key.png
similarity index 100%
rename from htdocs/icons/folder_key.png
rename to kasu/static/icons/folder_key.png
diff --git a/htdocs/icons/folder_lightbulb.png b/kasu/static/icons/folder_lightbulb.png
similarity index 100%
rename from htdocs/icons/folder_lightbulb.png
rename to kasu/static/icons/folder_lightbulb.png
diff --git a/htdocs/icons/folder_link.png b/kasu/static/icons/folder_link.png
similarity index 100%
rename from htdocs/icons/folder_link.png
rename to kasu/static/icons/folder_link.png
diff --git a/htdocs/icons/folder_magnify.png b/kasu/static/icons/folder_magnify.png
similarity index 100%
rename from htdocs/icons/folder_magnify.png
rename to kasu/static/icons/folder_magnify.png
diff --git a/htdocs/icons/folder_page.png b/kasu/static/icons/folder_page.png
similarity index 100%
rename from htdocs/icons/folder_page.png
rename to kasu/static/icons/folder_page.png
diff --git a/htdocs/icons/folder_page_white.png b/kasu/static/icons/folder_page_white.png
similarity index 100%
rename from htdocs/icons/folder_page_white.png
rename to kasu/static/icons/folder_page_white.png
diff --git a/htdocs/icons/folder_palette.png b/kasu/static/icons/folder_palette.png
similarity index 100%
rename from htdocs/icons/folder_palette.png
rename to kasu/static/icons/folder_palette.png
diff --git a/htdocs/icons/folder_picture.png b/kasu/static/icons/folder_picture.png
similarity index 100%
rename from htdocs/icons/folder_picture.png
rename to kasu/static/icons/folder_picture.png
diff --git a/htdocs/icons/folder_star.png b/kasu/static/icons/folder_star.png
similarity index 100%
rename from htdocs/icons/folder_star.png
rename to kasu/static/icons/folder_star.png
diff --git a/htdocs/icons/folder_table.png b/kasu/static/icons/folder_table.png
similarity index 100%
rename from htdocs/icons/folder_table.png
rename to kasu/static/icons/folder_table.png
diff --git a/htdocs/icons/folder_user.png b/kasu/static/icons/folder_user.png
similarity index 100%
rename from htdocs/icons/folder_user.png
rename to kasu/static/icons/folder_user.png
diff --git a/htdocs/icons/folder_wrench.png b/kasu/static/icons/folder_wrench.png
similarity index 100%
rename from htdocs/icons/folder_wrench.png
rename to kasu/static/icons/folder_wrench.png
diff --git a/htdocs/icons/font.png b/kasu/static/icons/font.png
similarity index 100%
rename from htdocs/icons/font.png
rename to kasu/static/icons/font.png
diff --git a/htdocs/icons/font_add.png b/kasu/static/icons/font_add.png
similarity index 100%
rename from htdocs/icons/font_add.png
rename to kasu/static/icons/font_add.png
diff --git a/htdocs/icons/font_delete.png b/kasu/static/icons/font_delete.png
similarity index 100%
rename from htdocs/icons/font_delete.png
rename to kasu/static/icons/font_delete.png
diff --git a/htdocs/icons/font_go.png b/kasu/static/icons/font_go.png
similarity index 100%
rename from htdocs/icons/font_go.png
rename to kasu/static/icons/font_go.png
diff --git a/htdocs/icons/group.png b/kasu/static/icons/group.png
similarity index 100%
rename from htdocs/icons/group.png
rename to kasu/static/icons/group.png
diff --git a/htdocs/icons/group_add.png b/kasu/static/icons/group_add.png
similarity index 100%
rename from htdocs/icons/group_add.png
rename to kasu/static/icons/group_add.png
diff --git a/htdocs/icons/group_delete.png b/kasu/static/icons/group_delete.png
similarity index 100%
rename from htdocs/icons/group_delete.png
rename to kasu/static/icons/group_delete.png
diff --git a/htdocs/icons/group_edit.png b/kasu/static/icons/group_edit.png
similarity index 100%
rename from htdocs/icons/group_edit.png
rename to kasu/static/icons/group_edit.png
diff --git a/htdocs/icons/group_error.png b/kasu/static/icons/group_error.png
similarity index 100%
rename from htdocs/icons/group_error.png
rename to kasu/static/icons/group_error.png
diff --git a/htdocs/icons/group_gear.png b/kasu/static/icons/group_gear.png
similarity index 100%
rename from htdocs/icons/group_gear.png
rename to kasu/static/icons/group_gear.png
diff --git a/htdocs/icons/group_go.png b/kasu/static/icons/group_go.png
similarity index 100%
rename from htdocs/icons/group_go.png
rename to kasu/static/icons/group_go.png
diff --git a/htdocs/icons/group_key.png b/kasu/static/icons/group_key.png
similarity index 100%
rename from htdocs/icons/group_key.png
rename to kasu/static/icons/group_key.png
diff --git a/htdocs/icons/group_link.png b/kasu/static/icons/group_link.png
similarity index 100%
rename from htdocs/icons/group_link.png
rename to kasu/static/icons/group_link.png
diff --git a/htdocs/icons/heart.png b/kasu/static/icons/heart.png
similarity index 100%
rename from htdocs/icons/heart.png
rename to kasu/static/icons/heart.png
diff --git a/htdocs/icons/heart_add.png b/kasu/static/icons/heart_add.png
similarity index 100%
rename from htdocs/icons/heart_add.png
rename to kasu/static/icons/heart_add.png
diff --git a/htdocs/icons/heart_delete.png b/kasu/static/icons/heart_delete.png
similarity index 100%
rename from htdocs/icons/heart_delete.png
rename to kasu/static/icons/heart_delete.png
diff --git a/htdocs/icons/help.png b/kasu/static/icons/help.png
similarity index 100%
rename from htdocs/icons/help.png
rename to kasu/static/icons/help.png
diff --git a/htdocs/icons/hourglass.png b/kasu/static/icons/hourglass.png
similarity index 100%
rename from htdocs/icons/hourglass.png
rename to kasu/static/icons/hourglass.png
diff --git a/htdocs/icons/hourglass_add.png b/kasu/static/icons/hourglass_add.png
similarity index 100%
rename from htdocs/icons/hourglass_add.png
rename to kasu/static/icons/hourglass_add.png
diff --git a/htdocs/icons/hourglass_delete.png b/kasu/static/icons/hourglass_delete.png
similarity index 100%
rename from htdocs/icons/hourglass_delete.png
rename to kasu/static/icons/hourglass_delete.png
diff --git a/htdocs/icons/hourglass_go.png b/kasu/static/icons/hourglass_go.png
similarity index 100%
rename from htdocs/icons/hourglass_go.png
rename to kasu/static/icons/hourglass_go.png
diff --git a/htdocs/icons/hourglass_link.png b/kasu/static/icons/hourglass_link.png
similarity index 100%
rename from htdocs/icons/hourglass_link.png
rename to kasu/static/icons/hourglass_link.png
diff --git a/htdocs/icons/house.png b/kasu/static/icons/house.png
similarity index 100%
rename from htdocs/icons/house.png
rename to kasu/static/icons/house.png
diff --git a/htdocs/icons/house_go.png b/kasu/static/icons/house_go.png
similarity index 100%
rename from htdocs/icons/house_go.png
rename to kasu/static/icons/house_go.png
diff --git a/htdocs/icons/house_link.png b/kasu/static/icons/house_link.png
similarity index 100%
rename from htdocs/icons/house_link.png
rename to kasu/static/icons/house_link.png
diff --git a/htdocs/icons/html.png b/kasu/static/icons/html.png
similarity index 100%
rename from htdocs/icons/html.png
rename to kasu/static/icons/html.png
diff --git a/htdocs/icons/html_add.png b/kasu/static/icons/html_add.png
similarity index 100%
rename from htdocs/icons/html_add.png
rename to kasu/static/icons/html_add.png
diff --git a/htdocs/icons/html_delete.png b/kasu/static/icons/html_delete.png
similarity index 100%
rename from htdocs/icons/html_delete.png
rename to kasu/static/icons/html_delete.png
diff --git a/htdocs/icons/html_go.png b/kasu/static/icons/html_go.png
similarity index 100%
rename from htdocs/icons/html_go.png
rename to kasu/static/icons/html_go.png
diff --git a/htdocs/icons/html_valid.png b/kasu/static/icons/html_valid.png
similarity index 100%
rename from htdocs/icons/html_valid.png
rename to kasu/static/icons/html_valid.png
diff --git a/htdocs/icons/image.png b/kasu/static/icons/image.png
similarity index 100%
rename from htdocs/icons/image.png
rename to kasu/static/icons/image.png
diff --git a/htdocs/icons/image_add.png b/kasu/static/icons/image_add.png
similarity index 100%
rename from htdocs/icons/image_add.png
rename to kasu/static/icons/image_add.png
diff --git a/htdocs/icons/image_delete.png b/kasu/static/icons/image_delete.png
similarity index 100%
rename from htdocs/icons/image_delete.png
rename to kasu/static/icons/image_delete.png
diff --git a/htdocs/icons/image_edit.png b/kasu/static/icons/image_edit.png
similarity index 100%
rename from htdocs/icons/image_edit.png
rename to kasu/static/icons/image_edit.png
diff --git a/htdocs/icons/image_link.png b/kasu/static/icons/image_link.png
similarity index 100%
rename from htdocs/icons/image_link.png
rename to kasu/static/icons/image_link.png
diff --git a/htdocs/icons/images.png b/kasu/static/icons/images.png
similarity index 100%
rename from htdocs/icons/images.png
rename to kasu/static/icons/images.png
diff --git a/htdocs/icons/information.png b/kasu/static/icons/information.png
similarity index 100%
rename from htdocs/icons/information.png
rename to kasu/static/icons/information.png
diff --git a/htdocs/icons/ipod.png b/kasu/static/icons/ipod.png
similarity index 100%
rename from htdocs/icons/ipod.png
rename to kasu/static/icons/ipod.png
diff --git a/htdocs/icons/ipod_cast.png b/kasu/static/icons/ipod_cast.png
similarity index 100%
rename from htdocs/icons/ipod_cast.png
rename to kasu/static/icons/ipod_cast.png
diff --git a/htdocs/icons/ipod_cast_add.png b/kasu/static/icons/ipod_cast_add.png
similarity index 100%
rename from htdocs/icons/ipod_cast_add.png
rename to kasu/static/icons/ipod_cast_add.png
diff --git a/htdocs/icons/ipod_cast_delete.png b/kasu/static/icons/ipod_cast_delete.png
similarity index 100%
rename from htdocs/icons/ipod_cast_delete.png
rename to kasu/static/icons/ipod_cast_delete.png
diff --git a/htdocs/icons/ipod_sound.png b/kasu/static/icons/ipod_sound.png
similarity index 100%
rename from htdocs/icons/ipod_sound.png
rename to kasu/static/icons/ipod_sound.png
diff --git a/htdocs/icons/joystick.png b/kasu/static/icons/joystick.png
similarity index 100%
rename from htdocs/icons/joystick.png
rename to kasu/static/icons/joystick.png
diff --git a/htdocs/icons/joystick_add.png b/kasu/static/icons/joystick_add.png
similarity index 100%
rename from htdocs/icons/joystick_add.png
rename to kasu/static/icons/joystick_add.png
diff --git a/htdocs/icons/joystick_delete.png b/kasu/static/icons/joystick_delete.png
similarity index 100%
rename from htdocs/icons/joystick_delete.png
rename to kasu/static/icons/joystick_delete.png
diff --git a/htdocs/icons/joystick_error.png b/kasu/static/icons/joystick_error.png
similarity index 100%
rename from htdocs/icons/joystick_error.png
rename to kasu/static/icons/joystick_error.png
diff --git a/htdocs/icons/key.png b/kasu/static/icons/key.png
similarity index 100%
rename from htdocs/icons/key.png
rename to kasu/static/icons/key.png
diff --git a/htdocs/icons/key_add.png b/kasu/static/icons/key_add.png
similarity index 100%
rename from htdocs/icons/key_add.png
rename to kasu/static/icons/key_add.png
diff --git a/htdocs/icons/key_delete.png b/kasu/static/icons/key_delete.png
similarity index 100%
rename from htdocs/icons/key_delete.png
rename to kasu/static/icons/key_delete.png
diff --git a/htdocs/icons/key_go.png b/kasu/static/icons/key_go.png
similarity index 100%
rename from htdocs/icons/key_go.png
rename to kasu/static/icons/key_go.png
diff --git a/htdocs/icons/keyboard.png b/kasu/static/icons/keyboard.png
similarity index 100%
rename from htdocs/icons/keyboard.png
rename to kasu/static/icons/keyboard.png
diff --git a/htdocs/icons/keyboard_add.png b/kasu/static/icons/keyboard_add.png
similarity index 100%
rename from htdocs/icons/keyboard_add.png
rename to kasu/static/icons/keyboard_add.png
diff --git a/htdocs/icons/keyboard_delete.png b/kasu/static/icons/keyboard_delete.png
similarity index 100%
rename from htdocs/icons/keyboard_delete.png
rename to kasu/static/icons/keyboard_delete.png
diff --git a/htdocs/icons/keyboard_magnify.png b/kasu/static/icons/keyboard_magnify.png
similarity index 100%
rename from htdocs/icons/keyboard_magnify.png
rename to kasu/static/icons/keyboard_magnify.png
diff --git a/htdocs/icons/layers.png b/kasu/static/icons/layers.png
similarity index 100%
rename from htdocs/icons/layers.png
rename to kasu/static/icons/layers.png
diff --git a/htdocs/icons/layout.png b/kasu/static/icons/layout.png
similarity index 100%
rename from htdocs/icons/layout.png
rename to kasu/static/icons/layout.png
diff --git a/htdocs/icons/layout_add.png b/kasu/static/icons/layout_add.png
similarity index 100%
rename from htdocs/icons/layout_add.png
rename to kasu/static/icons/layout_add.png
diff --git a/htdocs/icons/layout_content.png b/kasu/static/icons/layout_content.png
similarity index 100%
rename from htdocs/icons/layout_content.png
rename to kasu/static/icons/layout_content.png
diff --git a/htdocs/icons/layout_delete.png b/kasu/static/icons/layout_delete.png
similarity index 100%
rename from htdocs/icons/layout_delete.png
rename to kasu/static/icons/layout_delete.png
diff --git a/htdocs/icons/layout_edit.png b/kasu/static/icons/layout_edit.png
similarity index 100%
rename from htdocs/icons/layout_edit.png
rename to kasu/static/icons/layout_edit.png
diff --git a/htdocs/icons/layout_error.png b/kasu/static/icons/layout_error.png
similarity index 100%
rename from htdocs/icons/layout_error.png
rename to kasu/static/icons/layout_error.png
diff --git a/htdocs/icons/layout_header.png b/kasu/static/icons/layout_header.png
similarity index 100%
rename from htdocs/icons/layout_header.png
rename to kasu/static/icons/layout_header.png
diff --git a/htdocs/icons/layout_link.png b/kasu/static/icons/layout_link.png
similarity index 100%
rename from htdocs/icons/layout_link.png
rename to kasu/static/icons/layout_link.png
diff --git a/htdocs/icons/layout_sidebar.png b/kasu/static/icons/layout_sidebar.png
similarity index 100%
rename from htdocs/icons/layout_sidebar.png
rename to kasu/static/icons/layout_sidebar.png
diff --git a/htdocs/icons/lightbulb.png b/kasu/static/icons/lightbulb.png
similarity index 100%
rename from htdocs/icons/lightbulb.png
rename to kasu/static/icons/lightbulb.png
diff --git a/htdocs/icons/lightbulb_add.png b/kasu/static/icons/lightbulb_add.png
similarity index 100%
rename from htdocs/icons/lightbulb_add.png
rename to kasu/static/icons/lightbulb_add.png
diff --git a/htdocs/icons/lightbulb_delete.png b/kasu/static/icons/lightbulb_delete.png
similarity index 100%
rename from htdocs/icons/lightbulb_delete.png
rename to kasu/static/icons/lightbulb_delete.png
diff --git a/htdocs/icons/lightbulb_off.png b/kasu/static/icons/lightbulb_off.png
similarity index 100%
rename from htdocs/icons/lightbulb_off.png
rename to kasu/static/icons/lightbulb_off.png
diff --git a/htdocs/icons/lightning.png b/kasu/static/icons/lightning.png
similarity index 100%
rename from htdocs/icons/lightning.png
rename to kasu/static/icons/lightning.png
diff --git a/htdocs/icons/lightning_add.png b/kasu/static/icons/lightning_add.png
similarity index 100%
rename from htdocs/icons/lightning_add.png
rename to kasu/static/icons/lightning_add.png
diff --git a/htdocs/icons/lightning_delete.png b/kasu/static/icons/lightning_delete.png
similarity index 100%
rename from htdocs/icons/lightning_delete.png
rename to kasu/static/icons/lightning_delete.png
diff --git a/htdocs/icons/lightning_go.png b/kasu/static/icons/lightning_go.png
similarity index 100%
rename from htdocs/icons/lightning_go.png
rename to kasu/static/icons/lightning_go.png
diff --git a/htdocs/icons/link.png b/kasu/static/icons/link.png
similarity index 100%
rename from htdocs/icons/link.png
rename to kasu/static/icons/link.png
diff --git a/htdocs/icons/link_add.png b/kasu/static/icons/link_add.png
similarity index 100%
rename from htdocs/icons/link_add.png
rename to kasu/static/icons/link_add.png
diff --git a/htdocs/icons/link_break.png b/kasu/static/icons/link_break.png
similarity index 100%
rename from htdocs/icons/link_break.png
rename to kasu/static/icons/link_break.png
diff --git a/htdocs/icons/link_delete.png b/kasu/static/icons/link_delete.png
similarity index 100%
rename from htdocs/icons/link_delete.png
rename to kasu/static/icons/link_delete.png
diff --git a/htdocs/icons/link_edit.png b/kasu/static/icons/link_edit.png
similarity index 100%
rename from htdocs/icons/link_edit.png
rename to kasu/static/icons/link_edit.png
diff --git a/htdocs/icons/link_error.png b/kasu/static/icons/link_error.png
similarity index 100%
rename from htdocs/icons/link_error.png
rename to kasu/static/icons/link_error.png
diff --git a/htdocs/icons/link_go.png b/kasu/static/icons/link_go.png
similarity index 100%
rename from htdocs/icons/link_go.png
rename to kasu/static/icons/link_go.png
diff --git a/htdocs/icons/lock.png b/kasu/static/icons/lock.png
similarity index 100%
rename from htdocs/icons/lock.png
rename to kasu/static/icons/lock.png
diff --git a/htdocs/icons/lock_add.png b/kasu/static/icons/lock_add.png
similarity index 100%
rename from htdocs/icons/lock_add.png
rename to kasu/static/icons/lock_add.png
diff --git a/htdocs/icons/lock_break.png b/kasu/static/icons/lock_break.png
similarity index 100%
rename from htdocs/icons/lock_break.png
rename to kasu/static/icons/lock_break.png
diff --git a/htdocs/icons/lock_delete.png b/kasu/static/icons/lock_delete.png
similarity index 100%
rename from htdocs/icons/lock_delete.png
rename to kasu/static/icons/lock_delete.png
diff --git a/htdocs/icons/lock_edit.png b/kasu/static/icons/lock_edit.png
similarity index 100%
rename from htdocs/icons/lock_edit.png
rename to kasu/static/icons/lock_edit.png
diff --git a/htdocs/icons/lock_go.png b/kasu/static/icons/lock_go.png
similarity index 100%
rename from htdocs/icons/lock_go.png
rename to kasu/static/icons/lock_go.png
diff --git a/htdocs/icons/lock_open.png b/kasu/static/icons/lock_open.png
similarity index 100%
rename from htdocs/icons/lock_open.png
rename to kasu/static/icons/lock_open.png
diff --git a/htdocs/icons/lorry.png b/kasu/static/icons/lorry.png
similarity index 100%
rename from htdocs/icons/lorry.png
rename to kasu/static/icons/lorry.png
diff --git a/htdocs/icons/lorry_add.png b/kasu/static/icons/lorry_add.png
similarity index 100%
rename from htdocs/icons/lorry_add.png
rename to kasu/static/icons/lorry_add.png
diff --git a/htdocs/icons/lorry_delete.png b/kasu/static/icons/lorry_delete.png
similarity index 100%
rename from htdocs/icons/lorry_delete.png
rename to kasu/static/icons/lorry_delete.png
diff --git a/htdocs/icons/lorry_error.png b/kasu/static/icons/lorry_error.png
similarity index 100%
rename from htdocs/icons/lorry_error.png
rename to kasu/static/icons/lorry_error.png
diff --git a/htdocs/icons/lorry_flatbed.png b/kasu/static/icons/lorry_flatbed.png
similarity index 100%
rename from htdocs/icons/lorry_flatbed.png
rename to kasu/static/icons/lorry_flatbed.png
diff --git a/htdocs/icons/lorry_go.png b/kasu/static/icons/lorry_go.png
similarity index 100%
rename from htdocs/icons/lorry_go.png
rename to kasu/static/icons/lorry_go.png
diff --git a/htdocs/icons/lorry_link.png b/kasu/static/icons/lorry_link.png
similarity index 100%
rename from htdocs/icons/lorry_link.png
rename to kasu/static/icons/lorry_link.png
diff --git a/htdocs/icons/magifier_zoom_out.png b/kasu/static/icons/magifier_zoom_out.png
similarity index 100%
rename from htdocs/icons/magifier_zoom_out.png
rename to kasu/static/icons/magifier_zoom_out.png
diff --git a/htdocs/icons/magnifier.png b/kasu/static/icons/magnifier.png
similarity index 100%
rename from htdocs/icons/magnifier.png
rename to kasu/static/icons/magnifier.png
diff --git a/htdocs/icons/magnifier_zoom_in.png b/kasu/static/icons/magnifier_zoom_in.png
similarity index 100%
rename from htdocs/icons/magnifier_zoom_in.png
rename to kasu/static/icons/magnifier_zoom_in.png
diff --git a/htdocs/icons/male.png b/kasu/static/icons/male.png
similarity index 100%
rename from htdocs/icons/male.png
rename to kasu/static/icons/male.png
diff --git a/htdocs/icons/map.png b/kasu/static/icons/map.png
similarity index 100%
rename from htdocs/icons/map.png
rename to kasu/static/icons/map.png
diff --git a/htdocs/icons/map_add.png b/kasu/static/icons/map_add.png
similarity index 100%
rename from htdocs/icons/map_add.png
rename to kasu/static/icons/map_add.png
diff --git a/htdocs/icons/map_delete.png b/kasu/static/icons/map_delete.png
similarity index 100%
rename from htdocs/icons/map_delete.png
rename to kasu/static/icons/map_delete.png
diff --git a/htdocs/icons/map_edit.png b/kasu/static/icons/map_edit.png
similarity index 100%
rename from htdocs/icons/map_edit.png
rename to kasu/static/icons/map_edit.png
diff --git a/htdocs/icons/map_go.png b/kasu/static/icons/map_go.png
similarity index 100%
rename from htdocs/icons/map_go.png
rename to kasu/static/icons/map_go.png
diff --git a/htdocs/icons/map_magnify.png b/kasu/static/icons/map_magnify.png
similarity index 100%
rename from htdocs/icons/map_magnify.png
rename to kasu/static/icons/map_magnify.png
diff --git a/htdocs/icons/medal_bronze_1.png b/kasu/static/icons/medal_bronze_1.png
similarity index 100%
rename from htdocs/icons/medal_bronze_1.png
rename to kasu/static/icons/medal_bronze_1.png
diff --git a/htdocs/icons/medal_bronze_2.png b/kasu/static/icons/medal_bronze_2.png
similarity index 100%
rename from htdocs/icons/medal_bronze_2.png
rename to kasu/static/icons/medal_bronze_2.png
diff --git a/htdocs/icons/medal_bronze_3.png b/kasu/static/icons/medal_bronze_3.png
similarity index 100%
rename from htdocs/icons/medal_bronze_3.png
rename to kasu/static/icons/medal_bronze_3.png
diff --git a/htdocs/icons/medal_bronze_add.png b/kasu/static/icons/medal_bronze_add.png
similarity index 100%
rename from htdocs/icons/medal_bronze_add.png
rename to kasu/static/icons/medal_bronze_add.png
diff --git a/htdocs/icons/medal_bronze_delete.png b/kasu/static/icons/medal_bronze_delete.png
similarity index 100%
rename from htdocs/icons/medal_bronze_delete.png
rename to kasu/static/icons/medal_bronze_delete.png
diff --git a/htdocs/icons/medal_gold_1.png b/kasu/static/icons/medal_gold_1.png
similarity index 100%
rename from htdocs/icons/medal_gold_1.png
rename to kasu/static/icons/medal_gold_1.png
diff --git a/htdocs/icons/medal_gold_2.png b/kasu/static/icons/medal_gold_2.png
similarity index 100%
rename from htdocs/icons/medal_gold_2.png
rename to kasu/static/icons/medal_gold_2.png
diff --git a/htdocs/icons/medal_gold_3.png b/kasu/static/icons/medal_gold_3.png
similarity index 100%
rename from htdocs/icons/medal_gold_3.png
rename to kasu/static/icons/medal_gold_3.png
diff --git a/htdocs/icons/medal_gold_add.png b/kasu/static/icons/medal_gold_add.png
similarity index 100%
rename from htdocs/icons/medal_gold_add.png
rename to kasu/static/icons/medal_gold_add.png
diff --git a/htdocs/icons/medal_gold_delete.png b/kasu/static/icons/medal_gold_delete.png
similarity index 100%
rename from htdocs/icons/medal_gold_delete.png
rename to kasu/static/icons/medal_gold_delete.png
diff --git a/htdocs/icons/medal_silver_1.png b/kasu/static/icons/medal_silver_1.png
similarity index 100%
rename from htdocs/icons/medal_silver_1.png
rename to kasu/static/icons/medal_silver_1.png
diff --git a/htdocs/icons/medal_silver_2.png b/kasu/static/icons/medal_silver_2.png
similarity index 100%
rename from htdocs/icons/medal_silver_2.png
rename to kasu/static/icons/medal_silver_2.png
diff --git a/htdocs/icons/medal_silver_3.png b/kasu/static/icons/medal_silver_3.png
similarity index 100%
rename from htdocs/icons/medal_silver_3.png
rename to kasu/static/icons/medal_silver_3.png
diff --git a/htdocs/icons/medal_silver_add.png b/kasu/static/icons/medal_silver_add.png
similarity index 100%
rename from htdocs/icons/medal_silver_add.png
rename to kasu/static/icons/medal_silver_add.png
diff --git a/htdocs/icons/medal_silver_delete.png b/kasu/static/icons/medal_silver_delete.png
similarity index 100%
rename from htdocs/icons/medal_silver_delete.png
rename to kasu/static/icons/medal_silver_delete.png
diff --git a/htdocs/icons/money.png b/kasu/static/icons/money.png
similarity index 100%
rename from htdocs/icons/money.png
rename to kasu/static/icons/money.png
diff --git a/htdocs/icons/money_add.png b/kasu/static/icons/money_add.png
similarity index 100%
rename from htdocs/icons/money_add.png
rename to kasu/static/icons/money_add.png
diff --git a/htdocs/icons/money_delete.png b/kasu/static/icons/money_delete.png
similarity index 100%
rename from htdocs/icons/money_delete.png
rename to kasu/static/icons/money_delete.png
diff --git a/htdocs/icons/money_dollar.png b/kasu/static/icons/money_dollar.png
similarity index 100%
rename from htdocs/icons/money_dollar.png
rename to kasu/static/icons/money_dollar.png
diff --git a/htdocs/icons/money_euro.png b/kasu/static/icons/money_euro.png
similarity index 100%
rename from htdocs/icons/money_euro.png
rename to kasu/static/icons/money_euro.png
diff --git a/htdocs/icons/money_pound.png b/kasu/static/icons/money_pound.png
similarity index 100%
rename from htdocs/icons/money_pound.png
rename to kasu/static/icons/money_pound.png
diff --git a/htdocs/icons/money_yen.png b/kasu/static/icons/money_yen.png
similarity index 100%
rename from htdocs/icons/money_yen.png
rename to kasu/static/icons/money_yen.png
diff --git a/htdocs/icons/monitor.png b/kasu/static/icons/monitor.png
similarity index 100%
rename from htdocs/icons/monitor.png
rename to kasu/static/icons/monitor.png
diff --git a/htdocs/icons/monitor_add.png b/kasu/static/icons/monitor_add.png
similarity index 100%
rename from htdocs/icons/monitor_add.png
rename to kasu/static/icons/monitor_add.png
diff --git a/htdocs/icons/monitor_delete.png b/kasu/static/icons/monitor_delete.png
similarity index 100%
rename from htdocs/icons/monitor_delete.png
rename to kasu/static/icons/monitor_delete.png
diff --git a/htdocs/icons/monitor_edit.png b/kasu/static/icons/monitor_edit.png
similarity index 100%
rename from htdocs/icons/monitor_edit.png
rename to kasu/static/icons/monitor_edit.png
diff --git a/htdocs/icons/monitor_error.png b/kasu/static/icons/monitor_error.png
similarity index 100%
rename from htdocs/icons/monitor_error.png
rename to kasu/static/icons/monitor_error.png
diff --git a/htdocs/icons/monitor_go.png b/kasu/static/icons/monitor_go.png
similarity index 100%
rename from htdocs/icons/monitor_go.png
rename to kasu/static/icons/monitor_go.png
diff --git a/htdocs/icons/monitor_lightning.png b/kasu/static/icons/monitor_lightning.png
similarity index 100%
rename from htdocs/icons/monitor_lightning.png
rename to kasu/static/icons/monitor_lightning.png
diff --git a/htdocs/icons/monitor_link.png b/kasu/static/icons/monitor_link.png
similarity index 100%
rename from htdocs/icons/monitor_link.png
rename to kasu/static/icons/monitor_link.png
diff --git a/htdocs/icons/mouse.png b/kasu/static/icons/mouse.png
similarity index 100%
rename from htdocs/icons/mouse.png
rename to kasu/static/icons/mouse.png
diff --git a/htdocs/icons/mouse_add.png b/kasu/static/icons/mouse_add.png
similarity index 100%
rename from htdocs/icons/mouse_add.png
rename to kasu/static/icons/mouse_add.png
diff --git a/htdocs/icons/mouse_delete.png b/kasu/static/icons/mouse_delete.png
similarity index 100%
rename from htdocs/icons/mouse_delete.png
rename to kasu/static/icons/mouse_delete.png
diff --git a/htdocs/icons/mouse_error.png b/kasu/static/icons/mouse_error.png
similarity index 100%
rename from htdocs/icons/mouse_error.png
rename to kasu/static/icons/mouse_error.png
diff --git a/htdocs/icons/music.png b/kasu/static/icons/music.png
similarity index 100%
rename from htdocs/icons/music.png
rename to kasu/static/icons/music.png
diff --git a/htdocs/icons/new.png b/kasu/static/icons/new.png
similarity index 100%
rename from htdocs/icons/new.png
rename to kasu/static/icons/new.png
diff --git a/htdocs/icons/newspaper.png b/kasu/static/icons/newspaper.png
similarity index 100%
rename from htdocs/icons/newspaper.png
rename to kasu/static/icons/newspaper.png
diff --git a/htdocs/icons/newspaper_add.png b/kasu/static/icons/newspaper_add.png
similarity index 100%
rename from htdocs/icons/newspaper_add.png
rename to kasu/static/icons/newspaper_add.png
diff --git a/htdocs/icons/newspaper_delete.png b/kasu/static/icons/newspaper_delete.png
similarity index 100%
rename from htdocs/icons/newspaper_delete.png
rename to kasu/static/icons/newspaper_delete.png
diff --git a/htdocs/icons/newspaper_go.png b/kasu/static/icons/newspaper_go.png
similarity index 100%
rename from htdocs/icons/newspaper_go.png
rename to kasu/static/icons/newspaper_go.png
diff --git a/htdocs/icons/newspaper_link.png b/kasu/static/icons/newspaper_link.png
similarity index 100%
rename from htdocs/icons/newspaper_link.png
rename to kasu/static/icons/newspaper_link.png
diff --git a/htdocs/icons/note.png b/kasu/static/icons/note.png
similarity index 100%
rename from htdocs/icons/note.png
rename to kasu/static/icons/note.png
diff --git a/htdocs/icons/note_add.png b/kasu/static/icons/note_add.png
similarity index 100%
rename from htdocs/icons/note_add.png
rename to kasu/static/icons/note_add.png
diff --git a/htdocs/icons/note_delete.png b/kasu/static/icons/note_delete.png
similarity index 100%
rename from htdocs/icons/note_delete.png
rename to kasu/static/icons/note_delete.png
diff --git a/htdocs/icons/note_edit.png b/kasu/static/icons/note_edit.png
similarity index 100%
rename from htdocs/icons/note_edit.png
rename to kasu/static/icons/note_edit.png
diff --git a/htdocs/icons/note_error.png b/kasu/static/icons/note_error.png
similarity index 100%
rename from htdocs/icons/note_error.png
rename to kasu/static/icons/note_error.png
diff --git a/htdocs/icons/note_go.png b/kasu/static/icons/note_go.png
similarity index 100%
rename from htdocs/icons/note_go.png
rename to kasu/static/icons/note_go.png
diff --git a/htdocs/icons/overlays.png b/kasu/static/icons/overlays.png
similarity index 100%
rename from htdocs/icons/overlays.png
rename to kasu/static/icons/overlays.png
diff --git a/htdocs/icons/package.png b/kasu/static/icons/package.png
similarity index 100%
rename from htdocs/icons/package.png
rename to kasu/static/icons/package.png
diff --git a/htdocs/icons/package_add.png b/kasu/static/icons/package_add.png
similarity index 100%
rename from htdocs/icons/package_add.png
rename to kasu/static/icons/package_add.png
diff --git a/htdocs/icons/package_delete.png b/kasu/static/icons/package_delete.png
similarity index 100%
rename from htdocs/icons/package_delete.png
rename to kasu/static/icons/package_delete.png
diff --git a/htdocs/icons/package_go.png b/kasu/static/icons/package_go.png
similarity index 100%
rename from htdocs/icons/package_go.png
rename to kasu/static/icons/package_go.png
diff --git a/htdocs/icons/package_green.png b/kasu/static/icons/package_green.png
similarity index 100%
rename from htdocs/icons/package_green.png
rename to kasu/static/icons/package_green.png
diff --git a/htdocs/icons/package_link.png b/kasu/static/icons/package_link.png
similarity index 100%
rename from htdocs/icons/package_link.png
rename to kasu/static/icons/package_link.png
diff --git a/htdocs/icons/page.png b/kasu/static/icons/page.png
similarity index 100%
rename from htdocs/icons/page.png
rename to kasu/static/icons/page.png
diff --git a/htdocs/icons/page_add.png b/kasu/static/icons/page_add.png
similarity index 100%
rename from htdocs/icons/page_add.png
rename to kasu/static/icons/page_add.png
diff --git a/htdocs/icons/page_attach.png b/kasu/static/icons/page_attach.png
similarity index 100%
rename from htdocs/icons/page_attach.png
rename to kasu/static/icons/page_attach.png
diff --git a/htdocs/icons/page_code.png b/kasu/static/icons/page_code.png
similarity index 100%
rename from htdocs/icons/page_code.png
rename to kasu/static/icons/page_code.png
diff --git a/htdocs/icons/page_copy.png b/kasu/static/icons/page_copy.png
similarity index 100%
rename from htdocs/icons/page_copy.png
rename to kasu/static/icons/page_copy.png
diff --git a/htdocs/icons/page_delete.png b/kasu/static/icons/page_delete.png
similarity index 100%
rename from htdocs/icons/page_delete.png
rename to kasu/static/icons/page_delete.png
diff --git a/htdocs/icons/page_edit.png b/kasu/static/icons/page_edit.png
similarity index 100%
rename from htdocs/icons/page_edit.png
rename to kasu/static/icons/page_edit.png
diff --git a/htdocs/icons/page_error.png b/kasu/static/icons/page_error.png
similarity index 100%
rename from htdocs/icons/page_error.png
rename to kasu/static/icons/page_error.png
diff --git a/htdocs/icons/page_excel.png b/kasu/static/icons/page_excel.png
similarity index 100%
rename from htdocs/icons/page_excel.png
rename to kasu/static/icons/page_excel.png
diff --git a/htdocs/icons/page_find.png b/kasu/static/icons/page_find.png
similarity index 100%
rename from htdocs/icons/page_find.png
rename to kasu/static/icons/page_find.png
diff --git a/htdocs/icons/page_gear.png b/kasu/static/icons/page_gear.png
similarity index 100%
rename from htdocs/icons/page_gear.png
rename to kasu/static/icons/page_gear.png
diff --git a/htdocs/icons/page_go.png b/kasu/static/icons/page_go.png
similarity index 100%
rename from htdocs/icons/page_go.png
rename to kasu/static/icons/page_go.png
diff --git a/htdocs/icons/page_green.png b/kasu/static/icons/page_green.png
similarity index 100%
rename from htdocs/icons/page_green.png
rename to kasu/static/icons/page_green.png
diff --git a/htdocs/icons/page_key.png b/kasu/static/icons/page_key.png
similarity index 100%
rename from htdocs/icons/page_key.png
rename to kasu/static/icons/page_key.png
diff --git a/htdocs/icons/page_lightning.png b/kasu/static/icons/page_lightning.png
similarity index 100%
rename from htdocs/icons/page_lightning.png
rename to kasu/static/icons/page_lightning.png
diff --git a/htdocs/icons/page_link.png b/kasu/static/icons/page_link.png
similarity index 100%
rename from htdocs/icons/page_link.png
rename to kasu/static/icons/page_link.png
diff --git a/htdocs/icons/page_paintbrush.png b/kasu/static/icons/page_paintbrush.png
similarity index 100%
rename from htdocs/icons/page_paintbrush.png
rename to kasu/static/icons/page_paintbrush.png
diff --git a/htdocs/icons/page_paste.png b/kasu/static/icons/page_paste.png
similarity index 100%
rename from htdocs/icons/page_paste.png
rename to kasu/static/icons/page_paste.png
diff --git a/htdocs/icons/page_red.png b/kasu/static/icons/page_red.png
similarity index 100%
rename from htdocs/icons/page_red.png
rename to kasu/static/icons/page_red.png
diff --git a/htdocs/icons/page_refresh.png b/kasu/static/icons/page_refresh.png
similarity index 100%
rename from htdocs/icons/page_refresh.png
rename to kasu/static/icons/page_refresh.png
diff --git a/htdocs/icons/page_save.png b/kasu/static/icons/page_save.png
similarity index 100%
rename from htdocs/icons/page_save.png
rename to kasu/static/icons/page_save.png
diff --git a/htdocs/icons/page_white.png b/kasu/static/icons/page_white.png
similarity index 100%
rename from htdocs/icons/page_white.png
rename to kasu/static/icons/page_white.png
diff --git a/htdocs/icons/page_white_acrobat.png b/kasu/static/icons/page_white_acrobat.png
similarity index 100%
rename from htdocs/icons/page_white_acrobat.png
rename to kasu/static/icons/page_white_acrobat.png
diff --git a/htdocs/icons/page_white_actionscript.png b/kasu/static/icons/page_white_actionscript.png
similarity index 100%
rename from htdocs/icons/page_white_actionscript.png
rename to kasu/static/icons/page_white_actionscript.png
diff --git a/htdocs/icons/page_white_add.png b/kasu/static/icons/page_white_add.png
similarity index 100%
rename from htdocs/icons/page_white_add.png
rename to kasu/static/icons/page_white_add.png
diff --git a/htdocs/icons/page_white_c.png b/kasu/static/icons/page_white_c.png
similarity index 100%
rename from htdocs/icons/page_white_c.png
rename to kasu/static/icons/page_white_c.png
diff --git a/htdocs/icons/page_white_camera.png b/kasu/static/icons/page_white_camera.png
similarity index 100%
rename from htdocs/icons/page_white_camera.png
rename to kasu/static/icons/page_white_camera.png
diff --git a/htdocs/icons/page_white_cd.png b/kasu/static/icons/page_white_cd.png
similarity index 100%
rename from htdocs/icons/page_white_cd.png
rename to kasu/static/icons/page_white_cd.png
diff --git a/htdocs/icons/page_white_code.png b/kasu/static/icons/page_white_code.png
similarity index 100%
rename from htdocs/icons/page_white_code.png
rename to kasu/static/icons/page_white_code.png
diff --git a/htdocs/icons/page_white_code_red.png b/kasu/static/icons/page_white_code_red.png
similarity index 100%
rename from htdocs/icons/page_white_code_red.png
rename to kasu/static/icons/page_white_code_red.png
diff --git a/htdocs/icons/page_white_coldfusion.png b/kasu/static/icons/page_white_coldfusion.png
similarity index 100%
rename from htdocs/icons/page_white_coldfusion.png
rename to kasu/static/icons/page_white_coldfusion.png
diff --git a/htdocs/icons/page_white_compressed.png b/kasu/static/icons/page_white_compressed.png
similarity index 100%
rename from htdocs/icons/page_white_compressed.png
rename to kasu/static/icons/page_white_compressed.png
diff --git a/htdocs/icons/page_white_copy.png b/kasu/static/icons/page_white_copy.png
similarity index 100%
rename from htdocs/icons/page_white_copy.png
rename to kasu/static/icons/page_white_copy.png
diff --git a/htdocs/icons/page_white_cplusplus.png b/kasu/static/icons/page_white_cplusplus.png
similarity index 100%
rename from htdocs/icons/page_white_cplusplus.png
rename to kasu/static/icons/page_white_cplusplus.png
diff --git a/htdocs/icons/page_white_csharp.png b/kasu/static/icons/page_white_csharp.png
similarity index 100%
rename from htdocs/icons/page_white_csharp.png
rename to kasu/static/icons/page_white_csharp.png
diff --git a/htdocs/icons/page_white_cup.png b/kasu/static/icons/page_white_cup.png
similarity index 100%
rename from htdocs/icons/page_white_cup.png
rename to kasu/static/icons/page_white_cup.png
diff --git a/htdocs/icons/page_white_database.png b/kasu/static/icons/page_white_database.png
similarity index 100%
rename from htdocs/icons/page_white_database.png
rename to kasu/static/icons/page_white_database.png
diff --git a/htdocs/icons/page_white_delete.png b/kasu/static/icons/page_white_delete.png
similarity index 100%
rename from htdocs/icons/page_white_delete.png
rename to kasu/static/icons/page_white_delete.png
diff --git a/htdocs/icons/page_white_dvd.png b/kasu/static/icons/page_white_dvd.png
similarity index 100%
rename from htdocs/icons/page_white_dvd.png
rename to kasu/static/icons/page_white_dvd.png
diff --git a/htdocs/icons/page_white_edit.png b/kasu/static/icons/page_white_edit.png
similarity index 100%
rename from htdocs/icons/page_white_edit.png
rename to kasu/static/icons/page_white_edit.png
diff --git a/htdocs/icons/page_white_error.png b/kasu/static/icons/page_white_error.png
similarity index 100%
rename from htdocs/icons/page_white_error.png
rename to kasu/static/icons/page_white_error.png
diff --git a/htdocs/icons/page_white_excel.png b/kasu/static/icons/page_white_excel.png
similarity index 100%
rename from htdocs/icons/page_white_excel.png
rename to kasu/static/icons/page_white_excel.png
diff --git a/htdocs/icons/page_white_find.png b/kasu/static/icons/page_white_find.png
similarity index 100%
rename from htdocs/icons/page_white_find.png
rename to kasu/static/icons/page_white_find.png
diff --git a/htdocs/icons/page_white_flash.png b/kasu/static/icons/page_white_flash.png
similarity index 100%
rename from htdocs/icons/page_white_flash.png
rename to kasu/static/icons/page_white_flash.png
diff --git a/htdocs/icons/page_white_freehand.png b/kasu/static/icons/page_white_freehand.png
similarity index 100%
rename from htdocs/icons/page_white_freehand.png
rename to kasu/static/icons/page_white_freehand.png
diff --git a/htdocs/icons/page_white_gear.png b/kasu/static/icons/page_white_gear.png
similarity index 100%
rename from htdocs/icons/page_white_gear.png
rename to kasu/static/icons/page_white_gear.png
diff --git a/htdocs/icons/page_white_get.png b/kasu/static/icons/page_white_get.png
similarity index 100%
rename from htdocs/icons/page_white_get.png
rename to kasu/static/icons/page_white_get.png
diff --git a/htdocs/icons/page_white_go.png b/kasu/static/icons/page_white_go.png
similarity index 100%
rename from htdocs/icons/page_white_go.png
rename to kasu/static/icons/page_white_go.png
diff --git a/htdocs/icons/page_white_h.png b/kasu/static/icons/page_white_h.png
similarity index 100%
rename from htdocs/icons/page_white_h.png
rename to kasu/static/icons/page_white_h.png
diff --git a/htdocs/icons/page_white_horizontal.png b/kasu/static/icons/page_white_horizontal.png
similarity index 100%
rename from htdocs/icons/page_white_horizontal.png
rename to kasu/static/icons/page_white_horizontal.png
diff --git a/htdocs/icons/page_white_key.png b/kasu/static/icons/page_white_key.png
similarity index 100%
rename from htdocs/icons/page_white_key.png
rename to kasu/static/icons/page_white_key.png
diff --git a/htdocs/icons/page_white_lightning.png b/kasu/static/icons/page_white_lightning.png
similarity index 100%
rename from htdocs/icons/page_white_lightning.png
rename to kasu/static/icons/page_white_lightning.png
diff --git a/htdocs/icons/page_white_link.png b/kasu/static/icons/page_white_link.png
similarity index 100%
rename from htdocs/icons/page_white_link.png
rename to kasu/static/icons/page_white_link.png
diff --git a/htdocs/icons/page_white_magnify.png b/kasu/static/icons/page_white_magnify.png
similarity index 100%
rename from htdocs/icons/page_white_magnify.png
rename to kasu/static/icons/page_white_magnify.png
diff --git a/htdocs/icons/page_white_medal.png b/kasu/static/icons/page_white_medal.png
similarity index 100%
rename from htdocs/icons/page_white_medal.png
rename to kasu/static/icons/page_white_medal.png
diff --git a/htdocs/icons/page_white_office.png b/kasu/static/icons/page_white_office.png
similarity index 100%
rename from htdocs/icons/page_white_office.png
rename to kasu/static/icons/page_white_office.png
diff --git a/htdocs/icons/page_white_paint.png b/kasu/static/icons/page_white_paint.png
similarity index 100%
rename from htdocs/icons/page_white_paint.png
rename to kasu/static/icons/page_white_paint.png
diff --git a/htdocs/icons/page_white_paintbrush.png b/kasu/static/icons/page_white_paintbrush.png
similarity index 100%
rename from htdocs/icons/page_white_paintbrush.png
rename to kasu/static/icons/page_white_paintbrush.png
diff --git a/htdocs/icons/page_white_paste.png b/kasu/static/icons/page_white_paste.png
similarity index 100%
rename from htdocs/icons/page_white_paste.png
rename to kasu/static/icons/page_white_paste.png
diff --git a/htdocs/icons/page_white_php.png b/kasu/static/icons/page_white_php.png
similarity index 100%
rename from htdocs/icons/page_white_php.png
rename to kasu/static/icons/page_white_php.png
diff --git a/htdocs/icons/page_white_picture.png b/kasu/static/icons/page_white_picture.png
similarity index 100%
rename from htdocs/icons/page_white_picture.png
rename to kasu/static/icons/page_white_picture.png
diff --git a/htdocs/icons/page_white_powerpoint.png b/kasu/static/icons/page_white_powerpoint.png
similarity index 100%
rename from htdocs/icons/page_white_powerpoint.png
rename to kasu/static/icons/page_white_powerpoint.png
diff --git a/htdocs/icons/page_white_put.png b/kasu/static/icons/page_white_put.png
similarity index 100%
rename from htdocs/icons/page_white_put.png
rename to kasu/static/icons/page_white_put.png
diff --git a/htdocs/icons/page_white_ruby.png b/kasu/static/icons/page_white_ruby.png
similarity index 100%
rename from htdocs/icons/page_white_ruby.png
rename to kasu/static/icons/page_white_ruby.png
diff --git a/htdocs/icons/page_white_stack.png b/kasu/static/icons/page_white_stack.png
similarity index 100%
rename from htdocs/icons/page_white_stack.png
rename to kasu/static/icons/page_white_stack.png
diff --git a/htdocs/icons/page_white_star.png b/kasu/static/icons/page_white_star.png
similarity index 100%
rename from htdocs/icons/page_white_star.png
rename to kasu/static/icons/page_white_star.png
diff --git a/htdocs/icons/page_white_swoosh.png b/kasu/static/icons/page_white_swoosh.png
similarity index 100%
rename from htdocs/icons/page_white_swoosh.png
rename to kasu/static/icons/page_white_swoosh.png
diff --git a/htdocs/icons/page_white_text.png b/kasu/static/icons/page_white_text.png
similarity index 100%
rename from htdocs/icons/page_white_text.png
rename to kasu/static/icons/page_white_text.png
diff --git a/htdocs/icons/page_white_text_width.png b/kasu/static/icons/page_white_text_width.png
similarity index 100%
rename from htdocs/icons/page_white_text_width.png
rename to kasu/static/icons/page_white_text_width.png
diff --git a/htdocs/icons/page_white_tux.png b/kasu/static/icons/page_white_tux.png
similarity index 100%
rename from htdocs/icons/page_white_tux.png
rename to kasu/static/icons/page_white_tux.png
diff --git a/htdocs/icons/page_white_vector.png b/kasu/static/icons/page_white_vector.png
similarity index 100%
rename from htdocs/icons/page_white_vector.png
rename to kasu/static/icons/page_white_vector.png
diff --git a/htdocs/icons/page_white_visualstudio.png b/kasu/static/icons/page_white_visualstudio.png
similarity index 100%
rename from htdocs/icons/page_white_visualstudio.png
rename to kasu/static/icons/page_white_visualstudio.png
diff --git a/htdocs/icons/page_white_width.png b/kasu/static/icons/page_white_width.png
similarity index 100%
rename from htdocs/icons/page_white_width.png
rename to kasu/static/icons/page_white_width.png
diff --git a/htdocs/icons/page_white_word.png b/kasu/static/icons/page_white_word.png
similarity index 100%
rename from htdocs/icons/page_white_word.png
rename to kasu/static/icons/page_white_word.png
diff --git a/htdocs/icons/page_white_world.png b/kasu/static/icons/page_white_world.png
similarity index 100%
rename from htdocs/icons/page_white_world.png
rename to kasu/static/icons/page_white_world.png
diff --git a/htdocs/icons/page_white_wrench.png b/kasu/static/icons/page_white_wrench.png
similarity index 100%
rename from htdocs/icons/page_white_wrench.png
rename to kasu/static/icons/page_white_wrench.png
diff --git a/htdocs/icons/page_white_zip.png b/kasu/static/icons/page_white_zip.png
similarity index 100%
rename from htdocs/icons/page_white_zip.png
rename to kasu/static/icons/page_white_zip.png
diff --git a/htdocs/icons/page_word.png b/kasu/static/icons/page_word.png
similarity index 100%
rename from htdocs/icons/page_word.png
rename to kasu/static/icons/page_word.png
diff --git a/htdocs/icons/page_world.png b/kasu/static/icons/page_world.png
similarity index 100%
rename from htdocs/icons/page_world.png
rename to kasu/static/icons/page_world.png
diff --git a/htdocs/icons/paintbrush.png b/kasu/static/icons/paintbrush.png
similarity index 100%
rename from htdocs/icons/paintbrush.png
rename to kasu/static/icons/paintbrush.png
diff --git a/htdocs/icons/paintcan.png b/kasu/static/icons/paintcan.png
similarity index 100%
rename from htdocs/icons/paintcan.png
rename to kasu/static/icons/paintcan.png
diff --git a/htdocs/icons/palette.png b/kasu/static/icons/palette.png
similarity index 100%
rename from htdocs/icons/palette.png
rename to kasu/static/icons/palette.png
diff --git a/htdocs/icons/paste_plain.png b/kasu/static/icons/paste_plain.png
similarity index 100%
rename from htdocs/icons/paste_plain.png
rename to kasu/static/icons/paste_plain.png
diff --git a/htdocs/icons/paste_word.png b/kasu/static/icons/paste_word.png
similarity index 100%
rename from htdocs/icons/paste_word.png
rename to kasu/static/icons/paste_word.png
diff --git a/htdocs/icons/pencil.png b/kasu/static/icons/pencil.png
similarity index 100%
rename from htdocs/icons/pencil.png
rename to kasu/static/icons/pencil.png
diff --git a/htdocs/icons/pencil_add.png b/kasu/static/icons/pencil_add.png
similarity index 100%
rename from htdocs/icons/pencil_add.png
rename to kasu/static/icons/pencil_add.png
diff --git a/htdocs/icons/pencil_delete.png b/kasu/static/icons/pencil_delete.png
similarity index 100%
rename from htdocs/icons/pencil_delete.png
rename to kasu/static/icons/pencil_delete.png
diff --git a/htdocs/icons/pencil_go.png b/kasu/static/icons/pencil_go.png
similarity index 100%
rename from htdocs/icons/pencil_go.png
rename to kasu/static/icons/pencil_go.png
diff --git a/htdocs/icons/phone.png b/kasu/static/icons/phone.png
similarity index 100%
rename from htdocs/icons/phone.png
rename to kasu/static/icons/phone.png
diff --git a/htdocs/icons/phone_add.png b/kasu/static/icons/phone_add.png
similarity index 100%
rename from htdocs/icons/phone_add.png
rename to kasu/static/icons/phone_add.png
diff --git a/htdocs/icons/phone_delete.png b/kasu/static/icons/phone_delete.png
similarity index 100%
rename from htdocs/icons/phone_delete.png
rename to kasu/static/icons/phone_delete.png
diff --git a/htdocs/icons/phone_sound.png b/kasu/static/icons/phone_sound.png
similarity index 100%
rename from htdocs/icons/phone_sound.png
rename to kasu/static/icons/phone_sound.png
diff --git a/htdocs/icons/photo.png b/kasu/static/icons/photo.png
similarity index 100%
rename from htdocs/icons/photo.png
rename to kasu/static/icons/photo.png
diff --git a/htdocs/icons/photo_add.png b/kasu/static/icons/photo_add.png
similarity index 100%
rename from htdocs/icons/photo_add.png
rename to kasu/static/icons/photo_add.png
diff --git a/htdocs/icons/photo_delete.png b/kasu/static/icons/photo_delete.png
similarity index 100%
rename from htdocs/icons/photo_delete.png
rename to kasu/static/icons/photo_delete.png
diff --git a/htdocs/icons/photo_link.png b/kasu/static/icons/photo_link.png
similarity index 100%
rename from htdocs/icons/photo_link.png
rename to kasu/static/icons/photo_link.png
diff --git a/htdocs/icons/photos.png b/kasu/static/icons/photos.png
similarity index 100%
rename from htdocs/icons/photos.png
rename to kasu/static/icons/photos.png
diff --git a/htdocs/icons/picture.png b/kasu/static/icons/picture.png
similarity index 100%
rename from htdocs/icons/picture.png
rename to kasu/static/icons/picture.png
diff --git a/htdocs/icons/picture_add.png b/kasu/static/icons/picture_add.png
similarity index 100%
rename from htdocs/icons/picture_add.png
rename to kasu/static/icons/picture_add.png
diff --git a/htdocs/icons/picture_delete.png b/kasu/static/icons/picture_delete.png
similarity index 100%
rename from htdocs/icons/picture_delete.png
rename to kasu/static/icons/picture_delete.png
diff --git a/htdocs/icons/picture_edit.png b/kasu/static/icons/picture_edit.png
similarity index 100%
rename from htdocs/icons/picture_edit.png
rename to kasu/static/icons/picture_edit.png
diff --git a/htdocs/icons/picture_empty.png b/kasu/static/icons/picture_empty.png
similarity index 100%
rename from htdocs/icons/picture_empty.png
rename to kasu/static/icons/picture_empty.png
diff --git a/htdocs/icons/picture_error.png b/kasu/static/icons/picture_error.png
similarity index 100%
rename from htdocs/icons/picture_error.png
rename to kasu/static/icons/picture_error.png
diff --git a/htdocs/icons/picture_go.png b/kasu/static/icons/picture_go.png
similarity index 100%
rename from htdocs/icons/picture_go.png
rename to kasu/static/icons/picture_go.png
diff --git a/htdocs/icons/picture_key.png b/kasu/static/icons/picture_key.png
similarity index 100%
rename from htdocs/icons/picture_key.png
rename to kasu/static/icons/picture_key.png
diff --git a/htdocs/icons/picture_link.png b/kasu/static/icons/picture_link.png
similarity index 100%
rename from htdocs/icons/picture_link.png
rename to kasu/static/icons/picture_link.png
diff --git a/htdocs/icons/picture_save.png b/kasu/static/icons/picture_save.png
similarity index 100%
rename from htdocs/icons/picture_save.png
rename to kasu/static/icons/picture_save.png
diff --git a/htdocs/icons/pictures.png b/kasu/static/icons/pictures.png
similarity index 100%
rename from htdocs/icons/pictures.png
rename to kasu/static/icons/pictures.png
diff --git a/htdocs/icons/pilcrow.png b/kasu/static/icons/pilcrow.png
similarity index 100%
rename from htdocs/icons/pilcrow.png
rename to kasu/static/icons/pilcrow.png
diff --git a/htdocs/icons/pill.png b/kasu/static/icons/pill.png
similarity index 100%
rename from htdocs/icons/pill.png
rename to kasu/static/icons/pill.png
diff --git a/htdocs/icons/pill_add.png b/kasu/static/icons/pill_add.png
similarity index 100%
rename from htdocs/icons/pill_add.png
rename to kasu/static/icons/pill_add.png
diff --git a/htdocs/icons/pill_delete.png b/kasu/static/icons/pill_delete.png
similarity index 100%
rename from htdocs/icons/pill_delete.png
rename to kasu/static/icons/pill_delete.png
diff --git a/htdocs/icons/pill_go.png b/kasu/static/icons/pill_go.png
similarity index 100%
rename from htdocs/icons/pill_go.png
rename to kasu/static/icons/pill_go.png
diff --git a/htdocs/icons/plugin.png b/kasu/static/icons/plugin.png
similarity index 100%
rename from htdocs/icons/plugin.png
rename to kasu/static/icons/plugin.png
diff --git a/htdocs/icons/plugin_add.png b/kasu/static/icons/plugin_add.png
similarity index 100%
rename from htdocs/icons/plugin_add.png
rename to kasu/static/icons/plugin_add.png
diff --git a/htdocs/icons/plugin_delete.png b/kasu/static/icons/plugin_delete.png
similarity index 100%
rename from htdocs/icons/plugin_delete.png
rename to kasu/static/icons/plugin_delete.png
diff --git a/htdocs/icons/plugin_disabled.png b/kasu/static/icons/plugin_disabled.png
similarity index 100%
rename from htdocs/icons/plugin_disabled.png
rename to kasu/static/icons/plugin_disabled.png
diff --git a/htdocs/icons/plugin_edit.png b/kasu/static/icons/plugin_edit.png
similarity index 100%
rename from htdocs/icons/plugin_edit.png
rename to kasu/static/icons/plugin_edit.png
diff --git a/htdocs/icons/plugin_error.png b/kasu/static/icons/plugin_error.png
similarity index 100%
rename from htdocs/icons/plugin_error.png
rename to kasu/static/icons/plugin_error.png
diff --git a/htdocs/icons/plugin_go.png b/kasu/static/icons/plugin_go.png
similarity index 100%
rename from htdocs/icons/plugin_go.png
rename to kasu/static/icons/plugin_go.png
diff --git a/htdocs/icons/plugin_link.png b/kasu/static/icons/plugin_link.png
similarity index 100%
rename from htdocs/icons/plugin_link.png
rename to kasu/static/icons/plugin_link.png
diff --git a/htdocs/icons/printer.png b/kasu/static/icons/printer.png
similarity index 100%
rename from htdocs/icons/printer.png
rename to kasu/static/icons/printer.png
diff --git a/htdocs/icons/printer_add.png b/kasu/static/icons/printer_add.png
similarity index 100%
rename from htdocs/icons/printer_add.png
rename to kasu/static/icons/printer_add.png
diff --git a/htdocs/icons/printer_delete.png b/kasu/static/icons/printer_delete.png
similarity index 100%
rename from htdocs/icons/printer_delete.png
rename to kasu/static/icons/printer_delete.png
diff --git a/htdocs/icons/printer_empty.png b/kasu/static/icons/printer_empty.png
similarity index 100%
rename from htdocs/icons/printer_empty.png
rename to kasu/static/icons/printer_empty.png
diff --git a/htdocs/icons/printer_error.png b/kasu/static/icons/printer_error.png
similarity index 100%
rename from htdocs/icons/printer_error.png
rename to kasu/static/icons/printer_error.png
diff --git a/htdocs/icons/rainbow.png b/kasu/static/icons/rainbow.png
similarity index 100%
rename from htdocs/icons/rainbow.png
rename to kasu/static/icons/rainbow.png
diff --git a/htdocs/icons/report.png b/kasu/static/icons/report.png
similarity index 100%
rename from htdocs/icons/report.png
rename to kasu/static/icons/report.png
diff --git a/htdocs/icons/report_add.png b/kasu/static/icons/report_add.png
similarity index 100%
rename from htdocs/icons/report_add.png
rename to kasu/static/icons/report_add.png
diff --git a/htdocs/icons/report_delete.png b/kasu/static/icons/report_delete.png
similarity index 100%
rename from htdocs/icons/report_delete.png
rename to kasu/static/icons/report_delete.png
diff --git a/htdocs/icons/report_disk.png b/kasu/static/icons/report_disk.png
similarity index 100%
rename from htdocs/icons/report_disk.png
rename to kasu/static/icons/report_disk.png
diff --git a/htdocs/icons/report_edit.png b/kasu/static/icons/report_edit.png
similarity index 100%
rename from htdocs/icons/report_edit.png
rename to kasu/static/icons/report_edit.png
diff --git a/htdocs/icons/report_go.png b/kasu/static/icons/report_go.png
similarity index 100%
rename from htdocs/icons/report_go.png
rename to kasu/static/icons/report_go.png
diff --git a/htdocs/icons/report_key.png b/kasu/static/icons/report_key.png
similarity index 100%
rename from htdocs/icons/report_key.png
rename to kasu/static/icons/report_key.png
diff --git a/htdocs/icons/report_link.png b/kasu/static/icons/report_link.png
similarity index 100%
rename from htdocs/icons/report_link.png
rename to kasu/static/icons/report_link.png
diff --git a/htdocs/icons/report_magnify.png b/kasu/static/icons/report_magnify.png
similarity index 100%
rename from htdocs/icons/report_magnify.png
rename to kasu/static/icons/report_magnify.png
diff --git a/htdocs/icons/report_picture.png b/kasu/static/icons/report_picture.png
similarity index 100%
rename from htdocs/icons/report_picture.png
rename to kasu/static/icons/report_picture.png
diff --git a/htdocs/icons/report_user.png b/kasu/static/icons/report_user.png
similarity index 100%
rename from htdocs/icons/report_user.png
rename to kasu/static/icons/report_user.png
diff --git a/htdocs/icons/report_word.png b/kasu/static/icons/report_word.png
similarity index 100%
rename from htdocs/icons/report_word.png
rename to kasu/static/icons/report_word.png
diff --git a/htdocs/icons/resultset_first.png b/kasu/static/icons/resultset_first.png
similarity index 100%
rename from htdocs/icons/resultset_first.png
rename to kasu/static/icons/resultset_first.png
diff --git a/htdocs/icons/resultset_last.png b/kasu/static/icons/resultset_last.png
similarity index 100%
rename from htdocs/icons/resultset_last.png
rename to kasu/static/icons/resultset_last.png
diff --git a/htdocs/icons/resultset_next.png b/kasu/static/icons/resultset_next.png
similarity index 100%
rename from htdocs/icons/resultset_next.png
rename to kasu/static/icons/resultset_next.png
diff --git a/htdocs/icons/resultset_previous.png b/kasu/static/icons/resultset_previous.png
similarity index 100%
rename from htdocs/icons/resultset_previous.png
rename to kasu/static/icons/resultset_previous.png
diff --git a/htdocs/icons/rosette.png b/kasu/static/icons/rosette.png
similarity index 100%
rename from htdocs/icons/rosette.png
rename to kasu/static/icons/rosette.png
diff --git a/htdocs/icons/rss.png b/kasu/static/icons/rss.png
similarity index 100%
rename from htdocs/icons/rss.png
rename to kasu/static/icons/rss.png
diff --git a/htdocs/icons/rss_add.png b/kasu/static/icons/rss_add.png
similarity index 100%
rename from htdocs/icons/rss_add.png
rename to kasu/static/icons/rss_add.png
diff --git a/htdocs/icons/rss_delete.png b/kasu/static/icons/rss_delete.png
similarity index 100%
rename from htdocs/icons/rss_delete.png
rename to kasu/static/icons/rss_delete.png
diff --git a/htdocs/icons/rss_go.png b/kasu/static/icons/rss_go.png
similarity index 100%
rename from htdocs/icons/rss_go.png
rename to kasu/static/icons/rss_go.png
diff --git a/htdocs/icons/rss_valid.png b/kasu/static/icons/rss_valid.png
similarity index 100%
rename from htdocs/icons/rss_valid.png
rename to kasu/static/icons/rss_valid.png
diff --git a/htdocs/icons/ruby.png b/kasu/static/icons/ruby.png
similarity index 100%
rename from htdocs/icons/ruby.png
rename to kasu/static/icons/ruby.png
diff --git a/htdocs/icons/ruby_add.png b/kasu/static/icons/ruby_add.png
similarity index 100%
rename from htdocs/icons/ruby_add.png
rename to kasu/static/icons/ruby_add.png
diff --git a/htdocs/icons/ruby_delete.png b/kasu/static/icons/ruby_delete.png
similarity index 100%
rename from htdocs/icons/ruby_delete.png
rename to kasu/static/icons/ruby_delete.png
diff --git a/htdocs/icons/ruby_gear.png b/kasu/static/icons/ruby_gear.png
similarity index 100%
rename from htdocs/icons/ruby_gear.png
rename to kasu/static/icons/ruby_gear.png
diff --git a/htdocs/icons/ruby_get.png b/kasu/static/icons/ruby_get.png
similarity index 100%
rename from htdocs/icons/ruby_get.png
rename to kasu/static/icons/ruby_get.png
diff --git a/htdocs/icons/ruby_go.png b/kasu/static/icons/ruby_go.png
similarity index 100%
rename from htdocs/icons/ruby_go.png
rename to kasu/static/icons/ruby_go.png
diff --git a/htdocs/icons/ruby_key.png b/kasu/static/icons/ruby_key.png
similarity index 100%
rename from htdocs/icons/ruby_key.png
rename to kasu/static/icons/ruby_key.png
diff --git a/htdocs/icons/ruby_link.png b/kasu/static/icons/ruby_link.png
similarity index 100%
rename from htdocs/icons/ruby_link.png
rename to kasu/static/icons/ruby_link.png
diff --git a/htdocs/icons/ruby_put.png b/kasu/static/icons/ruby_put.png
similarity index 100%
rename from htdocs/icons/ruby_put.png
rename to kasu/static/icons/ruby_put.png
diff --git a/htdocs/icons/script.png b/kasu/static/icons/script.png
similarity index 100%
rename from htdocs/icons/script.png
rename to kasu/static/icons/script.png
diff --git a/htdocs/icons/script_add.png b/kasu/static/icons/script_add.png
similarity index 100%
rename from htdocs/icons/script_add.png
rename to kasu/static/icons/script_add.png
diff --git a/htdocs/icons/script_code.png b/kasu/static/icons/script_code.png
similarity index 100%
rename from htdocs/icons/script_code.png
rename to kasu/static/icons/script_code.png
diff --git a/htdocs/icons/script_code_red.png b/kasu/static/icons/script_code_red.png
similarity index 100%
rename from htdocs/icons/script_code_red.png
rename to kasu/static/icons/script_code_red.png
diff --git a/htdocs/icons/script_delete.png b/kasu/static/icons/script_delete.png
similarity index 100%
rename from htdocs/icons/script_delete.png
rename to kasu/static/icons/script_delete.png
diff --git a/htdocs/icons/script_edit.png b/kasu/static/icons/script_edit.png
similarity index 100%
rename from htdocs/icons/script_edit.png
rename to kasu/static/icons/script_edit.png
diff --git a/htdocs/icons/script_error.png b/kasu/static/icons/script_error.png
similarity index 100%
rename from htdocs/icons/script_error.png
rename to kasu/static/icons/script_error.png
diff --git a/htdocs/icons/script_gear.png b/kasu/static/icons/script_gear.png
similarity index 100%
rename from htdocs/icons/script_gear.png
rename to kasu/static/icons/script_gear.png
diff --git a/htdocs/icons/script_go.png b/kasu/static/icons/script_go.png
similarity index 100%
rename from htdocs/icons/script_go.png
rename to kasu/static/icons/script_go.png
diff --git a/htdocs/icons/script_key.png b/kasu/static/icons/script_key.png
similarity index 100%
rename from htdocs/icons/script_key.png
rename to kasu/static/icons/script_key.png
diff --git a/htdocs/icons/script_lightning.png b/kasu/static/icons/script_lightning.png
similarity index 100%
rename from htdocs/icons/script_lightning.png
rename to kasu/static/icons/script_lightning.png
diff --git a/htdocs/icons/script_link.png b/kasu/static/icons/script_link.png
similarity index 100%
rename from htdocs/icons/script_link.png
rename to kasu/static/icons/script_link.png
diff --git a/htdocs/icons/script_palette.png b/kasu/static/icons/script_palette.png
similarity index 100%
rename from htdocs/icons/script_palette.png
rename to kasu/static/icons/script_palette.png
diff --git a/htdocs/icons/script_save.png b/kasu/static/icons/script_save.png
similarity index 100%
rename from htdocs/icons/script_save.png
rename to kasu/static/icons/script_save.png
diff --git a/htdocs/icons/server.png b/kasu/static/icons/server.png
similarity index 100%
rename from htdocs/icons/server.png
rename to kasu/static/icons/server.png
diff --git a/htdocs/icons/server_add.png b/kasu/static/icons/server_add.png
similarity index 100%
rename from htdocs/icons/server_add.png
rename to kasu/static/icons/server_add.png
diff --git a/htdocs/icons/server_chart.png b/kasu/static/icons/server_chart.png
similarity index 100%
rename from htdocs/icons/server_chart.png
rename to kasu/static/icons/server_chart.png
diff --git a/htdocs/icons/server_compressed.png b/kasu/static/icons/server_compressed.png
similarity index 100%
rename from htdocs/icons/server_compressed.png
rename to kasu/static/icons/server_compressed.png
diff --git a/htdocs/icons/server_connect.png b/kasu/static/icons/server_connect.png
similarity index 100%
rename from htdocs/icons/server_connect.png
rename to kasu/static/icons/server_connect.png
diff --git a/htdocs/icons/server_database.png b/kasu/static/icons/server_database.png
similarity index 100%
rename from htdocs/icons/server_database.png
rename to kasu/static/icons/server_database.png
diff --git a/htdocs/icons/server_delete.png b/kasu/static/icons/server_delete.png
similarity index 100%
rename from htdocs/icons/server_delete.png
rename to kasu/static/icons/server_delete.png
diff --git a/htdocs/icons/server_edit.png b/kasu/static/icons/server_edit.png
similarity index 100%
rename from htdocs/icons/server_edit.png
rename to kasu/static/icons/server_edit.png
diff --git a/htdocs/icons/server_error.png b/kasu/static/icons/server_error.png
similarity index 100%
rename from htdocs/icons/server_error.png
rename to kasu/static/icons/server_error.png
diff --git a/htdocs/icons/server_go.png b/kasu/static/icons/server_go.png
similarity index 100%
rename from htdocs/icons/server_go.png
rename to kasu/static/icons/server_go.png
diff --git a/htdocs/icons/server_key.png b/kasu/static/icons/server_key.png
similarity index 100%
rename from htdocs/icons/server_key.png
rename to kasu/static/icons/server_key.png
diff --git a/htdocs/icons/server_lightning.png b/kasu/static/icons/server_lightning.png
similarity index 100%
rename from htdocs/icons/server_lightning.png
rename to kasu/static/icons/server_lightning.png
diff --git a/htdocs/icons/server_link.png b/kasu/static/icons/server_link.png
similarity index 100%
rename from htdocs/icons/server_link.png
rename to kasu/static/icons/server_link.png
diff --git a/htdocs/icons/server_uncompressed.png b/kasu/static/icons/server_uncompressed.png
similarity index 100%
rename from htdocs/icons/server_uncompressed.png
rename to kasu/static/icons/server_uncompressed.png
diff --git a/htdocs/icons/shading.png b/kasu/static/icons/shading.png
similarity index 100%
rename from htdocs/icons/shading.png
rename to kasu/static/icons/shading.png
diff --git a/htdocs/icons/shape_align_bottom.png b/kasu/static/icons/shape_align_bottom.png
similarity index 100%
rename from htdocs/icons/shape_align_bottom.png
rename to kasu/static/icons/shape_align_bottom.png
diff --git a/htdocs/icons/shape_align_center.png b/kasu/static/icons/shape_align_center.png
similarity index 100%
rename from htdocs/icons/shape_align_center.png
rename to kasu/static/icons/shape_align_center.png
diff --git a/htdocs/icons/shape_align_left.png b/kasu/static/icons/shape_align_left.png
similarity index 100%
rename from htdocs/icons/shape_align_left.png
rename to kasu/static/icons/shape_align_left.png
diff --git a/htdocs/icons/shape_align_middle.png b/kasu/static/icons/shape_align_middle.png
similarity index 100%
rename from htdocs/icons/shape_align_middle.png
rename to kasu/static/icons/shape_align_middle.png
diff --git a/htdocs/icons/shape_align_right.png b/kasu/static/icons/shape_align_right.png
similarity index 100%
rename from htdocs/icons/shape_align_right.png
rename to kasu/static/icons/shape_align_right.png
diff --git a/htdocs/icons/shape_align_top.png b/kasu/static/icons/shape_align_top.png
similarity index 100%
rename from htdocs/icons/shape_align_top.png
rename to kasu/static/icons/shape_align_top.png
diff --git a/htdocs/icons/shape_flip_horizontal.png b/kasu/static/icons/shape_flip_horizontal.png
similarity index 100%
rename from htdocs/icons/shape_flip_horizontal.png
rename to kasu/static/icons/shape_flip_horizontal.png
diff --git a/htdocs/icons/shape_flip_vertical.png b/kasu/static/icons/shape_flip_vertical.png
similarity index 100%
rename from htdocs/icons/shape_flip_vertical.png
rename to kasu/static/icons/shape_flip_vertical.png
diff --git a/htdocs/icons/shape_group.png b/kasu/static/icons/shape_group.png
similarity index 100%
rename from htdocs/icons/shape_group.png
rename to kasu/static/icons/shape_group.png
diff --git a/htdocs/icons/shape_handles.png b/kasu/static/icons/shape_handles.png
similarity index 100%
rename from htdocs/icons/shape_handles.png
rename to kasu/static/icons/shape_handles.png
diff --git a/htdocs/icons/shape_move_back.png b/kasu/static/icons/shape_move_back.png
similarity index 100%
rename from htdocs/icons/shape_move_back.png
rename to kasu/static/icons/shape_move_back.png
diff --git a/htdocs/icons/shape_move_backwards.png b/kasu/static/icons/shape_move_backwards.png
similarity index 100%
rename from htdocs/icons/shape_move_backwards.png
rename to kasu/static/icons/shape_move_backwards.png
diff --git a/htdocs/icons/shape_move_forwards.png b/kasu/static/icons/shape_move_forwards.png
similarity index 100%
rename from htdocs/icons/shape_move_forwards.png
rename to kasu/static/icons/shape_move_forwards.png
diff --git a/htdocs/icons/shape_move_front.png b/kasu/static/icons/shape_move_front.png
similarity index 100%
rename from htdocs/icons/shape_move_front.png
rename to kasu/static/icons/shape_move_front.png
diff --git a/htdocs/icons/shape_rotate_anticlockwise.png b/kasu/static/icons/shape_rotate_anticlockwise.png
similarity index 100%
rename from htdocs/icons/shape_rotate_anticlockwise.png
rename to kasu/static/icons/shape_rotate_anticlockwise.png
diff --git a/htdocs/icons/shape_rotate_clockwise.png b/kasu/static/icons/shape_rotate_clockwise.png
similarity index 100%
rename from htdocs/icons/shape_rotate_clockwise.png
rename to kasu/static/icons/shape_rotate_clockwise.png
diff --git a/htdocs/icons/shape_square.png b/kasu/static/icons/shape_square.png
similarity index 100%
rename from htdocs/icons/shape_square.png
rename to kasu/static/icons/shape_square.png
diff --git a/htdocs/icons/shape_square_add.png b/kasu/static/icons/shape_square_add.png
similarity index 100%
rename from htdocs/icons/shape_square_add.png
rename to kasu/static/icons/shape_square_add.png
diff --git a/htdocs/icons/shape_square_delete.png b/kasu/static/icons/shape_square_delete.png
similarity index 100%
rename from htdocs/icons/shape_square_delete.png
rename to kasu/static/icons/shape_square_delete.png
diff --git a/htdocs/icons/shape_square_edit.png b/kasu/static/icons/shape_square_edit.png
similarity index 100%
rename from htdocs/icons/shape_square_edit.png
rename to kasu/static/icons/shape_square_edit.png
diff --git a/htdocs/icons/shape_square_error.png b/kasu/static/icons/shape_square_error.png
similarity index 100%
rename from htdocs/icons/shape_square_error.png
rename to kasu/static/icons/shape_square_error.png
diff --git a/htdocs/icons/shape_square_go.png b/kasu/static/icons/shape_square_go.png
similarity index 100%
rename from htdocs/icons/shape_square_go.png
rename to kasu/static/icons/shape_square_go.png
diff --git a/htdocs/icons/shape_square_key.png b/kasu/static/icons/shape_square_key.png
similarity index 100%
rename from htdocs/icons/shape_square_key.png
rename to kasu/static/icons/shape_square_key.png
diff --git a/htdocs/icons/shape_square_link.png b/kasu/static/icons/shape_square_link.png
similarity index 100%
rename from htdocs/icons/shape_square_link.png
rename to kasu/static/icons/shape_square_link.png
diff --git a/htdocs/icons/shape_ungroup.png b/kasu/static/icons/shape_ungroup.png
similarity index 100%
rename from htdocs/icons/shape_ungroup.png
rename to kasu/static/icons/shape_ungroup.png
diff --git a/htdocs/icons/shield.png b/kasu/static/icons/shield.png
similarity index 100%
rename from htdocs/icons/shield.png
rename to kasu/static/icons/shield.png
diff --git a/htdocs/icons/shield_add.png b/kasu/static/icons/shield_add.png
similarity index 100%
rename from htdocs/icons/shield_add.png
rename to kasu/static/icons/shield_add.png
diff --git a/htdocs/icons/shield_delete.png b/kasu/static/icons/shield_delete.png
similarity index 100%
rename from htdocs/icons/shield_delete.png
rename to kasu/static/icons/shield_delete.png
diff --git a/htdocs/icons/shield_go.png b/kasu/static/icons/shield_go.png
similarity index 100%
rename from htdocs/icons/shield_go.png
rename to kasu/static/icons/shield_go.png
diff --git a/htdocs/icons/sitemap.png b/kasu/static/icons/sitemap.png
similarity index 100%
rename from htdocs/icons/sitemap.png
rename to kasu/static/icons/sitemap.png
diff --git a/htdocs/icons/sitemap_color.png b/kasu/static/icons/sitemap_color.png
similarity index 100%
rename from htdocs/icons/sitemap_color.png
rename to kasu/static/icons/sitemap_color.png
diff --git a/htdocs/icons/sound.png b/kasu/static/icons/sound.png
similarity index 100%
rename from htdocs/icons/sound.png
rename to kasu/static/icons/sound.png
diff --git a/htdocs/icons/sound_add.png b/kasu/static/icons/sound_add.png
similarity index 100%
rename from htdocs/icons/sound_add.png
rename to kasu/static/icons/sound_add.png
diff --git a/htdocs/icons/sound_delete.png b/kasu/static/icons/sound_delete.png
similarity index 100%
rename from htdocs/icons/sound_delete.png
rename to kasu/static/icons/sound_delete.png
diff --git a/htdocs/icons/sound_low.png b/kasu/static/icons/sound_low.png
similarity index 100%
rename from htdocs/icons/sound_low.png
rename to kasu/static/icons/sound_low.png
diff --git a/htdocs/icons/sound_mute.png b/kasu/static/icons/sound_mute.png
similarity index 100%
rename from htdocs/icons/sound_mute.png
rename to kasu/static/icons/sound_mute.png
diff --git a/htdocs/icons/sound_none.png b/kasu/static/icons/sound_none.png
similarity index 100%
rename from htdocs/icons/sound_none.png
rename to kasu/static/icons/sound_none.png
diff --git a/htdocs/icons/spellcheck.png b/kasu/static/icons/spellcheck.png
similarity index 100%
rename from htdocs/icons/spellcheck.png
rename to kasu/static/icons/spellcheck.png
diff --git a/htdocs/icons/sport_8ball.png b/kasu/static/icons/sport_8ball.png
similarity index 100%
rename from htdocs/icons/sport_8ball.png
rename to kasu/static/icons/sport_8ball.png
diff --git a/htdocs/icons/sport_basketball.png b/kasu/static/icons/sport_basketball.png
similarity index 100%
rename from htdocs/icons/sport_basketball.png
rename to kasu/static/icons/sport_basketball.png
diff --git a/htdocs/icons/sport_football.png b/kasu/static/icons/sport_football.png
similarity index 100%
rename from htdocs/icons/sport_football.png
rename to kasu/static/icons/sport_football.png
diff --git a/htdocs/icons/sport_golf.png b/kasu/static/icons/sport_golf.png
similarity index 100%
rename from htdocs/icons/sport_golf.png
rename to kasu/static/icons/sport_golf.png
diff --git a/htdocs/icons/sport_raquet.png b/kasu/static/icons/sport_raquet.png
similarity index 100%
rename from htdocs/icons/sport_raquet.png
rename to kasu/static/icons/sport_raquet.png
diff --git a/htdocs/icons/sport_shuttlecock.png b/kasu/static/icons/sport_shuttlecock.png
similarity index 100%
rename from htdocs/icons/sport_shuttlecock.png
rename to kasu/static/icons/sport_shuttlecock.png
diff --git a/htdocs/icons/sport_soccer.png b/kasu/static/icons/sport_soccer.png
similarity index 100%
rename from htdocs/icons/sport_soccer.png
rename to kasu/static/icons/sport_soccer.png
diff --git a/htdocs/icons/sport_tennis.png b/kasu/static/icons/sport_tennis.png
similarity index 100%
rename from htdocs/icons/sport_tennis.png
rename to kasu/static/icons/sport_tennis.png
diff --git a/htdocs/icons/star.png b/kasu/static/icons/star.png
similarity index 100%
rename from htdocs/icons/star.png
rename to kasu/static/icons/star.png
diff --git a/htdocs/icons/status_away.png b/kasu/static/icons/status_away.png
similarity index 100%
rename from htdocs/icons/status_away.png
rename to kasu/static/icons/status_away.png
diff --git a/htdocs/icons/status_busy.png b/kasu/static/icons/status_busy.png
similarity index 100%
rename from htdocs/icons/status_busy.png
rename to kasu/static/icons/status_busy.png
diff --git a/htdocs/icons/status_offline.png b/kasu/static/icons/status_offline.png
similarity index 100%
rename from htdocs/icons/status_offline.png
rename to kasu/static/icons/status_offline.png
diff --git a/htdocs/icons/status_online.png b/kasu/static/icons/status_online.png
similarity index 100%
rename from htdocs/icons/status_online.png
rename to kasu/static/icons/status_online.png
diff --git a/htdocs/icons/stop.png b/kasu/static/icons/stop.png
similarity index 100%
rename from htdocs/icons/stop.png
rename to kasu/static/icons/stop.png
diff --git a/htdocs/icons/style.png b/kasu/static/icons/style.png
similarity index 100%
rename from htdocs/icons/style.png
rename to kasu/static/icons/style.png
diff --git a/htdocs/icons/style_add.png b/kasu/static/icons/style_add.png
similarity index 100%
rename from htdocs/icons/style_add.png
rename to kasu/static/icons/style_add.png
diff --git a/htdocs/icons/style_delete.png b/kasu/static/icons/style_delete.png
similarity index 100%
rename from htdocs/icons/style_delete.png
rename to kasu/static/icons/style_delete.png
diff --git a/htdocs/icons/style_edit.png b/kasu/static/icons/style_edit.png
similarity index 100%
rename from htdocs/icons/style_edit.png
rename to kasu/static/icons/style_edit.png
diff --git a/htdocs/icons/style_go.png b/kasu/static/icons/style_go.png
similarity index 100%
rename from htdocs/icons/style_go.png
rename to kasu/static/icons/style_go.png
diff --git a/htdocs/icons/sum.png b/kasu/static/icons/sum.png
similarity index 100%
rename from htdocs/icons/sum.png
rename to kasu/static/icons/sum.png
diff --git a/htdocs/icons/tab.png b/kasu/static/icons/tab.png
similarity index 100%
rename from htdocs/icons/tab.png
rename to kasu/static/icons/tab.png
diff --git a/htdocs/icons/tab_add.png b/kasu/static/icons/tab_add.png
similarity index 100%
rename from htdocs/icons/tab_add.png
rename to kasu/static/icons/tab_add.png
diff --git a/htdocs/icons/tab_delete.png b/kasu/static/icons/tab_delete.png
similarity index 100%
rename from htdocs/icons/tab_delete.png
rename to kasu/static/icons/tab_delete.png
diff --git a/htdocs/icons/tab_edit.png b/kasu/static/icons/tab_edit.png
similarity index 100%
rename from htdocs/icons/tab_edit.png
rename to kasu/static/icons/tab_edit.png
diff --git a/htdocs/icons/tab_go.png b/kasu/static/icons/tab_go.png
similarity index 100%
rename from htdocs/icons/tab_go.png
rename to kasu/static/icons/tab_go.png
diff --git a/htdocs/icons/table.png b/kasu/static/icons/table.png
similarity index 100%
rename from htdocs/icons/table.png
rename to kasu/static/icons/table.png
diff --git a/htdocs/icons/table_add.png b/kasu/static/icons/table_add.png
similarity index 100%
rename from htdocs/icons/table_add.png
rename to kasu/static/icons/table_add.png
diff --git a/htdocs/icons/table_delete.png b/kasu/static/icons/table_delete.png
similarity index 100%
rename from htdocs/icons/table_delete.png
rename to kasu/static/icons/table_delete.png
diff --git a/htdocs/icons/table_edit.png b/kasu/static/icons/table_edit.png
similarity index 100%
rename from htdocs/icons/table_edit.png
rename to kasu/static/icons/table_edit.png
diff --git a/htdocs/icons/table_error.png b/kasu/static/icons/table_error.png
similarity index 100%
rename from htdocs/icons/table_error.png
rename to kasu/static/icons/table_error.png
diff --git a/htdocs/icons/table_gear.png b/kasu/static/icons/table_gear.png
similarity index 100%
rename from htdocs/icons/table_gear.png
rename to kasu/static/icons/table_gear.png
diff --git a/htdocs/icons/table_go.png b/kasu/static/icons/table_go.png
similarity index 100%
rename from htdocs/icons/table_go.png
rename to kasu/static/icons/table_go.png
diff --git a/htdocs/icons/table_key.png b/kasu/static/icons/table_key.png
similarity index 100%
rename from htdocs/icons/table_key.png
rename to kasu/static/icons/table_key.png
diff --git a/htdocs/icons/table_lightning.png b/kasu/static/icons/table_lightning.png
similarity index 100%
rename from htdocs/icons/table_lightning.png
rename to kasu/static/icons/table_lightning.png
diff --git a/htdocs/icons/table_link.png b/kasu/static/icons/table_link.png
similarity index 100%
rename from htdocs/icons/table_link.png
rename to kasu/static/icons/table_link.png
diff --git a/htdocs/icons/table_multiple.png b/kasu/static/icons/table_multiple.png
similarity index 100%
rename from htdocs/icons/table_multiple.png
rename to kasu/static/icons/table_multiple.png
diff --git a/htdocs/icons/table_refresh.png b/kasu/static/icons/table_refresh.png
similarity index 100%
rename from htdocs/icons/table_refresh.png
rename to kasu/static/icons/table_refresh.png
diff --git a/htdocs/icons/table_relationship.png b/kasu/static/icons/table_relationship.png
similarity index 100%
rename from htdocs/icons/table_relationship.png
rename to kasu/static/icons/table_relationship.png
diff --git a/htdocs/icons/table_row_delete.png b/kasu/static/icons/table_row_delete.png
similarity index 100%
rename from htdocs/icons/table_row_delete.png
rename to kasu/static/icons/table_row_delete.png
diff --git a/htdocs/icons/table_row_insert.png b/kasu/static/icons/table_row_insert.png
similarity index 100%
rename from htdocs/icons/table_row_insert.png
rename to kasu/static/icons/table_row_insert.png
diff --git a/htdocs/icons/table_save.png b/kasu/static/icons/table_save.png
similarity index 100%
rename from htdocs/icons/table_save.png
rename to kasu/static/icons/table_save.png
diff --git a/htdocs/icons/table_sort.png b/kasu/static/icons/table_sort.png
similarity index 100%
rename from htdocs/icons/table_sort.png
rename to kasu/static/icons/table_sort.png
diff --git a/htdocs/icons/tag.png b/kasu/static/icons/tag.png
similarity index 100%
rename from htdocs/icons/tag.png
rename to kasu/static/icons/tag.png
diff --git a/htdocs/icons/tag_blue.png b/kasu/static/icons/tag_blue.png
similarity index 100%
rename from htdocs/icons/tag_blue.png
rename to kasu/static/icons/tag_blue.png
diff --git a/htdocs/icons/tag_blue_add.png b/kasu/static/icons/tag_blue_add.png
similarity index 100%
rename from htdocs/icons/tag_blue_add.png
rename to kasu/static/icons/tag_blue_add.png
diff --git a/htdocs/icons/tag_blue_delete.png b/kasu/static/icons/tag_blue_delete.png
similarity index 100%
rename from htdocs/icons/tag_blue_delete.png
rename to kasu/static/icons/tag_blue_delete.png
diff --git a/htdocs/icons/tag_blue_edit.png b/kasu/static/icons/tag_blue_edit.png
similarity index 100%
rename from htdocs/icons/tag_blue_edit.png
rename to kasu/static/icons/tag_blue_edit.png
diff --git a/htdocs/icons/tag_green.png b/kasu/static/icons/tag_green.png
similarity index 100%
rename from htdocs/icons/tag_green.png
rename to kasu/static/icons/tag_green.png
diff --git a/htdocs/icons/tag_orange.png b/kasu/static/icons/tag_orange.png
similarity index 100%
rename from htdocs/icons/tag_orange.png
rename to kasu/static/icons/tag_orange.png
diff --git a/htdocs/icons/tag_pink.png b/kasu/static/icons/tag_pink.png
similarity index 100%
rename from htdocs/icons/tag_pink.png
rename to kasu/static/icons/tag_pink.png
diff --git a/htdocs/icons/tag_purple.png b/kasu/static/icons/tag_purple.png
similarity index 100%
rename from htdocs/icons/tag_purple.png
rename to kasu/static/icons/tag_purple.png
diff --git a/htdocs/icons/tag_red.png b/kasu/static/icons/tag_red.png
similarity index 100%
rename from htdocs/icons/tag_red.png
rename to kasu/static/icons/tag_red.png
diff --git a/htdocs/icons/tag_yellow.png b/kasu/static/icons/tag_yellow.png
similarity index 100%
rename from htdocs/icons/tag_yellow.png
rename to kasu/static/icons/tag_yellow.png
diff --git a/htdocs/icons/telephone.png b/kasu/static/icons/telephone.png
similarity index 100%
rename from htdocs/icons/telephone.png
rename to kasu/static/icons/telephone.png
diff --git a/htdocs/icons/telephone_add.png b/kasu/static/icons/telephone_add.png
similarity index 100%
rename from htdocs/icons/telephone_add.png
rename to kasu/static/icons/telephone_add.png
diff --git a/htdocs/icons/telephone_delete.png b/kasu/static/icons/telephone_delete.png
similarity index 100%
rename from htdocs/icons/telephone_delete.png
rename to kasu/static/icons/telephone_delete.png
diff --git a/htdocs/icons/telephone_edit.png b/kasu/static/icons/telephone_edit.png
similarity index 100%
rename from htdocs/icons/telephone_edit.png
rename to kasu/static/icons/telephone_edit.png
diff --git a/htdocs/icons/telephone_error.png b/kasu/static/icons/telephone_error.png
similarity index 100%
rename from htdocs/icons/telephone_error.png
rename to kasu/static/icons/telephone_error.png
diff --git a/htdocs/icons/telephone_go.png b/kasu/static/icons/telephone_go.png
similarity index 100%
rename from htdocs/icons/telephone_go.png
rename to kasu/static/icons/telephone_go.png
diff --git a/htdocs/icons/telephone_key.png b/kasu/static/icons/telephone_key.png
similarity index 100%
rename from htdocs/icons/telephone_key.png
rename to kasu/static/icons/telephone_key.png
diff --git a/htdocs/icons/telephone_link.png b/kasu/static/icons/telephone_link.png
similarity index 100%
rename from htdocs/icons/telephone_link.png
rename to kasu/static/icons/telephone_link.png
diff --git a/htdocs/icons/television.png b/kasu/static/icons/television.png
similarity index 100%
rename from htdocs/icons/television.png
rename to kasu/static/icons/television.png
diff --git a/htdocs/icons/television_add.png b/kasu/static/icons/television_add.png
similarity index 100%
rename from htdocs/icons/television_add.png
rename to kasu/static/icons/television_add.png
diff --git a/htdocs/icons/television_delete.png b/kasu/static/icons/television_delete.png
similarity index 100%
rename from htdocs/icons/television_delete.png
rename to kasu/static/icons/television_delete.png
diff --git a/htdocs/icons/text_align_center.png b/kasu/static/icons/text_align_center.png
similarity index 100%
rename from htdocs/icons/text_align_center.png
rename to kasu/static/icons/text_align_center.png
diff --git a/htdocs/icons/text_align_justify.png b/kasu/static/icons/text_align_justify.png
similarity index 100%
rename from htdocs/icons/text_align_justify.png
rename to kasu/static/icons/text_align_justify.png
diff --git a/htdocs/icons/text_align_left.png b/kasu/static/icons/text_align_left.png
similarity index 100%
rename from htdocs/icons/text_align_left.png
rename to kasu/static/icons/text_align_left.png
diff --git a/htdocs/icons/text_align_right.png b/kasu/static/icons/text_align_right.png
similarity index 100%
rename from htdocs/icons/text_align_right.png
rename to kasu/static/icons/text_align_right.png
diff --git a/htdocs/icons/text_allcaps.png b/kasu/static/icons/text_allcaps.png
similarity index 100%
rename from htdocs/icons/text_allcaps.png
rename to kasu/static/icons/text_allcaps.png
diff --git a/htdocs/icons/text_bold.png b/kasu/static/icons/text_bold.png
similarity index 100%
rename from htdocs/icons/text_bold.png
rename to kasu/static/icons/text_bold.png
diff --git a/htdocs/icons/text_columns.png b/kasu/static/icons/text_columns.png
similarity index 100%
rename from htdocs/icons/text_columns.png
rename to kasu/static/icons/text_columns.png
diff --git a/htdocs/icons/text_dropcaps.png b/kasu/static/icons/text_dropcaps.png
similarity index 100%
rename from htdocs/icons/text_dropcaps.png
rename to kasu/static/icons/text_dropcaps.png
diff --git a/htdocs/icons/text_heading_1.png b/kasu/static/icons/text_heading_1.png
similarity index 100%
rename from htdocs/icons/text_heading_1.png
rename to kasu/static/icons/text_heading_1.png
diff --git a/htdocs/icons/text_heading_2.png b/kasu/static/icons/text_heading_2.png
similarity index 100%
rename from htdocs/icons/text_heading_2.png
rename to kasu/static/icons/text_heading_2.png
diff --git a/htdocs/icons/text_heading_3.png b/kasu/static/icons/text_heading_3.png
similarity index 100%
rename from htdocs/icons/text_heading_3.png
rename to kasu/static/icons/text_heading_3.png
diff --git a/htdocs/icons/text_heading_4.png b/kasu/static/icons/text_heading_4.png
similarity index 100%
rename from htdocs/icons/text_heading_4.png
rename to kasu/static/icons/text_heading_4.png
diff --git a/htdocs/icons/text_heading_5.png b/kasu/static/icons/text_heading_5.png
similarity index 100%
rename from htdocs/icons/text_heading_5.png
rename to kasu/static/icons/text_heading_5.png
diff --git a/htdocs/icons/text_heading_6.png b/kasu/static/icons/text_heading_6.png
similarity index 100%
rename from htdocs/icons/text_heading_6.png
rename to kasu/static/icons/text_heading_6.png
diff --git a/htdocs/icons/text_horizontalrule.png b/kasu/static/icons/text_horizontalrule.png
similarity index 100%
rename from htdocs/icons/text_horizontalrule.png
rename to kasu/static/icons/text_horizontalrule.png
diff --git a/htdocs/icons/text_indent.png b/kasu/static/icons/text_indent.png
similarity index 100%
rename from htdocs/icons/text_indent.png
rename to kasu/static/icons/text_indent.png
diff --git a/htdocs/icons/text_indent_remove.png b/kasu/static/icons/text_indent_remove.png
similarity index 100%
rename from htdocs/icons/text_indent_remove.png
rename to kasu/static/icons/text_indent_remove.png
diff --git a/htdocs/icons/text_italic.png b/kasu/static/icons/text_italic.png
similarity index 100%
rename from htdocs/icons/text_italic.png
rename to kasu/static/icons/text_italic.png
diff --git a/htdocs/icons/text_kerning.png b/kasu/static/icons/text_kerning.png
similarity index 100%
rename from htdocs/icons/text_kerning.png
rename to kasu/static/icons/text_kerning.png
diff --git a/htdocs/icons/text_letter_omega.png b/kasu/static/icons/text_letter_omega.png
similarity index 100%
rename from htdocs/icons/text_letter_omega.png
rename to kasu/static/icons/text_letter_omega.png
diff --git a/htdocs/icons/text_letterspacing.png b/kasu/static/icons/text_letterspacing.png
similarity index 100%
rename from htdocs/icons/text_letterspacing.png
rename to kasu/static/icons/text_letterspacing.png
diff --git a/htdocs/icons/text_linespacing.png b/kasu/static/icons/text_linespacing.png
similarity index 100%
rename from htdocs/icons/text_linespacing.png
rename to kasu/static/icons/text_linespacing.png
diff --git a/htdocs/icons/text_list_bullets.png b/kasu/static/icons/text_list_bullets.png
similarity index 100%
rename from htdocs/icons/text_list_bullets.png
rename to kasu/static/icons/text_list_bullets.png
diff --git a/htdocs/icons/text_list_numbers.png b/kasu/static/icons/text_list_numbers.png
similarity index 100%
rename from htdocs/icons/text_list_numbers.png
rename to kasu/static/icons/text_list_numbers.png
diff --git a/htdocs/icons/text_lowercase.png b/kasu/static/icons/text_lowercase.png
similarity index 100%
rename from htdocs/icons/text_lowercase.png
rename to kasu/static/icons/text_lowercase.png
diff --git a/htdocs/icons/text_padding_bottom.png b/kasu/static/icons/text_padding_bottom.png
similarity index 100%
rename from htdocs/icons/text_padding_bottom.png
rename to kasu/static/icons/text_padding_bottom.png
diff --git a/htdocs/icons/text_padding_left.png b/kasu/static/icons/text_padding_left.png
similarity index 100%
rename from htdocs/icons/text_padding_left.png
rename to kasu/static/icons/text_padding_left.png
diff --git a/htdocs/icons/text_padding_right.png b/kasu/static/icons/text_padding_right.png
similarity index 100%
rename from htdocs/icons/text_padding_right.png
rename to kasu/static/icons/text_padding_right.png
diff --git a/htdocs/icons/text_padding_top.png b/kasu/static/icons/text_padding_top.png
similarity index 100%
rename from htdocs/icons/text_padding_top.png
rename to kasu/static/icons/text_padding_top.png
diff --git a/htdocs/icons/text_replace.png b/kasu/static/icons/text_replace.png
similarity index 100%
rename from htdocs/icons/text_replace.png
rename to kasu/static/icons/text_replace.png
diff --git a/htdocs/icons/text_signature.png b/kasu/static/icons/text_signature.png
similarity index 100%
rename from htdocs/icons/text_signature.png
rename to kasu/static/icons/text_signature.png
diff --git a/htdocs/icons/text_smallcaps.png b/kasu/static/icons/text_smallcaps.png
similarity index 100%
rename from htdocs/icons/text_smallcaps.png
rename to kasu/static/icons/text_smallcaps.png
diff --git a/htdocs/icons/text_strikethrough.png b/kasu/static/icons/text_strikethrough.png
similarity index 100%
rename from htdocs/icons/text_strikethrough.png
rename to kasu/static/icons/text_strikethrough.png
diff --git a/htdocs/icons/text_subscript.png b/kasu/static/icons/text_subscript.png
similarity index 100%
rename from htdocs/icons/text_subscript.png
rename to kasu/static/icons/text_subscript.png
diff --git a/htdocs/icons/text_superscript.png b/kasu/static/icons/text_superscript.png
similarity index 100%
rename from htdocs/icons/text_superscript.png
rename to kasu/static/icons/text_superscript.png
diff --git a/htdocs/icons/text_underline.png b/kasu/static/icons/text_underline.png
similarity index 100%
rename from htdocs/icons/text_underline.png
rename to kasu/static/icons/text_underline.png
diff --git a/htdocs/icons/text_uppercase.png b/kasu/static/icons/text_uppercase.png
similarity index 100%
rename from htdocs/icons/text_uppercase.png
rename to kasu/static/icons/text_uppercase.png
diff --git a/htdocs/icons/textfield.png b/kasu/static/icons/textfield.png
similarity index 100%
rename from htdocs/icons/textfield.png
rename to kasu/static/icons/textfield.png
diff --git a/htdocs/icons/textfield_add.png b/kasu/static/icons/textfield_add.png
similarity index 100%
rename from htdocs/icons/textfield_add.png
rename to kasu/static/icons/textfield_add.png
diff --git a/htdocs/icons/textfield_delete.png b/kasu/static/icons/textfield_delete.png
similarity index 100%
rename from htdocs/icons/textfield_delete.png
rename to kasu/static/icons/textfield_delete.png
diff --git a/htdocs/icons/textfield_key.png b/kasu/static/icons/textfield_key.png
similarity index 100%
rename from htdocs/icons/textfield_key.png
rename to kasu/static/icons/textfield_key.png
diff --git a/htdocs/icons/textfield_rename.png b/kasu/static/icons/textfield_rename.png
similarity index 100%
rename from htdocs/icons/textfield_rename.png
rename to kasu/static/icons/textfield_rename.png
diff --git a/htdocs/icons/thumb_down.png b/kasu/static/icons/thumb_down.png
similarity index 100%
rename from htdocs/icons/thumb_down.png
rename to kasu/static/icons/thumb_down.png
diff --git a/htdocs/icons/thumb_up.png b/kasu/static/icons/thumb_up.png
similarity index 100%
rename from htdocs/icons/thumb_up.png
rename to kasu/static/icons/thumb_up.png
diff --git a/htdocs/icons/tick.png b/kasu/static/icons/tick.png
similarity index 100%
rename from htdocs/icons/tick.png
rename to kasu/static/icons/tick.png
diff --git a/htdocs/icons/time.png b/kasu/static/icons/time.png
similarity index 100%
rename from htdocs/icons/time.png
rename to kasu/static/icons/time.png
diff --git a/htdocs/icons/time_add.png b/kasu/static/icons/time_add.png
similarity index 100%
rename from htdocs/icons/time_add.png
rename to kasu/static/icons/time_add.png
diff --git a/htdocs/icons/time_delete.png b/kasu/static/icons/time_delete.png
similarity index 100%
rename from htdocs/icons/time_delete.png
rename to kasu/static/icons/time_delete.png
diff --git a/htdocs/icons/time_go.png b/kasu/static/icons/time_go.png
similarity index 100%
rename from htdocs/icons/time_go.png
rename to kasu/static/icons/time_go.png
diff --git a/htdocs/icons/timeline_marker.png b/kasu/static/icons/timeline_marker.png
similarity index 100%
rename from htdocs/icons/timeline_marker.png
rename to kasu/static/icons/timeline_marker.png
diff --git a/htdocs/icons/transmit.png b/kasu/static/icons/transmit.png
similarity index 100%
rename from htdocs/icons/transmit.png
rename to kasu/static/icons/transmit.png
diff --git a/htdocs/icons/transmit_add.png b/kasu/static/icons/transmit_add.png
similarity index 100%
rename from htdocs/icons/transmit_add.png
rename to kasu/static/icons/transmit_add.png
diff --git a/htdocs/icons/transmit_blue.png b/kasu/static/icons/transmit_blue.png
similarity index 100%
rename from htdocs/icons/transmit_blue.png
rename to kasu/static/icons/transmit_blue.png
diff --git a/htdocs/icons/transmit_delete.png b/kasu/static/icons/transmit_delete.png
similarity index 100%
rename from htdocs/icons/transmit_delete.png
rename to kasu/static/icons/transmit_delete.png
diff --git a/htdocs/icons/transmit_edit.png b/kasu/static/icons/transmit_edit.png
similarity index 100%
rename from htdocs/icons/transmit_edit.png
rename to kasu/static/icons/transmit_edit.png
diff --git a/htdocs/icons/transmit_error.png b/kasu/static/icons/transmit_error.png
similarity index 100%
rename from htdocs/icons/transmit_error.png
rename to kasu/static/icons/transmit_error.png
diff --git a/htdocs/icons/transmit_go.png b/kasu/static/icons/transmit_go.png
similarity index 100%
rename from htdocs/icons/transmit_go.png
rename to kasu/static/icons/transmit_go.png
diff --git a/htdocs/icons/tux.png b/kasu/static/icons/tux.png
similarity index 100%
rename from htdocs/icons/tux.png
rename to kasu/static/icons/tux.png
diff --git a/htdocs/icons/user.png b/kasu/static/icons/user.png
similarity index 100%
rename from htdocs/icons/user.png
rename to kasu/static/icons/user.png
diff --git a/htdocs/icons/user_add.png b/kasu/static/icons/user_add.png
similarity index 100%
rename from htdocs/icons/user_add.png
rename to kasu/static/icons/user_add.png
diff --git a/htdocs/icons/user_comment.png b/kasu/static/icons/user_comment.png
similarity index 100%
rename from htdocs/icons/user_comment.png
rename to kasu/static/icons/user_comment.png
diff --git a/htdocs/icons/user_delete.png b/kasu/static/icons/user_delete.png
similarity index 100%
rename from htdocs/icons/user_delete.png
rename to kasu/static/icons/user_delete.png
diff --git a/htdocs/icons/user_edit.png b/kasu/static/icons/user_edit.png
similarity index 100%
rename from htdocs/icons/user_edit.png
rename to kasu/static/icons/user_edit.png
diff --git a/htdocs/icons/user_female.png b/kasu/static/icons/user_female.png
similarity index 100%
rename from htdocs/icons/user_female.png
rename to kasu/static/icons/user_female.png
diff --git a/htdocs/icons/user_go.png b/kasu/static/icons/user_go.png
similarity index 100%
rename from htdocs/icons/user_go.png
rename to kasu/static/icons/user_go.png
diff --git a/htdocs/icons/user_gray.png b/kasu/static/icons/user_gray.png
similarity index 100%
rename from htdocs/icons/user_gray.png
rename to kasu/static/icons/user_gray.png
diff --git a/htdocs/icons/user_green.png b/kasu/static/icons/user_green.png
similarity index 100%
rename from htdocs/icons/user_green.png
rename to kasu/static/icons/user_green.png
diff --git a/htdocs/icons/user_orange.png b/kasu/static/icons/user_orange.png
similarity index 100%
rename from htdocs/icons/user_orange.png
rename to kasu/static/icons/user_orange.png
diff --git a/htdocs/icons/user_red.png b/kasu/static/icons/user_red.png
similarity index 100%
rename from htdocs/icons/user_red.png
rename to kasu/static/icons/user_red.png
diff --git a/htdocs/icons/user_suit.png b/kasu/static/icons/user_suit.png
similarity index 100%
rename from htdocs/icons/user_suit.png
rename to kasu/static/icons/user_suit.png
diff --git a/htdocs/icons/vcard.png b/kasu/static/icons/vcard.png
similarity index 100%
rename from htdocs/icons/vcard.png
rename to kasu/static/icons/vcard.png
diff --git a/htdocs/icons/vcard_add.png b/kasu/static/icons/vcard_add.png
similarity index 100%
rename from htdocs/icons/vcard_add.png
rename to kasu/static/icons/vcard_add.png
diff --git a/htdocs/icons/vcard_delete.png b/kasu/static/icons/vcard_delete.png
similarity index 100%
rename from htdocs/icons/vcard_delete.png
rename to kasu/static/icons/vcard_delete.png
diff --git a/htdocs/icons/vcard_edit.png b/kasu/static/icons/vcard_edit.png
similarity index 100%
rename from htdocs/icons/vcard_edit.png
rename to kasu/static/icons/vcard_edit.png
diff --git a/htdocs/icons/vector.png b/kasu/static/icons/vector.png
similarity index 100%
rename from htdocs/icons/vector.png
rename to kasu/static/icons/vector.png
diff --git a/htdocs/icons/vector_add.png b/kasu/static/icons/vector_add.png
similarity index 100%
rename from htdocs/icons/vector_add.png
rename to kasu/static/icons/vector_add.png
diff --git a/htdocs/icons/vector_delete.png b/kasu/static/icons/vector_delete.png
similarity index 100%
rename from htdocs/icons/vector_delete.png
rename to kasu/static/icons/vector_delete.png
diff --git a/htdocs/icons/wand.png b/kasu/static/icons/wand.png
similarity index 100%
rename from htdocs/icons/wand.png
rename to kasu/static/icons/wand.png
diff --git a/htdocs/icons/weather_clouds.png b/kasu/static/icons/weather_clouds.png
similarity index 100%
rename from htdocs/icons/weather_clouds.png
rename to kasu/static/icons/weather_clouds.png
diff --git a/htdocs/icons/weather_cloudy.png b/kasu/static/icons/weather_cloudy.png
similarity index 100%
rename from htdocs/icons/weather_cloudy.png
rename to kasu/static/icons/weather_cloudy.png
diff --git a/htdocs/icons/weather_lightning.png b/kasu/static/icons/weather_lightning.png
similarity index 100%
rename from htdocs/icons/weather_lightning.png
rename to kasu/static/icons/weather_lightning.png
diff --git a/htdocs/icons/weather_rain.png b/kasu/static/icons/weather_rain.png
similarity index 100%
rename from htdocs/icons/weather_rain.png
rename to kasu/static/icons/weather_rain.png
diff --git a/htdocs/icons/weather_snow.png b/kasu/static/icons/weather_snow.png
similarity index 100%
rename from htdocs/icons/weather_snow.png
rename to kasu/static/icons/weather_snow.png
diff --git a/htdocs/icons/weather_sun.png b/kasu/static/icons/weather_sun.png
similarity index 100%
rename from htdocs/icons/weather_sun.png
rename to kasu/static/icons/weather_sun.png
diff --git a/htdocs/icons/webcam.png b/kasu/static/icons/webcam.png
similarity index 100%
rename from htdocs/icons/webcam.png
rename to kasu/static/icons/webcam.png
diff --git a/htdocs/icons/webcam_add.png b/kasu/static/icons/webcam_add.png
similarity index 100%
rename from htdocs/icons/webcam_add.png
rename to kasu/static/icons/webcam_add.png
diff --git a/htdocs/icons/webcam_delete.png b/kasu/static/icons/webcam_delete.png
similarity index 100%
rename from htdocs/icons/webcam_delete.png
rename to kasu/static/icons/webcam_delete.png
diff --git a/htdocs/icons/webcam_error.png b/kasu/static/icons/webcam_error.png
similarity index 100%
rename from htdocs/icons/webcam_error.png
rename to kasu/static/icons/webcam_error.png
diff --git a/htdocs/icons/world.png b/kasu/static/icons/world.png
similarity index 100%
rename from htdocs/icons/world.png
rename to kasu/static/icons/world.png
diff --git a/htdocs/icons/world_add.png b/kasu/static/icons/world_add.png
similarity index 100%
rename from htdocs/icons/world_add.png
rename to kasu/static/icons/world_add.png
diff --git a/htdocs/icons/world_delete.png b/kasu/static/icons/world_delete.png
similarity index 100%
rename from htdocs/icons/world_delete.png
rename to kasu/static/icons/world_delete.png
diff --git a/htdocs/icons/world_edit.png b/kasu/static/icons/world_edit.png
similarity index 100%
rename from htdocs/icons/world_edit.png
rename to kasu/static/icons/world_edit.png
diff --git a/htdocs/icons/world_go.png b/kasu/static/icons/world_go.png
similarity index 100%
rename from htdocs/icons/world_go.png
rename to kasu/static/icons/world_go.png
diff --git a/htdocs/icons/world_link.png b/kasu/static/icons/world_link.png
similarity index 100%
rename from htdocs/icons/world_link.png
rename to kasu/static/icons/world_link.png
diff --git a/htdocs/icons/wrench.png b/kasu/static/icons/wrench.png
similarity index 100%
rename from htdocs/icons/wrench.png
rename to kasu/static/icons/wrench.png
diff --git a/htdocs/icons/wrench_orange.png b/kasu/static/icons/wrench_orange.png
similarity index 100%
rename from htdocs/icons/wrench_orange.png
rename to kasu/static/icons/wrench_orange.png
diff --git a/htdocs/icons/xhtml.png b/kasu/static/icons/xhtml.png
similarity index 100%
rename from htdocs/icons/xhtml.png
rename to kasu/static/icons/xhtml.png
diff --git a/htdocs/icons/xhtml_add.png b/kasu/static/icons/xhtml_add.png
similarity index 100%
rename from htdocs/icons/xhtml_add.png
rename to kasu/static/icons/xhtml_add.png
diff --git a/htdocs/icons/xhtml_delete.png b/kasu/static/icons/xhtml_delete.png
similarity index 100%
rename from htdocs/icons/xhtml_delete.png
rename to kasu/static/icons/xhtml_delete.png
diff --git a/htdocs/icons/xhtml_go.png b/kasu/static/icons/xhtml_go.png
similarity index 100%
rename from htdocs/icons/xhtml_go.png
rename to kasu/static/icons/xhtml_go.png
diff --git a/htdocs/icons/xhtml_valid.png b/kasu/static/icons/xhtml_valid.png
similarity index 100%
rename from htdocs/icons/xhtml_valid.png
rename to kasu/static/icons/xhtml_valid.png
diff --git a/htdocs/icons/zoom.png b/kasu/static/icons/zoom.png
similarity index 100%
rename from htdocs/icons/zoom.png
rename to kasu/static/icons/zoom.png
diff --git a/htdocs/icons/zoom_in.png b/kasu/static/icons/zoom_in.png
similarity index 100%
rename from htdocs/icons/zoom_in.png
rename to kasu/static/icons/zoom_in.png
diff --git a/htdocs/icons/zoom_out.png b/kasu/static/icons/zoom_out.png
similarity index 100%
rename from htdocs/icons/zoom_out.png
rename to kasu/static/icons/zoom_out.png
diff --git a/htdocs/img/background.gif b/kasu/static/img/background.gif
similarity index 100%
rename from htdocs/img/background.gif
rename to kasu/static/img/background.gif
diff --git a/htdocs/img/background.png b/kasu/static/img/background.png
similarity index 100%
rename from htdocs/img/background.png
rename to kasu/static/img/background.png
diff --git a/htdocs/img/background_mobile.png b/kasu/static/img/background_mobile.png
similarity index 100%
rename from htdocs/img/background_mobile.png
rename to kasu/static/img/background_mobile.png
diff --git a/htdocs/img/backup/background.gif b/kasu/static/img/backup/background.gif
similarity index 100%
rename from htdocs/img/backup/background.gif
rename to kasu/static/img/backup/background.gif
diff --git a/htdocs/img/backup/footer-bg.png b/kasu/static/img/backup/footer-bg.png
similarity index 100%
rename from htdocs/img/backup/footer-bg.png
rename to kasu/static/img/backup/footer-bg.png
diff --git a/htdocs/img/backup/top-bg.png b/kasu/static/img/backup/top-bg.png
similarity index 100%
rename from htdocs/img/backup/top-bg.png
rename to kasu/static/img/backup/top-bg.png
diff --git a/htdocs/img/buttonbar.gif b/kasu/static/img/buttonbar.gif
similarity index 100%
rename from htdocs/img/buttonbar.gif
rename to kasu/static/img/buttonbar.gif
diff --git a/htdocs/img/facebook.png b/kasu/static/img/facebook.png
similarity index 100%
rename from htdocs/img/facebook.png
rename to kasu/static/img/facebook.png
diff --git a/htdocs/img/favicon.ico b/kasu/static/img/favicon.ico
similarity index 100%
rename from htdocs/img/favicon.ico
rename to kasu/static/img/favicon.ico
diff --git a/htdocs/img/footer-bg.old b/kasu/static/img/footer-bg.old
similarity index 100%
rename from htdocs/img/footer-bg.old
rename to kasu/static/img/footer-bg.old
diff --git a/htdocs/img/footer-bg.png b/kasu/static/img/footer-bg.png
similarity index 100%
rename from htdocs/img/footer-bg.png
rename to kasu/static/img/footer-bg.png
diff --git a/htdocs/img/footer-bg.xcf b/kasu/static/img/footer-bg.xcf
similarity index 100%
rename from htdocs/img/footer-bg.xcf
rename to kasu/static/img/footer-bg.xcf
diff --git a/htdocs/img/footer_bg.png b/kasu/static/img/footer_bg.png
similarity index 100%
rename from htdocs/img/footer_bg.png
rename to kasu/static/img/footer_bg.png
diff --git a/htdocs/img/google.png b/kasu/static/img/google.png
similarity index 100%
rename from htdocs/img/google.png
rename to kasu/static/img/google.png
diff --git a/htdocs/img/google_maps.png b/kasu/static/img/google_maps.png
similarity index 100%
rename from htdocs/img/google_maps.png
rename to kasu/static/img/google_maps.png
diff --git a/htdocs/img/google_plus.png b/kasu/static/img/google_plus.png
similarity index 100%
rename from htdocs/img/google_plus.png
rename to kasu/static/img/google_plus.png
diff --git a/htdocs/img/gray-swoop.png b/kasu/static/img/gray-swoop.png
similarity index 100%
rename from htdocs/img/gray-swoop.png
rename to kasu/static/img/gray-swoop.png
diff --git a/htdocs/img/header_bg.png b/kasu/static/img/header_bg.png
similarity index 100%
rename from htdocs/img/header_bg.png
rename to kasu/static/img/header_bg.png
diff --git a/htdocs/img/ical_feed.gif b/kasu/static/img/ical_feed.gif
similarity index 100%
rename from htdocs/img/ical_feed.gif
rename to kasu/static/img/ical_feed.gif
diff --git a/htdocs/img/icons/accept.png b/kasu/static/img/icons/accept.png
similarity index 100%
rename from htdocs/img/icons/accept.png
rename to kasu/static/img/icons/accept.png
diff --git a/htdocs/img/icons/add.png b/kasu/static/img/icons/add.png
similarity index 100%
rename from htdocs/img/icons/add.png
rename to kasu/static/img/icons/add.png
diff --git a/htdocs/img/icons/anchor.png b/kasu/static/img/icons/anchor.png
similarity index 100%
rename from htdocs/img/icons/anchor.png
rename to kasu/static/img/icons/anchor.png
diff --git a/htdocs/img/icons/application.png b/kasu/static/img/icons/application.png
similarity index 100%
rename from htdocs/img/icons/application.png
rename to kasu/static/img/icons/application.png
diff --git a/htdocs/img/icons/application_add.png b/kasu/static/img/icons/application_add.png
similarity index 100%
rename from htdocs/img/icons/application_add.png
rename to kasu/static/img/icons/application_add.png
diff --git a/htdocs/img/icons/application_cascade.png b/kasu/static/img/icons/application_cascade.png
similarity index 100%
rename from htdocs/img/icons/application_cascade.png
rename to kasu/static/img/icons/application_cascade.png
diff --git a/htdocs/img/icons/application_delete.png b/kasu/static/img/icons/application_delete.png
similarity index 100%
rename from htdocs/img/icons/application_delete.png
rename to kasu/static/img/icons/application_delete.png
diff --git a/htdocs/img/icons/application_double.png b/kasu/static/img/icons/application_double.png
similarity index 100%
rename from htdocs/img/icons/application_double.png
rename to kasu/static/img/icons/application_double.png
diff --git a/htdocs/img/icons/application_edit.png b/kasu/static/img/icons/application_edit.png
similarity index 100%
rename from htdocs/img/icons/application_edit.png
rename to kasu/static/img/icons/application_edit.png
diff --git a/htdocs/img/icons/application_error.png b/kasu/static/img/icons/application_error.png
similarity index 100%
rename from htdocs/img/icons/application_error.png
rename to kasu/static/img/icons/application_error.png
diff --git a/htdocs/img/icons/application_form.png b/kasu/static/img/icons/application_form.png
similarity index 100%
rename from htdocs/img/icons/application_form.png
rename to kasu/static/img/icons/application_form.png
diff --git a/htdocs/img/icons/application_form_add.png b/kasu/static/img/icons/application_form_add.png
similarity index 100%
rename from htdocs/img/icons/application_form_add.png
rename to kasu/static/img/icons/application_form_add.png
diff --git a/htdocs/img/icons/application_form_delete.png b/kasu/static/img/icons/application_form_delete.png
similarity index 100%
rename from htdocs/img/icons/application_form_delete.png
rename to kasu/static/img/icons/application_form_delete.png
diff --git a/htdocs/img/icons/application_form_edit.png b/kasu/static/img/icons/application_form_edit.png
similarity index 100%
rename from htdocs/img/icons/application_form_edit.png
rename to kasu/static/img/icons/application_form_edit.png
diff --git a/htdocs/img/icons/application_form_magnify.png b/kasu/static/img/icons/application_form_magnify.png
similarity index 100%
rename from htdocs/img/icons/application_form_magnify.png
rename to kasu/static/img/icons/application_form_magnify.png
diff --git a/htdocs/img/icons/application_get.png b/kasu/static/img/icons/application_get.png
similarity index 100%
rename from htdocs/img/icons/application_get.png
rename to kasu/static/img/icons/application_get.png
diff --git a/htdocs/img/icons/application_go.png b/kasu/static/img/icons/application_go.png
similarity index 100%
rename from htdocs/img/icons/application_go.png
rename to kasu/static/img/icons/application_go.png
diff --git a/htdocs/img/icons/application_home.png b/kasu/static/img/icons/application_home.png
similarity index 100%
rename from htdocs/img/icons/application_home.png
rename to kasu/static/img/icons/application_home.png
diff --git a/htdocs/img/icons/application_key.png b/kasu/static/img/icons/application_key.png
similarity index 100%
rename from htdocs/img/icons/application_key.png
rename to kasu/static/img/icons/application_key.png
diff --git a/htdocs/img/icons/application_lightning.png b/kasu/static/img/icons/application_lightning.png
similarity index 100%
rename from htdocs/img/icons/application_lightning.png
rename to kasu/static/img/icons/application_lightning.png
diff --git a/htdocs/img/icons/application_link.png b/kasu/static/img/icons/application_link.png
similarity index 100%
rename from htdocs/img/icons/application_link.png
rename to kasu/static/img/icons/application_link.png
diff --git a/htdocs/img/icons/application_osx.png b/kasu/static/img/icons/application_osx.png
similarity index 100%
rename from htdocs/img/icons/application_osx.png
rename to kasu/static/img/icons/application_osx.png
diff --git a/htdocs/img/icons/application_osx_terminal.png b/kasu/static/img/icons/application_osx_terminal.png
similarity index 100%
rename from htdocs/img/icons/application_osx_terminal.png
rename to kasu/static/img/icons/application_osx_terminal.png
diff --git a/htdocs/img/icons/application_put.png b/kasu/static/img/icons/application_put.png
similarity index 100%
rename from htdocs/img/icons/application_put.png
rename to kasu/static/img/icons/application_put.png
diff --git a/htdocs/img/icons/application_side_boxes.png b/kasu/static/img/icons/application_side_boxes.png
similarity index 100%
rename from htdocs/img/icons/application_side_boxes.png
rename to kasu/static/img/icons/application_side_boxes.png
diff --git a/htdocs/img/icons/application_side_contract.png b/kasu/static/img/icons/application_side_contract.png
similarity index 100%
rename from htdocs/img/icons/application_side_contract.png
rename to kasu/static/img/icons/application_side_contract.png
diff --git a/htdocs/img/icons/application_side_expand.png b/kasu/static/img/icons/application_side_expand.png
similarity index 100%
rename from htdocs/img/icons/application_side_expand.png
rename to kasu/static/img/icons/application_side_expand.png
diff --git a/htdocs/img/icons/application_side_list.png b/kasu/static/img/icons/application_side_list.png
similarity index 100%
rename from htdocs/img/icons/application_side_list.png
rename to kasu/static/img/icons/application_side_list.png
diff --git a/htdocs/img/icons/application_side_tree.png b/kasu/static/img/icons/application_side_tree.png
similarity index 100%
rename from htdocs/img/icons/application_side_tree.png
rename to kasu/static/img/icons/application_side_tree.png
diff --git a/htdocs/img/icons/application_split.png b/kasu/static/img/icons/application_split.png
similarity index 100%
rename from htdocs/img/icons/application_split.png
rename to kasu/static/img/icons/application_split.png
diff --git a/htdocs/img/icons/application_tile_horizontal.png b/kasu/static/img/icons/application_tile_horizontal.png
similarity index 100%
rename from htdocs/img/icons/application_tile_horizontal.png
rename to kasu/static/img/icons/application_tile_horizontal.png
diff --git a/htdocs/img/icons/application_tile_vertical.png b/kasu/static/img/icons/application_tile_vertical.png
similarity index 100%
rename from htdocs/img/icons/application_tile_vertical.png
rename to kasu/static/img/icons/application_tile_vertical.png
diff --git a/htdocs/img/icons/application_view_columns.png b/kasu/static/img/icons/application_view_columns.png
similarity index 100%
rename from htdocs/img/icons/application_view_columns.png
rename to kasu/static/img/icons/application_view_columns.png
diff --git a/htdocs/img/icons/application_view_detail.png b/kasu/static/img/icons/application_view_detail.png
similarity index 100%
rename from htdocs/img/icons/application_view_detail.png
rename to kasu/static/img/icons/application_view_detail.png
diff --git a/htdocs/img/icons/application_view_gallery.png b/kasu/static/img/icons/application_view_gallery.png
similarity index 100%
rename from htdocs/img/icons/application_view_gallery.png
rename to kasu/static/img/icons/application_view_gallery.png
diff --git a/htdocs/img/icons/application_view_icons.png b/kasu/static/img/icons/application_view_icons.png
similarity index 100%
rename from htdocs/img/icons/application_view_icons.png
rename to kasu/static/img/icons/application_view_icons.png
diff --git a/htdocs/img/icons/application_view_list.png b/kasu/static/img/icons/application_view_list.png
similarity index 100%
rename from htdocs/img/icons/application_view_list.png
rename to kasu/static/img/icons/application_view_list.png
diff --git a/htdocs/img/icons/application_view_tile.png b/kasu/static/img/icons/application_view_tile.png
similarity index 100%
rename from htdocs/img/icons/application_view_tile.png
rename to kasu/static/img/icons/application_view_tile.png
diff --git a/htdocs/img/icons/application_xp.png b/kasu/static/img/icons/application_xp.png
similarity index 100%
rename from htdocs/img/icons/application_xp.png
rename to kasu/static/img/icons/application_xp.png
diff --git a/htdocs/img/icons/application_xp_terminal.png b/kasu/static/img/icons/application_xp_terminal.png
similarity index 100%
rename from htdocs/img/icons/application_xp_terminal.png
rename to kasu/static/img/icons/application_xp_terminal.png
diff --git a/htdocs/img/icons/arrow_branch.png b/kasu/static/img/icons/arrow_branch.png
similarity index 100%
rename from htdocs/img/icons/arrow_branch.png
rename to kasu/static/img/icons/arrow_branch.png
diff --git a/htdocs/img/icons/arrow_divide.png b/kasu/static/img/icons/arrow_divide.png
similarity index 100%
rename from htdocs/img/icons/arrow_divide.png
rename to kasu/static/img/icons/arrow_divide.png
diff --git a/htdocs/img/icons/arrow_down.png b/kasu/static/img/icons/arrow_down.png
similarity index 100%
rename from htdocs/img/icons/arrow_down.png
rename to kasu/static/img/icons/arrow_down.png
diff --git a/htdocs/img/icons/arrow_in.png b/kasu/static/img/icons/arrow_in.png
similarity index 100%
rename from htdocs/img/icons/arrow_in.png
rename to kasu/static/img/icons/arrow_in.png
diff --git a/htdocs/img/icons/arrow_inout.png b/kasu/static/img/icons/arrow_inout.png
similarity index 100%
rename from htdocs/img/icons/arrow_inout.png
rename to kasu/static/img/icons/arrow_inout.png
diff --git a/htdocs/img/icons/arrow_join.png b/kasu/static/img/icons/arrow_join.png
similarity index 100%
rename from htdocs/img/icons/arrow_join.png
rename to kasu/static/img/icons/arrow_join.png
diff --git a/htdocs/img/icons/arrow_left.png b/kasu/static/img/icons/arrow_left.png
similarity index 100%
rename from htdocs/img/icons/arrow_left.png
rename to kasu/static/img/icons/arrow_left.png
diff --git a/htdocs/img/icons/arrow_merge.png b/kasu/static/img/icons/arrow_merge.png
similarity index 100%
rename from htdocs/img/icons/arrow_merge.png
rename to kasu/static/img/icons/arrow_merge.png
diff --git a/htdocs/img/icons/arrow_out.png b/kasu/static/img/icons/arrow_out.png
similarity index 100%
rename from htdocs/img/icons/arrow_out.png
rename to kasu/static/img/icons/arrow_out.png
diff --git a/htdocs/img/icons/arrow_redo.png b/kasu/static/img/icons/arrow_redo.png
similarity index 100%
rename from htdocs/img/icons/arrow_redo.png
rename to kasu/static/img/icons/arrow_redo.png
diff --git a/htdocs/img/icons/arrow_refresh.png b/kasu/static/img/icons/arrow_refresh.png
similarity index 100%
rename from htdocs/img/icons/arrow_refresh.png
rename to kasu/static/img/icons/arrow_refresh.png
diff --git a/htdocs/img/icons/arrow_refresh_small.png b/kasu/static/img/icons/arrow_refresh_small.png
similarity index 100%
rename from htdocs/img/icons/arrow_refresh_small.png
rename to kasu/static/img/icons/arrow_refresh_small.png
diff --git a/htdocs/img/icons/arrow_right.png b/kasu/static/img/icons/arrow_right.png
similarity index 100%
rename from htdocs/img/icons/arrow_right.png
rename to kasu/static/img/icons/arrow_right.png
diff --git a/htdocs/img/icons/arrow_rotate_anticlockwise.png b/kasu/static/img/icons/arrow_rotate_anticlockwise.png
similarity index 100%
rename from htdocs/img/icons/arrow_rotate_anticlockwise.png
rename to kasu/static/img/icons/arrow_rotate_anticlockwise.png
diff --git a/htdocs/img/icons/arrow_rotate_clockwise.png b/kasu/static/img/icons/arrow_rotate_clockwise.png
similarity index 100%
rename from htdocs/img/icons/arrow_rotate_clockwise.png
rename to kasu/static/img/icons/arrow_rotate_clockwise.png
diff --git a/htdocs/img/icons/arrow_switch.png b/kasu/static/img/icons/arrow_switch.png
similarity index 100%
rename from htdocs/img/icons/arrow_switch.png
rename to kasu/static/img/icons/arrow_switch.png
diff --git a/htdocs/img/icons/arrow_turn_left.png b/kasu/static/img/icons/arrow_turn_left.png
similarity index 100%
rename from htdocs/img/icons/arrow_turn_left.png
rename to kasu/static/img/icons/arrow_turn_left.png
diff --git a/htdocs/img/icons/arrow_turn_right.png b/kasu/static/img/icons/arrow_turn_right.png
similarity index 100%
rename from htdocs/img/icons/arrow_turn_right.png
rename to kasu/static/img/icons/arrow_turn_right.png
diff --git a/htdocs/img/icons/arrow_undo.png b/kasu/static/img/icons/arrow_undo.png
similarity index 100%
rename from htdocs/img/icons/arrow_undo.png
rename to kasu/static/img/icons/arrow_undo.png
diff --git a/htdocs/img/icons/arrow_up.png b/kasu/static/img/icons/arrow_up.png
similarity index 100%
rename from htdocs/img/icons/arrow_up.png
rename to kasu/static/img/icons/arrow_up.png
diff --git a/htdocs/img/icons/asterisk_orange.png b/kasu/static/img/icons/asterisk_orange.png
similarity index 100%
rename from htdocs/img/icons/asterisk_orange.png
rename to kasu/static/img/icons/asterisk_orange.png
diff --git a/htdocs/img/icons/asterisk_yellow.png b/kasu/static/img/icons/asterisk_yellow.png
similarity index 100%
rename from htdocs/img/icons/asterisk_yellow.png
rename to kasu/static/img/icons/asterisk_yellow.png
diff --git a/htdocs/img/icons/attach.png b/kasu/static/img/icons/attach.png
similarity index 100%
rename from htdocs/img/icons/attach.png
rename to kasu/static/img/icons/attach.png
diff --git a/htdocs/img/icons/award_star_add.png b/kasu/static/img/icons/award_star_add.png
similarity index 100%
rename from htdocs/img/icons/award_star_add.png
rename to kasu/static/img/icons/award_star_add.png
diff --git a/htdocs/img/icons/award_star_bronze_1.png b/kasu/static/img/icons/award_star_bronze_1.png
similarity index 100%
rename from htdocs/img/icons/award_star_bronze_1.png
rename to kasu/static/img/icons/award_star_bronze_1.png
diff --git a/htdocs/img/icons/award_star_bronze_2.png b/kasu/static/img/icons/award_star_bronze_2.png
similarity index 100%
rename from htdocs/img/icons/award_star_bronze_2.png
rename to kasu/static/img/icons/award_star_bronze_2.png
diff --git a/htdocs/img/icons/award_star_bronze_3.png b/kasu/static/img/icons/award_star_bronze_3.png
similarity index 100%
rename from htdocs/img/icons/award_star_bronze_3.png
rename to kasu/static/img/icons/award_star_bronze_3.png
diff --git a/htdocs/img/icons/award_star_delete.png b/kasu/static/img/icons/award_star_delete.png
similarity index 100%
rename from htdocs/img/icons/award_star_delete.png
rename to kasu/static/img/icons/award_star_delete.png
diff --git a/htdocs/img/icons/award_star_gold_1.png b/kasu/static/img/icons/award_star_gold_1.png
similarity index 100%
rename from htdocs/img/icons/award_star_gold_1.png
rename to kasu/static/img/icons/award_star_gold_1.png
diff --git a/htdocs/img/icons/award_star_gold_2.png b/kasu/static/img/icons/award_star_gold_2.png
similarity index 100%
rename from htdocs/img/icons/award_star_gold_2.png
rename to kasu/static/img/icons/award_star_gold_2.png
diff --git a/htdocs/img/icons/award_star_gold_3.png b/kasu/static/img/icons/award_star_gold_3.png
similarity index 100%
rename from htdocs/img/icons/award_star_gold_3.png
rename to kasu/static/img/icons/award_star_gold_3.png
diff --git a/htdocs/img/icons/award_star_silver_1.png b/kasu/static/img/icons/award_star_silver_1.png
similarity index 100%
rename from htdocs/img/icons/award_star_silver_1.png
rename to kasu/static/img/icons/award_star_silver_1.png
diff --git a/htdocs/img/icons/award_star_silver_2.png b/kasu/static/img/icons/award_star_silver_2.png
similarity index 100%
rename from htdocs/img/icons/award_star_silver_2.png
rename to kasu/static/img/icons/award_star_silver_2.png
diff --git a/htdocs/img/icons/award_star_silver_3.png b/kasu/static/img/icons/award_star_silver_3.png
similarity index 100%
rename from htdocs/img/icons/award_star_silver_3.png
rename to kasu/static/img/icons/award_star_silver_3.png
diff --git a/htdocs/img/icons/basket.png b/kasu/static/img/icons/basket.png
similarity index 100%
rename from htdocs/img/icons/basket.png
rename to kasu/static/img/icons/basket.png
diff --git a/htdocs/img/icons/basket_add.png b/kasu/static/img/icons/basket_add.png
similarity index 100%
rename from htdocs/img/icons/basket_add.png
rename to kasu/static/img/icons/basket_add.png
diff --git a/htdocs/img/icons/basket_delete.png b/kasu/static/img/icons/basket_delete.png
similarity index 100%
rename from htdocs/img/icons/basket_delete.png
rename to kasu/static/img/icons/basket_delete.png
diff --git a/htdocs/img/icons/basket_edit.png b/kasu/static/img/icons/basket_edit.png
similarity index 100%
rename from htdocs/img/icons/basket_edit.png
rename to kasu/static/img/icons/basket_edit.png
diff --git a/htdocs/img/icons/basket_error.png b/kasu/static/img/icons/basket_error.png
similarity index 100%
rename from htdocs/img/icons/basket_error.png
rename to kasu/static/img/icons/basket_error.png
diff --git a/htdocs/img/icons/basket_go.png b/kasu/static/img/icons/basket_go.png
similarity index 100%
rename from htdocs/img/icons/basket_go.png
rename to kasu/static/img/icons/basket_go.png
diff --git a/htdocs/img/icons/basket_put.png b/kasu/static/img/icons/basket_put.png
similarity index 100%
rename from htdocs/img/icons/basket_put.png
rename to kasu/static/img/icons/basket_put.png
diff --git a/htdocs/img/icons/basket_remove.png b/kasu/static/img/icons/basket_remove.png
similarity index 100%
rename from htdocs/img/icons/basket_remove.png
rename to kasu/static/img/icons/basket_remove.png
diff --git a/htdocs/img/icons/bell.png b/kasu/static/img/icons/bell.png
similarity index 100%
rename from htdocs/img/icons/bell.png
rename to kasu/static/img/icons/bell.png
diff --git a/htdocs/img/icons/bell_add.png b/kasu/static/img/icons/bell_add.png
similarity index 100%
rename from htdocs/img/icons/bell_add.png
rename to kasu/static/img/icons/bell_add.png
diff --git a/htdocs/img/icons/bell_delete.png b/kasu/static/img/icons/bell_delete.png
similarity index 100%
rename from htdocs/img/icons/bell_delete.png
rename to kasu/static/img/icons/bell_delete.png
diff --git a/htdocs/img/icons/bell_error.png b/kasu/static/img/icons/bell_error.png
similarity index 100%
rename from htdocs/img/icons/bell_error.png
rename to kasu/static/img/icons/bell_error.png
diff --git a/htdocs/img/icons/bell_go.png b/kasu/static/img/icons/bell_go.png
similarity index 100%
rename from htdocs/img/icons/bell_go.png
rename to kasu/static/img/icons/bell_go.png
diff --git a/htdocs/img/icons/bell_link.png b/kasu/static/img/icons/bell_link.png
similarity index 100%
rename from htdocs/img/icons/bell_link.png
rename to kasu/static/img/icons/bell_link.png
diff --git a/htdocs/img/icons/bin.png b/kasu/static/img/icons/bin.png
similarity index 100%
rename from htdocs/img/icons/bin.png
rename to kasu/static/img/icons/bin.png
diff --git a/htdocs/img/icons/bin_closed.png b/kasu/static/img/icons/bin_closed.png
similarity index 100%
rename from htdocs/img/icons/bin_closed.png
rename to kasu/static/img/icons/bin_closed.png
diff --git a/htdocs/img/icons/bin_empty.png b/kasu/static/img/icons/bin_empty.png
similarity index 100%
rename from htdocs/img/icons/bin_empty.png
rename to kasu/static/img/icons/bin_empty.png
diff --git a/htdocs/img/icons/bomb.png b/kasu/static/img/icons/bomb.png
similarity index 100%
rename from htdocs/img/icons/bomb.png
rename to kasu/static/img/icons/bomb.png
diff --git a/htdocs/img/icons/book.png b/kasu/static/img/icons/book.png
similarity index 100%
rename from htdocs/img/icons/book.png
rename to kasu/static/img/icons/book.png
diff --git a/htdocs/img/icons/book_add.png b/kasu/static/img/icons/book_add.png
similarity index 100%
rename from htdocs/img/icons/book_add.png
rename to kasu/static/img/icons/book_add.png
diff --git a/htdocs/img/icons/book_addresses.png b/kasu/static/img/icons/book_addresses.png
similarity index 100%
rename from htdocs/img/icons/book_addresses.png
rename to kasu/static/img/icons/book_addresses.png
diff --git a/htdocs/img/icons/book_delete.png b/kasu/static/img/icons/book_delete.png
similarity index 100%
rename from htdocs/img/icons/book_delete.png
rename to kasu/static/img/icons/book_delete.png
diff --git a/htdocs/img/icons/book_edit.png b/kasu/static/img/icons/book_edit.png
similarity index 100%
rename from htdocs/img/icons/book_edit.png
rename to kasu/static/img/icons/book_edit.png
diff --git a/htdocs/img/icons/book_error.png b/kasu/static/img/icons/book_error.png
similarity index 100%
rename from htdocs/img/icons/book_error.png
rename to kasu/static/img/icons/book_error.png
diff --git a/htdocs/img/icons/book_go.png b/kasu/static/img/icons/book_go.png
similarity index 100%
rename from htdocs/img/icons/book_go.png
rename to kasu/static/img/icons/book_go.png
diff --git a/htdocs/img/icons/book_key.png b/kasu/static/img/icons/book_key.png
similarity index 100%
rename from htdocs/img/icons/book_key.png
rename to kasu/static/img/icons/book_key.png
diff --git a/htdocs/img/icons/book_link.png b/kasu/static/img/icons/book_link.png
similarity index 100%
rename from htdocs/img/icons/book_link.png
rename to kasu/static/img/icons/book_link.png
diff --git a/htdocs/img/icons/book_next.png b/kasu/static/img/icons/book_next.png
similarity index 100%
rename from htdocs/img/icons/book_next.png
rename to kasu/static/img/icons/book_next.png
diff --git a/htdocs/img/icons/book_open.png b/kasu/static/img/icons/book_open.png
similarity index 100%
rename from htdocs/img/icons/book_open.png
rename to kasu/static/img/icons/book_open.png
diff --git a/htdocs/img/icons/book_previous.png b/kasu/static/img/icons/book_previous.png
similarity index 100%
rename from htdocs/img/icons/book_previous.png
rename to kasu/static/img/icons/book_previous.png
diff --git a/htdocs/img/icons/box.png b/kasu/static/img/icons/box.png
similarity index 100%
rename from htdocs/img/icons/box.png
rename to kasu/static/img/icons/box.png
diff --git a/htdocs/img/icons/brick.png b/kasu/static/img/icons/brick.png
similarity index 100%
rename from htdocs/img/icons/brick.png
rename to kasu/static/img/icons/brick.png
diff --git a/htdocs/img/icons/brick_add.png b/kasu/static/img/icons/brick_add.png
similarity index 100%
rename from htdocs/img/icons/brick_add.png
rename to kasu/static/img/icons/brick_add.png
diff --git a/htdocs/img/icons/brick_delete.png b/kasu/static/img/icons/brick_delete.png
similarity index 100%
rename from htdocs/img/icons/brick_delete.png
rename to kasu/static/img/icons/brick_delete.png
diff --git a/htdocs/img/icons/brick_edit.png b/kasu/static/img/icons/brick_edit.png
similarity index 100%
rename from htdocs/img/icons/brick_edit.png
rename to kasu/static/img/icons/brick_edit.png
diff --git a/htdocs/img/icons/brick_error.png b/kasu/static/img/icons/brick_error.png
similarity index 100%
rename from htdocs/img/icons/brick_error.png
rename to kasu/static/img/icons/brick_error.png
diff --git a/htdocs/img/icons/brick_go.png b/kasu/static/img/icons/brick_go.png
similarity index 100%
rename from htdocs/img/icons/brick_go.png
rename to kasu/static/img/icons/brick_go.png
diff --git a/htdocs/img/icons/brick_link.png b/kasu/static/img/icons/brick_link.png
similarity index 100%
rename from htdocs/img/icons/brick_link.png
rename to kasu/static/img/icons/brick_link.png
diff --git a/htdocs/img/icons/bricks.png b/kasu/static/img/icons/bricks.png
similarity index 100%
rename from htdocs/img/icons/bricks.png
rename to kasu/static/img/icons/bricks.png
diff --git a/htdocs/img/icons/briefcase.png b/kasu/static/img/icons/briefcase.png
similarity index 100%
rename from htdocs/img/icons/briefcase.png
rename to kasu/static/img/icons/briefcase.png
diff --git a/htdocs/img/icons/bug.png b/kasu/static/img/icons/bug.png
similarity index 100%
rename from htdocs/img/icons/bug.png
rename to kasu/static/img/icons/bug.png
diff --git a/htdocs/img/icons/bug_add.png b/kasu/static/img/icons/bug_add.png
similarity index 100%
rename from htdocs/img/icons/bug_add.png
rename to kasu/static/img/icons/bug_add.png
diff --git a/htdocs/img/icons/bug_delete.png b/kasu/static/img/icons/bug_delete.png
similarity index 100%
rename from htdocs/img/icons/bug_delete.png
rename to kasu/static/img/icons/bug_delete.png
diff --git a/htdocs/img/icons/bug_edit.png b/kasu/static/img/icons/bug_edit.png
similarity index 100%
rename from htdocs/img/icons/bug_edit.png
rename to kasu/static/img/icons/bug_edit.png
diff --git a/htdocs/img/icons/bug_error.png b/kasu/static/img/icons/bug_error.png
similarity index 100%
rename from htdocs/img/icons/bug_error.png
rename to kasu/static/img/icons/bug_error.png
diff --git a/htdocs/img/icons/bug_go.png b/kasu/static/img/icons/bug_go.png
similarity index 100%
rename from htdocs/img/icons/bug_go.png
rename to kasu/static/img/icons/bug_go.png
diff --git a/htdocs/img/icons/bug_link.png b/kasu/static/img/icons/bug_link.png
similarity index 100%
rename from htdocs/img/icons/bug_link.png
rename to kasu/static/img/icons/bug_link.png
diff --git a/htdocs/img/icons/building.png b/kasu/static/img/icons/building.png
similarity index 100%
rename from htdocs/img/icons/building.png
rename to kasu/static/img/icons/building.png
diff --git a/htdocs/img/icons/building_add.png b/kasu/static/img/icons/building_add.png
similarity index 100%
rename from htdocs/img/icons/building_add.png
rename to kasu/static/img/icons/building_add.png
diff --git a/htdocs/img/icons/building_delete.png b/kasu/static/img/icons/building_delete.png
similarity index 100%
rename from htdocs/img/icons/building_delete.png
rename to kasu/static/img/icons/building_delete.png
diff --git a/htdocs/img/icons/building_edit.png b/kasu/static/img/icons/building_edit.png
similarity index 100%
rename from htdocs/img/icons/building_edit.png
rename to kasu/static/img/icons/building_edit.png
diff --git a/htdocs/img/icons/building_error.png b/kasu/static/img/icons/building_error.png
similarity index 100%
rename from htdocs/img/icons/building_error.png
rename to kasu/static/img/icons/building_error.png
diff --git a/htdocs/img/icons/building_go.png b/kasu/static/img/icons/building_go.png
similarity index 100%
rename from htdocs/img/icons/building_go.png
rename to kasu/static/img/icons/building_go.png
diff --git a/htdocs/img/icons/building_key.png b/kasu/static/img/icons/building_key.png
similarity index 100%
rename from htdocs/img/icons/building_key.png
rename to kasu/static/img/icons/building_key.png
diff --git a/htdocs/img/icons/building_link.png b/kasu/static/img/icons/building_link.png
similarity index 100%
rename from htdocs/img/icons/building_link.png
rename to kasu/static/img/icons/building_link.png
diff --git a/htdocs/img/icons/bullet_add.png b/kasu/static/img/icons/bullet_add.png
similarity index 100%
rename from htdocs/img/icons/bullet_add.png
rename to kasu/static/img/icons/bullet_add.png
diff --git a/htdocs/img/icons/bullet_arrow_bottom.png b/kasu/static/img/icons/bullet_arrow_bottom.png
similarity index 100%
rename from htdocs/img/icons/bullet_arrow_bottom.png
rename to kasu/static/img/icons/bullet_arrow_bottom.png
diff --git a/htdocs/img/icons/bullet_arrow_down.png b/kasu/static/img/icons/bullet_arrow_down.png
similarity index 100%
rename from htdocs/img/icons/bullet_arrow_down.png
rename to kasu/static/img/icons/bullet_arrow_down.png
diff --git a/htdocs/img/icons/bullet_arrow_top.png b/kasu/static/img/icons/bullet_arrow_top.png
similarity index 100%
rename from htdocs/img/icons/bullet_arrow_top.png
rename to kasu/static/img/icons/bullet_arrow_top.png
diff --git a/htdocs/img/icons/bullet_arrow_up.png b/kasu/static/img/icons/bullet_arrow_up.png
similarity index 100%
rename from htdocs/img/icons/bullet_arrow_up.png
rename to kasu/static/img/icons/bullet_arrow_up.png
diff --git a/htdocs/img/icons/bullet_black.png b/kasu/static/img/icons/bullet_black.png
similarity index 100%
rename from htdocs/img/icons/bullet_black.png
rename to kasu/static/img/icons/bullet_black.png
diff --git a/htdocs/img/icons/bullet_blue.png b/kasu/static/img/icons/bullet_blue.png
similarity index 100%
rename from htdocs/img/icons/bullet_blue.png
rename to kasu/static/img/icons/bullet_blue.png
diff --git a/htdocs/img/icons/bullet_delete.png b/kasu/static/img/icons/bullet_delete.png
similarity index 100%
rename from htdocs/img/icons/bullet_delete.png
rename to kasu/static/img/icons/bullet_delete.png
diff --git a/htdocs/img/icons/bullet_disk.png b/kasu/static/img/icons/bullet_disk.png
similarity index 100%
rename from htdocs/img/icons/bullet_disk.png
rename to kasu/static/img/icons/bullet_disk.png
diff --git a/htdocs/img/icons/bullet_error.png b/kasu/static/img/icons/bullet_error.png
similarity index 100%
rename from htdocs/img/icons/bullet_error.png
rename to kasu/static/img/icons/bullet_error.png
diff --git a/htdocs/img/icons/bullet_feed.png b/kasu/static/img/icons/bullet_feed.png
similarity index 100%
rename from htdocs/img/icons/bullet_feed.png
rename to kasu/static/img/icons/bullet_feed.png
diff --git a/htdocs/img/icons/bullet_go.png b/kasu/static/img/icons/bullet_go.png
similarity index 100%
rename from htdocs/img/icons/bullet_go.png
rename to kasu/static/img/icons/bullet_go.png
diff --git a/htdocs/img/icons/bullet_green.png b/kasu/static/img/icons/bullet_green.png
similarity index 100%
rename from htdocs/img/icons/bullet_green.png
rename to kasu/static/img/icons/bullet_green.png
diff --git a/htdocs/img/icons/bullet_key.png b/kasu/static/img/icons/bullet_key.png
similarity index 100%
rename from htdocs/img/icons/bullet_key.png
rename to kasu/static/img/icons/bullet_key.png
diff --git a/htdocs/img/icons/bullet_orange.png b/kasu/static/img/icons/bullet_orange.png
similarity index 100%
rename from htdocs/img/icons/bullet_orange.png
rename to kasu/static/img/icons/bullet_orange.png
diff --git a/htdocs/img/icons/bullet_picture.png b/kasu/static/img/icons/bullet_picture.png
similarity index 100%
rename from htdocs/img/icons/bullet_picture.png
rename to kasu/static/img/icons/bullet_picture.png
diff --git a/htdocs/img/icons/bullet_pink.png b/kasu/static/img/icons/bullet_pink.png
similarity index 100%
rename from htdocs/img/icons/bullet_pink.png
rename to kasu/static/img/icons/bullet_pink.png
diff --git a/htdocs/img/icons/bullet_purple.png b/kasu/static/img/icons/bullet_purple.png
similarity index 100%
rename from htdocs/img/icons/bullet_purple.png
rename to kasu/static/img/icons/bullet_purple.png
diff --git a/htdocs/img/icons/bullet_red.png b/kasu/static/img/icons/bullet_red.png
similarity index 100%
rename from htdocs/img/icons/bullet_red.png
rename to kasu/static/img/icons/bullet_red.png
diff --git a/htdocs/img/icons/bullet_star.png b/kasu/static/img/icons/bullet_star.png
similarity index 100%
rename from htdocs/img/icons/bullet_star.png
rename to kasu/static/img/icons/bullet_star.png
diff --git a/htdocs/img/icons/bullet_toggle_minus.png b/kasu/static/img/icons/bullet_toggle_minus.png
similarity index 100%
rename from htdocs/img/icons/bullet_toggle_minus.png
rename to kasu/static/img/icons/bullet_toggle_minus.png
diff --git a/htdocs/img/icons/bullet_toggle_plus.png b/kasu/static/img/icons/bullet_toggle_plus.png
similarity index 100%
rename from htdocs/img/icons/bullet_toggle_plus.png
rename to kasu/static/img/icons/bullet_toggle_plus.png
diff --git a/htdocs/img/icons/bullet_white.png b/kasu/static/img/icons/bullet_white.png
similarity index 100%
rename from htdocs/img/icons/bullet_white.png
rename to kasu/static/img/icons/bullet_white.png
diff --git a/htdocs/img/icons/bullet_wrench.png b/kasu/static/img/icons/bullet_wrench.png
similarity index 100%
rename from htdocs/img/icons/bullet_wrench.png
rename to kasu/static/img/icons/bullet_wrench.png
diff --git a/htdocs/img/icons/bullet_yellow.png b/kasu/static/img/icons/bullet_yellow.png
similarity index 100%
rename from htdocs/img/icons/bullet_yellow.png
rename to kasu/static/img/icons/bullet_yellow.png
diff --git a/htdocs/img/icons/cake.png b/kasu/static/img/icons/cake.png
similarity index 100%
rename from htdocs/img/icons/cake.png
rename to kasu/static/img/icons/cake.png
diff --git a/htdocs/img/icons/calculator.png b/kasu/static/img/icons/calculator.png
similarity index 100%
rename from htdocs/img/icons/calculator.png
rename to kasu/static/img/icons/calculator.png
diff --git a/htdocs/img/icons/calculator_add.png b/kasu/static/img/icons/calculator_add.png
similarity index 100%
rename from htdocs/img/icons/calculator_add.png
rename to kasu/static/img/icons/calculator_add.png
diff --git a/htdocs/img/icons/calculator_delete.png b/kasu/static/img/icons/calculator_delete.png
similarity index 100%
rename from htdocs/img/icons/calculator_delete.png
rename to kasu/static/img/icons/calculator_delete.png
diff --git a/htdocs/img/icons/calculator_edit.png b/kasu/static/img/icons/calculator_edit.png
similarity index 100%
rename from htdocs/img/icons/calculator_edit.png
rename to kasu/static/img/icons/calculator_edit.png
diff --git a/htdocs/img/icons/calculator_error.png b/kasu/static/img/icons/calculator_error.png
similarity index 100%
rename from htdocs/img/icons/calculator_error.png
rename to kasu/static/img/icons/calculator_error.png
diff --git a/htdocs/img/icons/calculator_link.png b/kasu/static/img/icons/calculator_link.png
similarity index 100%
rename from htdocs/img/icons/calculator_link.png
rename to kasu/static/img/icons/calculator_link.png
diff --git a/htdocs/img/icons/calendar.png b/kasu/static/img/icons/calendar.png
similarity index 100%
rename from htdocs/img/icons/calendar.png
rename to kasu/static/img/icons/calendar.png
diff --git a/htdocs/img/icons/calendar_add.png b/kasu/static/img/icons/calendar_add.png
similarity index 100%
rename from htdocs/img/icons/calendar_add.png
rename to kasu/static/img/icons/calendar_add.png
diff --git a/htdocs/img/icons/calendar_delete.png b/kasu/static/img/icons/calendar_delete.png
similarity index 100%
rename from htdocs/img/icons/calendar_delete.png
rename to kasu/static/img/icons/calendar_delete.png
diff --git a/htdocs/img/icons/calendar_edit.png b/kasu/static/img/icons/calendar_edit.png
similarity index 100%
rename from htdocs/img/icons/calendar_edit.png
rename to kasu/static/img/icons/calendar_edit.png
diff --git a/htdocs/img/icons/calendar_link.png b/kasu/static/img/icons/calendar_link.png
similarity index 100%
rename from htdocs/img/icons/calendar_link.png
rename to kasu/static/img/icons/calendar_link.png
diff --git a/htdocs/img/icons/calendar_view_day.png b/kasu/static/img/icons/calendar_view_day.png
similarity index 100%
rename from htdocs/img/icons/calendar_view_day.png
rename to kasu/static/img/icons/calendar_view_day.png
diff --git a/htdocs/img/icons/calendar_view_month.png b/kasu/static/img/icons/calendar_view_month.png
similarity index 100%
rename from htdocs/img/icons/calendar_view_month.png
rename to kasu/static/img/icons/calendar_view_month.png
diff --git a/htdocs/img/icons/calendar_view_week.png b/kasu/static/img/icons/calendar_view_week.png
similarity index 100%
rename from htdocs/img/icons/calendar_view_week.png
rename to kasu/static/img/icons/calendar_view_week.png
diff --git a/htdocs/img/icons/camera.png b/kasu/static/img/icons/camera.png
similarity index 100%
rename from htdocs/img/icons/camera.png
rename to kasu/static/img/icons/camera.png
diff --git a/htdocs/img/icons/camera_add.png b/kasu/static/img/icons/camera_add.png
similarity index 100%
rename from htdocs/img/icons/camera_add.png
rename to kasu/static/img/icons/camera_add.png
diff --git a/htdocs/img/icons/camera_delete.png b/kasu/static/img/icons/camera_delete.png
similarity index 100%
rename from htdocs/img/icons/camera_delete.png
rename to kasu/static/img/icons/camera_delete.png
diff --git a/htdocs/img/icons/camera_edit.png b/kasu/static/img/icons/camera_edit.png
similarity index 100%
rename from htdocs/img/icons/camera_edit.png
rename to kasu/static/img/icons/camera_edit.png
diff --git a/htdocs/img/icons/camera_error.png b/kasu/static/img/icons/camera_error.png
similarity index 100%
rename from htdocs/img/icons/camera_error.png
rename to kasu/static/img/icons/camera_error.png
diff --git a/htdocs/img/icons/camera_go.png b/kasu/static/img/icons/camera_go.png
similarity index 100%
rename from htdocs/img/icons/camera_go.png
rename to kasu/static/img/icons/camera_go.png
diff --git a/htdocs/img/icons/camera_link.png b/kasu/static/img/icons/camera_link.png
similarity index 100%
rename from htdocs/img/icons/camera_link.png
rename to kasu/static/img/icons/camera_link.png
diff --git a/htdocs/img/icons/camera_small.png b/kasu/static/img/icons/camera_small.png
similarity index 100%
rename from htdocs/img/icons/camera_small.png
rename to kasu/static/img/icons/camera_small.png
diff --git a/htdocs/img/icons/cancel.png b/kasu/static/img/icons/cancel.png
similarity index 100%
rename from htdocs/img/icons/cancel.png
rename to kasu/static/img/icons/cancel.png
diff --git a/htdocs/img/icons/car.png b/kasu/static/img/icons/car.png
similarity index 100%
rename from htdocs/img/icons/car.png
rename to kasu/static/img/icons/car.png
diff --git a/htdocs/img/icons/car_add.png b/kasu/static/img/icons/car_add.png
similarity index 100%
rename from htdocs/img/icons/car_add.png
rename to kasu/static/img/icons/car_add.png
diff --git a/htdocs/img/icons/car_delete.png b/kasu/static/img/icons/car_delete.png
similarity index 100%
rename from htdocs/img/icons/car_delete.png
rename to kasu/static/img/icons/car_delete.png
diff --git a/htdocs/img/icons/cart.png b/kasu/static/img/icons/cart.png
similarity index 100%
rename from htdocs/img/icons/cart.png
rename to kasu/static/img/icons/cart.png
diff --git a/htdocs/img/icons/cart_add.png b/kasu/static/img/icons/cart_add.png
similarity index 100%
rename from htdocs/img/icons/cart_add.png
rename to kasu/static/img/icons/cart_add.png
diff --git a/htdocs/img/icons/cart_delete.png b/kasu/static/img/icons/cart_delete.png
similarity index 100%
rename from htdocs/img/icons/cart_delete.png
rename to kasu/static/img/icons/cart_delete.png
diff --git a/htdocs/img/icons/cart_edit.png b/kasu/static/img/icons/cart_edit.png
similarity index 100%
rename from htdocs/img/icons/cart_edit.png
rename to kasu/static/img/icons/cart_edit.png
diff --git a/htdocs/img/icons/cart_error.png b/kasu/static/img/icons/cart_error.png
similarity index 100%
rename from htdocs/img/icons/cart_error.png
rename to kasu/static/img/icons/cart_error.png
diff --git a/htdocs/img/icons/cart_go.png b/kasu/static/img/icons/cart_go.png
similarity index 100%
rename from htdocs/img/icons/cart_go.png
rename to kasu/static/img/icons/cart_go.png
diff --git a/htdocs/img/icons/cart_put.png b/kasu/static/img/icons/cart_put.png
similarity index 100%
rename from htdocs/img/icons/cart_put.png
rename to kasu/static/img/icons/cart_put.png
diff --git a/htdocs/img/icons/cart_remove.png b/kasu/static/img/icons/cart_remove.png
similarity index 100%
rename from htdocs/img/icons/cart_remove.png
rename to kasu/static/img/icons/cart_remove.png
diff --git a/htdocs/img/icons/cd.png b/kasu/static/img/icons/cd.png
similarity index 100%
rename from htdocs/img/icons/cd.png
rename to kasu/static/img/icons/cd.png
diff --git a/htdocs/img/icons/cd_add.png b/kasu/static/img/icons/cd_add.png
similarity index 100%
rename from htdocs/img/icons/cd_add.png
rename to kasu/static/img/icons/cd_add.png
diff --git a/htdocs/img/icons/cd_burn.png b/kasu/static/img/icons/cd_burn.png
similarity index 100%
rename from htdocs/img/icons/cd_burn.png
rename to kasu/static/img/icons/cd_burn.png
diff --git a/htdocs/img/icons/cd_delete.png b/kasu/static/img/icons/cd_delete.png
similarity index 100%
rename from htdocs/img/icons/cd_delete.png
rename to kasu/static/img/icons/cd_delete.png
diff --git a/htdocs/img/icons/cd_edit.png b/kasu/static/img/icons/cd_edit.png
similarity index 100%
rename from htdocs/img/icons/cd_edit.png
rename to kasu/static/img/icons/cd_edit.png
diff --git a/htdocs/img/icons/cd_eject.png b/kasu/static/img/icons/cd_eject.png
similarity index 100%
rename from htdocs/img/icons/cd_eject.png
rename to kasu/static/img/icons/cd_eject.png
diff --git a/htdocs/img/icons/cd_go.png b/kasu/static/img/icons/cd_go.png
similarity index 100%
rename from htdocs/img/icons/cd_go.png
rename to kasu/static/img/icons/cd_go.png
diff --git a/htdocs/img/icons/chart_bar.png b/kasu/static/img/icons/chart_bar.png
similarity index 100%
rename from htdocs/img/icons/chart_bar.png
rename to kasu/static/img/icons/chart_bar.png
diff --git a/htdocs/img/icons/chart_bar_add.png b/kasu/static/img/icons/chart_bar_add.png
similarity index 100%
rename from htdocs/img/icons/chart_bar_add.png
rename to kasu/static/img/icons/chart_bar_add.png
diff --git a/htdocs/img/icons/chart_bar_delete.png b/kasu/static/img/icons/chart_bar_delete.png
similarity index 100%
rename from htdocs/img/icons/chart_bar_delete.png
rename to kasu/static/img/icons/chart_bar_delete.png
diff --git a/htdocs/img/icons/chart_bar_edit.png b/kasu/static/img/icons/chart_bar_edit.png
similarity index 100%
rename from htdocs/img/icons/chart_bar_edit.png
rename to kasu/static/img/icons/chart_bar_edit.png
diff --git a/htdocs/img/icons/chart_bar_error.png b/kasu/static/img/icons/chart_bar_error.png
similarity index 100%
rename from htdocs/img/icons/chart_bar_error.png
rename to kasu/static/img/icons/chart_bar_error.png
diff --git a/htdocs/img/icons/chart_bar_link.png b/kasu/static/img/icons/chart_bar_link.png
similarity index 100%
rename from htdocs/img/icons/chart_bar_link.png
rename to kasu/static/img/icons/chart_bar_link.png
diff --git a/htdocs/img/icons/chart_curve.png b/kasu/static/img/icons/chart_curve.png
similarity index 100%
rename from htdocs/img/icons/chart_curve.png
rename to kasu/static/img/icons/chart_curve.png
diff --git a/htdocs/img/icons/chart_curve_add.png b/kasu/static/img/icons/chart_curve_add.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_add.png
rename to kasu/static/img/icons/chart_curve_add.png
diff --git a/htdocs/img/icons/chart_curve_delete.png b/kasu/static/img/icons/chart_curve_delete.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_delete.png
rename to kasu/static/img/icons/chart_curve_delete.png
diff --git a/htdocs/img/icons/chart_curve_edit.png b/kasu/static/img/icons/chart_curve_edit.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_edit.png
rename to kasu/static/img/icons/chart_curve_edit.png
diff --git a/htdocs/img/icons/chart_curve_error.png b/kasu/static/img/icons/chart_curve_error.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_error.png
rename to kasu/static/img/icons/chart_curve_error.png
diff --git a/htdocs/img/icons/chart_curve_go.png b/kasu/static/img/icons/chart_curve_go.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_go.png
rename to kasu/static/img/icons/chart_curve_go.png
diff --git a/htdocs/img/icons/chart_curve_link.png b/kasu/static/img/icons/chart_curve_link.png
similarity index 100%
rename from htdocs/img/icons/chart_curve_link.png
rename to kasu/static/img/icons/chart_curve_link.png
diff --git a/htdocs/img/icons/chart_line.png b/kasu/static/img/icons/chart_line.png
similarity index 100%
rename from htdocs/img/icons/chart_line.png
rename to kasu/static/img/icons/chart_line.png
diff --git a/htdocs/img/icons/chart_line_add.png b/kasu/static/img/icons/chart_line_add.png
similarity index 100%
rename from htdocs/img/icons/chart_line_add.png
rename to kasu/static/img/icons/chart_line_add.png
diff --git a/htdocs/img/icons/chart_line_delete.png b/kasu/static/img/icons/chart_line_delete.png
similarity index 100%
rename from htdocs/img/icons/chart_line_delete.png
rename to kasu/static/img/icons/chart_line_delete.png
diff --git a/htdocs/img/icons/chart_line_edit.png b/kasu/static/img/icons/chart_line_edit.png
similarity index 100%
rename from htdocs/img/icons/chart_line_edit.png
rename to kasu/static/img/icons/chart_line_edit.png
diff --git a/htdocs/img/icons/chart_line_error.png b/kasu/static/img/icons/chart_line_error.png
similarity index 100%
rename from htdocs/img/icons/chart_line_error.png
rename to kasu/static/img/icons/chart_line_error.png
diff --git a/htdocs/img/icons/chart_line_link.png b/kasu/static/img/icons/chart_line_link.png
similarity index 100%
rename from htdocs/img/icons/chart_line_link.png
rename to kasu/static/img/icons/chart_line_link.png
diff --git a/htdocs/img/icons/chart_organisation.png b/kasu/static/img/icons/chart_organisation.png
similarity index 100%
rename from htdocs/img/icons/chart_organisation.png
rename to kasu/static/img/icons/chart_organisation.png
diff --git a/htdocs/img/icons/chart_organisation_add.png b/kasu/static/img/icons/chart_organisation_add.png
similarity index 100%
rename from htdocs/img/icons/chart_organisation_add.png
rename to kasu/static/img/icons/chart_organisation_add.png
diff --git a/htdocs/img/icons/chart_organisation_delete.png b/kasu/static/img/icons/chart_organisation_delete.png
similarity index 100%
rename from htdocs/img/icons/chart_organisation_delete.png
rename to kasu/static/img/icons/chart_organisation_delete.png
diff --git a/htdocs/img/icons/chart_pie.png b/kasu/static/img/icons/chart_pie.png
similarity index 100%
rename from htdocs/img/icons/chart_pie.png
rename to kasu/static/img/icons/chart_pie.png
diff --git a/htdocs/img/icons/chart_pie_add.png b/kasu/static/img/icons/chart_pie_add.png
similarity index 100%
rename from htdocs/img/icons/chart_pie_add.png
rename to kasu/static/img/icons/chart_pie_add.png
diff --git a/htdocs/img/icons/chart_pie_delete.png b/kasu/static/img/icons/chart_pie_delete.png
similarity index 100%
rename from htdocs/img/icons/chart_pie_delete.png
rename to kasu/static/img/icons/chart_pie_delete.png
diff --git a/htdocs/img/icons/chart_pie_edit.png b/kasu/static/img/icons/chart_pie_edit.png
similarity index 100%
rename from htdocs/img/icons/chart_pie_edit.png
rename to kasu/static/img/icons/chart_pie_edit.png
diff --git a/htdocs/img/icons/chart_pie_error.png b/kasu/static/img/icons/chart_pie_error.png
similarity index 100%
rename from htdocs/img/icons/chart_pie_error.png
rename to kasu/static/img/icons/chart_pie_error.png
diff --git a/htdocs/img/icons/chart_pie_link.png b/kasu/static/img/icons/chart_pie_link.png
similarity index 100%
rename from htdocs/img/icons/chart_pie_link.png
rename to kasu/static/img/icons/chart_pie_link.png
diff --git a/htdocs/img/icons/clock.png b/kasu/static/img/icons/clock.png
similarity index 100%
rename from htdocs/img/icons/clock.png
rename to kasu/static/img/icons/clock.png
diff --git a/htdocs/img/icons/clock_add.png b/kasu/static/img/icons/clock_add.png
similarity index 100%
rename from htdocs/img/icons/clock_add.png
rename to kasu/static/img/icons/clock_add.png
diff --git a/htdocs/img/icons/clock_delete.png b/kasu/static/img/icons/clock_delete.png
similarity index 100%
rename from htdocs/img/icons/clock_delete.png
rename to kasu/static/img/icons/clock_delete.png
diff --git a/htdocs/img/icons/clock_edit.png b/kasu/static/img/icons/clock_edit.png
similarity index 100%
rename from htdocs/img/icons/clock_edit.png
rename to kasu/static/img/icons/clock_edit.png
diff --git a/htdocs/img/icons/clock_error.png b/kasu/static/img/icons/clock_error.png
similarity index 100%
rename from htdocs/img/icons/clock_error.png
rename to kasu/static/img/icons/clock_error.png
diff --git a/htdocs/img/icons/clock_go.png b/kasu/static/img/icons/clock_go.png
similarity index 100%
rename from htdocs/img/icons/clock_go.png
rename to kasu/static/img/icons/clock_go.png
diff --git a/htdocs/img/icons/clock_link.png b/kasu/static/img/icons/clock_link.png
similarity index 100%
rename from htdocs/img/icons/clock_link.png
rename to kasu/static/img/icons/clock_link.png
diff --git a/htdocs/img/icons/clock_pause.png b/kasu/static/img/icons/clock_pause.png
similarity index 100%
rename from htdocs/img/icons/clock_pause.png
rename to kasu/static/img/icons/clock_pause.png
diff --git a/htdocs/img/icons/clock_play.png b/kasu/static/img/icons/clock_play.png
similarity index 100%
rename from htdocs/img/icons/clock_play.png
rename to kasu/static/img/icons/clock_play.png
diff --git a/htdocs/img/icons/clock_red.png b/kasu/static/img/icons/clock_red.png
similarity index 100%
rename from htdocs/img/icons/clock_red.png
rename to kasu/static/img/icons/clock_red.png
diff --git a/htdocs/img/icons/clock_stop.png b/kasu/static/img/icons/clock_stop.png
similarity index 100%
rename from htdocs/img/icons/clock_stop.png
rename to kasu/static/img/icons/clock_stop.png
diff --git a/htdocs/img/icons/cog.png b/kasu/static/img/icons/cog.png
similarity index 100%
rename from htdocs/img/icons/cog.png
rename to kasu/static/img/icons/cog.png
diff --git a/htdocs/img/icons/cog_add.png b/kasu/static/img/icons/cog_add.png
similarity index 100%
rename from htdocs/img/icons/cog_add.png
rename to kasu/static/img/icons/cog_add.png
diff --git a/htdocs/img/icons/cog_delete.png b/kasu/static/img/icons/cog_delete.png
similarity index 100%
rename from htdocs/img/icons/cog_delete.png
rename to kasu/static/img/icons/cog_delete.png
diff --git a/htdocs/img/icons/cog_edit.png b/kasu/static/img/icons/cog_edit.png
similarity index 100%
rename from htdocs/img/icons/cog_edit.png
rename to kasu/static/img/icons/cog_edit.png
diff --git a/htdocs/img/icons/cog_error.png b/kasu/static/img/icons/cog_error.png
similarity index 100%
rename from htdocs/img/icons/cog_error.png
rename to kasu/static/img/icons/cog_error.png
diff --git a/htdocs/img/icons/cog_go.png b/kasu/static/img/icons/cog_go.png
similarity index 100%
rename from htdocs/img/icons/cog_go.png
rename to kasu/static/img/icons/cog_go.png
diff --git a/htdocs/img/icons/coins.png b/kasu/static/img/icons/coins.png
similarity index 100%
rename from htdocs/img/icons/coins.png
rename to kasu/static/img/icons/coins.png
diff --git a/htdocs/img/icons/coins_add.png b/kasu/static/img/icons/coins_add.png
similarity index 100%
rename from htdocs/img/icons/coins_add.png
rename to kasu/static/img/icons/coins_add.png
diff --git a/htdocs/img/icons/coins_delete.png b/kasu/static/img/icons/coins_delete.png
similarity index 100%
rename from htdocs/img/icons/coins_delete.png
rename to kasu/static/img/icons/coins_delete.png
diff --git a/htdocs/img/icons/color_swatch.png b/kasu/static/img/icons/color_swatch.png
similarity index 100%
rename from htdocs/img/icons/color_swatch.png
rename to kasu/static/img/icons/color_swatch.png
diff --git a/htdocs/img/icons/color_wheel.png b/kasu/static/img/icons/color_wheel.png
similarity index 100%
rename from htdocs/img/icons/color_wheel.png
rename to kasu/static/img/icons/color_wheel.png
diff --git a/htdocs/img/icons/comment.png b/kasu/static/img/icons/comment.png
similarity index 100%
rename from htdocs/img/icons/comment.png
rename to kasu/static/img/icons/comment.png
diff --git a/htdocs/img/icons/comment_add.png b/kasu/static/img/icons/comment_add.png
similarity index 100%
rename from htdocs/img/icons/comment_add.png
rename to kasu/static/img/icons/comment_add.png
diff --git a/htdocs/img/icons/comment_delete.png b/kasu/static/img/icons/comment_delete.png
similarity index 100%
rename from htdocs/img/icons/comment_delete.png
rename to kasu/static/img/icons/comment_delete.png
diff --git a/htdocs/img/icons/comment_edit.png b/kasu/static/img/icons/comment_edit.png
similarity index 100%
rename from htdocs/img/icons/comment_edit.png
rename to kasu/static/img/icons/comment_edit.png
diff --git a/htdocs/img/icons/comments.png b/kasu/static/img/icons/comments.png
similarity index 100%
rename from htdocs/img/icons/comments.png
rename to kasu/static/img/icons/comments.png
diff --git a/htdocs/img/icons/comments_add.png b/kasu/static/img/icons/comments_add.png
similarity index 100%
rename from htdocs/img/icons/comments_add.png
rename to kasu/static/img/icons/comments_add.png
diff --git a/htdocs/img/icons/comments_delete.png b/kasu/static/img/icons/comments_delete.png
similarity index 100%
rename from htdocs/img/icons/comments_delete.png
rename to kasu/static/img/icons/comments_delete.png
diff --git a/htdocs/img/icons/compress.png b/kasu/static/img/icons/compress.png
similarity index 100%
rename from htdocs/img/icons/compress.png
rename to kasu/static/img/icons/compress.png
diff --git a/htdocs/img/icons/computer.png b/kasu/static/img/icons/computer.png
similarity index 100%
rename from htdocs/img/icons/computer.png
rename to kasu/static/img/icons/computer.png
diff --git a/htdocs/img/icons/computer_add.png b/kasu/static/img/icons/computer_add.png
similarity index 100%
rename from htdocs/img/icons/computer_add.png
rename to kasu/static/img/icons/computer_add.png
diff --git a/htdocs/img/icons/computer_delete.png b/kasu/static/img/icons/computer_delete.png
similarity index 100%
rename from htdocs/img/icons/computer_delete.png
rename to kasu/static/img/icons/computer_delete.png
diff --git a/htdocs/img/icons/computer_edit.png b/kasu/static/img/icons/computer_edit.png
similarity index 100%
rename from htdocs/img/icons/computer_edit.png
rename to kasu/static/img/icons/computer_edit.png
diff --git a/htdocs/img/icons/computer_error.png b/kasu/static/img/icons/computer_error.png
similarity index 100%
rename from htdocs/img/icons/computer_error.png
rename to kasu/static/img/icons/computer_error.png
diff --git a/htdocs/img/icons/computer_go.png b/kasu/static/img/icons/computer_go.png
similarity index 100%
rename from htdocs/img/icons/computer_go.png
rename to kasu/static/img/icons/computer_go.png
diff --git a/htdocs/img/icons/computer_key.png b/kasu/static/img/icons/computer_key.png
similarity index 100%
rename from htdocs/img/icons/computer_key.png
rename to kasu/static/img/icons/computer_key.png
diff --git a/htdocs/img/icons/computer_link.png b/kasu/static/img/icons/computer_link.png
similarity index 100%
rename from htdocs/img/icons/computer_link.png
rename to kasu/static/img/icons/computer_link.png
diff --git a/htdocs/img/icons/connect.png b/kasu/static/img/icons/connect.png
similarity index 100%
rename from htdocs/img/icons/connect.png
rename to kasu/static/img/icons/connect.png
diff --git a/htdocs/img/icons/contrast.png b/kasu/static/img/icons/contrast.png
similarity index 100%
rename from htdocs/img/icons/contrast.png
rename to kasu/static/img/icons/contrast.png
diff --git a/htdocs/img/icons/contrast_decrease.png b/kasu/static/img/icons/contrast_decrease.png
similarity index 100%
rename from htdocs/img/icons/contrast_decrease.png
rename to kasu/static/img/icons/contrast_decrease.png
diff --git a/htdocs/img/icons/contrast_high.png b/kasu/static/img/icons/contrast_high.png
similarity index 100%
rename from htdocs/img/icons/contrast_high.png
rename to kasu/static/img/icons/contrast_high.png
diff --git a/htdocs/img/icons/contrast_increase.png b/kasu/static/img/icons/contrast_increase.png
similarity index 100%
rename from htdocs/img/icons/contrast_increase.png
rename to kasu/static/img/icons/contrast_increase.png
diff --git a/htdocs/img/icons/contrast_low.png b/kasu/static/img/icons/contrast_low.png
similarity index 100%
rename from htdocs/img/icons/contrast_low.png
rename to kasu/static/img/icons/contrast_low.png
diff --git a/htdocs/img/icons/control_eject.png b/kasu/static/img/icons/control_eject.png
similarity index 100%
rename from htdocs/img/icons/control_eject.png
rename to kasu/static/img/icons/control_eject.png
diff --git a/htdocs/img/icons/control_eject_blue.png b/kasu/static/img/icons/control_eject_blue.png
similarity index 100%
rename from htdocs/img/icons/control_eject_blue.png
rename to kasu/static/img/icons/control_eject_blue.png
diff --git a/htdocs/img/icons/control_end.png b/kasu/static/img/icons/control_end.png
similarity index 100%
rename from htdocs/img/icons/control_end.png
rename to kasu/static/img/icons/control_end.png
diff --git a/htdocs/img/icons/control_end_blue.png b/kasu/static/img/icons/control_end_blue.png
similarity index 100%
rename from htdocs/img/icons/control_end_blue.png
rename to kasu/static/img/icons/control_end_blue.png
diff --git a/htdocs/img/icons/control_equalizer.png b/kasu/static/img/icons/control_equalizer.png
similarity index 100%
rename from htdocs/img/icons/control_equalizer.png
rename to kasu/static/img/icons/control_equalizer.png
diff --git a/htdocs/img/icons/control_equalizer_blue.png b/kasu/static/img/icons/control_equalizer_blue.png
similarity index 100%
rename from htdocs/img/icons/control_equalizer_blue.png
rename to kasu/static/img/icons/control_equalizer_blue.png
diff --git a/htdocs/img/icons/control_fastforward.png b/kasu/static/img/icons/control_fastforward.png
similarity index 100%
rename from htdocs/img/icons/control_fastforward.png
rename to kasu/static/img/icons/control_fastforward.png
diff --git a/htdocs/img/icons/control_fastforward_blue.png b/kasu/static/img/icons/control_fastforward_blue.png
similarity index 100%
rename from htdocs/img/icons/control_fastforward_blue.png
rename to kasu/static/img/icons/control_fastforward_blue.png
diff --git a/htdocs/img/icons/control_pause.png b/kasu/static/img/icons/control_pause.png
similarity index 100%
rename from htdocs/img/icons/control_pause.png
rename to kasu/static/img/icons/control_pause.png
diff --git a/htdocs/img/icons/control_pause_blue.png b/kasu/static/img/icons/control_pause_blue.png
similarity index 100%
rename from htdocs/img/icons/control_pause_blue.png
rename to kasu/static/img/icons/control_pause_blue.png
diff --git a/htdocs/img/icons/control_play.png b/kasu/static/img/icons/control_play.png
similarity index 100%
rename from htdocs/img/icons/control_play.png
rename to kasu/static/img/icons/control_play.png
diff --git a/htdocs/img/icons/control_play_blue.png b/kasu/static/img/icons/control_play_blue.png
similarity index 100%
rename from htdocs/img/icons/control_play_blue.png
rename to kasu/static/img/icons/control_play_blue.png
diff --git a/htdocs/img/icons/control_repeat.png b/kasu/static/img/icons/control_repeat.png
similarity index 100%
rename from htdocs/img/icons/control_repeat.png
rename to kasu/static/img/icons/control_repeat.png
diff --git a/htdocs/img/icons/control_repeat_blue.png b/kasu/static/img/icons/control_repeat_blue.png
similarity index 100%
rename from htdocs/img/icons/control_repeat_blue.png
rename to kasu/static/img/icons/control_repeat_blue.png
diff --git a/htdocs/img/icons/control_rewind.png b/kasu/static/img/icons/control_rewind.png
similarity index 100%
rename from htdocs/img/icons/control_rewind.png
rename to kasu/static/img/icons/control_rewind.png
diff --git a/htdocs/img/icons/control_rewind_blue.png b/kasu/static/img/icons/control_rewind_blue.png
similarity index 100%
rename from htdocs/img/icons/control_rewind_blue.png
rename to kasu/static/img/icons/control_rewind_blue.png
diff --git a/htdocs/img/icons/control_start.png b/kasu/static/img/icons/control_start.png
similarity index 100%
rename from htdocs/img/icons/control_start.png
rename to kasu/static/img/icons/control_start.png
diff --git a/htdocs/img/icons/control_start_blue.png b/kasu/static/img/icons/control_start_blue.png
similarity index 100%
rename from htdocs/img/icons/control_start_blue.png
rename to kasu/static/img/icons/control_start_blue.png
diff --git a/htdocs/img/icons/control_stop.png b/kasu/static/img/icons/control_stop.png
similarity index 100%
rename from htdocs/img/icons/control_stop.png
rename to kasu/static/img/icons/control_stop.png
diff --git a/htdocs/img/icons/control_stop_blue.png b/kasu/static/img/icons/control_stop_blue.png
similarity index 100%
rename from htdocs/img/icons/control_stop_blue.png
rename to kasu/static/img/icons/control_stop_blue.png
diff --git a/htdocs/img/icons/controller.png b/kasu/static/img/icons/controller.png
similarity index 100%
rename from htdocs/img/icons/controller.png
rename to kasu/static/img/icons/controller.png
diff --git a/htdocs/img/icons/controller_add.png b/kasu/static/img/icons/controller_add.png
similarity index 100%
rename from htdocs/img/icons/controller_add.png
rename to kasu/static/img/icons/controller_add.png
diff --git a/htdocs/img/icons/controller_delete.png b/kasu/static/img/icons/controller_delete.png
similarity index 100%
rename from htdocs/img/icons/controller_delete.png
rename to kasu/static/img/icons/controller_delete.png
diff --git a/htdocs/img/icons/controller_error.png b/kasu/static/img/icons/controller_error.png
similarity index 100%
rename from htdocs/img/icons/controller_error.png
rename to kasu/static/img/icons/controller_error.png
diff --git a/htdocs/img/icons/creditcards.png b/kasu/static/img/icons/creditcards.png
similarity index 100%
rename from htdocs/img/icons/creditcards.png
rename to kasu/static/img/icons/creditcards.png
diff --git a/htdocs/img/icons/cross.png b/kasu/static/img/icons/cross.png
similarity index 100%
rename from htdocs/img/icons/cross.png
rename to kasu/static/img/icons/cross.png
diff --git a/htdocs/img/icons/css.png b/kasu/static/img/icons/css.png
similarity index 100%
rename from htdocs/img/icons/css.png
rename to kasu/static/img/icons/css.png
diff --git a/htdocs/img/icons/css_add.png b/kasu/static/img/icons/css_add.png
similarity index 100%
rename from htdocs/img/icons/css_add.png
rename to kasu/static/img/icons/css_add.png
diff --git a/htdocs/img/icons/css_delete.png b/kasu/static/img/icons/css_delete.png
similarity index 100%
rename from htdocs/img/icons/css_delete.png
rename to kasu/static/img/icons/css_delete.png
diff --git a/htdocs/img/icons/css_go.png b/kasu/static/img/icons/css_go.png
similarity index 100%
rename from htdocs/img/icons/css_go.png
rename to kasu/static/img/icons/css_go.png
diff --git a/htdocs/img/icons/css_valid.png b/kasu/static/img/icons/css_valid.png
similarity index 100%
rename from htdocs/img/icons/css_valid.png
rename to kasu/static/img/icons/css_valid.png
diff --git a/htdocs/img/icons/cup.png b/kasu/static/img/icons/cup.png
similarity index 100%
rename from htdocs/img/icons/cup.png
rename to kasu/static/img/icons/cup.png
diff --git a/htdocs/img/icons/cup_add.png b/kasu/static/img/icons/cup_add.png
similarity index 100%
rename from htdocs/img/icons/cup_add.png
rename to kasu/static/img/icons/cup_add.png
diff --git a/htdocs/img/icons/cup_delete.png b/kasu/static/img/icons/cup_delete.png
similarity index 100%
rename from htdocs/img/icons/cup_delete.png
rename to kasu/static/img/icons/cup_delete.png
diff --git a/htdocs/img/icons/cup_edit.png b/kasu/static/img/icons/cup_edit.png
similarity index 100%
rename from htdocs/img/icons/cup_edit.png
rename to kasu/static/img/icons/cup_edit.png
diff --git a/htdocs/img/icons/cup_error.png b/kasu/static/img/icons/cup_error.png
similarity index 100%
rename from htdocs/img/icons/cup_error.png
rename to kasu/static/img/icons/cup_error.png
diff --git a/htdocs/img/icons/cup_go.png b/kasu/static/img/icons/cup_go.png
similarity index 100%
rename from htdocs/img/icons/cup_go.png
rename to kasu/static/img/icons/cup_go.png
diff --git a/htdocs/img/icons/cup_key.png b/kasu/static/img/icons/cup_key.png
similarity index 100%
rename from htdocs/img/icons/cup_key.png
rename to kasu/static/img/icons/cup_key.png
diff --git a/htdocs/img/icons/cup_link.png b/kasu/static/img/icons/cup_link.png
similarity index 100%
rename from htdocs/img/icons/cup_link.png
rename to kasu/static/img/icons/cup_link.png
diff --git a/htdocs/img/icons/cursor.png b/kasu/static/img/icons/cursor.png
similarity index 100%
rename from htdocs/img/icons/cursor.png
rename to kasu/static/img/icons/cursor.png
diff --git a/htdocs/img/icons/cut.png b/kasu/static/img/icons/cut.png
similarity index 100%
rename from htdocs/img/icons/cut.png
rename to kasu/static/img/icons/cut.png
diff --git a/htdocs/img/icons/cut_red.png b/kasu/static/img/icons/cut_red.png
similarity index 100%
rename from htdocs/img/icons/cut_red.png
rename to kasu/static/img/icons/cut_red.png
diff --git a/htdocs/img/icons/database.png b/kasu/static/img/icons/database.png
similarity index 100%
rename from htdocs/img/icons/database.png
rename to kasu/static/img/icons/database.png
diff --git a/htdocs/img/icons/database_add.png b/kasu/static/img/icons/database_add.png
similarity index 100%
rename from htdocs/img/icons/database_add.png
rename to kasu/static/img/icons/database_add.png
diff --git a/htdocs/img/icons/database_connect.png b/kasu/static/img/icons/database_connect.png
similarity index 100%
rename from htdocs/img/icons/database_connect.png
rename to kasu/static/img/icons/database_connect.png
diff --git a/htdocs/img/icons/database_delete.png b/kasu/static/img/icons/database_delete.png
similarity index 100%
rename from htdocs/img/icons/database_delete.png
rename to kasu/static/img/icons/database_delete.png
diff --git a/htdocs/img/icons/database_edit.png b/kasu/static/img/icons/database_edit.png
similarity index 100%
rename from htdocs/img/icons/database_edit.png
rename to kasu/static/img/icons/database_edit.png
diff --git a/htdocs/img/icons/database_error.png b/kasu/static/img/icons/database_error.png
similarity index 100%
rename from htdocs/img/icons/database_error.png
rename to kasu/static/img/icons/database_error.png
diff --git a/htdocs/img/icons/database_gear.png b/kasu/static/img/icons/database_gear.png
similarity index 100%
rename from htdocs/img/icons/database_gear.png
rename to kasu/static/img/icons/database_gear.png
diff --git a/htdocs/img/icons/database_go.png b/kasu/static/img/icons/database_go.png
similarity index 100%
rename from htdocs/img/icons/database_go.png
rename to kasu/static/img/icons/database_go.png
diff --git a/htdocs/img/icons/database_key.png b/kasu/static/img/icons/database_key.png
similarity index 100%
rename from htdocs/img/icons/database_key.png
rename to kasu/static/img/icons/database_key.png
diff --git a/htdocs/img/icons/database_lightning.png b/kasu/static/img/icons/database_lightning.png
similarity index 100%
rename from htdocs/img/icons/database_lightning.png
rename to kasu/static/img/icons/database_lightning.png
diff --git a/htdocs/img/icons/database_link.png b/kasu/static/img/icons/database_link.png
similarity index 100%
rename from htdocs/img/icons/database_link.png
rename to kasu/static/img/icons/database_link.png
diff --git a/htdocs/img/icons/database_refresh.png b/kasu/static/img/icons/database_refresh.png
similarity index 100%
rename from htdocs/img/icons/database_refresh.png
rename to kasu/static/img/icons/database_refresh.png
diff --git a/htdocs/img/icons/database_save.png b/kasu/static/img/icons/database_save.png
similarity index 100%
rename from htdocs/img/icons/database_save.png
rename to kasu/static/img/icons/database_save.png
diff --git a/htdocs/img/icons/database_table.png b/kasu/static/img/icons/database_table.png
similarity index 100%
rename from htdocs/img/icons/database_table.png
rename to kasu/static/img/icons/database_table.png
diff --git a/htdocs/img/icons/date.png b/kasu/static/img/icons/date.png
similarity index 100%
rename from htdocs/img/icons/date.png
rename to kasu/static/img/icons/date.png
diff --git a/htdocs/img/icons/date_add.png b/kasu/static/img/icons/date_add.png
similarity index 100%
rename from htdocs/img/icons/date_add.png
rename to kasu/static/img/icons/date_add.png
diff --git a/htdocs/img/icons/date_delete.png b/kasu/static/img/icons/date_delete.png
similarity index 100%
rename from htdocs/img/icons/date_delete.png
rename to kasu/static/img/icons/date_delete.png
diff --git a/htdocs/img/icons/date_edit.png b/kasu/static/img/icons/date_edit.png
similarity index 100%
rename from htdocs/img/icons/date_edit.png
rename to kasu/static/img/icons/date_edit.png
diff --git a/htdocs/img/icons/date_error.png b/kasu/static/img/icons/date_error.png
similarity index 100%
rename from htdocs/img/icons/date_error.png
rename to kasu/static/img/icons/date_error.png
diff --git a/htdocs/img/icons/date_go.png b/kasu/static/img/icons/date_go.png
similarity index 100%
rename from htdocs/img/icons/date_go.png
rename to kasu/static/img/icons/date_go.png
diff --git a/htdocs/img/icons/date_link.png b/kasu/static/img/icons/date_link.png
similarity index 100%
rename from htdocs/img/icons/date_link.png
rename to kasu/static/img/icons/date_link.png
diff --git a/htdocs/img/icons/date_magnify.png b/kasu/static/img/icons/date_magnify.png
similarity index 100%
rename from htdocs/img/icons/date_magnify.png
rename to kasu/static/img/icons/date_magnify.png
diff --git a/htdocs/img/icons/date_next.png b/kasu/static/img/icons/date_next.png
similarity index 100%
rename from htdocs/img/icons/date_next.png
rename to kasu/static/img/icons/date_next.png
diff --git a/htdocs/img/icons/date_previous.png b/kasu/static/img/icons/date_previous.png
similarity index 100%
rename from htdocs/img/icons/date_previous.png
rename to kasu/static/img/icons/date_previous.png
diff --git a/htdocs/img/icons/delete.png b/kasu/static/img/icons/delete.png
similarity index 100%
rename from htdocs/img/icons/delete.png
rename to kasu/static/img/icons/delete.png
diff --git a/htdocs/img/icons/disconnect.png b/kasu/static/img/icons/disconnect.png
similarity index 100%
rename from htdocs/img/icons/disconnect.png
rename to kasu/static/img/icons/disconnect.png
diff --git a/htdocs/img/icons/disk.png b/kasu/static/img/icons/disk.png
similarity index 100%
rename from htdocs/img/icons/disk.png
rename to kasu/static/img/icons/disk.png
diff --git a/htdocs/img/icons/disk_multiple.png b/kasu/static/img/icons/disk_multiple.png
similarity index 100%
rename from htdocs/img/icons/disk_multiple.png
rename to kasu/static/img/icons/disk_multiple.png
diff --git a/htdocs/img/icons/door.png b/kasu/static/img/icons/door.png
similarity index 100%
rename from htdocs/img/icons/door.png
rename to kasu/static/img/icons/door.png
diff --git a/htdocs/img/icons/door_in.png b/kasu/static/img/icons/door_in.png
similarity index 100%
rename from htdocs/img/icons/door_in.png
rename to kasu/static/img/icons/door_in.png
diff --git a/htdocs/img/icons/door_open.png b/kasu/static/img/icons/door_open.png
similarity index 100%
rename from htdocs/img/icons/door_open.png
rename to kasu/static/img/icons/door_open.png
diff --git a/htdocs/img/icons/door_out.png b/kasu/static/img/icons/door_out.png
similarity index 100%
rename from htdocs/img/icons/door_out.png
rename to kasu/static/img/icons/door_out.png
diff --git a/htdocs/img/icons/drink.png b/kasu/static/img/icons/drink.png
similarity index 100%
rename from htdocs/img/icons/drink.png
rename to kasu/static/img/icons/drink.png
diff --git a/htdocs/img/icons/drink_empty.png b/kasu/static/img/icons/drink_empty.png
similarity index 100%
rename from htdocs/img/icons/drink_empty.png
rename to kasu/static/img/icons/drink_empty.png
diff --git a/htdocs/img/icons/drive.png b/kasu/static/img/icons/drive.png
similarity index 100%
rename from htdocs/img/icons/drive.png
rename to kasu/static/img/icons/drive.png
diff --git a/htdocs/img/icons/drive_add.png b/kasu/static/img/icons/drive_add.png
similarity index 100%
rename from htdocs/img/icons/drive_add.png
rename to kasu/static/img/icons/drive_add.png
diff --git a/htdocs/img/icons/drive_burn.png b/kasu/static/img/icons/drive_burn.png
similarity index 100%
rename from htdocs/img/icons/drive_burn.png
rename to kasu/static/img/icons/drive_burn.png
diff --git a/htdocs/img/icons/drive_cd.png b/kasu/static/img/icons/drive_cd.png
similarity index 100%
rename from htdocs/img/icons/drive_cd.png
rename to kasu/static/img/icons/drive_cd.png
diff --git a/htdocs/img/icons/drive_cd_empty.png b/kasu/static/img/icons/drive_cd_empty.png
similarity index 100%
rename from htdocs/img/icons/drive_cd_empty.png
rename to kasu/static/img/icons/drive_cd_empty.png
diff --git a/htdocs/img/icons/drive_delete.png b/kasu/static/img/icons/drive_delete.png
similarity index 100%
rename from htdocs/img/icons/drive_delete.png
rename to kasu/static/img/icons/drive_delete.png
diff --git a/htdocs/img/icons/drive_disk.png b/kasu/static/img/icons/drive_disk.png
similarity index 100%
rename from htdocs/img/icons/drive_disk.png
rename to kasu/static/img/icons/drive_disk.png
diff --git a/htdocs/img/icons/drive_edit.png b/kasu/static/img/icons/drive_edit.png
similarity index 100%
rename from htdocs/img/icons/drive_edit.png
rename to kasu/static/img/icons/drive_edit.png
diff --git a/htdocs/img/icons/drive_error.png b/kasu/static/img/icons/drive_error.png
similarity index 100%
rename from htdocs/img/icons/drive_error.png
rename to kasu/static/img/icons/drive_error.png
diff --git a/htdocs/img/icons/drive_go.png b/kasu/static/img/icons/drive_go.png
similarity index 100%
rename from htdocs/img/icons/drive_go.png
rename to kasu/static/img/icons/drive_go.png
diff --git a/htdocs/img/icons/drive_key.png b/kasu/static/img/icons/drive_key.png
similarity index 100%
rename from htdocs/img/icons/drive_key.png
rename to kasu/static/img/icons/drive_key.png
diff --git a/htdocs/img/icons/drive_link.png b/kasu/static/img/icons/drive_link.png
similarity index 100%
rename from htdocs/img/icons/drive_link.png
rename to kasu/static/img/icons/drive_link.png
diff --git a/htdocs/img/icons/drive_magnify.png b/kasu/static/img/icons/drive_magnify.png
similarity index 100%
rename from htdocs/img/icons/drive_magnify.png
rename to kasu/static/img/icons/drive_magnify.png
diff --git a/htdocs/img/icons/drive_network.png b/kasu/static/img/icons/drive_network.png
similarity index 100%
rename from htdocs/img/icons/drive_network.png
rename to kasu/static/img/icons/drive_network.png
diff --git a/htdocs/img/icons/drive_rename.png b/kasu/static/img/icons/drive_rename.png
similarity index 100%
rename from htdocs/img/icons/drive_rename.png
rename to kasu/static/img/icons/drive_rename.png
diff --git a/htdocs/img/icons/drive_user.png b/kasu/static/img/icons/drive_user.png
similarity index 100%
rename from htdocs/img/icons/drive_user.png
rename to kasu/static/img/icons/drive_user.png
diff --git a/htdocs/img/icons/drive_web.png b/kasu/static/img/icons/drive_web.png
similarity index 100%
rename from htdocs/img/icons/drive_web.png
rename to kasu/static/img/icons/drive_web.png
diff --git a/htdocs/img/icons/dvd.png b/kasu/static/img/icons/dvd.png
similarity index 100%
rename from htdocs/img/icons/dvd.png
rename to kasu/static/img/icons/dvd.png
diff --git a/htdocs/img/icons/dvd_add.png b/kasu/static/img/icons/dvd_add.png
similarity index 100%
rename from htdocs/img/icons/dvd_add.png
rename to kasu/static/img/icons/dvd_add.png
diff --git a/htdocs/img/icons/dvd_delete.png b/kasu/static/img/icons/dvd_delete.png
similarity index 100%
rename from htdocs/img/icons/dvd_delete.png
rename to kasu/static/img/icons/dvd_delete.png
diff --git a/htdocs/img/icons/dvd_edit.png b/kasu/static/img/icons/dvd_edit.png
similarity index 100%
rename from htdocs/img/icons/dvd_edit.png
rename to kasu/static/img/icons/dvd_edit.png
diff --git a/htdocs/img/icons/dvd_error.png b/kasu/static/img/icons/dvd_error.png
similarity index 100%
rename from htdocs/img/icons/dvd_error.png
rename to kasu/static/img/icons/dvd_error.png
diff --git a/htdocs/img/icons/dvd_go.png b/kasu/static/img/icons/dvd_go.png
similarity index 100%
rename from htdocs/img/icons/dvd_go.png
rename to kasu/static/img/icons/dvd_go.png
diff --git a/htdocs/img/icons/dvd_key.png b/kasu/static/img/icons/dvd_key.png
similarity index 100%
rename from htdocs/img/icons/dvd_key.png
rename to kasu/static/img/icons/dvd_key.png
diff --git a/htdocs/img/icons/dvd_link.png b/kasu/static/img/icons/dvd_link.png
similarity index 100%
rename from htdocs/img/icons/dvd_link.png
rename to kasu/static/img/icons/dvd_link.png
diff --git a/htdocs/img/icons/email.png b/kasu/static/img/icons/email.png
similarity index 100%
rename from htdocs/img/icons/email.png
rename to kasu/static/img/icons/email.png
diff --git a/htdocs/img/icons/email_add.png b/kasu/static/img/icons/email_add.png
similarity index 100%
rename from htdocs/img/icons/email_add.png
rename to kasu/static/img/icons/email_add.png
diff --git a/htdocs/img/icons/email_attach.png b/kasu/static/img/icons/email_attach.png
similarity index 100%
rename from htdocs/img/icons/email_attach.png
rename to kasu/static/img/icons/email_attach.png
diff --git a/htdocs/img/icons/email_delete.png b/kasu/static/img/icons/email_delete.png
similarity index 100%
rename from htdocs/img/icons/email_delete.png
rename to kasu/static/img/icons/email_delete.png
diff --git a/htdocs/img/icons/email_edit.png b/kasu/static/img/icons/email_edit.png
similarity index 100%
rename from htdocs/img/icons/email_edit.png
rename to kasu/static/img/icons/email_edit.png
diff --git a/htdocs/img/icons/email_error.png b/kasu/static/img/icons/email_error.png
similarity index 100%
rename from htdocs/img/icons/email_error.png
rename to kasu/static/img/icons/email_error.png
diff --git a/htdocs/img/icons/email_go.png b/kasu/static/img/icons/email_go.png
similarity index 100%
rename from htdocs/img/icons/email_go.png
rename to kasu/static/img/icons/email_go.png
diff --git a/htdocs/img/icons/email_link.png b/kasu/static/img/icons/email_link.png
similarity index 100%
rename from htdocs/img/icons/email_link.png
rename to kasu/static/img/icons/email_link.png
diff --git a/htdocs/img/icons/email_open.png b/kasu/static/img/icons/email_open.png
similarity index 100%
rename from htdocs/img/icons/email_open.png
rename to kasu/static/img/icons/email_open.png
diff --git a/htdocs/img/icons/email_open_image.png b/kasu/static/img/icons/email_open_image.png
similarity index 100%
rename from htdocs/img/icons/email_open_image.png
rename to kasu/static/img/icons/email_open_image.png
diff --git a/htdocs/img/icons/emoticon_evilgrin.png b/kasu/static/img/icons/emoticon_evilgrin.png
similarity index 100%
rename from htdocs/img/icons/emoticon_evilgrin.png
rename to kasu/static/img/icons/emoticon_evilgrin.png
diff --git a/htdocs/img/icons/emoticon_grin.png b/kasu/static/img/icons/emoticon_grin.png
similarity index 100%
rename from htdocs/img/icons/emoticon_grin.png
rename to kasu/static/img/icons/emoticon_grin.png
diff --git a/htdocs/img/icons/emoticon_happy.png b/kasu/static/img/icons/emoticon_happy.png
similarity index 100%
rename from htdocs/img/icons/emoticon_happy.png
rename to kasu/static/img/icons/emoticon_happy.png
diff --git a/htdocs/img/icons/emoticon_smile.png b/kasu/static/img/icons/emoticon_smile.png
similarity index 100%
rename from htdocs/img/icons/emoticon_smile.png
rename to kasu/static/img/icons/emoticon_smile.png
diff --git a/htdocs/img/icons/emoticon_surprised.png b/kasu/static/img/icons/emoticon_surprised.png
similarity index 100%
rename from htdocs/img/icons/emoticon_surprised.png
rename to kasu/static/img/icons/emoticon_surprised.png
diff --git a/htdocs/img/icons/emoticon_tongue.png b/kasu/static/img/icons/emoticon_tongue.png
similarity index 100%
rename from htdocs/img/icons/emoticon_tongue.png
rename to kasu/static/img/icons/emoticon_tongue.png
diff --git a/htdocs/img/icons/emoticon_unhappy.png b/kasu/static/img/icons/emoticon_unhappy.png
similarity index 100%
rename from htdocs/img/icons/emoticon_unhappy.png
rename to kasu/static/img/icons/emoticon_unhappy.png
diff --git a/htdocs/img/icons/emoticon_waii.png b/kasu/static/img/icons/emoticon_waii.png
similarity index 100%
rename from htdocs/img/icons/emoticon_waii.png
rename to kasu/static/img/icons/emoticon_waii.png
diff --git a/htdocs/img/icons/emoticon_wink.png b/kasu/static/img/icons/emoticon_wink.png
similarity index 100%
rename from htdocs/img/icons/emoticon_wink.png
rename to kasu/static/img/icons/emoticon_wink.png
diff --git a/htdocs/img/icons/error.png b/kasu/static/img/icons/error.png
similarity index 100%
rename from htdocs/img/icons/error.png
rename to kasu/static/img/icons/error.png
diff --git a/htdocs/img/icons/error_add.png b/kasu/static/img/icons/error_add.png
similarity index 100%
rename from htdocs/img/icons/error_add.png
rename to kasu/static/img/icons/error_add.png
diff --git a/htdocs/img/icons/error_delete.png b/kasu/static/img/icons/error_delete.png
similarity index 100%
rename from htdocs/img/icons/error_delete.png
rename to kasu/static/img/icons/error_delete.png
diff --git a/htdocs/img/icons/error_go.png b/kasu/static/img/icons/error_go.png
similarity index 100%
rename from htdocs/img/icons/error_go.png
rename to kasu/static/img/icons/error_go.png
diff --git a/htdocs/img/icons/exclamation.png b/kasu/static/img/icons/exclamation.png
similarity index 100%
rename from htdocs/img/icons/exclamation.png
rename to kasu/static/img/icons/exclamation.png
diff --git a/htdocs/img/icons/eye.png b/kasu/static/img/icons/eye.png
similarity index 100%
rename from htdocs/img/icons/eye.png
rename to kasu/static/img/icons/eye.png
diff --git a/htdocs/img/icons/feed.png b/kasu/static/img/icons/feed.png
similarity index 100%
rename from htdocs/img/icons/feed.png
rename to kasu/static/img/icons/feed.png
diff --git a/htdocs/img/icons/feed_add.png b/kasu/static/img/icons/feed_add.png
similarity index 100%
rename from htdocs/img/icons/feed_add.png
rename to kasu/static/img/icons/feed_add.png
diff --git a/htdocs/img/icons/feed_delete.png b/kasu/static/img/icons/feed_delete.png
similarity index 100%
rename from htdocs/img/icons/feed_delete.png
rename to kasu/static/img/icons/feed_delete.png
diff --git a/htdocs/img/icons/feed_disk.png b/kasu/static/img/icons/feed_disk.png
similarity index 100%
rename from htdocs/img/icons/feed_disk.png
rename to kasu/static/img/icons/feed_disk.png
diff --git a/htdocs/img/icons/feed_edit.png b/kasu/static/img/icons/feed_edit.png
similarity index 100%
rename from htdocs/img/icons/feed_edit.png
rename to kasu/static/img/icons/feed_edit.png
diff --git a/htdocs/img/icons/feed_error.png b/kasu/static/img/icons/feed_error.png
similarity index 100%
rename from htdocs/img/icons/feed_error.png
rename to kasu/static/img/icons/feed_error.png
diff --git a/htdocs/img/icons/feed_go.png b/kasu/static/img/icons/feed_go.png
similarity index 100%
rename from htdocs/img/icons/feed_go.png
rename to kasu/static/img/icons/feed_go.png
diff --git a/htdocs/img/icons/feed_key.png b/kasu/static/img/icons/feed_key.png
similarity index 100%
rename from htdocs/img/icons/feed_key.png
rename to kasu/static/img/icons/feed_key.png
diff --git a/htdocs/img/icons/feed_link.png b/kasu/static/img/icons/feed_link.png
similarity index 100%
rename from htdocs/img/icons/feed_link.png
rename to kasu/static/img/icons/feed_link.png
diff --git a/htdocs/img/icons/feed_magnify.png b/kasu/static/img/icons/feed_magnify.png
similarity index 100%
rename from htdocs/img/icons/feed_magnify.png
rename to kasu/static/img/icons/feed_magnify.png
diff --git a/htdocs/img/icons/female.png b/kasu/static/img/icons/female.png
similarity index 100%
rename from htdocs/img/icons/female.png
rename to kasu/static/img/icons/female.png
diff --git a/htdocs/img/icons/film.png b/kasu/static/img/icons/film.png
similarity index 100%
rename from htdocs/img/icons/film.png
rename to kasu/static/img/icons/film.png
diff --git a/htdocs/img/icons/film_add.png b/kasu/static/img/icons/film_add.png
similarity index 100%
rename from htdocs/img/icons/film_add.png
rename to kasu/static/img/icons/film_add.png
diff --git a/htdocs/img/icons/film_delete.png b/kasu/static/img/icons/film_delete.png
similarity index 100%
rename from htdocs/img/icons/film_delete.png
rename to kasu/static/img/icons/film_delete.png
diff --git a/htdocs/img/icons/film_edit.png b/kasu/static/img/icons/film_edit.png
similarity index 100%
rename from htdocs/img/icons/film_edit.png
rename to kasu/static/img/icons/film_edit.png
diff --git a/htdocs/img/icons/film_error.png b/kasu/static/img/icons/film_error.png
similarity index 100%
rename from htdocs/img/icons/film_error.png
rename to kasu/static/img/icons/film_error.png
diff --git a/htdocs/img/icons/film_go.png b/kasu/static/img/icons/film_go.png
similarity index 100%
rename from htdocs/img/icons/film_go.png
rename to kasu/static/img/icons/film_go.png
diff --git a/htdocs/img/icons/film_key.png b/kasu/static/img/icons/film_key.png
similarity index 100%
rename from htdocs/img/icons/film_key.png
rename to kasu/static/img/icons/film_key.png
diff --git a/htdocs/img/icons/film_link.png b/kasu/static/img/icons/film_link.png
similarity index 100%
rename from htdocs/img/icons/film_link.png
rename to kasu/static/img/icons/film_link.png
diff --git a/htdocs/img/icons/film_save.png b/kasu/static/img/icons/film_save.png
similarity index 100%
rename from htdocs/img/icons/film_save.png
rename to kasu/static/img/icons/film_save.png
diff --git a/htdocs/img/icons/find.png b/kasu/static/img/icons/find.png
similarity index 100%
rename from htdocs/img/icons/find.png
rename to kasu/static/img/icons/find.png
diff --git a/htdocs/img/icons/flag_blue.png b/kasu/static/img/icons/flag_blue.png
similarity index 100%
rename from htdocs/img/icons/flag_blue.png
rename to kasu/static/img/icons/flag_blue.png
diff --git a/htdocs/img/icons/flag_green.png b/kasu/static/img/icons/flag_green.png
similarity index 100%
rename from htdocs/img/icons/flag_green.png
rename to kasu/static/img/icons/flag_green.png
diff --git a/htdocs/img/icons/flag_orange.png b/kasu/static/img/icons/flag_orange.png
similarity index 100%
rename from htdocs/img/icons/flag_orange.png
rename to kasu/static/img/icons/flag_orange.png
diff --git a/htdocs/img/icons/flag_pink.png b/kasu/static/img/icons/flag_pink.png
similarity index 100%
rename from htdocs/img/icons/flag_pink.png
rename to kasu/static/img/icons/flag_pink.png
diff --git a/htdocs/img/icons/flag_purple.png b/kasu/static/img/icons/flag_purple.png
similarity index 100%
rename from htdocs/img/icons/flag_purple.png
rename to kasu/static/img/icons/flag_purple.png
diff --git a/htdocs/img/icons/flag_red.png b/kasu/static/img/icons/flag_red.png
similarity index 100%
rename from htdocs/img/icons/flag_red.png
rename to kasu/static/img/icons/flag_red.png
diff --git a/htdocs/img/icons/flag_yellow.png b/kasu/static/img/icons/flag_yellow.png
similarity index 100%
rename from htdocs/img/icons/flag_yellow.png
rename to kasu/static/img/icons/flag_yellow.png
diff --git a/htdocs/img/icons/folder.png b/kasu/static/img/icons/folder.png
similarity index 100%
rename from htdocs/img/icons/folder.png
rename to kasu/static/img/icons/folder.png
diff --git a/htdocs/img/icons/folder_add.png b/kasu/static/img/icons/folder_add.png
similarity index 100%
rename from htdocs/img/icons/folder_add.png
rename to kasu/static/img/icons/folder_add.png
diff --git a/htdocs/img/icons/folder_bell.png b/kasu/static/img/icons/folder_bell.png
similarity index 100%
rename from htdocs/img/icons/folder_bell.png
rename to kasu/static/img/icons/folder_bell.png
diff --git a/htdocs/img/icons/folder_brick.png b/kasu/static/img/icons/folder_brick.png
similarity index 100%
rename from htdocs/img/icons/folder_brick.png
rename to kasu/static/img/icons/folder_brick.png
diff --git a/htdocs/img/icons/folder_bug.png b/kasu/static/img/icons/folder_bug.png
similarity index 100%
rename from htdocs/img/icons/folder_bug.png
rename to kasu/static/img/icons/folder_bug.png
diff --git a/htdocs/img/icons/folder_camera.png b/kasu/static/img/icons/folder_camera.png
similarity index 100%
rename from htdocs/img/icons/folder_camera.png
rename to kasu/static/img/icons/folder_camera.png
diff --git a/htdocs/img/icons/folder_database.png b/kasu/static/img/icons/folder_database.png
similarity index 100%
rename from htdocs/img/icons/folder_database.png
rename to kasu/static/img/icons/folder_database.png
diff --git a/htdocs/img/icons/folder_delete.png b/kasu/static/img/icons/folder_delete.png
similarity index 100%
rename from htdocs/img/icons/folder_delete.png
rename to kasu/static/img/icons/folder_delete.png
diff --git a/htdocs/img/icons/folder_edit.png b/kasu/static/img/icons/folder_edit.png
similarity index 100%
rename from htdocs/img/icons/folder_edit.png
rename to kasu/static/img/icons/folder_edit.png
diff --git a/htdocs/img/icons/folder_error.png b/kasu/static/img/icons/folder_error.png
similarity index 100%
rename from htdocs/img/icons/folder_error.png
rename to kasu/static/img/icons/folder_error.png
diff --git a/htdocs/img/icons/folder_explore.png b/kasu/static/img/icons/folder_explore.png
similarity index 100%
rename from htdocs/img/icons/folder_explore.png
rename to kasu/static/img/icons/folder_explore.png
diff --git a/htdocs/img/icons/folder_feed.png b/kasu/static/img/icons/folder_feed.png
similarity index 100%
rename from htdocs/img/icons/folder_feed.png
rename to kasu/static/img/icons/folder_feed.png
diff --git a/htdocs/img/icons/folder_find.png b/kasu/static/img/icons/folder_find.png
similarity index 100%
rename from htdocs/img/icons/folder_find.png
rename to kasu/static/img/icons/folder_find.png
diff --git a/htdocs/img/icons/folder_go.png b/kasu/static/img/icons/folder_go.png
similarity index 100%
rename from htdocs/img/icons/folder_go.png
rename to kasu/static/img/icons/folder_go.png
diff --git a/htdocs/img/icons/folder_heart.png b/kasu/static/img/icons/folder_heart.png
similarity index 100%
rename from htdocs/img/icons/folder_heart.png
rename to kasu/static/img/icons/folder_heart.png
diff --git a/htdocs/img/icons/folder_image.png b/kasu/static/img/icons/folder_image.png
similarity index 100%
rename from htdocs/img/icons/folder_image.png
rename to kasu/static/img/icons/folder_image.png
diff --git a/htdocs/img/icons/folder_key.png b/kasu/static/img/icons/folder_key.png
similarity index 100%
rename from htdocs/img/icons/folder_key.png
rename to kasu/static/img/icons/folder_key.png
diff --git a/htdocs/img/icons/folder_lightbulb.png b/kasu/static/img/icons/folder_lightbulb.png
similarity index 100%
rename from htdocs/img/icons/folder_lightbulb.png
rename to kasu/static/img/icons/folder_lightbulb.png
diff --git a/htdocs/img/icons/folder_link.png b/kasu/static/img/icons/folder_link.png
similarity index 100%
rename from htdocs/img/icons/folder_link.png
rename to kasu/static/img/icons/folder_link.png
diff --git a/htdocs/img/icons/folder_magnify.png b/kasu/static/img/icons/folder_magnify.png
similarity index 100%
rename from htdocs/img/icons/folder_magnify.png
rename to kasu/static/img/icons/folder_magnify.png
diff --git a/htdocs/img/icons/folder_page.png b/kasu/static/img/icons/folder_page.png
similarity index 100%
rename from htdocs/img/icons/folder_page.png
rename to kasu/static/img/icons/folder_page.png
diff --git a/htdocs/img/icons/folder_page_white.png b/kasu/static/img/icons/folder_page_white.png
similarity index 100%
rename from htdocs/img/icons/folder_page_white.png
rename to kasu/static/img/icons/folder_page_white.png
diff --git a/htdocs/img/icons/folder_palette.png b/kasu/static/img/icons/folder_palette.png
similarity index 100%
rename from htdocs/img/icons/folder_palette.png
rename to kasu/static/img/icons/folder_palette.png
diff --git a/htdocs/img/icons/folder_picture.png b/kasu/static/img/icons/folder_picture.png
similarity index 100%
rename from htdocs/img/icons/folder_picture.png
rename to kasu/static/img/icons/folder_picture.png
diff --git a/htdocs/img/icons/folder_star.png b/kasu/static/img/icons/folder_star.png
similarity index 100%
rename from htdocs/img/icons/folder_star.png
rename to kasu/static/img/icons/folder_star.png
diff --git a/htdocs/img/icons/folder_table.png b/kasu/static/img/icons/folder_table.png
similarity index 100%
rename from htdocs/img/icons/folder_table.png
rename to kasu/static/img/icons/folder_table.png
diff --git a/htdocs/img/icons/folder_user.png b/kasu/static/img/icons/folder_user.png
similarity index 100%
rename from htdocs/img/icons/folder_user.png
rename to kasu/static/img/icons/folder_user.png
diff --git a/htdocs/img/icons/folder_wrench.png b/kasu/static/img/icons/folder_wrench.png
similarity index 100%
rename from htdocs/img/icons/folder_wrench.png
rename to kasu/static/img/icons/folder_wrench.png
diff --git a/htdocs/img/icons/font.png b/kasu/static/img/icons/font.png
similarity index 100%
rename from htdocs/img/icons/font.png
rename to kasu/static/img/icons/font.png
diff --git a/htdocs/img/icons/font_add.png b/kasu/static/img/icons/font_add.png
similarity index 100%
rename from htdocs/img/icons/font_add.png
rename to kasu/static/img/icons/font_add.png
diff --git a/htdocs/img/icons/font_delete.png b/kasu/static/img/icons/font_delete.png
similarity index 100%
rename from htdocs/img/icons/font_delete.png
rename to kasu/static/img/icons/font_delete.png
diff --git a/htdocs/img/icons/font_go.png b/kasu/static/img/icons/font_go.png
similarity index 100%
rename from htdocs/img/icons/font_go.png
rename to kasu/static/img/icons/font_go.png
diff --git a/htdocs/img/icons/group.png b/kasu/static/img/icons/group.png
similarity index 100%
rename from htdocs/img/icons/group.png
rename to kasu/static/img/icons/group.png
diff --git a/htdocs/img/icons/group_add.png b/kasu/static/img/icons/group_add.png
similarity index 100%
rename from htdocs/img/icons/group_add.png
rename to kasu/static/img/icons/group_add.png
diff --git a/htdocs/img/icons/group_delete.png b/kasu/static/img/icons/group_delete.png
similarity index 100%
rename from htdocs/img/icons/group_delete.png
rename to kasu/static/img/icons/group_delete.png
diff --git a/htdocs/img/icons/group_edit.png b/kasu/static/img/icons/group_edit.png
similarity index 100%
rename from htdocs/img/icons/group_edit.png
rename to kasu/static/img/icons/group_edit.png
diff --git a/htdocs/img/icons/group_error.png b/kasu/static/img/icons/group_error.png
similarity index 100%
rename from htdocs/img/icons/group_error.png
rename to kasu/static/img/icons/group_error.png
diff --git a/htdocs/img/icons/group_gear.png b/kasu/static/img/icons/group_gear.png
similarity index 100%
rename from htdocs/img/icons/group_gear.png
rename to kasu/static/img/icons/group_gear.png
diff --git a/htdocs/img/icons/group_go.png b/kasu/static/img/icons/group_go.png
similarity index 100%
rename from htdocs/img/icons/group_go.png
rename to kasu/static/img/icons/group_go.png
diff --git a/htdocs/img/icons/group_key.png b/kasu/static/img/icons/group_key.png
similarity index 100%
rename from htdocs/img/icons/group_key.png
rename to kasu/static/img/icons/group_key.png
diff --git a/htdocs/img/icons/group_link.png b/kasu/static/img/icons/group_link.png
similarity index 100%
rename from htdocs/img/icons/group_link.png
rename to kasu/static/img/icons/group_link.png
diff --git a/htdocs/img/icons/heart.png b/kasu/static/img/icons/heart.png
similarity index 100%
rename from htdocs/img/icons/heart.png
rename to kasu/static/img/icons/heart.png
diff --git a/htdocs/img/icons/heart_add.png b/kasu/static/img/icons/heart_add.png
similarity index 100%
rename from htdocs/img/icons/heart_add.png
rename to kasu/static/img/icons/heart_add.png
diff --git a/htdocs/img/icons/heart_delete.png b/kasu/static/img/icons/heart_delete.png
similarity index 100%
rename from htdocs/img/icons/heart_delete.png
rename to kasu/static/img/icons/heart_delete.png
diff --git a/htdocs/img/icons/help.png b/kasu/static/img/icons/help.png
similarity index 100%
rename from htdocs/img/icons/help.png
rename to kasu/static/img/icons/help.png
diff --git a/htdocs/img/icons/hourglass.png b/kasu/static/img/icons/hourglass.png
similarity index 100%
rename from htdocs/img/icons/hourglass.png
rename to kasu/static/img/icons/hourglass.png
diff --git a/htdocs/img/icons/hourglass_add.png b/kasu/static/img/icons/hourglass_add.png
similarity index 100%
rename from htdocs/img/icons/hourglass_add.png
rename to kasu/static/img/icons/hourglass_add.png
diff --git a/htdocs/img/icons/hourglass_delete.png b/kasu/static/img/icons/hourglass_delete.png
similarity index 100%
rename from htdocs/img/icons/hourglass_delete.png
rename to kasu/static/img/icons/hourglass_delete.png
diff --git a/htdocs/img/icons/hourglass_go.png b/kasu/static/img/icons/hourglass_go.png
similarity index 100%
rename from htdocs/img/icons/hourglass_go.png
rename to kasu/static/img/icons/hourglass_go.png
diff --git a/htdocs/img/icons/hourglass_link.png b/kasu/static/img/icons/hourglass_link.png
similarity index 100%
rename from htdocs/img/icons/hourglass_link.png
rename to kasu/static/img/icons/hourglass_link.png
diff --git a/htdocs/img/icons/house.png b/kasu/static/img/icons/house.png
similarity index 100%
rename from htdocs/img/icons/house.png
rename to kasu/static/img/icons/house.png
diff --git a/htdocs/img/icons/house_go.png b/kasu/static/img/icons/house_go.png
similarity index 100%
rename from htdocs/img/icons/house_go.png
rename to kasu/static/img/icons/house_go.png
diff --git a/htdocs/img/icons/house_link.png b/kasu/static/img/icons/house_link.png
similarity index 100%
rename from htdocs/img/icons/house_link.png
rename to kasu/static/img/icons/house_link.png
diff --git a/htdocs/img/icons/html.png b/kasu/static/img/icons/html.png
similarity index 100%
rename from htdocs/img/icons/html.png
rename to kasu/static/img/icons/html.png
diff --git a/htdocs/img/icons/html_add.png b/kasu/static/img/icons/html_add.png
similarity index 100%
rename from htdocs/img/icons/html_add.png
rename to kasu/static/img/icons/html_add.png
diff --git a/htdocs/img/icons/html_delete.png b/kasu/static/img/icons/html_delete.png
similarity index 100%
rename from htdocs/img/icons/html_delete.png
rename to kasu/static/img/icons/html_delete.png
diff --git a/htdocs/img/icons/html_go.png b/kasu/static/img/icons/html_go.png
similarity index 100%
rename from htdocs/img/icons/html_go.png
rename to kasu/static/img/icons/html_go.png
diff --git a/htdocs/img/icons/html_valid.png b/kasu/static/img/icons/html_valid.png
similarity index 100%
rename from htdocs/img/icons/html_valid.png
rename to kasu/static/img/icons/html_valid.png
diff --git a/htdocs/img/icons/image.png b/kasu/static/img/icons/image.png
similarity index 100%
rename from htdocs/img/icons/image.png
rename to kasu/static/img/icons/image.png
diff --git a/htdocs/img/icons/image_add.png b/kasu/static/img/icons/image_add.png
similarity index 100%
rename from htdocs/img/icons/image_add.png
rename to kasu/static/img/icons/image_add.png
diff --git a/htdocs/img/icons/image_delete.png b/kasu/static/img/icons/image_delete.png
similarity index 100%
rename from htdocs/img/icons/image_delete.png
rename to kasu/static/img/icons/image_delete.png
diff --git a/htdocs/img/icons/image_edit.png b/kasu/static/img/icons/image_edit.png
similarity index 100%
rename from htdocs/img/icons/image_edit.png
rename to kasu/static/img/icons/image_edit.png
diff --git a/htdocs/img/icons/image_link.png b/kasu/static/img/icons/image_link.png
similarity index 100%
rename from htdocs/img/icons/image_link.png
rename to kasu/static/img/icons/image_link.png
diff --git a/htdocs/img/icons/images.png b/kasu/static/img/icons/images.png
similarity index 100%
rename from htdocs/img/icons/images.png
rename to kasu/static/img/icons/images.png
diff --git a/htdocs/img/icons/information.png b/kasu/static/img/icons/information.png
similarity index 100%
rename from htdocs/img/icons/information.png
rename to kasu/static/img/icons/information.png
diff --git a/htdocs/img/icons/ipod.png b/kasu/static/img/icons/ipod.png
similarity index 100%
rename from htdocs/img/icons/ipod.png
rename to kasu/static/img/icons/ipod.png
diff --git a/htdocs/img/icons/ipod_cast.png b/kasu/static/img/icons/ipod_cast.png
similarity index 100%
rename from htdocs/img/icons/ipod_cast.png
rename to kasu/static/img/icons/ipod_cast.png
diff --git a/htdocs/img/icons/ipod_cast_add.png b/kasu/static/img/icons/ipod_cast_add.png
similarity index 100%
rename from htdocs/img/icons/ipod_cast_add.png
rename to kasu/static/img/icons/ipod_cast_add.png
diff --git a/htdocs/img/icons/ipod_cast_delete.png b/kasu/static/img/icons/ipod_cast_delete.png
similarity index 100%
rename from htdocs/img/icons/ipod_cast_delete.png
rename to kasu/static/img/icons/ipod_cast_delete.png
diff --git a/htdocs/img/icons/ipod_sound.png b/kasu/static/img/icons/ipod_sound.png
similarity index 100%
rename from htdocs/img/icons/ipod_sound.png
rename to kasu/static/img/icons/ipod_sound.png
diff --git a/htdocs/img/icons/joystick.png b/kasu/static/img/icons/joystick.png
similarity index 100%
rename from htdocs/img/icons/joystick.png
rename to kasu/static/img/icons/joystick.png
diff --git a/htdocs/img/icons/joystick_add.png b/kasu/static/img/icons/joystick_add.png
similarity index 100%
rename from htdocs/img/icons/joystick_add.png
rename to kasu/static/img/icons/joystick_add.png
diff --git a/htdocs/img/icons/joystick_delete.png b/kasu/static/img/icons/joystick_delete.png
similarity index 100%
rename from htdocs/img/icons/joystick_delete.png
rename to kasu/static/img/icons/joystick_delete.png
diff --git a/htdocs/img/icons/joystick_error.png b/kasu/static/img/icons/joystick_error.png
similarity index 100%
rename from htdocs/img/icons/joystick_error.png
rename to kasu/static/img/icons/joystick_error.png
diff --git a/htdocs/img/icons/key.png b/kasu/static/img/icons/key.png
similarity index 100%
rename from htdocs/img/icons/key.png
rename to kasu/static/img/icons/key.png
diff --git a/htdocs/img/icons/key_add.png b/kasu/static/img/icons/key_add.png
similarity index 100%
rename from htdocs/img/icons/key_add.png
rename to kasu/static/img/icons/key_add.png
diff --git a/htdocs/img/icons/key_delete.png b/kasu/static/img/icons/key_delete.png
similarity index 100%
rename from htdocs/img/icons/key_delete.png
rename to kasu/static/img/icons/key_delete.png
diff --git a/htdocs/img/icons/key_go.png b/kasu/static/img/icons/key_go.png
similarity index 100%
rename from htdocs/img/icons/key_go.png
rename to kasu/static/img/icons/key_go.png
diff --git a/htdocs/img/icons/keyboard.png b/kasu/static/img/icons/keyboard.png
similarity index 100%
rename from htdocs/img/icons/keyboard.png
rename to kasu/static/img/icons/keyboard.png
diff --git a/htdocs/img/icons/keyboard_add.png b/kasu/static/img/icons/keyboard_add.png
similarity index 100%
rename from htdocs/img/icons/keyboard_add.png
rename to kasu/static/img/icons/keyboard_add.png
diff --git a/htdocs/img/icons/keyboard_delete.png b/kasu/static/img/icons/keyboard_delete.png
similarity index 100%
rename from htdocs/img/icons/keyboard_delete.png
rename to kasu/static/img/icons/keyboard_delete.png
diff --git a/htdocs/img/icons/keyboard_magnify.png b/kasu/static/img/icons/keyboard_magnify.png
similarity index 100%
rename from htdocs/img/icons/keyboard_magnify.png
rename to kasu/static/img/icons/keyboard_magnify.png
diff --git a/htdocs/img/icons/layers.png b/kasu/static/img/icons/layers.png
similarity index 100%
rename from htdocs/img/icons/layers.png
rename to kasu/static/img/icons/layers.png
diff --git a/htdocs/img/icons/layout.png b/kasu/static/img/icons/layout.png
similarity index 100%
rename from htdocs/img/icons/layout.png
rename to kasu/static/img/icons/layout.png
diff --git a/htdocs/img/icons/layout_add.png b/kasu/static/img/icons/layout_add.png
similarity index 100%
rename from htdocs/img/icons/layout_add.png
rename to kasu/static/img/icons/layout_add.png
diff --git a/htdocs/img/icons/layout_content.png b/kasu/static/img/icons/layout_content.png
similarity index 100%
rename from htdocs/img/icons/layout_content.png
rename to kasu/static/img/icons/layout_content.png
diff --git a/htdocs/img/icons/layout_delete.png b/kasu/static/img/icons/layout_delete.png
similarity index 100%
rename from htdocs/img/icons/layout_delete.png
rename to kasu/static/img/icons/layout_delete.png
diff --git a/htdocs/img/icons/layout_edit.png b/kasu/static/img/icons/layout_edit.png
similarity index 100%
rename from htdocs/img/icons/layout_edit.png
rename to kasu/static/img/icons/layout_edit.png
diff --git a/htdocs/img/icons/layout_error.png b/kasu/static/img/icons/layout_error.png
similarity index 100%
rename from htdocs/img/icons/layout_error.png
rename to kasu/static/img/icons/layout_error.png
diff --git a/htdocs/img/icons/layout_header.png b/kasu/static/img/icons/layout_header.png
similarity index 100%
rename from htdocs/img/icons/layout_header.png
rename to kasu/static/img/icons/layout_header.png
diff --git a/htdocs/img/icons/layout_link.png b/kasu/static/img/icons/layout_link.png
similarity index 100%
rename from htdocs/img/icons/layout_link.png
rename to kasu/static/img/icons/layout_link.png
diff --git a/htdocs/img/icons/layout_sidebar.png b/kasu/static/img/icons/layout_sidebar.png
similarity index 100%
rename from htdocs/img/icons/layout_sidebar.png
rename to kasu/static/img/icons/layout_sidebar.png
diff --git a/htdocs/img/icons/lightbulb.png b/kasu/static/img/icons/lightbulb.png
similarity index 100%
rename from htdocs/img/icons/lightbulb.png
rename to kasu/static/img/icons/lightbulb.png
diff --git a/htdocs/img/icons/lightbulb_add.png b/kasu/static/img/icons/lightbulb_add.png
similarity index 100%
rename from htdocs/img/icons/lightbulb_add.png
rename to kasu/static/img/icons/lightbulb_add.png
diff --git a/htdocs/img/icons/lightbulb_delete.png b/kasu/static/img/icons/lightbulb_delete.png
similarity index 100%
rename from htdocs/img/icons/lightbulb_delete.png
rename to kasu/static/img/icons/lightbulb_delete.png
diff --git a/htdocs/img/icons/lightbulb_off.png b/kasu/static/img/icons/lightbulb_off.png
similarity index 100%
rename from htdocs/img/icons/lightbulb_off.png
rename to kasu/static/img/icons/lightbulb_off.png
diff --git a/htdocs/img/icons/lightning.png b/kasu/static/img/icons/lightning.png
similarity index 100%
rename from htdocs/img/icons/lightning.png
rename to kasu/static/img/icons/lightning.png
diff --git a/htdocs/img/icons/lightning_add.png b/kasu/static/img/icons/lightning_add.png
similarity index 100%
rename from htdocs/img/icons/lightning_add.png
rename to kasu/static/img/icons/lightning_add.png
diff --git a/htdocs/img/icons/lightning_delete.png b/kasu/static/img/icons/lightning_delete.png
similarity index 100%
rename from htdocs/img/icons/lightning_delete.png
rename to kasu/static/img/icons/lightning_delete.png
diff --git a/htdocs/img/icons/lightning_go.png b/kasu/static/img/icons/lightning_go.png
similarity index 100%
rename from htdocs/img/icons/lightning_go.png
rename to kasu/static/img/icons/lightning_go.png
diff --git a/htdocs/img/icons/link.png b/kasu/static/img/icons/link.png
similarity index 100%
rename from htdocs/img/icons/link.png
rename to kasu/static/img/icons/link.png
diff --git a/htdocs/img/icons/link_add.png b/kasu/static/img/icons/link_add.png
similarity index 100%
rename from htdocs/img/icons/link_add.png
rename to kasu/static/img/icons/link_add.png
diff --git a/htdocs/img/icons/link_break.png b/kasu/static/img/icons/link_break.png
similarity index 100%
rename from htdocs/img/icons/link_break.png
rename to kasu/static/img/icons/link_break.png
diff --git a/htdocs/img/icons/link_delete.png b/kasu/static/img/icons/link_delete.png
similarity index 100%
rename from htdocs/img/icons/link_delete.png
rename to kasu/static/img/icons/link_delete.png
diff --git a/htdocs/img/icons/link_edit.png b/kasu/static/img/icons/link_edit.png
similarity index 100%
rename from htdocs/img/icons/link_edit.png
rename to kasu/static/img/icons/link_edit.png
diff --git a/htdocs/img/icons/link_error.png b/kasu/static/img/icons/link_error.png
similarity index 100%
rename from htdocs/img/icons/link_error.png
rename to kasu/static/img/icons/link_error.png
diff --git a/htdocs/img/icons/link_go.png b/kasu/static/img/icons/link_go.png
similarity index 100%
rename from htdocs/img/icons/link_go.png
rename to kasu/static/img/icons/link_go.png
diff --git a/htdocs/img/icons/lock.png b/kasu/static/img/icons/lock.png
similarity index 100%
rename from htdocs/img/icons/lock.png
rename to kasu/static/img/icons/lock.png
diff --git a/htdocs/img/icons/lock_add.png b/kasu/static/img/icons/lock_add.png
similarity index 100%
rename from htdocs/img/icons/lock_add.png
rename to kasu/static/img/icons/lock_add.png
diff --git a/htdocs/img/icons/lock_break.png b/kasu/static/img/icons/lock_break.png
similarity index 100%
rename from htdocs/img/icons/lock_break.png
rename to kasu/static/img/icons/lock_break.png
diff --git a/htdocs/img/icons/lock_delete.png b/kasu/static/img/icons/lock_delete.png
similarity index 100%
rename from htdocs/img/icons/lock_delete.png
rename to kasu/static/img/icons/lock_delete.png
diff --git a/htdocs/img/icons/lock_edit.png b/kasu/static/img/icons/lock_edit.png
similarity index 100%
rename from htdocs/img/icons/lock_edit.png
rename to kasu/static/img/icons/lock_edit.png
diff --git a/htdocs/img/icons/lock_go.png b/kasu/static/img/icons/lock_go.png
similarity index 100%
rename from htdocs/img/icons/lock_go.png
rename to kasu/static/img/icons/lock_go.png
diff --git a/htdocs/img/icons/lock_open.png b/kasu/static/img/icons/lock_open.png
similarity index 100%
rename from htdocs/img/icons/lock_open.png
rename to kasu/static/img/icons/lock_open.png
diff --git a/htdocs/img/icons/lorry.png b/kasu/static/img/icons/lorry.png
similarity index 100%
rename from htdocs/img/icons/lorry.png
rename to kasu/static/img/icons/lorry.png
diff --git a/htdocs/img/icons/lorry_add.png b/kasu/static/img/icons/lorry_add.png
similarity index 100%
rename from htdocs/img/icons/lorry_add.png
rename to kasu/static/img/icons/lorry_add.png
diff --git a/htdocs/img/icons/lorry_delete.png b/kasu/static/img/icons/lorry_delete.png
similarity index 100%
rename from htdocs/img/icons/lorry_delete.png
rename to kasu/static/img/icons/lorry_delete.png
diff --git a/htdocs/img/icons/lorry_error.png b/kasu/static/img/icons/lorry_error.png
similarity index 100%
rename from htdocs/img/icons/lorry_error.png
rename to kasu/static/img/icons/lorry_error.png
diff --git a/htdocs/img/icons/lorry_flatbed.png b/kasu/static/img/icons/lorry_flatbed.png
similarity index 100%
rename from htdocs/img/icons/lorry_flatbed.png
rename to kasu/static/img/icons/lorry_flatbed.png
diff --git a/htdocs/img/icons/lorry_go.png b/kasu/static/img/icons/lorry_go.png
similarity index 100%
rename from htdocs/img/icons/lorry_go.png
rename to kasu/static/img/icons/lorry_go.png
diff --git a/htdocs/img/icons/lorry_link.png b/kasu/static/img/icons/lorry_link.png
similarity index 100%
rename from htdocs/img/icons/lorry_link.png
rename to kasu/static/img/icons/lorry_link.png
diff --git a/htdocs/img/icons/magifier_zoom_out.png b/kasu/static/img/icons/magifier_zoom_out.png
similarity index 100%
rename from htdocs/img/icons/magifier_zoom_out.png
rename to kasu/static/img/icons/magifier_zoom_out.png
diff --git a/htdocs/img/icons/magnifier.png b/kasu/static/img/icons/magnifier.png
similarity index 100%
rename from htdocs/img/icons/magnifier.png
rename to kasu/static/img/icons/magnifier.png
diff --git a/htdocs/img/icons/magnifier_zoom_in.png b/kasu/static/img/icons/magnifier_zoom_in.png
similarity index 100%
rename from htdocs/img/icons/magnifier_zoom_in.png
rename to kasu/static/img/icons/magnifier_zoom_in.png
diff --git a/htdocs/img/icons/male.png b/kasu/static/img/icons/male.png
similarity index 100%
rename from htdocs/img/icons/male.png
rename to kasu/static/img/icons/male.png
diff --git a/htdocs/img/icons/map.png b/kasu/static/img/icons/map.png
similarity index 100%
rename from htdocs/img/icons/map.png
rename to kasu/static/img/icons/map.png
diff --git a/htdocs/img/icons/map_add.png b/kasu/static/img/icons/map_add.png
similarity index 100%
rename from htdocs/img/icons/map_add.png
rename to kasu/static/img/icons/map_add.png
diff --git a/htdocs/img/icons/map_delete.png b/kasu/static/img/icons/map_delete.png
similarity index 100%
rename from htdocs/img/icons/map_delete.png
rename to kasu/static/img/icons/map_delete.png
diff --git a/htdocs/img/icons/map_edit.png b/kasu/static/img/icons/map_edit.png
similarity index 100%
rename from htdocs/img/icons/map_edit.png
rename to kasu/static/img/icons/map_edit.png
diff --git a/htdocs/img/icons/map_go.png b/kasu/static/img/icons/map_go.png
similarity index 100%
rename from htdocs/img/icons/map_go.png
rename to kasu/static/img/icons/map_go.png
diff --git a/htdocs/img/icons/map_magnify.png b/kasu/static/img/icons/map_magnify.png
similarity index 100%
rename from htdocs/img/icons/map_magnify.png
rename to kasu/static/img/icons/map_magnify.png
diff --git a/htdocs/img/icons/medal_bronze_1.png b/kasu/static/img/icons/medal_bronze_1.png
similarity index 100%
rename from htdocs/img/icons/medal_bronze_1.png
rename to kasu/static/img/icons/medal_bronze_1.png
diff --git a/htdocs/img/icons/medal_bronze_2.png b/kasu/static/img/icons/medal_bronze_2.png
similarity index 100%
rename from htdocs/img/icons/medal_bronze_2.png
rename to kasu/static/img/icons/medal_bronze_2.png
diff --git a/htdocs/img/icons/medal_bronze_3.png b/kasu/static/img/icons/medal_bronze_3.png
similarity index 100%
rename from htdocs/img/icons/medal_bronze_3.png
rename to kasu/static/img/icons/medal_bronze_3.png
diff --git a/htdocs/img/icons/medal_bronze_add.png b/kasu/static/img/icons/medal_bronze_add.png
similarity index 100%
rename from htdocs/img/icons/medal_bronze_add.png
rename to kasu/static/img/icons/medal_bronze_add.png
diff --git a/htdocs/img/icons/medal_bronze_delete.png b/kasu/static/img/icons/medal_bronze_delete.png
similarity index 100%
rename from htdocs/img/icons/medal_bronze_delete.png
rename to kasu/static/img/icons/medal_bronze_delete.png
diff --git a/htdocs/img/icons/medal_gold_1.png b/kasu/static/img/icons/medal_gold_1.png
similarity index 100%
rename from htdocs/img/icons/medal_gold_1.png
rename to kasu/static/img/icons/medal_gold_1.png
diff --git a/htdocs/img/icons/medal_gold_2.png b/kasu/static/img/icons/medal_gold_2.png
similarity index 100%
rename from htdocs/img/icons/medal_gold_2.png
rename to kasu/static/img/icons/medal_gold_2.png
diff --git a/htdocs/img/icons/medal_gold_3.png b/kasu/static/img/icons/medal_gold_3.png
similarity index 100%
rename from htdocs/img/icons/medal_gold_3.png
rename to kasu/static/img/icons/medal_gold_3.png
diff --git a/htdocs/img/icons/medal_gold_add.png b/kasu/static/img/icons/medal_gold_add.png
similarity index 100%
rename from htdocs/img/icons/medal_gold_add.png
rename to kasu/static/img/icons/medal_gold_add.png
diff --git a/htdocs/img/icons/medal_gold_delete.png b/kasu/static/img/icons/medal_gold_delete.png
similarity index 100%
rename from htdocs/img/icons/medal_gold_delete.png
rename to kasu/static/img/icons/medal_gold_delete.png
diff --git a/htdocs/img/icons/medal_silver_1.png b/kasu/static/img/icons/medal_silver_1.png
similarity index 100%
rename from htdocs/img/icons/medal_silver_1.png
rename to kasu/static/img/icons/medal_silver_1.png
diff --git a/htdocs/img/icons/medal_silver_2.png b/kasu/static/img/icons/medal_silver_2.png
similarity index 100%
rename from htdocs/img/icons/medal_silver_2.png
rename to kasu/static/img/icons/medal_silver_2.png
diff --git a/htdocs/img/icons/medal_silver_3.png b/kasu/static/img/icons/medal_silver_3.png
similarity index 100%
rename from htdocs/img/icons/medal_silver_3.png
rename to kasu/static/img/icons/medal_silver_3.png
diff --git a/htdocs/img/icons/medal_silver_add.png b/kasu/static/img/icons/medal_silver_add.png
similarity index 100%
rename from htdocs/img/icons/medal_silver_add.png
rename to kasu/static/img/icons/medal_silver_add.png
diff --git a/htdocs/img/icons/medal_silver_delete.png b/kasu/static/img/icons/medal_silver_delete.png
similarity index 100%
rename from htdocs/img/icons/medal_silver_delete.png
rename to kasu/static/img/icons/medal_silver_delete.png
diff --git a/htdocs/img/icons/money.png b/kasu/static/img/icons/money.png
similarity index 100%
rename from htdocs/img/icons/money.png
rename to kasu/static/img/icons/money.png
diff --git a/htdocs/img/icons/money_add.png b/kasu/static/img/icons/money_add.png
similarity index 100%
rename from htdocs/img/icons/money_add.png
rename to kasu/static/img/icons/money_add.png
diff --git a/htdocs/img/icons/money_delete.png b/kasu/static/img/icons/money_delete.png
similarity index 100%
rename from htdocs/img/icons/money_delete.png
rename to kasu/static/img/icons/money_delete.png
diff --git a/htdocs/img/icons/money_dollar.png b/kasu/static/img/icons/money_dollar.png
similarity index 100%
rename from htdocs/img/icons/money_dollar.png
rename to kasu/static/img/icons/money_dollar.png
diff --git a/htdocs/img/icons/money_euro.png b/kasu/static/img/icons/money_euro.png
similarity index 100%
rename from htdocs/img/icons/money_euro.png
rename to kasu/static/img/icons/money_euro.png
diff --git a/htdocs/img/icons/money_pound.png b/kasu/static/img/icons/money_pound.png
similarity index 100%
rename from htdocs/img/icons/money_pound.png
rename to kasu/static/img/icons/money_pound.png
diff --git a/htdocs/img/icons/money_yen.png b/kasu/static/img/icons/money_yen.png
similarity index 100%
rename from htdocs/img/icons/money_yen.png
rename to kasu/static/img/icons/money_yen.png
diff --git a/htdocs/img/icons/monitor.png b/kasu/static/img/icons/monitor.png
similarity index 100%
rename from htdocs/img/icons/monitor.png
rename to kasu/static/img/icons/monitor.png
diff --git a/htdocs/img/icons/monitor_add.png b/kasu/static/img/icons/monitor_add.png
similarity index 100%
rename from htdocs/img/icons/monitor_add.png
rename to kasu/static/img/icons/monitor_add.png
diff --git a/htdocs/img/icons/monitor_delete.png b/kasu/static/img/icons/monitor_delete.png
similarity index 100%
rename from htdocs/img/icons/monitor_delete.png
rename to kasu/static/img/icons/monitor_delete.png
diff --git a/htdocs/img/icons/monitor_edit.png b/kasu/static/img/icons/monitor_edit.png
similarity index 100%
rename from htdocs/img/icons/monitor_edit.png
rename to kasu/static/img/icons/monitor_edit.png
diff --git a/htdocs/img/icons/monitor_error.png b/kasu/static/img/icons/monitor_error.png
similarity index 100%
rename from htdocs/img/icons/monitor_error.png
rename to kasu/static/img/icons/monitor_error.png
diff --git a/htdocs/img/icons/monitor_go.png b/kasu/static/img/icons/monitor_go.png
similarity index 100%
rename from htdocs/img/icons/monitor_go.png
rename to kasu/static/img/icons/monitor_go.png
diff --git a/htdocs/img/icons/monitor_lightning.png b/kasu/static/img/icons/monitor_lightning.png
similarity index 100%
rename from htdocs/img/icons/monitor_lightning.png
rename to kasu/static/img/icons/monitor_lightning.png
diff --git a/htdocs/img/icons/monitor_link.png b/kasu/static/img/icons/monitor_link.png
similarity index 100%
rename from htdocs/img/icons/monitor_link.png
rename to kasu/static/img/icons/monitor_link.png
diff --git a/htdocs/img/icons/mouse.png b/kasu/static/img/icons/mouse.png
similarity index 100%
rename from htdocs/img/icons/mouse.png
rename to kasu/static/img/icons/mouse.png
diff --git a/htdocs/img/icons/mouse_add.png b/kasu/static/img/icons/mouse_add.png
similarity index 100%
rename from htdocs/img/icons/mouse_add.png
rename to kasu/static/img/icons/mouse_add.png
diff --git a/htdocs/img/icons/mouse_delete.png b/kasu/static/img/icons/mouse_delete.png
similarity index 100%
rename from htdocs/img/icons/mouse_delete.png
rename to kasu/static/img/icons/mouse_delete.png
diff --git a/htdocs/img/icons/mouse_error.png b/kasu/static/img/icons/mouse_error.png
similarity index 100%
rename from htdocs/img/icons/mouse_error.png
rename to kasu/static/img/icons/mouse_error.png
diff --git a/htdocs/img/icons/music.png b/kasu/static/img/icons/music.png
similarity index 100%
rename from htdocs/img/icons/music.png
rename to kasu/static/img/icons/music.png
diff --git a/htdocs/img/icons/new.png b/kasu/static/img/icons/new.png
similarity index 100%
rename from htdocs/img/icons/new.png
rename to kasu/static/img/icons/new.png
diff --git a/htdocs/img/icons/newspaper.png b/kasu/static/img/icons/newspaper.png
similarity index 100%
rename from htdocs/img/icons/newspaper.png
rename to kasu/static/img/icons/newspaper.png
diff --git a/htdocs/img/icons/newspaper_add.png b/kasu/static/img/icons/newspaper_add.png
similarity index 100%
rename from htdocs/img/icons/newspaper_add.png
rename to kasu/static/img/icons/newspaper_add.png
diff --git a/htdocs/img/icons/newspaper_delete.png b/kasu/static/img/icons/newspaper_delete.png
similarity index 100%
rename from htdocs/img/icons/newspaper_delete.png
rename to kasu/static/img/icons/newspaper_delete.png
diff --git a/htdocs/img/icons/newspaper_go.png b/kasu/static/img/icons/newspaper_go.png
similarity index 100%
rename from htdocs/img/icons/newspaper_go.png
rename to kasu/static/img/icons/newspaper_go.png
diff --git a/htdocs/img/icons/newspaper_link.png b/kasu/static/img/icons/newspaper_link.png
similarity index 100%
rename from htdocs/img/icons/newspaper_link.png
rename to kasu/static/img/icons/newspaper_link.png
diff --git a/htdocs/img/icons/note.png b/kasu/static/img/icons/note.png
similarity index 100%
rename from htdocs/img/icons/note.png
rename to kasu/static/img/icons/note.png
diff --git a/htdocs/img/icons/note_add.png b/kasu/static/img/icons/note_add.png
similarity index 100%
rename from htdocs/img/icons/note_add.png
rename to kasu/static/img/icons/note_add.png
diff --git a/htdocs/img/icons/note_delete.png b/kasu/static/img/icons/note_delete.png
similarity index 100%
rename from htdocs/img/icons/note_delete.png
rename to kasu/static/img/icons/note_delete.png
diff --git a/htdocs/img/icons/note_edit.png b/kasu/static/img/icons/note_edit.png
similarity index 100%
rename from htdocs/img/icons/note_edit.png
rename to kasu/static/img/icons/note_edit.png
diff --git a/htdocs/img/icons/note_error.png b/kasu/static/img/icons/note_error.png
similarity index 100%
rename from htdocs/img/icons/note_error.png
rename to kasu/static/img/icons/note_error.png
diff --git a/htdocs/img/icons/note_go.png b/kasu/static/img/icons/note_go.png
similarity index 100%
rename from htdocs/img/icons/note_go.png
rename to kasu/static/img/icons/note_go.png
diff --git a/htdocs/img/icons/overlays.png b/kasu/static/img/icons/overlays.png
similarity index 100%
rename from htdocs/img/icons/overlays.png
rename to kasu/static/img/icons/overlays.png
diff --git a/htdocs/img/icons/package.png b/kasu/static/img/icons/package.png
similarity index 100%
rename from htdocs/img/icons/package.png
rename to kasu/static/img/icons/package.png
diff --git a/htdocs/img/icons/package_add.png b/kasu/static/img/icons/package_add.png
similarity index 100%
rename from htdocs/img/icons/package_add.png
rename to kasu/static/img/icons/package_add.png
diff --git a/htdocs/img/icons/package_delete.png b/kasu/static/img/icons/package_delete.png
similarity index 100%
rename from htdocs/img/icons/package_delete.png
rename to kasu/static/img/icons/package_delete.png
diff --git a/htdocs/img/icons/package_go.png b/kasu/static/img/icons/package_go.png
similarity index 100%
rename from htdocs/img/icons/package_go.png
rename to kasu/static/img/icons/package_go.png
diff --git a/htdocs/img/icons/package_green.png b/kasu/static/img/icons/package_green.png
similarity index 100%
rename from htdocs/img/icons/package_green.png
rename to kasu/static/img/icons/package_green.png
diff --git a/htdocs/img/icons/package_link.png b/kasu/static/img/icons/package_link.png
similarity index 100%
rename from htdocs/img/icons/package_link.png
rename to kasu/static/img/icons/package_link.png
diff --git a/htdocs/img/icons/page.png b/kasu/static/img/icons/page.png
similarity index 100%
rename from htdocs/img/icons/page.png
rename to kasu/static/img/icons/page.png
diff --git a/htdocs/img/icons/page_add.png b/kasu/static/img/icons/page_add.png
similarity index 100%
rename from htdocs/img/icons/page_add.png
rename to kasu/static/img/icons/page_add.png
diff --git a/htdocs/img/icons/page_attach.png b/kasu/static/img/icons/page_attach.png
similarity index 100%
rename from htdocs/img/icons/page_attach.png
rename to kasu/static/img/icons/page_attach.png
diff --git a/htdocs/img/icons/page_code.png b/kasu/static/img/icons/page_code.png
similarity index 100%
rename from htdocs/img/icons/page_code.png
rename to kasu/static/img/icons/page_code.png
diff --git a/htdocs/img/icons/page_copy.png b/kasu/static/img/icons/page_copy.png
similarity index 100%
rename from htdocs/img/icons/page_copy.png
rename to kasu/static/img/icons/page_copy.png
diff --git a/htdocs/img/icons/page_delete.png b/kasu/static/img/icons/page_delete.png
similarity index 100%
rename from htdocs/img/icons/page_delete.png
rename to kasu/static/img/icons/page_delete.png
diff --git a/htdocs/img/icons/page_edit.png b/kasu/static/img/icons/page_edit.png
similarity index 100%
rename from htdocs/img/icons/page_edit.png
rename to kasu/static/img/icons/page_edit.png
diff --git a/htdocs/img/icons/page_error.png b/kasu/static/img/icons/page_error.png
similarity index 100%
rename from htdocs/img/icons/page_error.png
rename to kasu/static/img/icons/page_error.png
diff --git a/htdocs/img/icons/page_excel.png b/kasu/static/img/icons/page_excel.png
similarity index 100%
rename from htdocs/img/icons/page_excel.png
rename to kasu/static/img/icons/page_excel.png
diff --git a/htdocs/img/icons/page_find.png b/kasu/static/img/icons/page_find.png
similarity index 100%
rename from htdocs/img/icons/page_find.png
rename to kasu/static/img/icons/page_find.png
diff --git a/htdocs/img/icons/page_gear.png b/kasu/static/img/icons/page_gear.png
similarity index 100%
rename from htdocs/img/icons/page_gear.png
rename to kasu/static/img/icons/page_gear.png
diff --git a/htdocs/img/icons/page_go.png b/kasu/static/img/icons/page_go.png
similarity index 100%
rename from htdocs/img/icons/page_go.png
rename to kasu/static/img/icons/page_go.png
diff --git a/htdocs/img/icons/page_green.png b/kasu/static/img/icons/page_green.png
similarity index 100%
rename from htdocs/img/icons/page_green.png
rename to kasu/static/img/icons/page_green.png
diff --git a/htdocs/img/icons/page_key.png b/kasu/static/img/icons/page_key.png
similarity index 100%
rename from htdocs/img/icons/page_key.png
rename to kasu/static/img/icons/page_key.png
diff --git a/htdocs/img/icons/page_lightning.png b/kasu/static/img/icons/page_lightning.png
similarity index 100%
rename from htdocs/img/icons/page_lightning.png
rename to kasu/static/img/icons/page_lightning.png
diff --git a/htdocs/img/icons/page_link.png b/kasu/static/img/icons/page_link.png
similarity index 100%
rename from htdocs/img/icons/page_link.png
rename to kasu/static/img/icons/page_link.png
diff --git a/htdocs/img/icons/page_paintbrush.png b/kasu/static/img/icons/page_paintbrush.png
similarity index 100%
rename from htdocs/img/icons/page_paintbrush.png
rename to kasu/static/img/icons/page_paintbrush.png
diff --git a/htdocs/img/icons/page_paste.png b/kasu/static/img/icons/page_paste.png
similarity index 100%
rename from htdocs/img/icons/page_paste.png
rename to kasu/static/img/icons/page_paste.png
diff --git a/htdocs/img/icons/page_red.png b/kasu/static/img/icons/page_red.png
similarity index 100%
rename from htdocs/img/icons/page_red.png
rename to kasu/static/img/icons/page_red.png
diff --git a/htdocs/img/icons/page_refresh.png b/kasu/static/img/icons/page_refresh.png
similarity index 100%
rename from htdocs/img/icons/page_refresh.png
rename to kasu/static/img/icons/page_refresh.png
diff --git a/htdocs/img/icons/page_save.png b/kasu/static/img/icons/page_save.png
similarity index 100%
rename from htdocs/img/icons/page_save.png
rename to kasu/static/img/icons/page_save.png
diff --git a/htdocs/img/icons/page_white.png b/kasu/static/img/icons/page_white.png
similarity index 100%
rename from htdocs/img/icons/page_white.png
rename to kasu/static/img/icons/page_white.png
diff --git a/htdocs/img/icons/page_white_acrobat.png b/kasu/static/img/icons/page_white_acrobat.png
similarity index 100%
rename from htdocs/img/icons/page_white_acrobat.png
rename to kasu/static/img/icons/page_white_acrobat.png
diff --git a/htdocs/img/icons/page_white_actionscript.png b/kasu/static/img/icons/page_white_actionscript.png
similarity index 100%
rename from htdocs/img/icons/page_white_actionscript.png
rename to kasu/static/img/icons/page_white_actionscript.png
diff --git a/htdocs/img/icons/page_white_add.png b/kasu/static/img/icons/page_white_add.png
similarity index 100%
rename from htdocs/img/icons/page_white_add.png
rename to kasu/static/img/icons/page_white_add.png
diff --git a/htdocs/img/icons/page_white_c.png b/kasu/static/img/icons/page_white_c.png
similarity index 100%
rename from htdocs/img/icons/page_white_c.png
rename to kasu/static/img/icons/page_white_c.png
diff --git a/htdocs/img/icons/page_white_camera.png b/kasu/static/img/icons/page_white_camera.png
similarity index 100%
rename from htdocs/img/icons/page_white_camera.png
rename to kasu/static/img/icons/page_white_camera.png
diff --git a/htdocs/img/icons/page_white_cd.png b/kasu/static/img/icons/page_white_cd.png
similarity index 100%
rename from htdocs/img/icons/page_white_cd.png
rename to kasu/static/img/icons/page_white_cd.png
diff --git a/htdocs/img/icons/page_white_code.png b/kasu/static/img/icons/page_white_code.png
similarity index 100%
rename from htdocs/img/icons/page_white_code.png
rename to kasu/static/img/icons/page_white_code.png
diff --git a/htdocs/img/icons/page_white_code_red.png b/kasu/static/img/icons/page_white_code_red.png
similarity index 100%
rename from htdocs/img/icons/page_white_code_red.png
rename to kasu/static/img/icons/page_white_code_red.png
diff --git a/htdocs/img/icons/page_white_coldfusion.png b/kasu/static/img/icons/page_white_coldfusion.png
similarity index 100%
rename from htdocs/img/icons/page_white_coldfusion.png
rename to kasu/static/img/icons/page_white_coldfusion.png
diff --git a/htdocs/img/icons/page_white_compressed.png b/kasu/static/img/icons/page_white_compressed.png
similarity index 100%
rename from htdocs/img/icons/page_white_compressed.png
rename to kasu/static/img/icons/page_white_compressed.png
diff --git a/htdocs/img/icons/page_white_copy.png b/kasu/static/img/icons/page_white_copy.png
similarity index 100%
rename from htdocs/img/icons/page_white_copy.png
rename to kasu/static/img/icons/page_white_copy.png
diff --git a/htdocs/img/icons/page_white_cplusplus.png b/kasu/static/img/icons/page_white_cplusplus.png
similarity index 100%
rename from htdocs/img/icons/page_white_cplusplus.png
rename to kasu/static/img/icons/page_white_cplusplus.png
diff --git a/htdocs/img/icons/page_white_csharp.png b/kasu/static/img/icons/page_white_csharp.png
similarity index 100%
rename from htdocs/img/icons/page_white_csharp.png
rename to kasu/static/img/icons/page_white_csharp.png
diff --git a/htdocs/img/icons/page_white_cup.png b/kasu/static/img/icons/page_white_cup.png
similarity index 100%
rename from htdocs/img/icons/page_white_cup.png
rename to kasu/static/img/icons/page_white_cup.png
diff --git a/htdocs/img/icons/page_white_database.png b/kasu/static/img/icons/page_white_database.png
similarity index 100%
rename from htdocs/img/icons/page_white_database.png
rename to kasu/static/img/icons/page_white_database.png
diff --git a/htdocs/img/icons/page_white_delete.png b/kasu/static/img/icons/page_white_delete.png
similarity index 100%
rename from htdocs/img/icons/page_white_delete.png
rename to kasu/static/img/icons/page_white_delete.png
diff --git a/htdocs/img/icons/page_white_dvd.png b/kasu/static/img/icons/page_white_dvd.png
similarity index 100%
rename from htdocs/img/icons/page_white_dvd.png
rename to kasu/static/img/icons/page_white_dvd.png
diff --git a/htdocs/img/icons/page_white_edit.png b/kasu/static/img/icons/page_white_edit.png
similarity index 100%
rename from htdocs/img/icons/page_white_edit.png
rename to kasu/static/img/icons/page_white_edit.png
diff --git a/htdocs/img/icons/page_white_error.png b/kasu/static/img/icons/page_white_error.png
similarity index 100%
rename from htdocs/img/icons/page_white_error.png
rename to kasu/static/img/icons/page_white_error.png
diff --git a/htdocs/img/icons/page_white_excel.png b/kasu/static/img/icons/page_white_excel.png
similarity index 100%
rename from htdocs/img/icons/page_white_excel.png
rename to kasu/static/img/icons/page_white_excel.png
diff --git a/htdocs/img/icons/page_white_find.png b/kasu/static/img/icons/page_white_find.png
similarity index 100%
rename from htdocs/img/icons/page_white_find.png
rename to kasu/static/img/icons/page_white_find.png
diff --git a/htdocs/img/icons/page_white_flash.png b/kasu/static/img/icons/page_white_flash.png
similarity index 100%
rename from htdocs/img/icons/page_white_flash.png
rename to kasu/static/img/icons/page_white_flash.png
diff --git a/htdocs/img/icons/page_white_freehand.png b/kasu/static/img/icons/page_white_freehand.png
similarity index 100%
rename from htdocs/img/icons/page_white_freehand.png
rename to kasu/static/img/icons/page_white_freehand.png
diff --git a/htdocs/img/icons/page_white_gear.png b/kasu/static/img/icons/page_white_gear.png
similarity index 100%
rename from htdocs/img/icons/page_white_gear.png
rename to kasu/static/img/icons/page_white_gear.png
diff --git a/htdocs/img/icons/page_white_get.png b/kasu/static/img/icons/page_white_get.png
similarity index 100%
rename from htdocs/img/icons/page_white_get.png
rename to kasu/static/img/icons/page_white_get.png
diff --git a/htdocs/img/icons/page_white_go.png b/kasu/static/img/icons/page_white_go.png
similarity index 100%
rename from htdocs/img/icons/page_white_go.png
rename to kasu/static/img/icons/page_white_go.png
diff --git a/htdocs/img/icons/page_white_h.png b/kasu/static/img/icons/page_white_h.png
similarity index 100%
rename from htdocs/img/icons/page_white_h.png
rename to kasu/static/img/icons/page_white_h.png
diff --git a/htdocs/img/icons/page_white_horizontal.png b/kasu/static/img/icons/page_white_horizontal.png
similarity index 100%
rename from htdocs/img/icons/page_white_horizontal.png
rename to kasu/static/img/icons/page_white_horizontal.png
diff --git a/htdocs/img/icons/page_white_key.png b/kasu/static/img/icons/page_white_key.png
similarity index 100%
rename from htdocs/img/icons/page_white_key.png
rename to kasu/static/img/icons/page_white_key.png
diff --git a/htdocs/img/icons/page_white_lightning.png b/kasu/static/img/icons/page_white_lightning.png
similarity index 100%
rename from htdocs/img/icons/page_white_lightning.png
rename to kasu/static/img/icons/page_white_lightning.png
diff --git a/htdocs/img/icons/page_white_link.png b/kasu/static/img/icons/page_white_link.png
similarity index 100%
rename from htdocs/img/icons/page_white_link.png
rename to kasu/static/img/icons/page_white_link.png
diff --git a/htdocs/img/icons/page_white_magnify.png b/kasu/static/img/icons/page_white_magnify.png
similarity index 100%
rename from htdocs/img/icons/page_white_magnify.png
rename to kasu/static/img/icons/page_white_magnify.png
diff --git a/htdocs/img/icons/page_white_medal.png b/kasu/static/img/icons/page_white_medal.png
similarity index 100%
rename from htdocs/img/icons/page_white_medal.png
rename to kasu/static/img/icons/page_white_medal.png
diff --git a/htdocs/img/icons/page_white_office.png b/kasu/static/img/icons/page_white_office.png
similarity index 100%
rename from htdocs/img/icons/page_white_office.png
rename to kasu/static/img/icons/page_white_office.png
diff --git a/htdocs/img/icons/page_white_paint.png b/kasu/static/img/icons/page_white_paint.png
similarity index 100%
rename from htdocs/img/icons/page_white_paint.png
rename to kasu/static/img/icons/page_white_paint.png
diff --git a/htdocs/img/icons/page_white_paintbrush.png b/kasu/static/img/icons/page_white_paintbrush.png
similarity index 100%
rename from htdocs/img/icons/page_white_paintbrush.png
rename to kasu/static/img/icons/page_white_paintbrush.png
diff --git a/htdocs/img/icons/page_white_paste.png b/kasu/static/img/icons/page_white_paste.png
similarity index 100%
rename from htdocs/img/icons/page_white_paste.png
rename to kasu/static/img/icons/page_white_paste.png
diff --git a/htdocs/img/icons/page_white_php.png b/kasu/static/img/icons/page_white_php.png
similarity index 100%
rename from htdocs/img/icons/page_white_php.png
rename to kasu/static/img/icons/page_white_php.png
diff --git a/htdocs/img/icons/page_white_picture.png b/kasu/static/img/icons/page_white_picture.png
similarity index 100%
rename from htdocs/img/icons/page_white_picture.png
rename to kasu/static/img/icons/page_white_picture.png
diff --git a/htdocs/img/icons/page_white_powerpoint.png b/kasu/static/img/icons/page_white_powerpoint.png
similarity index 100%
rename from htdocs/img/icons/page_white_powerpoint.png
rename to kasu/static/img/icons/page_white_powerpoint.png
diff --git a/htdocs/img/icons/page_white_put.png b/kasu/static/img/icons/page_white_put.png
similarity index 100%
rename from htdocs/img/icons/page_white_put.png
rename to kasu/static/img/icons/page_white_put.png
diff --git a/htdocs/img/icons/page_white_ruby.png b/kasu/static/img/icons/page_white_ruby.png
similarity index 100%
rename from htdocs/img/icons/page_white_ruby.png
rename to kasu/static/img/icons/page_white_ruby.png
diff --git a/htdocs/img/icons/page_white_stack.png b/kasu/static/img/icons/page_white_stack.png
similarity index 100%
rename from htdocs/img/icons/page_white_stack.png
rename to kasu/static/img/icons/page_white_stack.png
diff --git a/htdocs/img/icons/page_white_star.png b/kasu/static/img/icons/page_white_star.png
similarity index 100%
rename from htdocs/img/icons/page_white_star.png
rename to kasu/static/img/icons/page_white_star.png
diff --git a/htdocs/img/icons/page_white_swoosh.png b/kasu/static/img/icons/page_white_swoosh.png
similarity index 100%
rename from htdocs/img/icons/page_white_swoosh.png
rename to kasu/static/img/icons/page_white_swoosh.png
diff --git a/htdocs/img/icons/page_white_text.png b/kasu/static/img/icons/page_white_text.png
similarity index 100%
rename from htdocs/img/icons/page_white_text.png
rename to kasu/static/img/icons/page_white_text.png
diff --git a/htdocs/img/icons/page_white_text_width.png b/kasu/static/img/icons/page_white_text_width.png
similarity index 100%
rename from htdocs/img/icons/page_white_text_width.png
rename to kasu/static/img/icons/page_white_text_width.png
diff --git a/htdocs/img/icons/page_white_tux.png b/kasu/static/img/icons/page_white_tux.png
similarity index 100%
rename from htdocs/img/icons/page_white_tux.png
rename to kasu/static/img/icons/page_white_tux.png
diff --git a/htdocs/img/icons/page_white_vector.png b/kasu/static/img/icons/page_white_vector.png
similarity index 100%
rename from htdocs/img/icons/page_white_vector.png
rename to kasu/static/img/icons/page_white_vector.png
diff --git a/htdocs/img/icons/page_white_visualstudio.png b/kasu/static/img/icons/page_white_visualstudio.png
similarity index 100%
rename from htdocs/img/icons/page_white_visualstudio.png
rename to kasu/static/img/icons/page_white_visualstudio.png
diff --git a/htdocs/img/icons/page_white_width.png b/kasu/static/img/icons/page_white_width.png
similarity index 100%
rename from htdocs/img/icons/page_white_width.png
rename to kasu/static/img/icons/page_white_width.png
diff --git a/htdocs/img/icons/page_white_word.png b/kasu/static/img/icons/page_white_word.png
similarity index 100%
rename from htdocs/img/icons/page_white_word.png
rename to kasu/static/img/icons/page_white_word.png
diff --git a/htdocs/img/icons/page_white_world.png b/kasu/static/img/icons/page_white_world.png
similarity index 100%
rename from htdocs/img/icons/page_white_world.png
rename to kasu/static/img/icons/page_white_world.png
diff --git a/htdocs/img/icons/page_white_wrench.png b/kasu/static/img/icons/page_white_wrench.png
similarity index 100%
rename from htdocs/img/icons/page_white_wrench.png
rename to kasu/static/img/icons/page_white_wrench.png
diff --git a/htdocs/img/icons/page_white_zip.png b/kasu/static/img/icons/page_white_zip.png
similarity index 100%
rename from htdocs/img/icons/page_white_zip.png
rename to kasu/static/img/icons/page_white_zip.png
diff --git a/htdocs/img/icons/page_word.png b/kasu/static/img/icons/page_word.png
similarity index 100%
rename from htdocs/img/icons/page_word.png
rename to kasu/static/img/icons/page_word.png
diff --git a/htdocs/img/icons/page_world.png b/kasu/static/img/icons/page_world.png
similarity index 100%
rename from htdocs/img/icons/page_world.png
rename to kasu/static/img/icons/page_world.png
diff --git a/htdocs/img/icons/paintbrush.png b/kasu/static/img/icons/paintbrush.png
similarity index 100%
rename from htdocs/img/icons/paintbrush.png
rename to kasu/static/img/icons/paintbrush.png
diff --git a/htdocs/img/icons/paintcan.png b/kasu/static/img/icons/paintcan.png
similarity index 100%
rename from htdocs/img/icons/paintcan.png
rename to kasu/static/img/icons/paintcan.png
diff --git a/htdocs/img/icons/palette.png b/kasu/static/img/icons/palette.png
similarity index 100%
rename from htdocs/img/icons/palette.png
rename to kasu/static/img/icons/palette.png
diff --git a/htdocs/img/icons/paste_plain.png b/kasu/static/img/icons/paste_plain.png
similarity index 100%
rename from htdocs/img/icons/paste_plain.png
rename to kasu/static/img/icons/paste_plain.png
diff --git a/htdocs/img/icons/paste_word.png b/kasu/static/img/icons/paste_word.png
similarity index 100%
rename from htdocs/img/icons/paste_word.png
rename to kasu/static/img/icons/paste_word.png
diff --git a/htdocs/img/icons/pencil.png b/kasu/static/img/icons/pencil.png
similarity index 100%
rename from htdocs/img/icons/pencil.png
rename to kasu/static/img/icons/pencil.png
diff --git a/htdocs/img/icons/pencil_add.png b/kasu/static/img/icons/pencil_add.png
similarity index 100%
rename from htdocs/img/icons/pencil_add.png
rename to kasu/static/img/icons/pencil_add.png
diff --git a/htdocs/img/icons/pencil_delete.png b/kasu/static/img/icons/pencil_delete.png
similarity index 100%
rename from htdocs/img/icons/pencil_delete.png
rename to kasu/static/img/icons/pencil_delete.png
diff --git a/htdocs/img/icons/pencil_go.png b/kasu/static/img/icons/pencil_go.png
similarity index 100%
rename from htdocs/img/icons/pencil_go.png
rename to kasu/static/img/icons/pencil_go.png
diff --git a/htdocs/img/icons/phone.png b/kasu/static/img/icons/phone.png
similarity index 100%
rename from htdocs/img/icons/phone.png
rename to kasu/static/img/icons/phone.png
diff --git a/htdocs/img/icons/phone_add.png b/kasu/static/img/icons/phone_add.png
similarity index 100%
rename from htdocs/img/icons/phone_add.png
rename to kasu/static/img/icons/phone_add.png
diff --git a/htdocs/img/icons/phone_delete.png b/kasu/static/img/icons/phone_delete.png
similarity index 100%
rename from htdocs/img/icons/phone_delete.png
rename to kasu/static/img/icons/phone_delete.png
diff --git a/htdocs/img/icons/phone_sound.png b/kasu/static/img/icons/phone_sound.png
similarity index 100%
rename from htdocs/img/icons/phone_sound.png
rename to kasu/static/img/icons/phone_sound.png
diff --git a/htdocs/img/icons/photo.png b/kasu/static/img/icons/photo.png
similarity index 100%
rename from htdocs/img/icons/photo.png
rename to kasu/static/img/icons/photo.png
diff --git a/htdocs/img/icons/photo_add.png b/kasu/static/img/icons/photo_add.png
similarity index 100%
rename from htdocs/img/icons/photo_add.png
rename to kasu/static/img/icons/photo_add.png
diff --git a/htdocs/img/icons/photo_delete.png b/kasu/static/img/icons/photo_delete.png
similarity index 100%
rename from htdocs/img/icons/photo_delete.png
rename to kasu/static/img/icons/photo_delete.png
diff --git a/htdocs/img/icons/photo_link.png b/kasu/static/img/icons/photo_link.png
similarity index 100%
rename from htdocs/img/icons/photo_link.png
rename to kasu/static/img/icons/photo_link.png
diff --git a/htdocs/img/icons/photos.png b/kasu/static/img/icons/photos.png
similarity index 100%
rename from htdocs/img/icons/photos.png
rename to kasu/static/img/icons/photos.png
diff --git a/htdocs/img/icons/picture.png b/kasu/static/img/icons/picture.png
similarity index 100%
rename from htdocs/img/icons/picture.png
rename to kasu/static/img/icons/picture.png
diff --git a/htdocs/img/icons/picture_add.png b/kasu/static/img/icons/picture_add.png
similarity index 100%
rename from htdocs/img/icons/picture_add.png
rename to kasu/static/img/icons/picture_add.png
diff --git a/htdocs/img/icons/picture_delete.png b/kasu/static/img/icons/picture_delete.png
similarity index 100%
rename from htdocs/img/icons/picture_delete.png
rename to kasu/static/img/icons/picture_delete.png
diff --git a/htdocs/img/icons/picture_edit.png b/kasu/static/img/icons/picture_edit.png
similarity index 100%
rename from htdocs/img/icons/picture_edit.png
rename to kasu/static/img/icons/picture_edit.png
diff --git a/htdocs/img/icons/picture_empty.png b/kasu/static/img/icons/picture_empty.png
similarity index 100%
rename from htdocs/img/icons/picture_empty.png
rename to kasu/static/img/icons/picture_empty.png
diff --git a/htdocs/img/icons/picture_error.png b/kasu/static/img/icons/picture_error.png
similarity index 100%
rename from htdocs/img/icons/picture_error.png
rename to kasu/static/img/icons/picture_error.png
diff --git a/htdocs/img/icons/picture_go.png b/kasu/static/img/icons/picture_go.png
similarity index 100%
rename from htdocs/img/icons/picture_go.png
rename to kasu/static/img/icons/picture_go.png
diff --git a/htdocs/img/icons/picture_key.png b/kasu/static/img/icons/picture_key.png
similarity index 100%
rename from htdocs/img/icons/picture_key.png
rename to kasu/static/img/icons/picture_key.png
diff --git a/htdocs/img/icons/picture_link.png b/kasu/static/img/icons/picture_link.png
similarity index 100%
rename from htdocs/img/icons/picture_link.png
rename to kasu/static/img/icons/picture_link.png
diff --git a/htdocs/img/icons/picture_save.png b/kasu/static/img/icons/picture_save.png
similarity index 100%
rename from htdocs/img/icons/picture_save.png
rename to kasu/static/img/icons/picture_save.png
diff --git a/htdocs/img/icons/pictures.png b/kasu/static/img/icons/pictures.png
similarity index 100%
rename from htdocs/img/icons/pictures.png
rename to kasu/static/img/icons/pictures.png
diff --git a/htdocs/img/icons/pilcrow.png b/kasu/static/img/icons/pilcrow.png
similarity index 100%
rename from htdocs/img/icons/pilcrow.png
rename to kasu/static/img/icons/pilcrow.png
diff --git a/htdocs/img/icons/pill.png b/kasu/static/img/icons/pill.png
similarity index 100%
rename from htdocs/img/icons/pill.png
rename to kasu/static/img/icons/pill.png
diff --git a/htdocs/img/icons/pill_add.png b/kasu/static/img/icons/pill_add.png
similarity index 100%
rename from htdocs/img/icons/pill_add.png
rename to kasu/static/img/icons/pill_add.png
diff --git a/htdocs/img/icons/pill_delete.png b/kasu/static/img/icons/pill_delete.png
similarity index 100%
rename from htdocs/img/icons/pill_delete.png
rename to kasu/static/img/icons/pill_delete.png
diff --git a/htdocs/img/icons/pill_go.png b/kasu/static/img/icons/pill_go.png
similarity index 100%
rename from htdocs/img/icons/pill_go.png
rename to kasu/static/img/icons/pill_go.png
diff --git a/htdocs/img/icons/plugin.png b/kasu/static/img/icons/plugin.png
similarity index 100%
rename from htdocs/img/icons/plugin.png
rename to kasu/static/img/icons/plugin.png
diff --git a/htdocs/img/icons/plugin_add.png b/kasu/static/img/icons/plugin_add.png
similarity index 100%
rename from htdocs/img/icons/plugin_add.png
rename to kasu/static/img/icons/plugin_add.png
diff --git a/htdocs/img/icons/plugin_delete.png b/kasu/static/img/icons/plugin_delete.png
similarity index 100%
rename from htdocs/img/icons/plugin_delete.png
rename to kasu/static/img/icons/plugin_delete.png
diff --git a/htdocs/img/icons/plugin_disabled.png b/kasu/static/img/icons/plugin_disabled.png
similarity index 100%
rename from htdocs/img/icons/plugin_disabled.png
rename to kasu/static/img/icons/plugin_disabled.png
diff --git a/htdocs/img/icons/plugin_edit.png b/kasu/static/img/icons/plugin_edit.png
similarity index 100%
rename from htdocs/img/icons/plugin_edit.png
rename to kasu/static/img/icons/plugin_edit.png
diff --git a/htdocs/img/icons/plugin_error.png b/kasu/static/img/icons/plugin_error.png
similarity index 100%
rename from htdocs/img/icons/plugin_error.png
rename to kasu/static/img/icons/plugin_error.png
diff --git a/htdocs/img/icons/plugin_go.png b/kasu/static/img/icons/plugin_go.png
similarity index 100%
rename from htdocs/img/icons/plugin_go.png
rename to kasu/static/img/icons/plugin_go.png
diff --git a/htdocs/img/icons/plugin_link.png b/kasu/static/img/icons/plugin_link.png
similarity index 100%
rename from htdocs/img/icons/plugin_link.png
rename to kasu/static/img/icons/plugin_link.png
diff --git a/htdocs/img/icons/printer.png b/kasu/static/img/icons/printer.png
similarity index 100%
rename from htdocs/img/icons/printer.png
rename to kasu/static/img/icons/printer.png
diff --git a/htdocs/img/icons/printer_add.png b/kasu/static/img/icons/printer_add.png
similarity index 100%
rename from htdocs/img/icons/printer_add.png
rename to kasu/static/img/icons/printer_add.png
diff --git a/htdocs/img/icons/printer_delete.png b/kasu/static/img/icons/printer_delete.png
similarity index 100%
rename from htdocs/img/icons/printer_delete.png
rename to kasu/static/img/icons/printer_delete.png
diff --git a/htdocs/img/icons/printer_empty.png b/kasu/static/img/icons/printer_empty.png
similarity index 100%
rename from htdocs/img/icons/printer_empty.png
rename to kasu/static/img/icons/printer_empty.png
diff --git a/htdocs/img/icons/printer_error.png b/kasu/static/img/icons/printer_error.png
similarity index 100%
rename from htdocs/img/icons/printer_error.png
rename to kasu/static/img/icons/printer_error.png
diff --git a/htdocs/img/icons/rainbow.png b/kasu/static/img/icons/rainbow.png
similarity index 100%
rename from htdocs/img/icons/rainbow.png
rename to kasu/static/img/icons/rainbow.png
diff --git a/htdocs/img/icons/report.png b/kasu/static/img/icons/report.png
similarity index 100%
rename from htdocs/img/icons/report.png
rename to kasu/static/img/icons/report.png
diff --git a/htdocs/img/icons/report_add.png b/kasu/static/img/icons/report_add.png
similarity index 100%
rename from htdocs/img/icons/report_add.png
rename to kasu/static/img/icons/report_add.png
diff --git a/htdocs/img/icons/report_delete.png b/kasu/static/img/icons/report_delete.png
similarity index 100%
rename from htdocs/img/icons/report_delete.png
rename to kasu/static/img/icons/report_delete.png
diff --git a/htdocs/img/icons/report_disk.png b/kasu/static/img/icons/report_disk.png
similarity index 100%
rename from htdocs/img/icons/report_disk.png
rename to kasu/static/img/icons/report_disk.png
diff --git a/htdocs/img/icons/report_edit.png b/kasu/static/img/icons/report_edit.png
similarity index 100%
rename from htdocs/img/icons/report_edit.png
rename to kasu/static/img/icons/report_edit.png
diff --git a/htdocs/img/icons/report_go.png b/kasu/static/img/icons/report_go.png
similarity index 100%
rename from htdocs/img/icons/report_go.png
rename to kasu/static/img/icons/report_go.png
diff --git a/htdocs/img/icons/report_key.png b/kasu/static/img/icons/report_key.png
similarity index 100%
rename from htdocs/img/icons/report_key.png
rename to kasu/static/img/icons/report_key.png
diff --git a/htdocs/img/icons/report_link.png b/kasu/static/img/icons/report_link.png
similarity index 100%
rename from htdocs/img/icons/report_link.png
rename to kasu/static/img/icons/report_link.png
diff --git a/htdocs/img/icons/report_magnify.png b/kasu/static/img/icons/report_magnify.png
similarity index 100%
rename from htdocs/img/icons/report_magnify.png
rename to kasu/static/img/icons/report_magnify.png
diff --git a/htdocs/img/icons/report_picture.png b/kasu/static/img/icons/report_picture.png
similarity index 100%
rename from htdocs/img/icons/report_picture.png
rename to kasu/static/img/icons/report_picture.png
diff --git a/htdocs/img/icons/report_user.png b/kasu/static/img/icons/report_user.png
similarity index 100%
rename from htdocs/img/icons/report_user.png
rename to kasu/static/img/icons/report_user.png
diff --git a/htdocs/img/icons/report_word.png b/kasu/static/img/icons/report_word.png
similarity index 100%
rename from htdocs/img/icons/report_word.png
rename to kasu/static/img/icons/report_word.png
diff --git a/htdocs/img/icons/resultset_first.png b/kasu/static/img/icons/resultset_first.png
similarity index 100%
rename from htdocs/img/icons/resultset_first.png
rename to kasu/static/img/icons/resultset_first.png
diff --git a/htdocs/img/icons/resultset_last.png b/kasu/static/img/icons/resultset_last.png
similarity index 100%
rename from htdocs/img/icons/resultset_last.png
rename to kasu/static/img/icons/resultset_last.png
diff --git a/htdocs/img/icons/resultset_next.png b/kasu/static/img/icons/resultset_next.png
similarity index 100%
rename from htdocs/img/icons/resultset_next.png
rename to kasu/static/img/icons/resultset_next.png
diff --git a/htdocs/img/icons/resultset_previous.png b/kasu/static/img/icons/resultset_previous.png
similarity index 100%
rename from htdocs/img/icons/resultset_previous.png
rename to kasu/static/img/icons/resultset_previous.png
diff --git a/htdocs/img/icons/rosette.png b/kasu/static/img/icons/rosette.png
similarity index 100%
rename from htdocs/img/icons/rosette.png
rename to kasu/static/img/icons/rosette.png
diff --git a/htdocs/img/icons/rss.png b/kasu/static/img/icons/rss.png
similarity index 100%
rename from htdocs/img/icons/rss.png
rename to kasu/static/img/icons/rss.png
diff --git a/htdocs/img/icons/rss_add.png b/kasu/static/img/icons/rss_add.png
similarity index 100%
rename from htdocs/img/icons/rss_add.png
rename to kasu/static/img/icons/rss_add.png
diff --git a/htdocs/img/icons/rss_delete.png b/kasu/static/img/icons/rss_delete.png
similarity index 100%
rename from htdocs/img/icons/rss_delete.png
rename to kasu/static/img/icons/rss_delete.png
diff --git a/htdocs/img/icons/rss_go.png b/kasu/static/img/icons/rss_go.png
similarity index 100%
rename from htdocs/img/icons/rss_go.png
rename to kasu/static/img/icons/rss_go.png
diff --git a/htdocs/img/icons/rss_valid.png b/kasu/static/img/icons/rss_valid.png
similarity index 100%
rename from htdocs/img/icons/rss_valid.png
rename to kasu/static/img/icons/rss_valid.png
diff --git a/htdocs/img/icons/ruby.png b/kasu/static/img/icons/ruby.png
similarity index 100%
rename from htdocs/img/icons/ruby.png
rename to kasu/static/img/icons/ruby.png
diff --git a/htdocs/img/icons/ruby_add.png b/kasu/static/img/icons/ruby_add.png
similarity index 100%
rename from htdocs/img/icons/ruby_add.png
rename to kasu/static/img/icons/ruby_add.png
diff --git a/htdocs/img/icons/ruby_delete.png b/kasu/static/img/icons/ruby_delete.png
similarity index 100%
rename from htdocs/img/icons/ruby_delete.png
rename to kasu/static/img/icons/ruby_delete.png
diff --git a/htdocs/img/icons/ruby_gear.png b/kasu/static/img/icons/ruby_gear.png
similarity index 100%
rename from htdocs/img/icons/ruby_gear.png
rename to kasu/static/img/icons/ruby_gear.png
diff --git a/htdocs/img/icons/ruby_get.png b/kasu/static/img/icons/ruby_get.png
similarity index 100%
rename from htdocs/img/icons/ruby_get.png
rename to kasu/static/img/icons/ruby_get.png
diff --git a/htdocs/img/icons/ruby_go.png b/kasu/static/img/icons/ruby_go.png
similarity index 100%
rename from htdocs/img/icons/ruby_go.png
rename to kasu/static/img/icons/ruby_go.png
diff --git a/htdocs/img/icons/ruby_key.png b/kasu/static/img/icons/ruby_key.png
similarity index 100%
rename from htdocs/img/icons/ruby_key.png
rename to kasu/static/img/icons/ruby_key.png
diff --git a/htdocs/img/icons/ruby_link.png b/kasu/static/img/icons/ruby_link.png
similarity index 100%
rename from htdocs/img/icons/ruby_link.png
rename to kasu/static/img/icons/ruby_link.png
diff --git a/htdocs/img/icons/ruby_put.png b/kasu/static/img/icons/ruby_put.png
similarity index 100%
rename from htdocs/img/icons/ruby_put.png
rename to kasu/static/img/icons/ruby_put.png
diff --git a/htdocs/img/icons/script.png b/kasu/static/img/icons/script.png
similarity index 100%
rename from htdocs/img/icons/script.png
rename to kasu/static/img/icons/script.png
diff --git a/htdocs/img/icons/script_add.png b/kasu/static/img/icons/script_add.png
similarity index 100%
rename from htdocs/img/icons/script_add.png
rename to kasu/static/img/icons/script_add.png
diff --git a/htdocs/img/icons/script_code.png b/kasu/static/img/icons/script_code.png
similarity index 100%
rename from htdocs/img/icons/script_code.png
rename to kasu/static/img/icons/script_code.png
diff --git a/htdocs/img/icons/script_code_red.png b/kasu/static/img/icons/script_code_red.png
similarity index 100%
rename from htdocs/img/icons/script_code_red.png
rename to kasu/static/img/icons/script_code_red.png
diff --git a/htdocs/img/icons/script_delete.png b/kasu/static/img/icons/script_delete.png
similarity index 100%
rename from htdocs/img/icons/script_delete.png
rename to kasu/static/img/icons/script_delete.png
diff --git a/htdocs/img/icons/script_edit.png b/kasu/static/img/icons/script_edit.png
similarity index 100%
rename from htdocs/img/icons/script_edit.png
rename to kasu/static/img/icons/script_edit.png
diff --git a/htdocs/img/icons/script_error.png b/kasu/static/img/icons/script_error.png
similarity index 100%
rename from htdocs/img/icons/script_error.png
rename to kasu/static/img/icons/script_error.png
diff --git a/htdocs/img/icons/script_gear.png b/kasu/static/img/icons/script_gear.png
similarity index 100%
rename from htdocs/img/icons/script_gear.png
rename to kasu/static/img/icons/script_gear.png
diff --git a/htdocs/img/icons/script_go.png b/kasu/static/img/icons/script_go.png
similarity index 100%
rename from htdocs/img/icons/script_go.png
rename to kasu/static/img/icons/script_go.png
diff --git a/htdocs/img/icons/script_key.png b/kasu/static/img/icons/script_key.png
similarity index 100%
rename from htdocs/img/icons/script_key.png
rename to kasu/static/img/icons/script_key.png
diff --git a/htdocs/img/icons/script_lightning.png b/kasu/static/img/icons/script_lightning.png
similarity index 100%
rename from htdocs/img/icons/script_lightning.png
rename to kasu/static/img/icons/script_lightning.png
diff --git a/htdocs/img/icons/script_link.png b/kasu/static/img/icons/script_link.png
similarity index 100%
rename from htdocs/img/icons/script_link.png
rename to kasu/static/img/icons/script_link.png
diff --git a/htdocs/img/icons/script_palette.png b/kasu/static/img/icons/script_palette.png
similarity index 100%
rename from htdocs/img/icons/script_palette.png
rename to kasu/static/img/icons/script_palette.png
diff --git a/htdocs/img/icons/script_save.png b/kasu/static/img/icons/script_save.png
similarity index 100%
rename from htdocs/img/icons/script_save.png
rename to kasu/static/img/icons/script_save.png
diff --git a/htdocs/img/icons/server.png b/kasu/static/img/icons/server.png
similarity index 100%
rename from htdocs/img/icons/server.png
rename to kasu/static/img/icons/server.png
diff --git a/htdocs/img/icons/server_add.png b/kasu/static/img/icons/server_add.png
similarity index 100%
rename from htdocs/img/icons/server_add.png
rename to kasu/static/img/icons/server_add.png
diff --git a/htdocs/img/icons/server_chart.png b/kasu/static/img/icons/server_chart.png
similarity index 100%
rename from htdocs/img/icons/server_chart.png
rename to kasu/static/img/icons/server_chart.png
diff --git a/htdocs/img/icons/server_compressed.png b/kasu/static/img/icons/server_compressed.png
similarity index 100%
rename from htdocs/img/icons/server_compressed.png
rename to kasu/static/img/icons/server_compressed.png
diff --git a/htdocs/img/icons/server_connect.png b/kasu/static/img/icons/server_connect.png
similarity index 100%
rename from htdocs/img/icons/server_connect.png
rename to kasu/static/img/icons/server_connect.png
diff --git a/htdocs/img/icons/server_database.png b/kasu/static/img/icons/server_database.png
similarity index 100%
rename from htdocs/img/icons/server_database.png
rename to kasu/static/img/icons/server_database.png
diff --git a/htdocs/img/icons/server_delete.png b/kasu/static/img/icons/server_delete.png
similarity index 100%
rename from htdocs/img/icons/server_delete.png
rename to kasu/static/img/icons/server_delete.png
diff --git a/htdocs/img/icons/server_edit.png b/kasu/static/img/icons/server_edit.png
similarity index 100%
rename from htdocs/img/icons/server_edit.png
rename to kasu/static/img/icons/server_edit.png
diff --git a/htdocs/img/icons/server_error.png b/kasu/static/img/icons/server_error.png
similarity index 100%
rename from htdocs/img/icons/server_error.png
rename to kasu/static/img/icons/server_error.png
diff --git a/htdocs/img/icons/server_go.png b/kasu/static/img/icons/server_go.png
similarity index 100%
rename from htdocs/img/icons/server_go.png
rename to kasu/static/img/icons/server_go.png
diff --git a/htdocs/img/icons/server_key.png b/kasu/static/img/icons/server_key.png
similarity index 100%
rename from htdocs/img/icons/server_key.png
rename to kasu/static/img/icons/server_key.png
diff --git a/htdocs/img/icons/server_lightning.png b/kasu/static/img/icons/server_lightning.png
similarity index 100%
rename from htdocs/img/icons/server_lightning.png
rename to kasu/static/img/icons/server_lightning.png
diff --git a/htdocs/img/icons/server_link.png b/kasu/static/img/icons/server_link.png
similarity index 100%
rename from htdocs/img/icons/server_link.png
rename to kasu/static/img/icons/server_link.png
diff --git a/htdocs/img/icons/server_uncompressed.png b/kasu/static/img/icons/server_uncompressed.png
similarity index 100%
rename from htdocs/img/icons/server_uncompressed.png
rename to kasu/static/img/icons/server_uncompressed.png
diff --git a/htdocs/img/icons/shading.png b/kasu/static/img/icons/shading.png
similarity index 100%
rename from htdocs/img/icons/shading.png
rename to kasu/static/img/icons/shading.png
diff --git a/htdocs/img/icons/shape_align_bottom.png b/kasu/static/img/icons/shape_align_bottom.png
similarity index 100%
rename from htdocs/img/icons/shape_align_bottom.png
rename to kasu/static/img/icons/shape_align_bottom.png
diff --git a/htdocs/img/icons/shape_align_center.png b/kasu/static/img/icons/shape_align_center.png
similarity index 100%
rename from htdocs/img/icons/shape_align_center.png
rename to kasu/static/img/icons/shape_align_center.png
diff --git a/htdocs/img/icons/shape_align_left.png b/kasu/static/img/icons/shape_align_left.png
similarity index 100%
rename from htdocs/img/icons/shape_align_left.png
rename to kasu/static/img/icons/shape_align_left.png
diff --git a/htdocs/img/icons/shape_align_middle.png b/kasu/static/img/icons/shape_align_middle.png
similarity index 100%
rename from htdocs/img/icons/shape_align_middle.png
rename to kasu/static/img/icons/shape_align_middle.png
diff --git a/htdocs/img/icons/shape_align_right.png b/kasu/static/img/icons/shape_align_right.png
similarity index 100%
rename from htdocs/img/icons/shape_align_right.png
rename to kasu/static/img/icons/shape_align_right.png
diff --git a/htdocs/img/icons/shape_align_top.png b/kasu/static/img/icons/shape_align_top.png
similarity index 100%
rename from htdocs/img/icons/shape_align_top.png
rename to kasu/static/img/icons/shape_align_top.png
diff --git a/htdocs/img/icons/shape_flip_horizontal.png b/kasu/static/img/icons/shape_flip_horizontal.png
similarity index 100%
rename from htdocs/img/icons/shape_flip_horizontal.png
rename to kasu/static/img/icons/shape_flip_horizontal.png
diff --git a/htdocs/img/icons/shape_flip_vertical.png b/kasu/static/img/icons/shape_flip_vertical.png
similarity index 100%
rename from htdocs/img/icons/shape_flip_vertical.png
rename to kasu/static/img/icons/shape_flip_vertical.png
diff --git a/htdocs/img/icons/shape_group.png b/kasu/static/img/icons/shape_group.png
similarity index 100%
rename from htdocs/img/icons/shape_group.png
rename to kasu/static/img/icons/shape_group.png
diff --git a/htdocs/img/icons/shape_handles.png b/kasu/static/img/icons/shape_handles.png
similarity index 100%
rename from htdocs/img/icons/shape_handles.png
rename to kasu/static/img/icons/shape_handles.png
diff --git a/htdocs/img/icons/shape_move_back.png b/kasu/static/img/icons/shape_move_back.png
similarity index 100%
rename from htdocs/img/icons/shape_move_back.png
rename to kasu/static/img/icons/shape_move_back.png
diff --git a/htdocs/img/icons/shape_move_backwards.png b/kasu/static/img/icons/shape_move_backwards.png
similarity index 100%
rename from htdocs/img/icons/shape_move_backwards.png
rename to kasu/static/img/icons/shape_move_backwards.png
diff --git a/htdocs/img/icons/shape_move_forwards.png b/kasu/static/img/icons/shape_move_forwards.png
similarity index 100%
rename from htdocs/img/icons/shape_move_forwards.png
rename to kasu/static/img/icons/shape_move_forwards.png
diff --git a/htdocs/img/icons/shape_move_front.png b/kasu/static/img/icons/shape_move_front.png
similarity index 100%
rename from htdocs/img/icons/shape_move_front.png
rename to kasu/static/img/icons/shape_move_front.png
diff --git a/htdocs/img/icons/shape_rotate_anticlockwise.png b/kasu/static/img/icons/shape_rotate_anticlockwise.png
similarity index 100%
rename from htdocs/img/icons/shape_rotate_anticlockwise.png
rename to kasu/static/img/icons/shape_rotate_anticlockwise.png
diff --git a/htdocs/img/icons/shape_rotate_clockwise.png b/kasu/static/img/icons/shape_rotate_clockwise.png
similarity index 100%
rename from htdocs/img/icons/shape_rotate_clockwise.png
rename to kasu/static/img/icons/shape_rotate_clockwise.png
diff --git a/htdocs/img/icons/shape_square.png b/kasu/static/img/icons/shape_square.png
similarity index 100%
rename from htdocs/img/icons/shape_square.png
rename to kasu/static/img/icons/shape_square.png
diff --git a/htdocs/img/icons/shape_square_add.png b/kasu/static/img/icons/shape_square_add.png
similarity index 100%
rename from htdocs/img/icons/shape_square_add.png
rename to kasu/static/img/icons/shape_square_add.png
diff --git a/htdocs/img/icons/shape_square_delete.png b/kasu/static/img/icons/shape_square_delete.png
similarity index 100%
rename from htdocs/img/icons/shape_square_delete.png
rename to kasu/static/img/icons/shape_square_delete.png
diff --git a/htdocs/img/icons/shape_square_edit.png b/kasu/static/img/icons/shape_square_edit.png
similarity index 100%
rename from htdocs/img/icons/shape_square_edit.png
rename to kasu/static/img/icons/shape_square_edit.png
diff --git a/htdocs/img/icons/shape_square_error.png b/kasu/static/img/icons/shape_square_error.png
similarity index 100%
rename from htdocs/img/icons/shape_square_error.png
rename to kasu/static/img/icons/shape_square_error.png
diff --git a/htdocs/img/icons/shape_square_go.png b/kasu/static/img/icons/shape_square_go.png
similarity index 100%
rename from htdocs/img/icons/shape_square_go.png
rename to kasu/static/img/icons/shape_square_go.png
diff --git a/htdocs/img/icons/shape_square_key.png b/kasu/static/img/icons/shape_square_key.png
similarity index 100%
rename from htdocs/img/icons/shape_square_key.png
rename to kasu/static/img/icons/shape_square_key.png
diff --git a/htdocs/img/icons/shape_square_link.png b/kasu/static/img/icons/shape_square_link.png
similarity index 100%
rename from htdocs/img/icons/shape_square_link.png
rename to kasu/static/img/icons/shape_square_link.png
diff --git a/htdocs/img/icons/shape_ungroup.png b/kasu/static/img/icons/shape_ungroup.png
similarity index 100%
rename from htdocs/img/icons/shape_ungroup.png
rename to kasu/static/img/icons/shape_ungroup.png
diff --git a/htdocs/img/icons/shield.png b/kasu/static/img/icons/shield.png
similarity index 100%
rename from htdocs/img/icons/shield.png
rename to kasu/static/img/icons/shield.png
diff --git a/htdocs/img/icons/shield_add.png b/kasu/static/img/icons/shield_add.png
similarity index 100%
rename from htdocs/img/icons/shield_add.png
rename to kasu/static/img/icons/shield_add.png
diff --git a/htdocs/img/icons/shield_delete.png b/kasu/static/img/icons/shield_delete.png
similarity index 100%
rename from htdocs/img/icons/shield_delete.png
rename to kasu/static/img/icons/shield_delete.png
diff --git a/htdocs/img/icons/shield_go.png b/kasu/static/img/icons/shield_go.png
similarity index 100%
rename from htdocs/img/icons/shield_go.png
rename to kasu/static/img/icons/shield_go.png
diff --git a/htdocs/img/icons/sitemap.png b/kasu/static/img/icons/sitemap.png
similarity index 100%
rename from htdocs/img/icons/sitemap.png
rename to kasu/static/img/icons/sitemap.png
diff --git a/htdocs/img/icons/sitemap_color.png b/kasu/static/img/icons/sitemap_color.png
similarity index 100%
rename from htdocs/img/icons/sitemap_color.png
rename to kasu/static/img/icons/sitemap_color.png
diff --git a/htdocs/img/icons/sound.png b/kasu/static/img/icons/sound.png
similarity index 100%
rename from htdocs/img/icons/sound.png
rename to kasu/static/img/icons/sound.png
diff --git a/htdocs/img/icons/sound_add.png b/kasu/static/img/icons/sound_add.png
similarity index 100%
rename from htdocs/img/icons/sound_add.png
rename to kasu/static/img/icons/sound_add.png
diff --git a/htdocs/img/icons/sound_delete.png b/kasu/static/img/icons/sound_delete.png
similarity index 100%
rename from htdocs/img/icons/sound_delete.png
rename to kasu/static/img/icons/sound_delete.png
diff --git a/htdocs/img/icons/sound_low.png b/kasu/static/img/icons/sound_low.png
similarity index 100%
rename from htdocs/img/icons/sound_low.png
rename to kasu/static/img/icons/sound_low.png
diff --git a/htdocs/img/icons/sound_mute.png b/kasu/static/img/icons/sound_mute.png
similarity index 100%
rename from htdocs/img/icons/sound_mute.png
rename to kasu/static/img/icons/sound_mute.png
diff --git a/htdocs/img/icons/sound_none.png b/kasu/static/img/icons/sound_none.png
similarity index 100%
rename from htdocs/img/icons/sound_none.png
rename to kasu/static/img/icons/sound_none.png
diff --git a/htdocs/img/icons/spellcheck.png b/kasu/static/img/icons/spellcheck.png
similarity index 100%
rename from htdocs/img/icons/spellcheck.png
rename to kasu/static/img/icons/spellcheck.png
diff --git a/htdocs/img/icons/sport_8ball.png b/kasu/static/img/icons/sport_8ball.png
similarity index 100%
rename from htdocs/img/icons/sport_8ball.png
rename to kasu/static/img/icons/sport_8ball.png
diff --git a/htdocs/img/icons/sport_basketball.png b/kasu/static/img/icons/sport_basketball.png
similarity index 100%
rename from htdocs/img/icons/sport_basketball.png
rename to kasu/static/img/icons/sport_basketball.png
diff --git a/htdocs/img/icons/sport_football.png b/kasu/static/img/icons/sport_football.png
similarity index 100%
rename from htdocs/img/icons/sport_football.png
rename to kasu/static/img/icons/sport_football.png
diff --git a/htdocs/img/icons/sport_golf.png b/kasu/static/img/icons/sport_golf.png
similarity index 100%
rename from htdocs/img/icons/sport_golf.png
rename to kasu/static/img/icons/sport_golf.png
diff --git a/htdocs/img/icons/sport_raquet.png b/kasu/static/img/icons/sport_raquet.png
similarity index 100%
rename from htdocs/img/icons/sport_raquet.png
rename to kasu/static/img/icons/sport_raquet.png
diff --git a/htdocs/img/icons/sport_shuttlecock.png b/kasu/static/img/icons/sport_shuttlecock.png
similarity index 100%
rename from htdocs/img/icons/sport_shuttlecock.png
rename to kasu/static/img/icons/sport_shuttlecock.png
diff --git a/htdocs/img/icons/sport_soccer.png b/kasu/static/img/icons/sport_soccer.png
similarity index 100%
rename from htdocs/img/icons/sport_soccer.png
rename to kasu/static/img/icons/sport_soccer.png
diff --git a/htdocs/img/icons/sport_tennis.png b/kasu/static/img/icons/sport_tennis.png
similarity index 100%
rename from htdocs/img/icons/sport_tennis.png
rename to kasu/static/img/icons/sport_tennis.png
diff --git a/htdocs/img/icons/star.png b/kasu/static/img/icons/star.png
similarity index 100%
rename from htdocs/img/icons/star.png
rename to kasu/static/img/icons/star.png
diff --git a/htdocs/img/icons/status_away.png b/kasu/static/img/icons/status_away.png
similarity index 100%
rename from htdocs/img/icons/status_away.png
rename to kasu/static/img/icons/status_away.png
diff --git a/htdocs/img/icons/status_busy.png b/kasu/static/img/icons/status_busy.png
similarity index 100%
rename from htdocs/img/icons/status_busy.png
rename to kasu/static/img/icons/status_busy.png
diff --git a/htdocs/img/icons/status_offline.png b/kasu/static/img/icons/status_offline.png
similarity index 100%
rename from htdocs/img/icons/status_offline.png
rename to kasu/static/img/icons/status_offline.png
diff --git a/htdocs/img/icons/status_online.png b/kasu/static/img/icons/status_online.png
similarity index 100%
rename from htdocs/img/icons/status_online.png
rename to kasu/static/img/icons/status_online.png
diff --git a/htdocs/img/icons/stop.png b/kasu/static/img/icons/stop.png
similarity index 100%
rename from htdocs/img/icons/stop.png
rename to kasu/static/img/icons/stop.png
diff --git a/htdocs/img/icons/style.png b/kasu/static/img/icons/style.png
similarity index 100%
rename from htdocs/img/icons/style.png
rename to kasu/static/img/icons/style.png
diff --git a/htdocs/img/icons/style_add.png b/kasu/static/img/icons/style_add.png
similarity index 100%
rename from htdocs/img/icons/style_add.png
rename to kasu/static/img/icons/style_add.png
diff --git a/htdocs/img/icons/style_delete.png b/kasu/static/img/icons/style_delete.png
similarity index 100%
rename from htdocs/img/icons/style_delete.png
rename to kasu/static/img/icons/style_delete.png
diff --git a/htdocs/img/icons/style_edit.png b/kasu/static/img/icons/style_edit.png
similarity index 100%
rename from htdocs/img/icons/style_edit.png
rename to kasu/static/img/icons/style_edit.png
diff --git a/htdocs/img/icons/style_go.png b/kasu/static/img/icons/style_go.png
similarity index 100%
rename from htdocs/img/icons/style_go.png
rename to kasu/static/img/icons/style_go.png
diff --git a/htdocs/img/icons/sum.png b/kasu/static/img/icons/sum.png
similarity index 100%
rename from htdocs/img/icons/sum.png
rename to kasu/static/img/icons/sum.png
diff --git a/htdocs/img/icons/tab.png b/kasu/static/img/icons/tab.png
similarity index 100%
rename from htdocs/img/icons/tab.png
rename to kasu/static/img/icons/tab.png
diff --git a/htdocs/img/icons/tab_add.png b/kasu/static/img/icons/tab_add.png
similarity index 100%
rename from htdocs/img/icons/tab_add.png
rename to kasu/static/img/icons/tab_add.png
diff --git a/htdocs/img/icons/tab_delete.png b/kasu/static/img/icons/tab_delete.png
similarity index 100%
rename from htdocs/img/icons/tab_delete.png
rename to kasu/static/img/icons/tab_delete.png
diff --git a/htdocs/img/icons/tab_edit.png b/kasu/static/img/icons/tab_edit.png
similarity index 100%
rename from htdocs/img/icons/tab_edit.png
rename to kasu/static/img/icons/tab_edit.png
diff --git a/htdocs/img/icons/tab_go.png b/kasu/static/img/icons/tab_go.png
similarity index 100%
rename from htdocs/img/icons/tab_go.png
rename to kasu/static/img/icons/tab_go.png
diff --git a/htdocs/img/icons/table.png b/kasu/static/img/icons/table.png
similarity index 100%
rename from htdocs/img/icons/table.png
rename to kasu/static/img/icons/table.png
diff --git a/htdocs/img/icons/table_add.png b/kasu/static/img/icons/table_add.png
similarity index 100%
rename from htdocs/img/icons/table_add.png
rename to kasu/static/img/icons/table_add.png
diff --git a/htdocs/img/icons/table_delete.png b/kasu/static/img/icons/table_delete.png
similarity index 100%
rename from htdocs/img/icons/table_delete.png
rename to kasu/static/img/icons/table_delete.png
diff --git a/htdocs/img/icons/table_edit.png b/kasu/static/img/icons/table_edit.png
similarity index 100%
rename from htdocs/img/icons/table_edit.png
rename to kasu/static/img/icons/table_edit.png
diff --git a/htdocs/img/icons/table_error.png b/kasu/static/img/icons/table_error.png
similarity index 100%
rename from htdocs/img/icons/table_error.png
rename to kasu/static/img/icons/table_error.png
diff --git a/htdocs/img/icons/table_gear.png b/kasu/static/img/icons/table_gear.png
similarity index 100%
rename from htdocs/img/icons/table_gear.png
rename to kasu/static/img/icons/table_gear.png
diff --git a/htdocs/img/icons/table_go.png b/kasu/static/img/icons/table_go.png
similarity index 100%
rename from htdocs/img/icons/table_go.png
rename to kasu/static/img/icons/table_go.png
diff --git a/htdocs/img/icons/table_key.png b/kasu/static/img/icons/table_key.png
similarity index 100%
rename from htdocs/img/icons/table_key.png
rename to kasu/static/img/icons/table_key.png
diff --git a/htdocs/img/icons/table_lightning.png b/kasu/static/img/icons/table_lightning.png
similarity index 100%
rename from htdocs/img/icons/table_lightning.png
rename to kasu/static/img/icons/table_lightning.png
diff --git a/htdocs/img/icons/table_link.png b/kasu/static/img/icons/table_link.png
similarity index 100%
rename from htdocs/img/icons/table_link.png
rename to kasu/static/img/icons/table_link.png
diff --git a/htdocs/img/icons/table_multiple.png b/kasu/static/img/icons/table_multiple.png
similarity index 100%
rename from htdocs/img/icons/table_multiple.png
rename to kasu/static/img/icons/table_multiple.png
diff --git a/htdocs/img/icons/table_refresh.png b/kasu/static/img/icons/table_refresh.png
similarity index 100%
rename from htdocs/img/icons/table_refresh.png
rename to kasu/static/img/icons/table_refresh.png
diff --git a/htdocs/img/icons/table_relationship.png b/kasu/static/img/icons/table_relationship.png
similarity index 100%
rename from htdocs/img/icons/table_relationship.png
rename to kasu/static/img/icons/table_relationship.png
diff --git a/htdocs/img/icons/table_row_delete.png b/kasu/static/img/icons/table_row_delete.png
similarity index 100%
rename from htdocs/img/icons/table_row_delete.png
rename to kasu/static/img/icons/table_row_delete.png
diff --git a/htdocs/img/icons/table_row_insert.png b/kasu/static/img/icons/table_row_insert.png
similarity index 100%
rename from htdocs/img/icons/table_row_insert.png
rename to kasu/static/img/icons/table_row_insert.png
diff --git a/htdocs/img/icons/table_save.png b/kasu/static/img/icons/table_save.png
similarity index 100%
rename from htdocs/img/icons/table_save.png
rename to kasu/static/img/icons/table_save.png
diff --git a/htdocs/img/icons/table_sort.png b/kasu/static/img/icons/table_sort.png
similarity index 100%
rename from htdocs/img/icons/table_sort.png
rename to kasu/static/img/icons/table_sort.png
diff --git a/htdocs/img/icons/tag.png b/kasu/static/img/icons/tag.png
similarity index 100%
rename from htdocs/img/icons/tag.png
rename to kasu/static/img/icons/tag.png
diff --git a/htdocs/img/icons/tag_blue.png b/kasu/static/img/icons/tag_blue.png
similarity index 100%
rename from htdocs/img/icons/tag_blue.png
rename to kasu/static/img/icons/tag_blue.png
diff --git a/htdocs/img/icons/tag_blue_add.png b/kasu/static/img/icons/tag_blue_add.png
similarity index 100%
rename from htdocs/img/icons/tag_blue_add.png
rename to kasu/static/img/icons/tag_blue_add.png
diff --git a/htdocs/img/icons/tag_blue_delete.png b/kasu/static/img/icons/tag_blue_delete.png
similarity index 100%
rename from htdocs/img/icons/tag_blue_delete.png
rename to kasu/static/img/icons/tag_blue_delete.png
diff --git a/htdocs/img/icons/tag_blue_edit.png b/kasu/static/img/icons/tag_blue_edit.png
similarity index 100%
rename from htdocs/img/icons/tag_blue_edit.png
rename to kasu/static/img/icons/tag_blue_edit.png
diff --git a/htdocs/img/icons/tag_green.png b/kasu/static/img/icons/tag_green.png
similarity index 100%
rename from htdocs/img/icons/tag_green.png
rename to kasu/static/img/icons/tag_green.png
diff --git a/htdocs/img/icons/tag_orange.png b/kasu/static/img/icons/tag_orange.png
similarity index 100%
rename from htdocs/img/icons/tag_orange.png
rename to kasu/static/img/icons/tag_orange.png
diff --git a/htdocs/img/icons/tag_pink.png b/kasu/static/img/icons/tag_pink.png
similarity index 100%
rename from htdocs/img/icons/tag_pink.png
rename to kasu/static/img/icons/tag_pink.png
diff --git a/htdocs/img/icons/tag_purple.png b/kasu/static/img/icons/tag_purple.png
similarity index 100%
rename from htdocs/img/icons/tag_purple.png
rename to kasu/static/img/icons/tag_purple.png
diff --git a/htdocs/img/icons/tag_red.png b/kasu/static/img/icons/tag_red.png
similarity index 100%
rename from htdocs/img/icons/tag_red.png
rename to kasu/static/img/icons/tag_red.png
diff --git a/htdocs/img/icons/tag_yellow.png b/kasu/static/img/icons/tag_yellow.png
similarity index 100%
rename from htdocs/img/icons/tag_yellow.png
rename to kasu/static/img/icons/tag_yellow.png
diff --git a/htdocs/img/icons/telephone.png b/kasu/static/img/icons/telephone.png
similarity index 100%
rename from htdocs/img/icons/telephone.png
rename to kasu/static/img/icons/telephone.png
diff --git a/htdocs/img/icons/telephone_add.png b/kasu/static/img/icons/telephone_add.png
similarity index 100%
rename from htdocs/img/icons/telephone_add.png
rename to kasu/static/img/icons/telephone_add.png
diff --git a/htdocs/img/icons/telephone_delete.png b/kasu/static/img/icons/telephone_delete.png
similarity index 100%
rename from htdocs/img/icons/telephone_delete.png
rename to kasu/static/img/icons/telephone_delete.png
diff --git a/htdocs/img/icons/telephone_edit.png b/kasu/static/img/icons/telephone_edit.png
similarity index 100%
rename from htdocs/img/icons/telephone_edit.png
rename to kasu/static/img/icons/telephone_edit.png
diff --git a/htdocs/img/icons/telephone_error.png b/kasu/static/img/icons/telephone_error.png
similarity index 100%
rename from htdocs/img/icons/telephone_error.png
rename to kasu/static/img/icons/telephone_error.png
diff --git a/htdocs/img/icons/telephone_go.png b/kasu/static/img/icons/telephone_go.png
similarity index 100%
rename from htdocs/img/icons/telephone_go.png
rename to kasu/static/img/icons/telephone_go.png
diff --git a/htdocs/img/icons/telephone_key.png b/kasu/static/img/icons/telephone_key.png
similarity index 100%
rename from htdocs/img/icons/telephone_key.png
rename to kasu/static/img/icons/telephone_key.png
diff --git a/htdocs/img/icons/telephone_link.png b/kasu/static/img/icons/telephone_link.png
similarity index 100%
rename from htdocs/img/icons/telephone_link.png
rename to kasu/static/img/icons/telephone_link.png
diff --git a/htdocs/img/icons/television.png b/kasu/static/img/icons/television.png
similarity index 100%
rename from htdocs/img/icons/television.png
rename to kasu/static/img/icons/television.png
diff --git a/htdocs/img/icons/television_add.png b/kasu/static/img/icons/television_add.png
similarity index 100%
rename from htdocs/img/icons/television_add.png
rename to kasu/static/img/icons/television_add.png
diff --git a/htdocs/img/icons/television_delete.png b/kasu/static/img/icons/television_delete.png
similarity index 100%
rename from htdocs/img/icons/television_delete.png
rename to kasu/static/img/icons/television_delete.png
diff --git a/htdocs/img/icons/text_align_center.png b/kasu/static/img/icons/text_align_center.png
similarity index 100%
rename from htdocs/img/icons/text_align_center.png
rename to kasu/static/img/icons/text_align_center.png
diff --git a/htdocs/img/icons/text_align_justify.png b/kasu/static/img/icons/text_align_justify.png
similarity index 100%
rename from htdocs/img/icons/text_align_justify.png
rename to kasu/static/img/icons/text_align_justify.png
diff --git a/htdocs/img/icons/text_align_left.png b/kasu/static/img/icons/text_align_left.png
similarity index 100%
rename from htdocs/img/icons/text_align_left.png
rename to kasu/static/img/icons/text_align_left.png
diff --git a/htdocs/img/icons/text_align_right.png b/kasu/static/img/icons/text_align_right.png
similarity index 100%
rename from htdocs/img/icons/text_align_right.png
rename to kasu/static/img/icons/text_align_right.png
diff --git a/htdocs/img/icons/text_allcaps.png b/kasu/static/img/icons/text_allcaps.png
similarity index 100%
rename from htdocs/img/icons/text_allcaps.png
rename to kasu/static/img/icons/text_allcaps.png
diff --git a/htdocs/img/icons/text_bold.png b/kasu/static/img/icons/text_bold.png
similarity index 100%
rename from htdocs/img/icons/text_bold.png
rename to kasu/static/img/icons/text_bold.png
diff --git a/htdocs/img/icons/text_columns.png b/kasu/static/img/icons/text_columns.png
similarity index 100%
rename from htdocs/img/icons/text_columns.png
rename to kasu/static/img/icons/text_columns.png
diff --git a/htdocs/img/icons/text_dropcaps.png b/kasu/static/img/icons/text_dropcaps.png
similarity index 100%
rename from htdocs/img/icons/text_dropcaps.png
rename to kasu/static/img/icons/text_dropcaps.png
diff --git a/htdocs/img/icons/text_heading_1.png b/kasu/static/img/icons/text_heading_1.png
similarity index 100%
rename from htdocs/img/icons/text_heading_1.png
rename to kasu/static/img/icons/text_heading_1.png
diff --git a/htdocs/img/icons/text_heading_2.png b/kasu/static/img/icons/text_heading_2.png
similarity index 100%
rename from htdocs/img/icons/text_heading_2.png
rename to kasu/static/img/icons/text_heading_2.png
diff --git a/htdocs/img/icons/text_heading_3.png b/kasu/static/img/icons/text_heading_3.png
similarity index 100%
rename from htdocs/img/icons/text_heading_3.png
rename to kasu/static/img/icons/text_heading_3.png
diff --git a/htdocs/img/icons/text_heading_4.png b/kasu/static/img/icons/text_heading_4.png
similarity index 100%
rename from htdocs/img/icons/text_heading_4.png
rename to kasu/static/img/icons/text_heading_4.png
diff --git a/htdocs/img/icons/text_heading_5.png b/kasu/static/img/icons/text_heading_5.png
similarity index 100%
rename from htdocs/img/icons/text_heading_5.png
rename to kasu/static/img/icons/text_heading_5.png
diff --git a/htdocs/img/icons/text_heading_6.png b/kasu/static/img/icons/text_heading_6.png
similarity index 100%
rename from htdocs/img/icons/text_heading_6.png
rename to kasu/static/img/icons/text_heading_6.png
diff --git a/htdocs/img/icons/text_horizontalrule.png b/kasu/static/img/icons/text_horizontalrule.png
similarity index 100%
rename from htdocs/img/icons/text_horizontalrule.png
rename to kasu/static/img/icons/text_horizontalrule.png
diff --git a/htdocs/img/icons/text_indent.png b/kasu/static/img/icons/text_indent.png
similarity index 100%
rename from htdocs/img/icons/text_indent.png
rename to kasu/static/img/icons/text_indent.png
diff --git a/htdocs/img/icons/text_indent_remove.png b/kasu/static/img/icons/text_indent_remove.png
similarity index 100%
rename from htdocs/img/icons/text_indent_remove.png
rename to kasu/static/img/icons/text_indent_remove.png
diff --git a/htdocs/img/icons/text_italic.png b/kasu/static/img/icons/text_italic.png
similarity index 100%
rename from htdocs/img/icons/text_italic.png
rename to kasu/static/img/icons/text_italic.png
diff --git a/htdocs/img/icons/text_kerning.png b/kasu/static/img/icons/text_kerning.png
similarity index 100%
rename from htdocs/img/icons/text_kerning.png
rename to kasu/static/img/icons/text_kerning.png
diff --git a/htdocs/img/icons/text_letter_omega.png b/kasu/static/img/icons/text_letter_omega.png
similarity index 100%
rename from htdocs/img/icons/text_letter_omega.png
rename to kasu/static/img/icons/text_letter_omega.png
diff --git a/htdocs/img/icons/text_letterspacing.png b/kasu/static/img/icons/text_letterspacing.png
similarity index 100%
rename from htdocs/img/icons/text_letterspacing.png
rename to kasu/static/img/icons/text_letterspacing.png
diff --git a/htdocs/img/icons/text_linespacing.png b/kasu/static/img/icons/text_linespacing.png
similarity index 100%
rename from htdocs/img/icons/text_linespacing.png
rename to kasu/static/img/icons/text_linespacing.png
diff --git a/htdocs/img/icons/text_list_bullets.png b/kasu/static/img/icons/text_list_bullets.png
similarity index 100%
rename from htdocs/img/icons/text_list_bullets.png
rename to kasu/static/img/icons/text_list_bullets.png
diff --git a/htdocs/img/icons/text_list_numbers.png b/kasu/static/img/icons/text_list_numbers.png
similarity index 100%
rename from htdocs/img/icons/text_list_numbers.png
rename to kasu/static/img/icons/text_list_numbers.png
diff --git a/htdocs/img/icons/text_lowercase.png b/kasu/static/img/icons/text_lowercase.png
similarity index 100%
rename from htdocs/img/icons/text_lowercase.png
rename to kasu/static/img/icons/text_lowercase.png
diff --git a/htdocs/img/icons/text_padding_bottom.png b/kasu/static/img/icons/text_padding_bottom.png
similarity index 100%
rename from htdocs/img/icons/text_padding_bottom.png
rename to kasu/static/img/icons/text_padding_bottom.png
diff --git a/htdocs/img/icons/text_padding_left.png b/kasu/static/img/icons/text_padding_left.png
similarity index 100%
rename from htdocs/img/icons/text_padding_left.png
rename to kasu/static/img/icons/text_padding_left.png
diff --git a/htdocs/img/icons/text_padding_right.png b/kasu/static/img/icons/text_padding_right.png
similarity index 100%
rename from htdocs/img/icons/text_padding_right.png
rename to kasu/static/img/icons/text_padding_right.png
diff --git a/htdocs/img/icons/text_padding_top.png b/kasu/static/img/icons/text_padding_top.png
similarity index 100%
rename from htdocs/img/icons/text_padding_top.png
rename to kasu/static/img/icons/text_padding_top.png
diff --git a/htdocs/img/icons/text_replace.png b/kasu/static/img/icons/text_replace.png
similarity index 100%
rename from htdocs/img/icons/text_replace.png
rename to kasu/static/img/icons/text_replace.png
diff --git a/htdocs/img/icons/text_signature.png b/kasu/static/img/icons/text_signature.png
similarity index 100%
rename from htdocs/img/icons/text_signature.png
rename to kasu/static/img/icons/text_signature.png
diff --git a/htdocs/img/icons/text_smallcaps.png b/kasu/static/img/icons/text_smallcaps.png
similarity index 100%
rename from htdocs/img/icons/text_smallcaps.png
rename to kasu/static/img/icons/text_smallcaps.png
diff --git a/htdocs/img/icons/text_strikethrough.png b/kasu/static/img/icons/text_strikethrough.png
similarity index 100%
rename from htdocs/img/icons/text_strikethrough.png
rename to kasu/static/img/icons/text_strikethrough.png
diff --git a/htdocs/img/icons/text_subscript.png b/kasu/static/img/icons/text_subscript.png
similarity index 100%
rename from htdocs/img/icons/text_subscript.png
rename to kasu/static/img/icons/text_subscript.png
diff --git a/htdocs/img/icons/text_superscript.png b/kasu/static/img/icons/text_superscript.png
similarity index 100%
rename from htdocs/img/icons/text_superscript.png
rename to kasu/static/img/icons/text_superscript.png
diff --git a/htdocs/img/icons/text_underline.png b/kasu/static/img/icons/text_underline.png
similarity index 100%
rename from htdocs/img/icons/text_underline.png
rename to kasu/static/img/icons/text_underline.png
diff --git a/htdocs/img/icons/text_uppercase.png b/kasu/static/img/icons/text_uppercase.png
similarity index 100%
rename from htdocs/img/icons/text_uppercase.png
rename to kasu/static/img/icons/text_uppercase.png
diff --git a/htdocs/img/icons/textfield.png b/kasu/static/img/icons/textfield.png
similarity index 100%
rename from htdocs/img/icons/textfield.png
rename to kasu/static/img/icons/textfield.png
diff --git a/htdocs/img/icons/textfield_add.png b/kasu/static/img/icons/textfield_add.png
similarity index 100%
rename from htdocs/img/icons/textfield_add.png
rename to kasu/static/img/icons/textfield_add.png
diff --git a/htdocs/img/icons/textfield_delete.png b/kasu/static/img/icons/textfield_delete.png
similarity index 100%
rename from htdocs/img/icons/textfield_delete.png
rename to kasu/static/img/icons/textfield_delete.png
diff --git a/htdocs/img/icons/textfield_key.png b/kasu/static/img/icons/textfield_key.png
similarity index 100%
rename from htdocs/img/icons/textfield_key.png
rename to kasu/static/img/icons/textfield_key.png
diff --git a/htdocs/img/icons/textfield_rename.png b/kasu/static/img/icons/textfield_rename.png
similarity index 100%
rename from htdocs/img/icons/textfield_rename.png
rename to kasu/static/img/icons/textfield_rename.png
diff --git a/htdocs/img/icons/thumb_down.png b/kasu/static/img/icons/thumb_down.png
similarity index 100%
rename from htdocs/img/icons/thumb_down.png
rename to kasu/static/img/icons/thumb_down.png
diff --git a/htdocs/img/icons/thumb_up.png b/kasu/static/img/icons/thumb_up.png
similarity index 100%
rename from htdocs/img/icons/thumb_up.png
rename to kasu/static/img/icons/thumb_up.png
diff --git a/htdocs/img/icons/tick.png b/kasu/static/img/icons/tick.png
similarity index 100%
rename from htdocs/img/icons/tick.png
rename to kasu/static/img/icons/tick.png
diff --git a/htdocs/img/icons/time.png b/kasu/static/img/icons/time.png
similarity index 100%
rename from htdocs/img/icons/time.png
rename to kasu/static/img/icons/time.png
diff --git a/htdocs/img/icons/time_add.png b/kasu/static/img/icons/time_add.png
similarity index 100%
rename from htdocs/img/icons/time_add.png
rename to kasu/static/img/icons/time_add.png
diff --git a/htdocs/img/icons/time_delete.png b/kasu/static/img/icons/time_delete.png
similarity index 100%
rename from htdocs/img/icons/time_delete.png
rename to kasu/static/img/icons/time_delete.png
diff --git a/htdocs/img/icons/time_go.png b/kasu/static/img/icons/time_go.png
similarity index 100%
rename from htdocs/img/icons/time_go.png
rename to kasu/static/img/icons/time_go.png
diff --git a/htdocs/img/icons/timeline_marker.png b/kasu/static/img/icons/timeline_marker.png
similarity index 100%
rename from htdocs/img/icons/timeline_marker.png
rename to kasu/static/img/icons/timeline_marker.png
diff --git a/htdocs/img/icons/transmit.png b/kasu/static/img/icons/transmit.png
similarity index 100%
rename from htdocs/img/icons/transmit.png
rename to kasu/static/img/icons/transmit.png
diff --git a/htdocs/img/icons/transmit_add.png b/kasu/static/img/icons/transmit_add.png
similarity index 100%
rename from htdocs/img/icons/transmit_add.png
rename to kasu/static/img/icons/transmit_add.png
diff --git a/htdocs/img/icons/transmit_blue.png b/kasu/static/img/icons/transmit_blue.png
similarity index 100%
rename from htdocs/img/icons/transmit_blue.png
rename to kasu/static/img/icons/transmit_blue.png
diff --git a/htdocs/img/icons/transmit_delete.png b/kasu/static/img/icons/transmit_delete.png
similarity index 100%
rename from htdocs/img/icons/transmit_delete.png
rename to kasu/static/img/icons/transmit_delete.png
diff --git a/htdocs/img/icons/transmit_edit.png b/kasu/static/img/icons/transmit_edit.png
similarity index 100%
rename from htdocs/img/icons/transmit_edit.png
rename to kasu/static/img/icons/transmit_edit.png
diff --git a/htdocs/img/icons/transmit_error.png b/kasu/static/img/icons/transmit_error.png
similarity index 100%
rename from htdocs/img/icons/transmit_error.png
rename to kasu/static/img/icons/transmit_error.png
diff --git a/htdocs/img/icons/transmit_go.png b/kasu/static/img/icons/transmit_go.png
similarity index 100%
rename from htdocs/img/icons/transmit_go.png
rename to kasu/static/img/icons/transmit_go.png
diff --git a/htdocs/img/icons/tux.png b/kasu/static/img/icons/tux.png
similarity index 100%
rename from htdocs/img/icons/tux.png
rename to kasu/static/img/icons/tux.png
diff --git a/htdocs/img/icons/user.png b/kasu/static/img/icons/user.png
similarity index 100%
rename from htdocs/img/icons/user.png
rename to kasu/static/img/icons/user.png
diff --git a/htdocs/img/icons/user_add.png b/kasu/static/img/icons/user_add.png
similarity index 100%
rename from htdocs/img/icons/user_add.png
rename to kasu/static/img/icons/user_add.png
diff --git a/htdocs/img/icons/user_comment.png b/kasu/static/img/icons/user_comment.png
similarity index 100%
rename from htdocs/img/icons/user_comment.png
rename to kasu/static/img/icons/user_comment.png
diff --git a/htdocs/img/icons/user_delete.png b/kasu/static/img/icons/user_delete.png
similarity index 100%
rename from htdocs/img/icons/user_delete.png
rename to kasu/static/img/icons/user_delete.png
diff --git a/htdocs/img/icons/user_edit.png b/kasu/static/img/icons/user_edit.png
similarity index 100%
rename from htdocs/img/icons/user_edit.png
rename to kasu/static/img/icons/user_edit.png
diff --git a/htdocs/img/icons/user_female.png b/kasu/static/img/icons/user_female.png
similarity index 100%
rename from htdocs/img/icons/user_female.png
rename to kasu/static/img/icons/user_female.png
diff --git a/htdocs/img/icons/user_go.png b/kasu/static/img/icons/user_go.png
similarity index 100%
rename from htdocs/img/icons/user_go.png
rename to kasu/static/img/icons/user_go.png
diff --git a/htdocs/img/icons/user_gray.png b/kasu/static/img/icons/user_gray.png
similarity index 100%
rename from htdocs/img/icons/user_gray.png
rename to kasu/static/img/icons/user_gray.png
diff --git a/htdocs/img/icons/user_green.png b/kasu/static/img/icons/user_green.png
similarity index 100%
rename from htdocs/img/icons/user_green.png
rename to kasu/static/img/icons/user_green.png
diff --git a/htdocs/img/icons/user_orange.png b/kasu/static/img/icons/user_orange.png
similarity index 100%
rename from htdocs/img/icons/user_orange.png
rename to kasu/static/img/icons/user_orange.png
diff --git a/htdocs/img/icons/user_red.png b/kasu/static/img/icons/user_red.png
similarity index 100%
rename from htdocs/img/icons/user_red.png
rename to kasu/static/img/icons/user_red.png
diff --git a/htdocs/img/icons/user_suit.png b/kasu/static/img/icons/user_suit.png
similarity index 100%
rename from htdocs/img/icons/user_suit.png
rename to kasu/static/img/icons/user_suit.png
diff --git a/htdocs/img/icons/vcard.png b/kasu/static/img/icons/vcard.png
similarity index 100%
rename from htdocs/img/icons/vcard.png
rename to kasu/static/img/icons/vcard.png
diff --git a/htdocs/img/icons/vcard_add.png b/kasu/static/img/icons/vcard_add.png
similarity index 100%
rename from htdocs/img/icons/vcard_add.png
rename to kasu/static/img/icons/vcard_add.png
diff --git a/htdocs/img/icons/vcard_delete.png b/kasu/static/img/icons/vcard_delete.png
similarity index 100%
rename from htdocs/img/icons/vcard_delete.png
rename to kasu/static/img/icons/vcard_delete.png
diff --git a/htdocs/img/icons/vcard_edit.png b/kasu/static/img/icons/vcard_edit.png
similarity index 100%
rename from htdocs/img/icons/vcard_edit.png
rename to kasu/static/img/icons/vcard_edit.png
diff --git a/htdocs/img/icons/vector.png b/kasu/static/img/icons/vector.png
similarity index 100%
rename from htdocs/img/icons/vector.png
rename to kasu/static/img/icons/vector.png
diff --git a/htdocs/img/icons/vector_add.png b/kasu/static/img/icons/vector_add.png
similarity index 100%
rename from htdocs/img/icons/vector_add.png
rename to kasu/static/img/icons/vector_add.png
diff --git a/htdocs/img/icons/vector_delete.png b/kasu/static/img/icons/vector_delete.png
similarity index 100%
rename from htdocs/img/icons/vector_delete.png
rename to kasu/static/img/icons/vector_delete.png
diff --git a/htdocs/img/icons/wand.png b/kasu/static/img/icons/wand.png
similarity index 100%
rename from htdocs/img/icons/wand.png
rename to kasu/static/img/icons/wand.png
diff --git a/htdocs/img/icons/weather_clouds.png b/kasu/static/img/icons/weather_clouds.png
similarity index 100%
rename from htdocs/img/icons/weather_clouds.png
rename to kasu/static/img/icons/weather_clouds.png
diff --git a/htdocs/img/icons/weather_cloudy.png b/kasu/static/img/icons/weather_cloudy.png
similarity index 100%
rename from htdocs/img/icons/weather_cloudy.png
rename to kasu/static/img/icons/weather_cloudy.png
diff --git a/htdocs/img/icons/weather_lightning.png b/kasu/static/img/icons/weather_lightning.png
similarity index 100%
rename from htdocs/img/icons/weather_lightning.png
rename to kasu/static/img/icons/weather_lightning.png
diff --git a/htdocs/img/icons/weather_rain.png b/kasu/static/img/icons/weather_rain.png
similarity index 100%
rename from htdocs/img/icons/weather_rain.png
rename to kasu/static/img/icons/weather_rain.png
diff --git a/htdocs/img/icons/weather_snow.png b/kasu/static/img/icons/weather_snow.png
similarity index 100%
rename from htdocs/img/icons/weather_snow.png
rename to kasu/static/img/icons/weather_snow.png
diff --git a/htdocs/img/icons/weather_sun.png b/kasu/static/img/icons/weather_sun.png
similarity index 100%
rename from htdocs/img/icons/weather_sun.png
rename to kasu/static/img/icons/weather_sun.png
diff --git a/htdocs/img/icons/webcam.png b/kasu/static/img/icons/webcam.png
similarity index 100%
rename from htdocs/img/icons/webcam.png
rename to kasu/static/img/icons/webcam.png
diff --git a/htdocs/img/icons/webcam_add.png b/kasu/static/img/icons/webcam_add.png
similarity index 100%
rename from htdocs/img/icons/webcam_add.png
rename to kasu/static/img/icons/webcam_add.png
diff --git a/htdocs/img/icons/webcam_delete.png b/kasu/static/img/icons/webcam_delete.png
similarity index 100%
rename from htdocs/img/icons/webcam_delete.png
rename to kasu/static/img/icons/webcam_delete.png
diff --git a/htdocs/img/icons/webcam_error.png b/kasu/static/img/icons/webcam_error.png
similarity index 100%
rename from htdocs/img/icons/webcam_error.png
rename to kasu/static/img/icons/webcam_error.png
diff --git a/htdocs/img/icons/world.png b/kasu/static/img/icons/world.png
similarity index 100%
rename from htdocs/img/icons/world.png
rename to kasu/static/img/icons/world.png
diff --git a/htdocs/img/icons/world_add.png b/kasu/static/img/icons/world_add.png
similarity index 100%
rename from htdocs/img/icons/world_add.png
rename to kasu/static/img/icons/world_add.png
diff --git a/htdocs/img/icons/world_delete.png b/kasu/static/img/icons/world_delete.png
similarity index 100%
rename from htdocs/img/icons/world_delete.png
rename to kasu/static/img/icons/world_delete.png
diff --git a/htdocs/img/icons/world_edit.png b/kasu/static/img/icons/world_edit.png
similarity index 100%
rename from htdocs/img/icons/world_edit.png
rename to kasu/static/img/icons/world_edit.png
diff --git a/htdocs/img/icons/world_go.png b/kasu/static/img/icons/world_go.png
similarity index 100%
rename from htdocs/img/icons/world_go.png
rename to kasu/static/img/icons/world_go.png
diff --git a/htdocs/img/icons/world_link.png b/kasu/static/img/icons/world_link.png
similarity index 100%
rename from htdocs/img/icons/world_link.png
rename to kasu/static/img/icons/world_link.png
diff --git a/htdocs/img/icons/wrench.png b/kasu/static/img/icons/wrench.png
similarity index 100%
rename from htdocs/img/icons/wrench.png
rename to kasu/static/img/icons/wrench.png
diff --git a/htdocs/img/icons/wrench_orange.png b/kasu/static/img/icons/wrench_orange.png
similarity index 100%
rename from htdocs/img/icons/wrench_orange.png
rename to kasu/static/img/icons/wrench_orange.png
diff --git a/htdocs/img/icons/xhtml.png b/kasu/static/img/icons/xhtml.png
similarity index 100%
rename from htdocs/img/icons/xhtml.png
rename to kasu/static/img/icons/xhtml.png
diff --git a/htdocs/img/icons/xhtml_add.png b/kasu/static/img/icons/xhtml_add.png
similarity index 100%
rename from htdocs/img/icons/xhtml_add.png
rename to kasu/static/img/icons/xhtml_add.png
diff --git a/htdocs/img/icons/xhtml_delete.png b/kasu/static/img/icons/xhtml_delete.png
similarity index 100%
rename from htdocs/img/icons/xhtml_delete.png
rename to kasu/static/img/icons/xhtml_delete.png
diff --git a/htdocs/img/icons/xhtml_go.png b/kasu/static/img/icons/xhtml_go.png
similarity index 100%
rename from htdocs/img/icons/xhtml_go.png
rename to kasu/static/img/icons/xhtml_go.png
diff --git a/htdocs/img/icons/xhtml_valid.png b/kasu/static/img/icons/xhtml_valid.png
similarity index 100%
rename from htdocs/img/icons/xhtml_valid.png
rename to kasu/static/img/icons/xhtml_valid.png
diff --git a/htdocs/img/icons/zoom.png b/kasu/static/img/icons/zoom.png
similarity index 100%
rename from htdocs/img/icons/zoom.png
rename to kasu/static/img/icons/zoom.png
diff --git a/htdocs/img/icons/zoom_in.png b/kasu/static/img/icons/zoom_in.png
similarity index 100%
rename from htdocs/img/icons/zoom_in.png
rename to kasu/static/img/icons/zoom_in.png
diff --git a/htdocs/img/icons/zoom_out.png b/kasu/static/img/icons/zoom_out.png
similarity index 100%
rename from htdocs/img/icons/zoom_out.png
rename to kasu/static/img/icons/zoom_out.png
diff --git a/htdocs/img/input-submit.png b/kasu/static/img/input-submit.png
similarity index 100%
rename from htdocs/img/input-submit.png
rename to kasu/static/img/input-submit.png
diff --git a/htdocs/img/left-arrow.png b/kasu/static/img/left-arrow.png
similarity index 100%
rename from htdocs/img/left-arrow.png
rename to kasu/static/img/left-arrow.png
diff --git a/htdocs/img/li.gif b/kasu/static/img/li.gif
similarity index 100%
rename from htdocs/img/li.gif
rename to kasu/static/img/li.gif
diff --git a/htdocs/img/login_buttons.png b/kasu/static/img/login_buttons.png
similarity index 100%
rename from htdocs/img/login_buttons.png
rename to kasu/static/img/login_buttons.png
diff --git a/htdocs/img/logo.png b/kasu/static/img/logo.png
similarity index 100%
rename from htdocs/img/logo.png
rename to kasu/static/img/logo.png
diff --git a/htdocs/img/logo_mobile.png b/kasu/static/img/logo_mobile.png
similarity index 100%
rename from htdocs/img/logo_mobile.png
rename to kasu/static/img/logo_mobile.png
diff --git a/htdocs/img/nachtigal.png b/kasu/static/img/nachtigal.png
similarity index 100%
rename from htdocs/img/nachtigal.png
rename to kasu/static/img/nachtigal.png
diff --git a/htdocs/img/navigation-bg.jpg b/kasu/static/img/navigation-bg.jpg
similarity index 100%
rename from htdocs/img/navigation-bg.jpg
rename to kasu/static/img/navigation-bg.jpg
diff --git a/htdocs/img/navigation-bg.png b/kasu/static/img/navigation-bg.png
similarity index 100%
rename from htdocs/img/navigation-bg.png
rename to kasu/static/img/navigation-bg.png
diff --git a/htdocs/img/navigation-hover.png b/kasu/static/img/navigation-hover.png
similarity index 100%
rename from htdocs/img/navigation-hover.png
rename to kasu/static/img/navigation-hover.png
diff --git a/htdocs/img/navigation-separator.png b/kasu/static/img/navigation-separator.png
similarity index 100%
rename from htdocs/img/navigation-separator.png
rename to kasu/static/img/navigation-separator.png
diff --git a/htdocs/img/news_teaser.jpg b/kasu/static/img/news_teaser.jpg
similarity index 100%
rename from htdocs/img/news_teaser.jpg
rename to kasu/static/img/news_teaser.jpg
diff --git a/htdocs/img/red-swoop.png b/kasu/static/img/red-swoop.png
similarity index 100%
rename from htdocs/img/red-swoop.png
rename to kasu/static/img/red-swoop.png
diff --git a/htdocs/img/right-arrow.png b/kasu/static/img/right-arrow.png
similarity index 100%
rename from htdocs/img/right-arrow.png
rename to kasu/static/img/right-arrow.png
diff --git a/htdocs/img/rss_feed.gif b/kasu/static/img/rss_feed.gif
similarity index 100%
rename from htdocs/img/rss_feed.gif
rename to kasu/static/img/rss_feed.gif
diff --git a/htdocs/img/teaser_bg.png b/kasu/static/img/teaser_bg.png
similarity index 100%
rename from htdocs/img/teaser_bg.png
rename to kasu/static/img/teaser_bg.png
diff --git a/htdocs/img/thumbnail-bg.png b/kasu/static/img/thumbnail-bg.png
similarity index 100%
rename from htdocs/img/thumbnail-bg.png
rename to kasu/static/img/thumbnail-bg.png
diff --git a/htdocs/img/top-bg.png b/kasu/static/img/top-bg.png
similarity index 100%
rename from htdocs/img/top-bg.png
rename to kasu/static/img/top-bg.png
diff --git a/htdocs/img/twitter.png b/kasu/static/img/twitter.png
similarity index 100%
rename from htdocs/img/twitter.png
rename to kasu/static/img/twitter.png
diff --git a/htdocs/img/ui-bg_diagonals-thick_18_b81900_40x40.png b/kasu/static/img/ui-bg_diagonals-thick_18_b81900_40x40.png
similarity index 100%
rename from htdocs/img/ui-bg_diagonals-thick_18_b81900_40x40.png
rename to kasu/static/img/ui-bg_diagonals-thick_18_b81900_40x40.png
diff --git a/htdocs/img/ui-bg_diagonals-thick_20_666666_40x40.png b/kasu/static/img/ui-bg_diagonals-thick_20_666666_40x40.png
similarity index 100%
rename from htdocs/img/ui-bg_diagonals-thick_20_666666_40x40.png
rename to kasu/static/img/ui-bg_diagonals-thick_20_666666_40x40.png
diff --git a/htdocs/img/ui-bg_flat_10_000000_40x100.png b/kasu/static/img/ui-bg_flat_10_000000_40x100.png
similarity index 100%
rename from htdocs/img/ui-bg_flat_10_000000_40x100.png
rename to kasu/static/img/ui-bg_flat_10_000000_40x100.png
diff --git a/htdocs/img/ui-bg_glass_100_f6f6f6_1x400.png b/kasu/static/img/ui-bg_glass_100_f6f6f6_1x400.png
similarity index 100%
rename from htdocs/img/ui-bg_glass_100_f6f6f6_1x400.png
rename to kasu/static/img/ui-bg_glass_100_f6f6f6_1x400.png
diff --git a/htdocs/img/ui-bg_glass_100_fdf5ce_1x400.png b/kasu/static/img/ui-bg_glass_100_fdf5ce_1x400.png
similarity index 100%
rename from htdocs/img/ui-bg_glass_100_fdf5ce_1x400.png
rename to kasu/static/img/ui-bg_glass_100_fdf5ce_1x400.png
diff --git a/htdocs/img/ui-bg_glass_65_ffffff_1x400.png b/kasu/static/img/ui-bg_glass_65_ffffff_1x400.png
similarity index 100%
rename from htdocs/img/ui-bg_glass_65_ffffff_1x400.png
rename to kasu/static/img/ui-bg_glass_65_ffffff_1x400.png
diff --git a/htdocs/img/ui-bg_gloss-wave_35_f6a828_500x100.png b/kasu/static/img/ui-bg_gloss-wave_35_f6a828_500x100.png
similarity index 100%
rename from htdocs/img/ui-bg_gloss-wave_35_f6a828_500x100.png
rename to kasu/static/img/ui-bg_gloss-wave_35_f6a828_500x100.png
diff --git a/htdocs/img/ui-bg_highlight-soft_100_eeeeee_1x100.png b/kasu/static/img/ui-bg_highlight-soft_100_eeeeee_1x100.png
similarity index 100%
rename from htdocs/img/ui-bg_highlight-soft_100_eeeeee_1x100.png
rename to kasu/static/img/ui-bg_highlight-soft_100_eeeeee_1x100.png
diff --git a/htdocs/img/ui-bg_highlight-soft_75_ffe45c_1x100.png b/kasu/static/img/ui-bg_highlight-soft_75_ffe45c_1x100.png
similarity index 100%
rename from htdocs/img/ui-bg_highlight-soft_75_ffe45c_1x100.png
rename to kasu/static/img/ui-bg_highlight-soft_75_ffe45c_1x100.png
diff --git a/htdocs/img/ui-icons_222222_256x240.png b/kasu/static/img/ui-icons_222222_256x240.png
similarity index 100%
rename from htdocs/img/ui-icons_222222_256x240.png
rename to kasu/static/img/ui-icons_222222_256x240.png
diff --git a/htdocs/img/ui-icons_228ef1_256x240.png b/kasu/static/img/ui-icons_228ef1_256x240.png
similarity index 100%
rename from htdocs/img/ui-icons_228ef1_256x240.png
rename to kasu/static/img/ui-icons_228ef1_256x240.png
diff --git a/htdocs/img/ui-icons_ef8c08_256x240.png b/kasu/static/img/ui-icons_ef8c08_256x240.png
similarity index 100%
rename from htdocs/img/ui-icons_ef8c08_256x240.png
rename to kasu/static/img/ui-icons_ef8c08_256x240.png
diff --git a/htdocs/img/ui-icons_ffd27a_256x240.png b/kasu/static/img/ui-icons_ffd27a_256x240.png
similarity index 100%
rename from htdocs/img/ui-icons_ffd27a_256x240.png
rename to kasu/static/img/ui-icons_ffd27a_256x240.png
diff --git a/htdocs/img/ui-icons_ffffff_256x240.png b/kasu/static/img/ui-icons_ffffff_256x240.png
similarity index 100%
rename from htdocs/img/ui-icons_ffffff_256x240.png
rename to kasu/static/img/ui-icons_ffffff_256x240.png
diff --git a/htdocs/img/unknown_thumbnail.png b/kasu/static/img/unknown_thumbnail.png
similarity index 100%
rename from htdocs/img/unknown_thumbnail.png
rename to kasu/static/img/unknown_thumbnail.png
diff --git a/htdocs/img/usernav-bg.png b/kasu/static/img/usernav-bg.png
similarity index 100%
rename from htdocs/img/usernav-bg.png
rename to kasu/static/img/usernav-bg.png
diff --git a/htdocs/js/ckeditor/CHANGES.md b/kasu/static/js/ckeditor/CHANGES.md
similarity index 100%
rename from htdocs/js/ckeditor/CHANGES.md
rename to kasu/static/js/ckeditor/CHANGES.md
diff --git a/htdocs/js/ckeditor/LICENSE.md b/kasu/static/js/ckeditor/LICENSE.md
similarity index 100%
rename from htdocs/js/ckeditor/LICENSE.md
rename to kasu/static/js/ckeditor/LICENSE.md
diff --git a/htdocs/js/ckeditor/README.md b/kasu/static/js/ckeditor/README.md
similarity index 100%
rename from htdocs/js/ckeditor/README.md
rename to kasu/static/js/ckeditor/README.md
diff --git a/htdocs/js/ckeditor/build-config.js b/kasu/static/js/ckeditor/build-config.js
similarity index 100%
rename from htdocs/js/ckeditor/build-config.js
rename to kasu/static/js/ckeditor/build-config.js
diff --git a/htdocs/js/ckeditor/ckeditor.js b/kasu/static/js/ckeditor/ckeditor.js
similarity index 100%
rename from htdocs/js/ckeditor/ckeditor.js
rename to kasu/static/js/ckeditor/ckeditor.js
diff --git a/htdocs/js/ckeditor/config.js b/kasu/static/js/ckeditor/config.js
similarity index 100%
rename from htdocs/js/ckeditor/config.js
rename to kasu/static/js/ckeditor/config.js
diff --git a/htdocs/js/ckeditor/contents.css b/kasu/static/js/ckeditor/contents.css
similarity index 100%
rename from htdocs/js/ckeditor/contents.css
rename to kasu/static/js/ckeditor/contents.css
diff --git a/htdocs/js/ckeditor/lang/de.js b/kasu/static/js/ckeditor/lang/de.js
similarity index 100%
rename from htdocs/js/ckeditor/lang/de.js
rename to kasu/static/js/ckeditor/lang/de.js
diff --git a/htdocs/js/ckeditor/lang/en.js b/kasu/static/js/ckeditor/lang/en.js
similarity index 100%
rename from htdocs/js/ckeditor/lang/en.js
rename to kasu/static/js/ckeditor/lang/en.js
diff --git a/htdocs/js/ckeditor/plugins/clipboard/dialogs/paste.js b/kasu/static/js/ckeditor/plugins/clipboard/dialogs/paste.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/clipboard/dialogs/paste.js
rename to kasu/static/js/ckeditor/plugins/clipboard/dialogs/paste.js
diff --git a/htdocs/js/ckeditor/plugins/dialog/dialogDefinition.js b/kasu/static/js/ckeditor/plugins/dialog/dialogDefinition.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/dialog/dialogDefinition.js
rename to kasu/static/js/ckeditor/plugins/dialog/dialogDefinition.js
diff --git a/htdocs/js/ckeditor/plugins/fakeobjects/images/spacer.gif b/kasu/static/js/ckeditor/plugins/fakeobjects/images/spacer.gif
similarity index 100%
rename from htdocs/js/ckeditor/plugins/fakeobjects/images/spacer.gif
rename to kasu/static/js/ckeditor/plugins/fakeobjects/images/spacer.gif
diff --git a/htdocs/js/ckeditor/plugins/icons.png b/kasu/static/js/ckeditor/plugins/icons.png
similarity index 100%
rename from htdocs/js/ckeditor/plugins/icons.png
rename to kasu/static/js/ckeditor/plugins/icons.png
diff --git a/htdocs/js/ckeditor/plugins/image/dialogs/image.js b/kasu/static/js/ckeditor/plugins/image/dialogs/image.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/image/dialogs/image.js
rename to kasu/static/js/ckeditor/plugins/image/dialogs/image.js
diff --git a/htdocs/js/ckeditor/plugins/image/images/noimage.png b/kasu/static/js/ckeditor/plugins/image/images/noimage.png
similarity index 100%
rename from htdocs/js/ckeditor/plugins/image/images/noimage.png
rename to kasu/static/js/ckeditor/plugins/image/images/noimage.png
diff --git a/htdocs/js/ckeditor/plugins/link/dialogs/anchor.js b/kasu/static/js/ckeditor/plugins/link/dialogs/anchor.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/link/dialogs/anchor.js
rename to kasu/static/js/ckeditor/plugins/link/dialogs/anchor.js
diff --git a/htdocs/js/ckeditor/plugins/link/dialogs/link.js b/kasu/static/js/ckeditor/plugins/link/dialogs/link.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/link/dialogs/link.js
rename to kasu/static/js/ckeditor/plugins/link/dialogs/link.js
diff --git a/htdocs/js/ckeditor/plugins/link/images/anchor.png b/kasu/static/js/ckeditor/plugins/link/images/anchor.png
similarity index 100%
rename from htdocs/js/ckeditor/plugins/link/images/anchor.png
rename to kasu/static/js/ckeditor/plugins/link/images/anchor.png
diff --git a/htdocs/js/ckeditor/plugins/magicline/images/icon.png b/kasu/static/js/ckeditor/plugins/magicline/images/icon.png
similarity index 100%
rename from htdocs/js/ckeditor/plugins/magicline/images/icon.png
rename to kasu/static/js/ckeditor/plugins/magicline/images/icon.png
diff --git a/htdocs/js/ckeditor/plugins/scayt/LICENSE.md b/kasu/static/js/ckeditor/plugins/scayt/LICENSE.md
similarity index 100%
rename from htdocs/js/ckeditor/plugins/scayt/LICENSE.md
rename to kasu/static/js/ckeditor/plugins/scayt/LICENSE.md
diff --git a/htdocs/js/ckeditor/plugins/scayt/README.md b/kasu/static/js/ckeditor/plugins/scayt/README.md
similarity index 100%
rename from htdocs/js/ckeditor/plugins/scayt/README.md
rename to kasu/static/js/ckeditor/plugins/scayt/README.md
diff --git a/htdocs/js/ckeditor/plugins/scayt/dialogs/options.js b/kasu/static/js/ckeditor/plugins/scayt/dialogs/options.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/scayt/dialogs/options.js
rename to kasu/static/js/ckeditor/plugins/scayt/dialogs/options.js
diff --git a/htdocs/js/ckeditor/plugins/scayt/dialogs/toolbar.css b/kasu/static/js/ckeditor/plugins/scayt/dialogs/toolbar.css
similarity index 100%
rename from htdocs/js/ckeditor/plugins/scayt/dialogs/toolbar.css
rename to kasu/static/js/ckeditor/plugins/scayt/dialogs/toolbar.css
diff --git a/htdocs/js/ckeditor/plugins/table/dialogs/table.js b/kasu/static/js/ckeditor/plugins/table/dialogs/table.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/table/dialogs/table.js
rename to kasu/static/js/ckeditor/plugins/table/dialogs/table.js
diff --git a/htdocs/js/ckeditor/plugins/tabletools/dialogs/tableCell.js b/kasu/static/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
rename to kasu/static/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
diff --git a/htdocs/js/ckeditor/plugins/wsc/LICENSE.md b/kasu/static/js/ckeditor/plugins/wsc/LICENSE.md
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/LICENSE.md
rename to kasu/static/js/ckeditor/plugins/wsc/LICENSE.md
diff --git a/htdocs/js/ckeditor/plugins/wsc/README.md b/kasu/static/js/ckeditor/plugins/wsc/README.md
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/README.md
rename to kasu/static/js/ckeditor/plugins/wsc/README.md
diff --git a/htdocs/js/ckeditor/plugins/wsc/dialogs/ciframe.html b/kasu/static/js/ckeditor/plugins/wsc/dialogs/ciframe.html
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/dialogs/ciframe.html
rename to kasu/static/js/ckeditor/plugins/wsc/dialogs/ciframe.html
diff --git a/htdocs/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/kasu/static/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
rename to kasu/static/js/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
diff --git a/htdocs/js/ckeditor/plugins/wsc/dialogs/wsc.css b/kasu/static/js/ckeditor/plugins/wsc/dialogs/wsc.css
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/dialogs/wsc.css
rename to kasu/static/js/ckeditor/plugins/wsc/dialogs/wsc.css
diff --git a/htdocs/js/ckeditor/plugins/wsc/dialogs/wsc.js b/kasu/static/js/ckeditor/plugins/wsc/dialogs/wsc.js
similarity index 100%
rename from htdocs/js/ckeditor/plugins/wsc/dialogs/wsc.js
rename to kasu/static/js/ckeditor/plugins/wsc/dialogs/wsc.js
diff --git a/htdocs/js/ckeditor/samples/ajax.html b/kasu/static/js/ckeditor/samples/ajax.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/ajax.html
rename to kasu/static/js/ckeditor/samples/ajax.html
diff --git a/htdocs/js/ckeditor/samples/api.html b/kasu/static/js/ckeditor/samples/api.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/api.html
rename to kasu/static/js/ckeditor/samples/api.html
diff --git a/htdocs/js/ckeditor/samples/appendto.html b/kasu/static/js/ckeditor/samples/appendto.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/appendto.html
rename to kasu/static/js/ckeditor/samples/appendto.html
diff --git a/htdocs/js/ckeditor/samples/assets/inlineall/logo.png b/kasu/static/js/ckeditor/samples/assets/inlineall/logo.png
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/inlineall/logo.png
rename to kasu/static/js/ckeditor/samples/assets/inlineall/logo.png
diff --git a/htdocs/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/kasu/static/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css
rename to kasu/static/js/ckeditor/samples/assets/outputxhtml/outputxhtml.css
diff --git a/htdocs/js/ckeditor/samples/assets/posteddata.php b/kasu/static/js/ckeditor/samples/assets/posteddata.php
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/posteddata.php
rename to kasu/static/js/ckeditor/samples/assets/posteddata.php
diff --git a/htdocs/js/ckeditor/samples/assets/sample.css b/kasu/static/js/ckeditor/samples/assets/sample.css
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/sample.css
rename to kasu/static/js/ckeditor/samples/assets/sample.css
diff --git a/htdocs/js/ckeditor/samples/assets/sample.jpg b/kasu/static/js/ckeditor/samples/assets/sample.jpg
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/sample.jpg
rename to kasu/static/js/ckeditor/samples/assets/sample.jpg
diff --git a/htdocs/js/ckeditor/samples/assets/uilanguages/languages.js b/kasu/static/js/ckeditor/samples/assets/uilanguages/languages.js
similarity index 100%
rename from htdocs/js/ckeditor/samples/assets/uilanguages/languages.js
rename to kasu/static/js/ckeditor/samples/assets/uilanguages/languages.js
diff --git a/htdocs/js/ckeditor/samples/datafiltering.html b/kasu/static/js/ckeditor/samples/datafiltering.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/datafiltering.html
rename to kasu/static/js/ckeditor/samples/datafiltering.html
diff --git a/htdocs/js/ckeditor/samples/divreplace.html b/kasu/static/js/ckeditor/samples/divreplace.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/divreplace.html
rename to kasu/static/js/ckeditor/samples/divreplace.html
diff --git a/htdocs/js/ckeditor/samples/index.html b/kasu/static/js/ckeditor/samples/index.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/index.html
rename to kasu/static/js/ckeditor/samples/index.html
diff --git a/htdocs/js/ckeditor/samples/inlineall.html b/kasu/static/js/ckeditor/samples/inlineall.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/inlineall.html
rename to kasu/static/js/ckeditor/samples/inlineall.html
diff --git a/htdocs/js/ckeditor/samples/inlinebycode.html b/kasu/static/js/ckeditor/samples/inlinebycode.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/inlinebycode.html
rename to kasu/static/js/ckeditor/samples/inlinebycode.html
diff --git a/htdocs/js/ckeditor/samples/plugins/autogrow/autogrow.html b/kasu/static/js/ckeditor/samples/plugins/autogrow/autogrow.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/autogrow/autogrow.html
rename to kasu/static/js/ckeditor/samples/plugins/autogrow/autogrow.html
diff --git a/htdocs/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/kasu/static/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js
rename to kasu/static/js/ckeditor/samples/plugins/dialog/assets/my_dialog.js
diff --git a/htdocs/js/ckeditor/samples/plugins/dialog/dialog.html b/kasu/static/js/ckeditor/samples/plugins/dialog/dialog.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/dialog/dialog.html
rename to kasu/static/js/ckeditor/samples/plugins/dialog/dialog.html
diff --git a/htdocs/js/ckeditor/samples/plugins/enterkey/enterkey.html b/kasu/static/js/ckeditor/samples/plugins/enterkey/enterkey.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/enterkey/enterkey.html
rename to kasu/static/js/ckeditor/samples/plugins/enterkey/enterkey.html
diff --git a/htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla
rename to kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla
diff --git a/htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf
rename to kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf
diff --git a/htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js
rename to kasu/static/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js
diff --git a/htdocs/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html b/kasu/static/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html
rename to kasu/static/js/ckeditor/samples/plugins/htmlwriter/outputforflash.html
diff --git a/htdocs/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/kasu/static/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html
rename to kasu/static/js/ckeditor/samples/plugins/htmlwriter/outputhtml.html
diff --git a/htdocs/js/ckeditor/samples/plugins/magicline/magicline.html b/kasu/static/js/ckeditor/samples/plugins/magicline/magicline.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/magicline/magicline.html
rename to kasu/static/js/ckeditor/samples/plugins/magicline/magicline.html
diff --git a/htdocs/js/ckeditor/samples/plugins/toolbar/toolbar.html b/kasu/static/js/ckeditor/samples/plugins/toolbar/toolbar.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/toolbar/toolbar.html
rename to kasu/static/js/ckeditor/samples/plugins/toolbar/toolbar.html
diff --git a/htdocs/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/kasu/static/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html
rename to kasu/static/js/ckeditor/samples/plugins/wysiwygarea/fullpage.html
diff --git a/htdocs/js/ckeditor/samples/readonly.html b/kasu/static/js/ckeditor/samples/readonly.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/readonly.html
rename to kasu/static/js/ckeditor/samples/readonly.html
diff --git a/htdocs/js/ckeditor/samples/replacebyclass.html b/kasu/static/js/ckeditor/samples/replacebyclass.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/replacebyclass.html
rename to kasu/static/js/ckeditor/samples/replacebyclass.html
diff --git a/htdocs/js/ckeditor/samples/replacebycode.html b/kasu/static/js/ckeditor/samples/replacebycode.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/replacebycode.html
rename to kasu/static/js/ckeditor/samples/replacebycode.html
diff --git a/htdocs/js/ckeditor/samples/sample.css b/kasu/static/js/ckeditor/samples/sample.css
similarity index 100%
rename from htdocs/js/ckeditor/samples/sample.css
rename to kasu/static/js/ckeditor/samples/sample.css
diff --git a/htdocs/js/ckeditor/samples/sample.js b/kasu/static/js/ckeditor/samples/sample.js
similarity index 100%
rename from htdocs/js/ckeditor/samples/sample.js
rename to kasu/static/js/ckeditor/samples/sample.js
diff --git a/htdocs/js/ckeditor/samples/sample_posteddata.php b/kasu/static/js/ckeditor/samples/sample_posteddata.php
similarity index 100%
rename from htdocs/js/ckeditor/samples/sample_posteddata.php
rename to kasu/static/js/ckeditor/samples/sample_posteddata.php
diff --git a/htdocs/js/ckeditor/samples/tabindex.html b/kasu/static/js/ckeditor/samples/tabindex.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/tabindex.html
rename to kasu/static/js/ckeditor/samples/tabindex.html
diff --git a/htdocs/js/ckeditor/samples/uicolor.html b/kasu/static/js/ckeditor/samples/uicolor.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/uicolor.html
rename to kasu/static/js/ckeditor/samples/uicolor.html
diff --git a/htdocs/js/ckeditor/samples/uilanguages.html b/kasu/static/js/ckeditor/samples/uilanguages.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/uilanguages.html
rename to kasu/static/js/ckeditor/samples/uilanguages.html
diff --git a/htdocs/js/ckeditor/samples/xhtmlstyle.html b/kasu/static/js/ckeditor/samples/xhtmlstyle.html
similarity index 100%
rename from htdocs/js/ckeditor/samples/xhtmlstyle.html
rename to kasu/static/js/ckeditor/samples/xhtmlstyle.html
diff --git a/htdocs/js/ckeditor/skins/moono/dialog.css b/kasu/static/js/ckeditor/skins/moono/dialog.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog.css
rename to kasu/static/js/ckeditor/skins/moono/dialog.css
diff --git a/htdocs/js/ckeditor/skins/moono/dialog_ie.css b/kasu/static/js/ckeditor/skins/moono/dialog_ie.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog_ie.css
rename to kasu/static/js/ckeditor/skins/moono/dialog_ie.css
diff --git a/htdocs/js/ckeditor/skins/moono/dialog_ie7.css b/kasu/static/js/ckeditor/skins/moono/dialog_ie7.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog_ie7.css
rename to kasu/static/js/ckeditor/skins/moono/dialog_ie7.css
diff --git a/htdocs/js/ckeditor/skins/moono/dialog_ie8.css b/kasu/static/js/ckeditor/skins/moono/dialog_ie8.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog_ie8.css
rename to kasu/static/js/ckeditor/skins/moono/dialog_ie8.css
diff --git a/htdocs/js/ckeditor/skins/moono/dialog_iequirks.css b/kasu/static/js/ckeditor/skins/moono/dialog_iequirks.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog_iequirks.css
rename to kasu/static/js/ckeditor/skins/moono/dialog_iequirks.css
diff --git a/htdocs/js/ckeditor/skins/moono/dialog_opera.css b/kasu/static/js/ckeditor/skins/moono/dialog_opera.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/dialog_opera.css
rename to kasu/static/js/ckeditor/skins/moono/dialog_opera.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor.css b/kasu/static/js/ckeditor/skins/moono/editor.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor.css
rename to kasu/static/js/ckeditor/skins/moono/editor.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor_gecko.css b/kasu/static/js/ckeditor/skins/moono/editor_gecko.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor_gecko.css
rename to kasu/static/js/ckeditor/skins/moono/editor_gecko.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor_ie.css b/kasu/static/js/ckeditor/skins/moono/editor_ie.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor_ie.css
rename to kasu/static/js/ckeditor/skins/moono/editor_ie.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor_ie7.css b/kasu/static/js/ckeditor/skins/moono/editor_ie7.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor_ie7.css
rename to kasu/static/js/ckeditor/skins/moono/editor_ie7.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor_ie8.css b/kasu/static/js/ckeditor/skins/moono/editor_ie8.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor_ie8.css
rename to kasu/static/js/ckeditor/skins/moono/editor_ie8.css
diff --git a/htdocs/js/ckeditor/skins/moono/editor_iequirks.css b/kasu/static/js/ckeditor/skins/moono/editor_iequirks.css
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/editor_iequirks.css
rename to kasu/static/js/ckeditor/skins/moono/editor_iequirks.css
diff --git a/htdocs/js/ckeditor/skins/moono/icons.png b/kasu/static/js/ckeditor/skins/moono/icons.png
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/icons.png
rename to kasu/static/js/ckeditor/skins/moono/icons.png
diff --git a/htdocs/js/ckeditor/skins/moono/images/arrow.png b/kasu/static/js/ckeditor/skins/moono/images/arrow.png
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/images/arrow.png
rename to kasu/static/js/ckeditor/skins/moono/images/arrow.png
diff --git a/htdocs/js/ckeditor/skins/moono/images/close.png b/kasu/static/js/ckeditor/skins/moono/images/close.png
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/images/close.png
rename to kasu/static/js/ckeditor/skins/moono/images/close.png
diff --git a/htdocs/js/ckeditor/skins/moono/images/mini.png b/kasu/static/js/ckeditor/skins/moono/images/mini.png
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/images/mini.png
rename to kasu/static/js/ckeditor/skins/moono/images/mini.png
diff --git a/htdocs/js/ckeditor/skins/moono/readme.md b/kasu/static/js/ckeditor/skins/moono/readme.md
similarity index 100%
rename from htdocs/js/ckeditor/skins/moono/readme.md
rename to kasu/static/js/ckeditor/skins/moono/readme.md
diff --git a/htdocs/js/ckeditor/styles.js b/kasu/static/js/ckeditor/styles.js
similarity index 100%
rename from htdocs/js/ckeditor/styles.js
rename to kasu/static/js/ckeditor/styles.js
diff --git a/htdocs/js/jquery-1.6.2.min.js b/kasu/static/js/jquery-1.6.2.min.js
similarity index 100%
rename from htdocs/js/jquery-1.6.2.min.js
rename to kasu/static/js/jquery-1.6.2.min.js
diff --git a/htdocs/js/jquery-ui-1.8.16.custom.min.js b/kasu/static/js/jquery-ui-1.8.16.custom.min.js
similarity index 100%
rename from htdocs/js/jquery-ui-1.8.16.custom.min.js
rename to kasu/static/js/jquery-ui-1.8.16.custom.min.js
diff --git a/htdocs/js/jquery.ui.datepicker-de.js b/kasu/static/js/jquery.ui.datepicker-de.js
similarity index 100%
rename from htdocs/js/jquery.ui.datepicker-de.js
rename to kasu/static/js/jquery.ui.datepicker-de.js
diff --git a/htdocs/js/jquery.ui.datepicker-en.js b/kasu/static/js/jquery.ui.datepicker-en.js
similarity index 100%
rename from htdocs/js/jquery.ui.datepicker-en.js
rename to kasu/static/js/jquery.ui.datepicker-en.js
diff --git a/htdocs/js/language_tabs.js b/kasu/static/js/language_tabs.js
similarity index 100%
rename from htdocs/js/language_tabs.js
rename to kasu/static/js/language_tabs.js
diff --git a/htdocs/js/tiny_mce/jquery.tinymce.js b/kasu/static/js/tiny_mce/jquery.tinymce.js
similarity index 100%
rename from htdocs/js/tiny_mce/jquery.tinymce.js
rename to kasu/static/js/tiny_mce/jquery.tinymce.js
diff --git a/htdocs/js/tiny_mce/langs/en.js b/kasu/static/js/tiny_mce/langs/en.js
similarity index 100%
rename from htdocs/js/tiny_mce/langs/en.js
rename to kasu/static/js/tiny_mce/langs/en.js
diff --git a/htdocs/js/tiny_mce/license.txt b/kasu/static/js/tiny_mce/license.txt
similarity index 100%
rename from htdocs/js/tiny_mce/license.txt
rename to kasu/static/js/tiny_mce/license.txt
diff --git a/htdocs/js/tiny_mce/plugins/advhr/css/advhr.css b/kasu/static/js/tiny_mce/plugins/advhr/css/advhr.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/css/advhr.css
rename to kasu/static/js/tiny_mce/plugins/advhr/css/advhr.css
diff --git a/htdocs/js/tiny_mce/plugins/advhr/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/advhr/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/advhr/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/advhr/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/advhr/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/advhr/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/advhr/js/rule.js b/kasu/static/js/tiny_mce/plugins/advhr/js/rule.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/js/rule.js
rename to kasu/static/js/tiny_mce/plugins/advhr/js/rule.js
diff --git a/htdocs/js/tiny_mce/plugins/advhr/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/advhr/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/advhr/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/advhr/rule.htm b/kasu/static/js/tiny_mce/plugins/advhr/rule.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advhr/rule.htm
rename to kasu/static/js/tiny_mce/plugins/advhr/rule.htm
diff --git a/htdocs/js/tiny_mce/plugins/advimage/css/advimage.css b/kasu/static/js/tiny_mce/plugins/advimage/css/advimage.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/css/advimage.css
rename to kasu/static/js/tiny_mce/plugins/advimage/css/advimage.css
diff --git a/htdocs/js/tiny_mce/plugins/advimage/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/advimage/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/advimage/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/advimage/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/advimage/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/advimage/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/advimage/image.htm b/kasu/static/js/tiny_mce/plugins/advimage/image.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/image.htm
rename to kasu/static/js/tiny_mce/plugins/advimage/image.htm
diff --git a/htdocs/js/tiny_mce/plugins/advimage/img/sample.gif b/kasu/static/js/tiny_mce/plugins/advimage/img/sample.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/img/sample.gif
rename to kasu/static/js/tiny_mce/plugins/advimage/img/sample.gif
diff --git a/htdocs/js/tiny_mce/plugins/advimage/js/image.js b/kasu/static/js/tiny_mce/plugins/advimage/js/image.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/js/image.js
rename to kasu/static/js/tiny_mce/plugins/advimage/js/image.js
diff --git a/htdocs/js/tiny_mce/plugins/advimage/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/advimage/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advimage/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/advimage/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/advlink/css/advlink.css b/kasu/static/js/tiny_mce/plugins/advlink/css/advlink.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/css/advlink.css
rename to kasu/static/js/tiny_mce/plugins/advlink/css/advlink.css
diff --git a/htdocs/js/tiny_mce/plugins/advlink/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/advlink/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/advlink/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/advlink/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/advlink/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/advlink/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/advlink/js/advlink.js b/kasu/static/js/tiny_mce/plugins/advlink/js/advlink.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/js/advlink.js
rename to kasu/static/js/tiny_mce/plugins/advlink/js/advlink.js
diff --git a/htdocs/js/tiny_mce/plugins/advlink/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/advlink/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/advlink/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/advlink/link.htm b/kasu/static/js/tiny_mce/plugins/advlink/link.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlink/link.htm
rename to kasu/static/js/tiny_mce/plugins/advlink/link.htm
diff --git a/htdocs/js/tiny_mce/plugins/advlist/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/advlist/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlist/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/advlist/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/advlist/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/advlist/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/advlist/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/advlist/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/autolink/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/autolink/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autolink/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/autolink/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/autolink/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/autolink/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autolink/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/autolink/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/autoresize/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/autoresize/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autoresize/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/autoresize/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/autoresize/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/autoresize/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autoresize/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/autoresize/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/autosave/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/autosave/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autosave/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/autosave/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/autosave/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/autosave/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autosave/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/autosave/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/autosave/langs/en.js b/kasu/static/js/tiny_mce/plugins/autosave/langs/en.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/autosave/langs/en.js
rename to kasu/static/js/tiny_mce/plugins/autosave/langs/en.js
diff --git a/htdocs/js/tiny_mce/plugins/bbcode/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/bbcode/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/bbcode/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/bbcode/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/bbcode/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/bbcode/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/bbcode/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/bbcode/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/contextmenu/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/contextmenu/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/contextmenu/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/contextmenu/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/directionality/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/directionality/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/directionality/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/directionality/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/directionality/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/directionality/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/directionality/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/directionality/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/emotions/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/emotions/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/emotions/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/emotions/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/emotions/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/emotions/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/emotions/emotions.htm b/kasu/static/js/tiny_mce/plugins/emotions/emotions.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/emotions.htm
rename to kasu/static/js/tiny_mce/plugins/emotions/emotions.htm
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-cool.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-cool.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-cool.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-cool.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-cry.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-cry.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-cry.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-cry.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-frown.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-frown.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-frown.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-frown.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-smile.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-smile.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-smile.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-smile.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-wink.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-wink.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-wink.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-wink.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/img/smiley-yell.gif b/kasu/static/js/tiny_mce/plugins/emotions/img/smiley-yell.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/img/smiley-yell.gif
rename to kasu/static/js/tiny_mce/plugins/emotions/img/smiley-yell.gif
diff --git a/htdocs/js/tiny_mce/plugins/emotions/js/emotions.js b/kasu/static/js/tiny_mce/plugins/emotions/js/emotions.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/js/emotions.js
rename to kasu/static/js/tiny_mce/plugins/emotions/js/emotions.js
diff --git a/htdocs/js/tiny_mce/plugins/emotions/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/emotions/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/emotions/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/emotions/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/example/dialog.htm b/kasu/static/js/tiny_mce/plugins/example/dialog.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/dialog.htm
rename to kasu/static/js/tiny_mce/plugins/example/dialog.htm
diff --git a/htdocs/js/tiny_mce/plugins/example/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/example/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/example/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/example/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/example/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/example/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/example/img/example.gif b/kasu/static/js/tiny_mce/plugins/example/img/example.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/img/example.gif
rename to kasu/static/js/tiny_mce/plugins/example/img/example.gif
diff --git a/htdocs/js/tiny_mce/plugins/example/js/dialog.js b/kasu/static/js/tiny_mce/plugins/example/js/dialog.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/js/dialog.js
rename to kasu/static/js/tiny_mce/plugins/example/js/dialog.js
diff --git a/htdocs/js/tiny_mce/plugins/example/langs/en.js b/kasu/static/js/tiny_mce/plugins/example/langs/en.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/langs/en.js
rename to kasu/static/js/tiny_mce/plugins/example/langs/en.js
diff --git a/htdocs/js/tiny_mce/plugins/example/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/example/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/example/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/example_dependency/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/example_dependency/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example_dependency/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/example_dependency/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/example_dependency/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/example_dependency/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/example_dependency/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/example_dependency/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/css/fullpage.css b/kasu/static/js/tiny_mce/plugins/fullpage/css/fullpage.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/css/fullpage.css
rename to kasu/static/js/tiny_mce/plugins/fullpage/css/fullpage.css
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/fullpage/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/fullpage/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/fullpage/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/fullpage/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/fullpage.htm b/kasu/static/js/tiny_mce/plugins/fullpage/fullpage.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/fullpage.htm
rename to kasu/static/js/tiny_mce/plugins/fullpage/fullpage.htm
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/js/fullpage.js b/kasu/static/js/tiny_mce/plugins/fullpage/js/fullpage.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/js/fullpage.js
rename to kasu/static/js/tiny_mce/plugins/fullpage/js/fullpage.js
diff --git a/htdocs/js/tiny_mce/plugins/fullpage/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/fullpage/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullpage/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/fullpage/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/fullscreen/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/fullscreen/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullscreen/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/fullscreen/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/fullscreen/fullscreen.htm b/kasu/static/js/tiny_mce/plugins/fullscreen/fullscreen.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/fullscreen/fullscreen.htm
rename to kasu/static/js/tiny_mce/plugins/fullscreen/fullscreen.htm
diff --git a/htdocs/js/tiny_mce/plugins/iespell/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/iespell/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/iespell/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/iespell/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/iespell/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/iespell/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/iespell/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/iespell/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/inlinepopups/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css b/kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css
diff --git a/htdocs/js/tiny_mce/plugins/inlinepopups/template.htm b/kasu/static/js/tiny_mce/plugins/inlinepopups/template.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/inlinepopups/template.htm
rename to kasu/static/js/tiny_mce/plugins/inlinepopups/template.htm
diff --git a/htdocs/js/tiny_mce/plugins/insertdatetime/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/insertdatetime/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/insertdatetime/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/insertdatetime/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/layer/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/layer/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/layer/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/layer/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/layer/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/layer/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/layer/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/layer/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/legacyoutput/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/legacyoutput/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/legacyoutput/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/legacyoutput/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/legacyoutput/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/lists/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/lists/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/lists/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/lists/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/lists/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/lists/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/lists/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/lists/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/media/css/media.css b/kasu/static/js/tiny_mce/plugins/media/css/media.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/css/media.css
rename to kasu/static/js/tiny_mce/plugins/media/css/media.css
diff --git a/htdocs/js/tiny_mce/plugins/media/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/media/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/media/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/media/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/media/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/media/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/media/js/embed.js b/kasu/static/js/tiny_mce/plugins/media/js/embed.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/js/embed.js
rename to kasu/static/js/tiny_mce/plugins/media/js/embed.js
diff --git a/htdocs/js/tiny_mce/plugins/media/js/media.js b/kasu/static/js/tiny_mce/plugins/media/js/media.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/js/media.js
rename to kasu/static/js/tiny_mce/plugins/media/js/media.js
diff --git a/htdocs/js/tiny_mce/plugins/media/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/media/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/media/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/media/media.htm b/kasu/static/js/tiny_mce/plugins/media/media.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/media.htm
rename to kasu/static/js/tiny_mce/plugins/media/media.htm
diff --git a/htdocs/js/tiny_mce/plugins/media/moxieplayer.swf b/kasu/static/js/tiny_mce/plugins/media/moxieplayer.swf
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/media/moxieplayer.swf
rename to kasu/static/js/tiny_mce/plugins/media/moxieplayer.swf
diff --git a/htdocs/js/tiny_mce/plugins/nonbreaking/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/nonbreaking/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/nonbreaking/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/nonbreaking/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/noneditable/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/noneditable/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/noneditable/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/noneditable/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/noneditable/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/noneditable/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/pagebreak/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/pagebreak/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/pagebreak/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/pagebreak/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/paste/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/paste/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/paste/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/paste/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/js/pastetext.js b/kasu/static/js/tiny_mce/plugins/paste/js/pastetext.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/js/pastetext.js
rename to kasu/static/js/tiny_mce/plugins/paste/js/pastetext.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/js/pasteword.js b/kasu/static/js/tiny_mce/plugins/paste/js/pasteword.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/js/pasteword.js
rename to kasu/static/js/tiny_mce/plugins/paste/js/pasteword.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/paste/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/paste/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/paste/pastetext.htm b/kasu/static/js/tiny_mce/plugins/paste/pastetext.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/pastetext.htm
rename to kasu/static/js/tiny_mce/plugins/paste/pastetext.htm
diff --git a/htdocs/js/tiny_mce/plugins/paste/pasteword.htm b/kasu/static/js/tiny_mce/plugins/paste/pasteword.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/paste/pasteword.htm
rename to kasu/static/js/tiny_mce/plugins/paste/pasteword.htm
diff --git a/htdocs/js/tiny_mce/plugins/preview/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/preview/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/preview/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/preview/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/preview/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/preview/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/preview/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/preview/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/preview/example.html b/kasu/static/js/tiny_mce/plugins/preview/example.html
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/preview/example.html
rename to kasu/static/js/tiny_mce/plugins/preview/example.html
diff --git a/htdocs/js/tiny_mce/plugins/preview/jscripts/embed.js b/kasu/static/js/tiny_mce/plugins/preview/jscripts/embed.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/preview/jscripts/embed.js
rename to kasu/static/js/tiny_mce/plugins/preview/jscripts/embed.js
diff --git a/htdocs/js/tiny_mce/plugins/preview/preview.html b/kasu/static/js/tiny_mce/plugins/preview/preview.html
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/preview/preview.html
rename to kasu/static/js/tiny_mce/plugins/preview/preview.html
diff --git a/htdocs/js/tiny_mce/plugins/print/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/print/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/print/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/print/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/print/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/print/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/print/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/print/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/save/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/save/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/save/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/save/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/save/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/save/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/save/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/save/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/css/searchreplace.css b/kasu/static/js/tiny_mce/plugins/searchreplace/css/searchreplace.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/css/searchreplace.css
rename to kasu/static/js/tiny_mce/plugins/searchreplace/css/searchreplace.css
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/searchreplace/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/searchreplace/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/js/searchreplace.js b/kasu/static/js/tiny_mce/plugins/searchreplace/js/searchreplace.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/js/searchreplace.js
rename to kasu/static/js/tiny_mce/plugins/searchreplace/js/searchreplace.js
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/searchreplace/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/searchreplace/searchreplace.htm b/kasu/static/js/tiny_mce/plugins/searchreplace/searchreplace.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/searchreplace/searchreplace.htm
rename to kasu/static/js/tiny_mce/plugins/searchreplace/searchreplace.htm
diff --git a/htdocs/js/tiny_mce/plugins/spellchecker/css/content.css b/kasu/static/js/tiny_mce/plugins/spellchecker/css/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/spellchecker/css/content.css
rename to kasu/static/js/tiny_mce/plugins/spellchecker/css/content.css
diff --git a/htdocs/js/tiny_mce/plugins/spellchecker/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/spellchecker/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/spellchecker/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/spellchecker/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/spellchecker/img/wline.gif b/kasu/static/js/tiny_mce/plugins/spellchecker/img/wline.gif
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/spellchecker/img/wline.gif
rename to kasu/static/js/tiny_mce/plugins/spellchecker/img/wline.gif
diff --git a/htdocs/js/tiny_mce/plugins/style/css/props.css b/kasu/static/js/tiny_mce/plugins/style/css/props.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/css/props.css
rename to kasu/static/js/tiny_mce/plugins/style/css/props.css
diff --git a/htdocs/js/tiny_mce/plugins/style/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/style/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/style/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/style/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/style/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/style/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/style/js/props.js b/kasu/static/js/tiny_mce/plugins/style/js/props.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/js/props.js
rename to kasu/static/js/tiny_mce/plugins/style/js/props.js
diff --git a/htdocs/js/tiny_mce/plugins/style/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/style/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/style/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/style/props.htm b/kasu/static/js/tiny_mce/plugins/style/props.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/props.htm
rename to kasu/static/js/tiny_mce/plugins/style/props.htm
diff --git a/htdocs/js/tiny_mce/plugins/style/readme.txt b/kasu/static/js/tiny_mce/plugins/style/readme.txt
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/style/readme.txt
rename to kasu/static/js/tiny_mce/plugins/style/readme.txt
diff --git a/htdocs/js/tiny_mce/plugins/tabfocus/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/tabfocus/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/tabfocus/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/tabfocus/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/table/cell.htm b/kasu/static/js/tiny_mce/plugins/table/cell.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/cell.htm
rename to kasu/static/js/tiny_mce/plugins/table/cell.htm
diff --git a/htdocs/js/tiny_mce/plugins/table/css/cell.css b/kasu/static/js/tiny_mce/plugins/table/css/cell.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/css/cell.css
rename to kasu/static/js/tiny_mce/plugins/table/css/cell.css
diff --git a/htdocs/js/tiny_mce/plugins/table/css/row.css b/kasu/static/js/tiny_mce/plugins/table/css/row.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/css/row.css
rename to kasu/static/js/tiny_mce/plugins/table/css/row.css
diff --git a/htdocs/js/tiny_mce/plugins/table/css/table.css b/kasu/static/js/tiny_mce/plugins/table/css/table.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/css/table.css
rename to kasu/static/js/tiny_mce/plugins/table/css/table.css
diff --git a/htdocs/js/tiny_mce/plugins/table/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/table/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/table/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/table/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/table/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/table/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/table/js/cell.js b/kasu/static/js/tiny_mce/plugins/table/js/cell.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/js/cell.js
rename to kasu/static/js/tiny_mce/plugins/table/js/cell.js
diff --git a/htdocs/js/tiny_mce/plugins/table/js/merge_cells.js b/kasu/static/js/tiny_mce/plugins/table/js/merge_cells.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/js/merge_cells.js
rename to kasu/static/js/tiny_mce/plugins/table/js/merge_cells.js
diff --git a/htdocs/js/tiny_mce/plugins/table/js/row.js b/kasu/static/js/tiny_mce/plugins/table/js/row.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/js/row.js
rename to kasu/static/js/tiny_mce/plugins/table/js/row.js
diff --git a/htdocs/js/tiny_mce/plugins/table/js/table.js b/kasu/static/js/tiny_mce/plugins/table/js/table.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/js/table.js
rename to kasu/static/js/tiny_mce/plugins/table/js/table.js
diff --git a/htdocs/js/tiny_mce/plugins/table/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/table/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/table/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/table/merge_cells.htm b/kasu/static/js/tiny_mce/plugins/table/merge_cells.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/merge_cells.htm
rename to kasu/static/js/tiny_mce/plugins/table/merge_cells.htm
diff --git a/htdocs/js/tiny_mce/plugins/table/row.htm b/kasu/static/js/tiny_mce/plugins/table/row.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/row.htm
rename to kasu/static/js/tiny_mce/plugins/table/row.htm
diff --git a/htdocs/js/tiny_mce/plugins/table/table.htm b/kasu/static/js/tiny_mce/plugins/table/table.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/table/table.htm
rename to kasu/static/js/tiny_mce/plugins/table/table.htm
diff --git a/htdocs/js/tiny_mce/plugins/template/blank.htm b/kasu/static/js/tiny_mce/plugins/template/blank.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/blank.htm
rename to kasu/static/js/tiny_mce/plugins/template/blank.htm
diff --git a/htdocs/js/tiny_mce/plugins/template/css/template.css b/kasu/static/js/tiny_mce/plugins/template/css/template.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/css/template.css
rename to kasu/static/js/tiny_mce/plugins/template/css/template.css
diff --git a/htdocs/js/tiny_mce/plugins/template/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/template/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/template/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/template/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/template/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/template/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/template/js/template.js b/kasu/static/js/tiny_mce/plugins/template/js/template.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/js/template.js
rename to kasu/static/js/tiny_mce/plugins/template/js/template.js
diff --git a/htdocs/js/tiny_mce/plugins/template/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/template/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/template/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/plugins/template/template.htm b/kasu/static/js/tiny_mce/plugins/template/template.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/template/template.htm
rename to kasu/static/js/tiny_mce/plugins/template/template.htm
diff --git a/htdocs/js/tiny_mce/plugins/visualblocks/css/visualblocks.css b/kasu/static/js/tiny_mce/plugins/visualblocks/css/visualblocks.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/visualblocks/css/visualblocks.css
rename to kasu/static/js/tiny_mce/plugins/visualblocks/css/visualblocks.css
diff --git a/htdocs/js/tiny_mce/plugins/visualblocks/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/visualblocks/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/visualblocks/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/visualblocks/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/visualblocks/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/visualblocks/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/visualblocks/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/visualblocks/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/visualchars/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/visualchars/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/visualchars/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/visualchars/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/visualchars/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/visualchars/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/wordcount/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/wordcount/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/wordcount/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/wordcount/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/wordcount/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/wordcount/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/wordcount/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/wordcount/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/abbr.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/abbr.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/abbr.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/abbr.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/acronym.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/acronym.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/acronym.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/acronym.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/attributes.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/attributes.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/attributes.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/attributes.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/cite.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/cite.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/cite.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/cite.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/css/popup.css b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/css/popup.css
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/css/popup.css
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/css/popup.css
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/del.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/del.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/del.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/del.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/ins.htm b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/ins.htm
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/ins.htm
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/ins.htm
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/cite.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/cite.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/cite.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/cite.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/del.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/del.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/del.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/del.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/js/ins.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/ins.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/js/ins.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/js/ins.js
diff --git a/htdocs/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js b/kasu/static/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/plugins/xhtmlxtras/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/about.htm b/kasu/static/js/tiny_mce/themes/advanced/about.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/about.htm
rename to kasu/static/js/tiny_mce/themes/advanced/about.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/anchor.htm b/kasu/static/js/tiny_mce/themes/advanced/anchor.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/anchor.htm
rename to kasu/static/js/tiny_mce/themes/advanced/anchor.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/charmap.htm b/kasu/static/js/tiny_mce/themes/advanced/charmap.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/charmap.htm
rename to kasu/static/js/tiny_mce/themes/advanced/charmap.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/color_picker.htm b/kasu/static/js/tiny_mce/themes/advanced/color_picker.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/color_picker.htm
rename to kasu/static/js/tiny_mce/themes/advanced/color_picker.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/editor_template.js b/kasu/static/js/tiny_mce/themes/advanced/editor_template.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/editor_template.js
rename to kasu/static/js/tiny_mce/themes/advanced/editor_template.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/editor_template_src.js b/kasu/static/js/tiny_mce/themes/advanced/editor_template_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/editor_template_src.js
rename to kasu/static/js/tiny_mce/themes/advanced/editor_template_src.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/image.htm b/kasu/static/js/tiny_mce/themes/advanced/image.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/image.htm
rename to kasu/static/js/tiny_mce/themes/advanced/image.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/colorpicker.jpg b/kasu/static/js/tiny_mce/themes/advanced/img/colorpicker.jpg
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/colorpicker.jpg
rename to kasu/static/js/tiny_mce/themes/advanced/img/colorpicker.jpg
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/flash.gif b/kasu/static/js/tiny_mce/themes/advanced/img/flash.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/flash.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/flash.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/icons.gif b/kasu/static/js/tiny_mce/themes/advanced/img/icons.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/icons.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/icons.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/iframe.gif b/kasu/static/js/tiny_mce/themes/advanced/img/iframe.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/iframe.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/iframe.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/pagebreak.gif b/kasu/static/js/tiny_mce/themes/advanced/img/pagebreak.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/pagebreak.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/pagebreak.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/quicktime.gif b/kasu/static/js/tiny_mce/themes/advanced/img/quicktime.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/quicktime.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/quicktime.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/realmedia.gif b/kasu/static/js/tiny_mce/themes/advanced/img/realmedia.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/realmedia.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/realmedia.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/shockwave.gif b/kasu/static/js/tiny_mce/themes/advanced/img/shockwave.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/shockwave.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/shockwave.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/trans.gif b/kasu/static/js/tiny_mce/themes/advanced/img/trans.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/trans.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/trans.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/video.gif b/kasu/static/js/tiny_mce/themes/advanced/img/video.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/video.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/video.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/img/windowsmedia.gif b/kasu/static/js/tiny_mce/themes/advanced/img/windowsmedia.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/img/windowsmedia.gif
rename to kasu/static/js/tiny_mce/themes/advanced/img/windowsmedia.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/about.js b/kasu/static/js/tiny_mce/themes/advanced/js/about.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/about.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/about.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/anchor.js b/kasu/static/js/tiny_mce/themes/advanced/js/anchor.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/anchor.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/anchor.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/charmap.js b/kasu/static/js/tiny_mce/themes/advanced/js/charmap.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/charmap.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/charmap.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/color_picker.js b/kasu/static/js/tiny_mce/themes/advanced/js/color_picker.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/color_picker.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/color_picker.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/image.js b/kasu/static/js/tiny_mce/themes/advanced/js/image.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/image.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/image.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/link.js b/kasu/static/js/tiny_mce/themes/advanced/js/link.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/link.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/link.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/js/source_editor.js b/kasu/static/js/tiny_mce/themes/advanced/js/source_editor.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/js/source_editor.js
rename to kasu/static/js/tiny_mce/themes/advanced/js/source_editor.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/langs/en.js b/kasu/static/js/tiny_mce/themes/advanced/langs/en.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/langs/en.js
rename to kasu/static/js/tiny_mce/themes/advanced/langs/en.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/langs/en_dlg.js b/kasu/static/js/tiny_mce/themes/advanced/langs/en_dlg.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/langs/en_dlg.js
rename to kasu/static/js/tiny_mce/themes/advanced/langs/en_dlg.js
diff --git a/htdocs/js/tiny_mce/themes/advanced/link.htm b/kasu/static/js/tiny_mce/themes/advanced/link.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/link.htm
rename to kasu/static/js/tiny_mce/themes/advanced/link.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/shortcuts.htm b/kasu/static/js/tiny_mce/themes/advanced/shortcuts.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/shortcuts.htm
rename to kasu/static/js/tiny_mce/themes/advanced/shortcuts.htm
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/content.css b/kasu/static/js/tiny_mce/themes/advanced/skins/default/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/content.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/content.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/dialog.css b/kasu/static/js/tiny_mce/themes/advanced/skins/default/dialog.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/dialog.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/dialog.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/buttons.png b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/buttons.png
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/buttons.png
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/buttons.png
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/items.gif b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/items.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/items.gif
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/items.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/progress.gif b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/progress.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/progress.gif
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/progress.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif b/kasu/static/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/default/ui.css b/kasu/static/js/tiny_mce/themes/advanced/skins/default/ui.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/default/ui.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/default/ui.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/content.css b/kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/content.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/content.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/dialog.css b/kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/dialog.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/ui.css b/kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/ui.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/highcontrast/ui.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/highcontrast/ui.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/content.css b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/content.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/content.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/dialog.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui.css b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui_black.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css b/kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
rename to kasu/static/js/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css
diff --git a/htdocs/js/tiny_mce/themes/advanced/source_editor.htm b/kasu/static/js/tiny_mce/themes/advanced/source_editor.htm
similarity index 100%
rename from htdocs/js/tiny_mce/themes/advanced/source_editor.htm
rename to kasu/static/js/tiny_mce/themes/advanced/source_editor.htm
diff --git a/htdocs/js/tiny_mce/themes/simple/editor_template.js b/kasu/static/js/tiny_mce/themes/simple/editor_template.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/editor_template.js
rename to kasu/static/js/tiny_mce/themes/simple/editor_template.js
diff --git a/htdocs/js/tiny_mce/themes/simple/editor_template_src.js b/kasu/static/js/tiny_mce/themes/simple/editor_template_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/editor_template_src.js
rename to kasu/static/js/tiny_mce/themes/simple/editor_template_src.js
diff --git a/htdocs/js/tiny_mce/themes/simple/img/icons.gif b/kasu/static/js/tiny_mce/themes/simple/img/icons.gif
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/img/icons.gif
rename to kasu/static/js/tiny_mce/themes/simple/img/icons.gif
diff --git a/htdocs/js/tiny_mce/themes/simple/langs/en.js b/kasu/static/js/tiny_mce/themes/simple/langs/en.js
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/langs/en.js
rename to kasu/static/js/tiny_mce/themes/simple/langs/en.js
diff --git a/htdocs/js/tiny_mce/themes/simple/skins/default/content.css b/kasu/static/js/tiny_mce/themes/simple/skins/default/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/skins/default/content.css
rename to kasu/static/js/tiny_mce/themes/simple/skins/default/content.css
diff --git a/htdocs/js/tiny_mce/themes/simple/skins/default/ui.css b/kasu/static/js/tiny_mce/themes/simple/skins/default/ui.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/skins/default/ui.css
rename to kasu/static/js/tiny_mce/themes/simple/skins/default/ui.css
diff --git a/htdocs/js/tiny_mce/themes/simple/skins/o2k7/content.css b/kasu/static/js/tiny_mce/themes/simple/skins/o2k7/content.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/skins/o2k7/content.css
rename to kasu/static/js/tiny_mce/themes/simple/skins/o2k7/content.css
diff --git a/htdocs/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png b/kasu/static/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
rename to kasu/static/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
diff --git a/htdocs/js/tiny_mce/themes/simple/skins/o2k7/ui.css b/kasu/static/js/tiny_mce/themes/simple/skins/o2k7/ui.css
similarity index 100%
rename from htdocs/js/tiny_mce/themes/simple/skins/o2k7/ui.css
rename to kasu/static/js/tiny_mce/themes/simple/skins/o2k7/ui.css
diff --git a/htdocs/js/tiny_mce/tiny_mce.js b/kasu/static/js/tiny_mce/tiny_mce.js
similarity index 100%
rename from htdocs/js/tiny_mce/tiny_mce.js
rename to kasu/static/js/tiny_mce/tiny_mce.js
diff --git a/htdocs/js/tiny_mce/tiny_mce_popup.js b/kasu/static/js/tiny_mce/tiny_mce_popup.js
similarity index 100%
rename from htdocs/js/tiny_mce/tiny_mce_popup.js
rename to kasu/static/js/tiny_mce/tiny_mce_popup.js
diff --git a/htdocs/js/tiny_mce/tiny_mce_src.js b/kasu/static/js/tiny_mce/tiny_mce_src.js
similarity index 100%
rename from htdocs/js/tiny_mce/tiny_mce_src.js
rename to kasu/static/js/tiny_mce/tiny_mce_src.js
diff --git a/htdocs/js/tiny_mce/utils/editable_selects.js b/kasu/static/js/tiny_mce/utils/editable_selects.js
similarity index 100%
rename from htdocs/js/tiny_mce/utils/editable_selects.js
rename to kasu/static/js/tiny_mce/utils/editable_selects.js
diff --git a/htdocs/js/tiny_mce/utils/form_utils.js b/kasu/static/js/tiny_mce/utils/form_utils.js
similarity index 100%
rename from htdocs/js/tiny_mce/utils/form_utils.js
rename to kasu/static/js/tiny_mce/utils/form_utils.js
diff --git a/htdocs/js/tiny_mce/utils/mctabs.js b/kasu/static/js/tiny_mce/utils/mctabs.js
similarity index 100%
rename from htdocs/js/tiny_mce/utils/mctabs.js
rename to kasu/static/js/tiny_mce/utils/mctabs.js
diff --git a/htdocs/js/tiny_mce/utils/validate.js b/kasu/static/js/tiny_mce/utils/validate.js
similarity index 100%
rename from htdocs/js/tiny_mce/utils/validate.js
rename to kasu/static/js/tiny_mce/utils/validate.js
diff --git a/htdocs/js/tinymce/changelog.txt b/kasu/static/js/tinymce/changelog.txt
similarity index 100%
rename from htdocs/js/tinymce/changelog.txt
rename to kasu/static/js/tinymce/changelog.txt
diff --git a/htdocs/js/tinymce/examples/accessibility.html b/kasu/static/js/tinymce/examples/accessibility.html
similarity index 100%
rename from htdocs/js/tinymce/examples/accessibility.html
rename to kasu/static/js/tinymce/examples/accessibility.html
diff --git a/htdocs/js/tinymce/examples/css/content.css b/kasu/static/js/tinymce/examples/css/content.css
similarity index 100%
rename from htdocs/js/tinymce/examples/css/content.css
rename to kasu/static/js/tinymce/examples/css/content.css
diff --git a/htdocs/js/tinymce/examples/css/word.css b/kasu/static/js/tinymce/examples/css/word.css
similarity index 100%
rename from htdocs/js/tinymce/examples/css/word.css
rename to kasu/static/js/tinymce/examples/css/word.css
diff --git a/htdocs/js/tinymce/examples/custom_formats.html b/kasu/static/js/tinymce/examples/custom_formats.html
similarity index 100%
rename from htdocs/js/tinymce/examples/custom_formats.html
rename to kasu/static/js/tinymce/examples/custom_formats.html
diff --git a/htdocs/js/tinymce/examples/full.html b/kasu/static/js/tinymce/examples/full.html
similarity index 100%
rename from htdocs/js/tinymce/examples/full.html
rename to kasu/static/js/tinymce/examples/full.html
diff --git a/htdocs/js/tinymce/examples/index.html b/kasu/static/js/tinymce/examples/index.html
similarity index 100%
rename from htdocs/js/tinymce/examples/index.html
rename to kasu/static/js/tinymce/examples/index.html
diff --git a/htdocs/js/tinymce/examples/lists/image_list.js b/kasu/static/js/tinymce/examples/lists/image_list.js
similarity index 100%
rename from htdocs/js/tinymce/examples/lists/image_list.js
rename to kasu/static/js/tinymce/examples/lists/image_list.js
diff --git a/htdocs/js/tinymce/examples/lists/link_list.js b/kasu/static/js/tinymce/examples/lists/link_list.js
similarity index 100%
rename from htdocs/js/tinymce/examples/lists/link_list.js
rename to kasu/static/js/tinymce/examples/lists/link_list.js
diff --git a/htdocs/js/tinymce/examples/lists/media_list.js b/kasu/static/js/tinymce/examples/lists/media_list.js
similarity index 100%
rename from htdocs/js/tinymce/examples/lists/media_list.js
rename to kasu/static/js/tinymce/examples/lists/media_list.js
diff --git a/htdocs/js/tinymce/examples/lists/template_list.js b/kasu/static/js/tinymce/examples/lists/template_list.js
similarity index 100%
rename from htdocs/js/tinymce/examples/lists/template_list.js
rename to kasu/static/js/tinymce/examples/lists/template_list.js
diff --git a/htdocs/js/tinymce/examples/media/logo.jpg b/kasu/static/js/tinymce/examples/media/logo.jpg
similarity index 100%
rename from htdocs/js/tinymce/examples/media/logo.jpg
rename to kasu/static/js/tinymce/examples/media/logo.jpg
diff --git a/htdocs/js/tinymce/examples/media/logo_over.jpg b/kasu/static/js/tinymce/examples/media/logo_over.jpg
similarity index 100%
rename from htdocs/js/tinymce/examples/media/logo_over.jpg
rename to kasu/static/js/tinymce/examples/media/logo_over.jpg
diff --git a/htdocs/js/tinymce/examples/media/sample.avi b/kasu/static/js/tinymce/examples/media/sample.avi
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.avi
rename to kasu/static/js/tinymce/examples/media/sample.avi
diff --git a/htdocs/js/tinymce/examples/media/sample.dcr b/kasu/static/js/tinymce/examples/media/sample.dcr
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.dcr
rename to kasu/static/js/tinymce/examples/media/sample.dcr
diff --git a/htdocs/js/tinymce/examples/media/sample.flv b/kasu/static/js/tinymce/examples/media/sample.flv
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.flv
rename to kasu/static/js/tinymce/examples/media/sample.flv
diff --git a/htdocs/js/tinymce/examples/media/sample.mov b/kasu/static/js/tinymce/examples/media/sample.mov
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.mov
rename to kasu/static/js/tinymce/examples/media/sample.mov
diff --git a/htdocs/js/tinymce/examples/media/sample.ram b/kasu/static/js/tinymce/examples/media/sample.ram
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.ram
rename to kasu/static/js/tinymce/examples/media/sample.ram
diff --git a/htdocs/js/tinymce/examples/media/sample.rm b/kasu/static/js/tinymce/examples/media/sample.rm
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.rm
rename to kasu/static/js/tinymce/examples/media/sample.rm
diff --git a/htdocs/js/tinymce/examples/media/sample.swf b/kasu/static/js/tinymce/examples/media/sample.swf
similarity index 100%
rename from htdocs/js/tinymce/examples/media/sample.swf
rename to kasu/static/js/tinymce/examples/media/sample.swf
diff --git a/htdocs/js/tinymce/examples/menu.html b/kasu/static/js/tinymce/examples/menu.html
similarity index 100%
rename from htdocs/js/tinymce/examples/menu.html
rename to kasu/static/js/tinymce/examples/menu.html
diff --git a/htdocs/js/tinymce/examples/simple.html b/kasu/static/js/tinymce/examples/simple.html
similarity index 100%
rename from htdocs/js/tinymce/examples/simple.html
rename to kasu/static/js/tinymce/examples/simple.html
diff --git a/htdocs/js/tinymce/examples/skins.html b/kasu/static/js/tinymce/examples/skins.html
similarity index 100%
rename from htdocs/js/tinymce/examples/skins.html
rename to kasu/static/js/tinymce/examples/skins.html
diff --git a/htdocs/js/tinymce/examples/templates/layout1.htm b/kasu/static/js/tinymce/examples/templates/layout1.htm
similarity index 100%
rename from htdocs/js/tinymce/examples/templates/layout1.htm
rename to kasu/static/js/tinymce/examples/templates/layout1.htm
diff --git a/htdocs/js/tinymce/examples/templates/snippet1.htm b/kasu/static/js/tinymce/examples/templates/snippet1.htm
similarity index 100%
rename from htdocs/js/tinymce/examples/templates/snippet1.htm
rename to kasu/static/js/tinymce/examples/templates/snippet1.htm
diff --git a/htdocs/js/tinymce/examples/word.html b/kasu/static/js/tinymce/examples/word.html
similarity index 100%
rename from htdocs/js/tinymce/examples/word.html
rename to kasu/static/js/tinymce/examples/word.html
diff --git a/htdocs/js/tinymce_setup.js b/kasu/static/js/tinymce_setup.js
similarity index 100%
rename from htdocs/js/tinymce_setup.js
rename to kasu/static/js/tinymce_setup.js
diff --git a/htdocs/navigation.html b/kasu/static/navigation.html
similarity index 100%
rename from htdocs/navigation.html
rename to kasu/static/navigation.html
diff --git a/htdocs/style.css b/kasu/static/style.css
similarity index 100%
rename from htdocs/style.css
rename to kasu/static/style.css
diff --git a/src/urls.py b/kasu/urls.py
similarity index 98%
rename from src/urls.py
rename to kasu/urls.py
index 3dfbfc0..2c309a5 100644
--- a/src/urls.py
+++ b/kasu/urls.py
@@ -62,7 +62,7 @@ if settings.DEBUG:
}),
)
-if settings.DEBUG and 'rosetta' in settings.INSTALLED_APPS:
+if 'rosetta' in settings.INSTALLED_APPS:
urlpatterns += patterns('',
url(r'^rosetta/', include('rosetta.urls')),
)
diff --git a/src/utils.py b/kasu/utils.py
similarity index 100%
rename from src/utils.py
rename to kasu/utils.py
diff --git a/src/mahjong_ranking/__init__.py b/mahjong_ranking/__init__.py
similarity index 100%
rename from src/mahjong_ranking/__init__.py
rename to mahjong_ranking/__init__.py
diff --git a/src/mahjong_ranking/admin.py b/mahjong_ranking/admin.py
similarity index 100%
rename from src/mahjong_ranking/admin.py
rename to mahjong_ranking/admin.py
diff --git a/src/mahjong_ranking/forms.py b/mahjong_ranking/forms.py
similarity index 100%
rename from src/mahjong_ranking/forms.py
rename to mahjong_ranking/forms.py
diff --git a/src/mahjong_ranking/management/__init__.py b/mahjong_ranking/management/__init__.py
similarity index 100%
rename from src/mahjong_ranking/management/__init__.py
rename to mahjong_ranking/management/__init__.py
diff --git a/src/mahjong_ranking/management/commands/__init__.py b/mahjong_ranking/management/commands/__init__.py
similarity index 100%
rename from src/mahjong_ranking/management/commands/__init__.py
rename to mahjong_ranking/management/commands/__init__.py
diff --git a/src/mahjong_ranking/management/commands/random-ranking.py b/mahjong_ranking/management/commands/random-ranking.py
similarity index 100%
rename from src/mahjong_ranking/management/commands/random-ranking.py
rename to mahjong_ranking/management/commands/random-ranking.py
diff --git a/src/mahjong_ranking/middleware.py b/mahjong_ranking/middleware.py
similarity index 100%
rename from src/mahjong_ranking/middleware.py
rename to mahjong_ranking/middleware.py
diff --git a/src/mahjong_ranking/models.py b/mahjong_ranking/models.py
similarity index 100%
rename from src/mahjong_ranking/models.py
rename to mahjong_ranking/models.py
diff --git a/src/templates/mahjong_ranking/eventranking_list.html b/mahjong_ranking/templates/mahjong_ranking/eventranking_list.html
similarity index 100%
rename from src/templates/mahjong_ranking/eventranking_list.html
rename to mahjong_ranking/templates/mahjong_ranking/eventranking_list.html
diff --git a/src/templates/mahjong_ranking/hanchan_confirm_delete.html b/mahjong_ranking/templates/mahjong_ranking/hanchan_confirm_delete.html
similarity index 100%
rename from src/templates/mahjong_ranking/hanchan_confirm_delete.html
rename to mahjong_ranking/templates/mahjong_ranking/hanchan_confirm_delete.html
diff --git a/src/templates/mahjong_ranking/hanchan_form.html b/mahjong_ranking/templates/mahjong_ranking/hanchan_form.html
similarity index 100%
rename from src/templates/mahjong_ranking/hanchan_form.html
rename to mahjong_ranking/templates/mahjong_ranking/hanchan_form.html
diff --git a/src/templates/mahjong_ranking/hanchan_list.html b/mahjong_ranking/templates/mahjong_ranking/hanchan_list.html
similarity index 100%
rename from src/templates/mahjong_ranking/hanchan_list.html
rename to mahjong_ranking/templates/mahjong_ranking/hanchan_list.html
diff --git a/src/templates/mahjong_ranking/kyudanranking_list.html b/mahjong_ranking/templates/mahjong_ranking/kyudanranking_list.html
similarity index 100%
rename from src/templates/mahjong_ranking/kyudanranking_list.html
rename to mahjong_ranking/templates/mahjong_ranking/kyudanranking_list.html
diff --git a/src/templates/mahjong_ranking/ladderranking_list.html b/mahjong_ranking/templates/mahjong_ranking/ladderranking_list.html
similarity index 100%
rename from src/templates/mahjong_ranking/ladderranking_list.html
rename to mahjong_ranking/templates/mahjong_ranking/ladderranking_list.html
diff --git a/src/templates/mahjong_ranking/page.html b/mahjong_ranking/templates/mahjong_ranking/page.html
similarity index 100%
rename from src/templates/mahjong_ranking/page.html
rename to mahjong_ranking/templates/mahjong_ranking/page.html
diff --git a/src/templates/mahjong_ranking/player_dan_score.html b/mahjong_ranking/templates/mahjong_ranking/player_dan_score.html
similarity index 100%
rename from src/templates/mahjong_ranking/player_dan_score.html
rename to mahjong_ranking/templates/mahjong_ranking/player_dan_score.html
diff --git a/src/templates/mahjong_ranking/player_invalid_score.html b/mahjong_ranking/templates/mahjong_ranking/player_invalid_score.html
similarity index 100%
rename from src/templates/mahjong_ranking/player_invalid_score.html
rename to mahjong_ranking/templates/mahjong_ranking/player_invalid_score.html
diff --git a/src/templates/mahjong_ranking/player_kyu_score.html b/mahjong_ranking/templates/mahjong_ranking/player_kyu_score.html
similarity index 100%
rename from src/templates/mahjong_ranking/player_kyu_score.html
rename to mahjong_ranking/templates/mahjong_ranking/player_kyu_score.html
diff --git a/src/templates/mahjong_ranking/player_ladder_score.html b/mahjong_ranking/templates/mahjong_ranking/player_ladder_score.html
similarity index 100%
rename from src/templates/mahjong_ranking/player_ladder_score.html
rename to mahjong_ranking/templates/mahjong_ranking/player_ladder_score.html
diff --git a/src/mahjong_ranking/tests.py b/mahjong_ranking/tests.py
similarity index 100%
rename from src/mahjong_ranking/tests.py
rename to mahjong_ranking/tests.py
diff --git a/src/mahjong_ranking/urls.py b/mahjong_ranking/urls.py
similarity index 100%
rename from src/mahjong_ranking/urls.py
rename to mahjong_ranking/urls.py
diff --git a/src/mahjong_ranking/views.py b/mahjong_ranking/views.py
similarity index 100%
rename from src/mahjong_ranking/views.py
rename to mahjong_ranking/views.py
diff --git a/src/manage.py b/manage.py
similarity index 71%
rename from src/manage.py
rename to manage.py
index 43ba45f..0d1dc37 100755
--- a/src/manage.py
+++ b/manage.py
@@ -3,6 +3,6 @@ import os
import sys
if __name__ == "__main__":
- os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
+ os.environ.setdefault("DJANGO_SETTINGS_MODULE", "kasu.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
diff --git a/src/membership/__init__.py b/membership/__init__.py
similarity index 100%
rename from src/membership/__init__.py
rename to membership/__init__.py
diff --git a/src/membership/admin.py b/membership/admin.py
similarity index 100%
rename from src/membership/admin.py
rename to membership/admin.py
diff --git a/src/membership/forms.py b/membership/forms.py
similarity index 100%
rename from src/membership/forms.py
rename to membership/forms.py
diff --git a/src/membership/management/__init__.py b/membership/management/__init__.py
similarity index 100%
rename from src/membership/management/__init__.py
rename to membership/management/__init__.py
diff --git a/src/membership/management/commands/__init__.py b/membership/management/commands/__init__.py
similarity index 100%
rename from src/membership/management/commands/__init__.py
rename to membership/management/commands/__init__.py
diff --git a/src/membership/management/commands/cleanup-registration.py b/membership/management/commands/cleanup-registration.py
similarity index 100%
rename from src/membership/management/commands/cleanup-registration.py
rename to membership/management/commands/cleanup-registration.py
diff --git a/src/membership/management/commands/get-user.py b/membership/management/commands/get-user.py
similarity index 100%
rename from src/membership/management/commands/get-user.py
rename to membership/management/commands/get-user.py
diff --git a/src/membership/models.py b/membership/models.py
similarity index 100%
rename from src/membership/models.py
rename to membership/models.py
diff --git a/src/membership/specs.py b/membership/specs.py
similarity index 100%
rename from src/membership/specs.py
rename to membership/specs.py
diff --git a/src/templates/membership/activation_error.html b/membership/templates/membership/activation_error.html
similarity index 100%
rename from src/templates/membership/activation_error.html
rename to membership/templates/membership/activation_error.html
diff --git a/src/templates/membership/activation_sent.html b/membership/templates/membership/activation_sent.html
similarity index 100%
rename from src/templates/membership/activation_sent.html
rename to membership/templates/membership/activation_sent.html
diff --git a/src/templates/membership/activation_successful.html b/membership/templates/membership/activation_successful.html
similarity index 100%
rename from src/templates/membership/activation_successful.html
rename to membership/templates/membership/activation_successful.html
diff --git a/src/templates/membership/email/activation_email.html b/membership/templates/membership/email/activation_email.html
similarity index 100%
rename from src/templates/membership/email/activation_email.html
rename to membership/templates/membership/email/activation_email.html
diff --git a/src/templates/membership/email/activation_email.txt b/membership/templates/membership/email/activation_email.txt
similarity index 100%
rename from src/templates/membership/email/activation_email.txt
rename to membership/templates/membership/email/activation_email.txt
diff --git a/src/templates/membership/email/password_reset_email.html b/membership/templates/membership/email/password_reset_email.html
similarity index 100%
rename from src/templates/membership/email/password_reset_email.html
rename to membership/templates/membership/email/password_reset_email.html
diff --git a/src/templates/membership/email/password_reset_subject.txt b/membership/templates/membership/email/password_reset_subject.txt
similarity index 100%
rename from src/templates/membership/email/password_reset_subject.txt
rename to membership/templates/membership/email/password_reset_subject.txt
diff --git a/src/templates/membership/hanchan_table.html b/membership/templates/membership/hanchan_table.html
similarity index 100%
rename from src/templates/membership/hanchan_table.html
rename to membership/templates/membership/hanchan_table.html
diff --git a/src/templates/membership/membership_detail.html b/membership/templates/membership/membership_detail.html
similarity index 100%
rename from src/templates/membership/membership_detail.html
rename to membership/templates/membership/membership_detail.html
diff --git a/src/templates/membership/membership_form.html b/membership/templates/membership/membership_form.html
similarity index 100%
rename from src/templates/membership/membership_form.html
rename to membership/templates/membership/membership_form.html
diff --git a/src/templates/membership/register_form.html b/membership/templates/membership/register_form.html
similarity index 100%
rename from src/templates/membership/register_form.html
rename to membership/templates/membership/register_form.html
diff --git a/src/templates/membership/register_successful.html b/membership/templates/membership/register_successful.html
similarity index 100%
rename from src/templates/membership/register_successful.html
rename to membership/templates/membership/register_successful.html
diff --git a/src/membership/urls.py b/membership/urls.py
similarity index 100%
rename from src/membership/urls.py
rename to membership/urls.py
diff --git a/src/membership/views.py b/membership/views.py
similarity index 100%
rename from src/membership/views.py
rename to membership/views.py
diff --git a/requirements.txt b/requirements/base.txt
similarity index 100%
rename from requirements.txt
rename to requirements/base.txt
diff --git a/src/backup.log b/src/backup.log
deleted file mode 100644
index da8a2a0..0000000
--- a/src/backup.log
+++ /dev/null
@@ -1,4 +0,0 @@
-#1406838232 Disk /dev/sdi - 1031 MB / 983 MiB - CHS 46 228 48
- 1 : start= 48, size= 2013648, Id=0B, *
-#1406838486 Disk /dev/sdi - 188 MB / 180 MiB - CHS 40 48 48
- 1 : start= 48, size= 504528, Id=0B, *
diff --git a/src/templates/404.html b/src/templates/404.html
deleted file mode 100644
index 8dde320..0000000
--- a/src/templates/404.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}404 - Seite nicht gefunden{% endblock %}
-
-{% block maincontent %}
-
404 - Nōten!
-
Unter der Adresse {{request.path}} wohnt zur Zeit kein Inhalt.
-Unsere Empfehlung: Gehe zurück zum Start.
-
-
-
-
Ursachen
-
Tote Links sind ein bislang ungelöstes Problem des Hypertextes und im Kern darauf zurückzuführen, dass das Internet ein dezentrales Netzwerk ist. Daher kann die Integrität desselbigen niemals sichergestellt werden.
-
Die Gründe für das Existieren von toten Links können sehr unterschiedlich sein und vor allem an sehr unterschiedlichen Stellen auftreten. In der Praxis häufig anzutreffende Gründe sind unter anderem:
-
-
Die Datei, auf die die URL verweist, ist verschoben, umbenannt oder gelöscht worden.
-
Der Link auf der Ursprungseite ist fehlerhaft angegeben, beispielsweise bei der Groß- oder Kleinschreibung im URL-Bestandteil (URLs sind case sensitive) nach der Angabe des Domainnamens.
-
Die gesuchte Domain ist neu bei einem Registrar vergeben worden und die Website selber noch ohne jeden Inhalt.
-
Der Webserver ist nicht (mehr) erreichbar, beispielsweise wegen Netzproblemen oder weil der Rechner abgeschaltet ist.
-
Der Host- bzw. Domainname der URL existiert nicht (mehr) oder kann nicht im DNS aufgelöst werden.
-
-
-
-
-
Lösungsmöglichkeiten
-
Eine Möglichkeit, die allerdings eher die Symptome der Dead Links bekämpft, ist die Wayback Machine des Internetarchivs. Durch chronologische Kopien von Webseiten kann Zugriff auf teilweise längst nicht mehr im Original vorhandene Webseiten gewährt werden.
-
Ursachenbekämpfung betreiben hingegen Gremien wie das W3C mit der Kampagne Cool URIs don't change[1], die in der Öffentlichkeit das Bewusstsein für die Notwendigkeit persistenter URLs wecken. Zudem gibt es bereits Systeme, die das Ziel von unabänderlichen URLs verfolgen, beispielsweise das des Persistent Uniform Resource Locators.
\ No newline at end of file
diff --git a/src/templates/comments/posted.html b/src/templates/comments/posted.html
deleted file mode 100644
index efc4ce5..0000000
--- a/src/templates/comments/posted.html
+++ /dev/null
@@ -1,8 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-
-{% block title %}{% trans "Thank you for your comment" %}{% endblock %}
-
-{% block content %}
-
{% trans "Thank you for your comment" %}!
-{% endblock %}
\ No newline at end of file
diff --git a/src/templates/comments/preview.html b/src/templates/comments/preview.html
deleted file mode 100644
index a96d05c..0000000
--- a/src/templates/comments/preview.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "base.html" %}
-{% load i18n django_markdown %}
-
-{% block title %}{% trans "Preview your comment" %}{% endblock %}
-
-{% block maincontent %}
- {% if form.errors %}
-
{% blocktrans count form.errors|length as counter %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}
- {% else %}
-
{% trans "Preview your comment" %}
-
-
-
- {% if user.get_profile.thumbnail %}{% else %}{% endif %}
-
-
-
{{user}}
-
-
-
{{comment|markdown_safe}}
-
-
- {% endif %}
-
- {% include "comments/form.html" %}
-{% endblock %}
\ No newline at end of file
diff --git a/src/templates/form.html b/src/templates/form.html
deleted file mode 100644
index 5f5cf56..0000000
--- a/src/templates/form.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% for field in form.visible_fields %}
-
Wir haben dir eine E-Mail mit Anweisungen zum Zurücksetzen deines Passwort an die angegebene E-Mail-Adresse geschickt.
-Du solltest diese in Kürze erhalten.
-
-
-
E-Mail nicht angekommen?
-
-
Etwas Warten...
-
Einige Anti-Spam Techniken verzögern den Empfang von E-Mails.
- Bei solchen Postfächern kann der Empfang einzelner Mails bis zu 30 Minuten dauern.
-
-
-
-
Junk Mails prüfen
-
Bitte überprüfe den "Junk" bzw. "SPAM" Ordner deines Postfaches.
- Automatisch generierte E-Mails werden leider sehr oft falsch von SPAM-Filtern geschluckt
-
-
-
Vorbei schauen
-
Bitte Überprüfe die Richigkeit deiner angegebenen E-Mail Adresse. Wenn deine angegebne E-Mail Adresse nicht mehr aktuell ist, trete mit uns bitte in persönlichen Kontakt
-{% endblock %}
\ No newline at end of file
diff --git a/templates/membership/activation_error.html b/templates/membership/activation_error.html
deleted file mode 100644
index e445b14..0000000
--- a/templates/membership/activation_error.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-
-{% block title %}Account aktivierung fehlgeschlagen{% endblock %}
-
-{% block maincontent %}
-
Aktivierung fehlgeschlagen
-
Leider war die Aktivierung des Schlüssels “{{ activation_key }}” war nicht erfolgreich, dies könnte mehrere Gründe haben:
-
-
-
Der Aktivierungs Link ist nicht korrekt. Bitte kopiere die ganze Zeile aus der E-Mail in die Adressleiste.
-
Der Aktivierungs Schlüssel ist abgelaufen. Dieser ist nur {{ expiration_days }} Tage gültig.In diesem Fall fülle das Registrierungs Formular bitte erneut aus.
-
Der Account wurde schon aktiviert. Dies passiert sehr schnell, veruche zuerst dich mit deinen Daten anzumelden. Sollte das nicht funktionieren, kannst du dir ja mal neue Zugangsdaten zuschicken lassen.
-
Ein obskurer Fehler ist aufgetreten. In diesem Fall, nimm bitte Kontakt mit dem Webadmin auf.
Danke für die Anmeldung! Um sicher zu gehen das die angegebene E-Mail Adresse korrekt ist,
- wurde eine Aktivierungs E-Mail an deinen Adresse geschickt.Diese enthält einen Link, der deinen Benutzer Account frei schaltet.
-
Solltest du keine Bestätigung bekommen haben, oder deine Mail Adresse falsch sein.
- Setze dich bitte mit den Webadministrator in Kontakt. Dieser kann bei deinem Anliegen helfen.
Einige Anti-Spam Techniken verzögern den Empfang von E-Mails.
- Bei solchen Postfächern kann der Empfang einzelner Mails bis zu 30 Minuten dauern.
-
Bitte überprüfe den "Junk" bzw. "SPAM" Ordner deines Postfaches.
- Automatisch generierte E-Mails werden leider sehr oft falsch von SPAM-Filtern geschluckt
-
Bitte Überprüfe die Richigkeit deiner angegebenen E-Mail Adresse.
Solltest du nichts beantragt haben, ignoriere diese E-Mail einfach.
-Du wirst keine weiteren Mails mehr von uns bekommen.
-
-
Wichtig: Der Account muss innerhalb von {{expiration_days}} Tagen aktiviert werden,
-ansonsten verfällt er automatisch.
-
-
mit freundlichen Grüßen
-
-
Das AniManga Team.
-{% endblock %}
\ No newline at end of file
diff --git a/templates/membership/email/activation_email.txt b/templates/membership/email/activation_email.txt
deleted file mode 100644
index 60cfc6e..0000000
--- a/templates/membership/email/activation_email.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-{% load i18n %}
-Dear {{user}},
-
-We received an account request on {{site.domain}} for your email address.
-To activate your account please visit the following link:
-
-http://{{site.domain}}/membership/activate/{{ activation_key }}/
-
-If you do not want to open an account on {{site.domain}}, please ignore this email.
-Your information will then be deleted in a few days time.
-
-Best Regards,
-The {{site.domain}} team.
\ No newline at end of file
diff --git a/templates/membership/email/password_reset_email.html b/templates/membership/email/password_reset_email.html
deleted file mode 100644
index 8848525..0000000
--- a/templates/membership/email/password_reset_email.html
+++ /dev/null
@@ -1,15 +0,0 @@
-{% load i18n %}{% autoescape off %}
-{% trans "You're receiving this e-mail because you requested a password reset" %}
-{% blocktrans %}for your user account at {{ site_name }}{% endblocktrans %}.
-
-{% trans "Please go to the following page and choose a new password:" %}
-{% block reset_link %}
-{{ protocol }}://{{ domain }}{% url 'django'.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
-{% endblock %}
-{% trans "Your username, in case you've forgotten:" %} {{ user.username }}
-
-{% trans "Thanks for using our site!" %}
-
-{% blocktrans %}The {{ site_name }} team{% endblocktrans %}
-
-{% endautoescape %}
diff --git a/templates/membership/email/password_reset_subject.txt b/templates/membership/email/password_reset_subject.txt
deleted file mode 100644
index 36292d6..0000000
--- a/templates/membership/email/password_reset_subject.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-{% load i18n %}{% autoescape off %}
-{% blocktrans %}Password reset on {{ site_name }}{% endblocktrans %}
-{% endautoescape %}
diff --git a/templates/membership/hanchan_table.html b/templates/membership/hanchan_table.html
deleted file mode 100644
index a0ad7ad..0000000
--- a/templates/membership/hanchan_table.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% load i18n %}
-
-
{% blocktrans %}
- After you've provided your account data, you'll receive an email asking you to verify your email address.
- You have to click on the link in this verification email to confirm your email address, otherwise your can't login.
- {% endblocktrans %}
Bitte fülle das Anmeldeformular vollständig aus.
- Es ist dabei wichtig eine gültige E-Mail Adresse anzugeben, welche du öfters abrufst.
-
Während der Registrierung schicken wir dir eine E-Mail, diese enthält einen Link zur Aktivierung.
- Ohne diesen Schritt ist es nicht Möglich sich mit dem Account anzumelden.
-{% endblock %}
\ No newline at end of file
diff --git a/src/utils/__init__.py b/utils/__init__.py
similarity index 100%
rename from src/utils/__init__.py
rename to utils/__init__.py
diff --git a/src/utils/countries.py b/utils/countries.py
similarity index 100%
rename from src/utils/countries.py
rename to utils/countries.py
diff --git a/src/utils/forms.py b/utils/forms.py
similarity index 100%
rename from src/utils/forms.py
rename to utils/forms.py
diff --git a/src/utils/html5/__init__.py b/utils/html5/__init__.py
similarity index 100%
rename from src/utils/html5/__init__.py
rename to utils/html5/__init__.py
diff --git a/src/utils/html5/base.py b/utils/html5/base.py
similarity index 100%
rename from src/utils/html5/base.py
rename to utils/html5/base.py
diff --git a/src/utils/html5/forms.py b/utils/html5/forms.py
similarity index 100%
rename from src/utils/html5/forms.py
rename to utils/html5/forms.py
diff --git a/src/utils/html5/models.py b/utils/html5/models.py
similarity index 100%
rename from src/utils/html5/models.py
rename to utils/html5/models.py
diff --git a/src/utils/html5/views.py b/utils/html5/views.py
similarity index 100%
rename from src/utils/html5/views.py
rename to utils/html5/views.py
diff --git a/src/utils/html5/widgets.py b/utils/html5/widgets.py
similarity index 100%
rename from src/utils/html5/widgets.py
rename to utils/html5/widgets.py
diff --git a/src/utils/html_cleaner.py b/utils/html_cleaner.py
similarity index 100%
rename from src/utils/html_cleaner.py
rename to utils/html_cleaner.py
diff --git a/src/utils/icalendar/__init__.py b/utils/icalendar/__init__.py
similarity index 100%
rename from src/utils/icalendar/__init__.py
rename to utils/icalendar/__init__.py
diff --git a/src/utils/icalendar/cal.py b/utils/icalendar/cal.py
similarity index 100%
rename from src/utils/icalendar/cal.py
rename to utils/icalendar/cal.py
diff --git a/src/utils/icalendar/caselessdict.py b/utils/icalendar/caselessdict.py
similarity index 100%
rename from src/utils/icalendar/caselessdict.py
rename to utils/icalendar/caselessdict.py
diff --git a/src/utils/icalendar/interfaces.py b/utils/icalendar/interfaces.py
similarity index 100%
rename from src/utils/icalendar/interfaces.py
rename to utils/icalendar/interfaces.py
diff --git a/src/utils/icalendar/parser.py b/utils/icalendar/parser.py
similarity index 100%
rename from src/utils/icalendar/parser.py
rename to utils/icalendar/parser.py
diff --git a/src/utils/icalendar/prop.py b/utils/icalendar/prop.py
similarity index 100%
rename from src/utils/icalendar/prop.py
rename to utils/icalendar/prop.py
diff --git a/src/utils/icalendar/tests/__init__.py b/utils/icalendar/tests/__init__.py
similarity index 100%
rename from src/utils/icalendar/tests/__init__.py
rename to utils/icalendar/tests/__init__.py
diff --git a/src/utils/icalendar/tests/test_icalendar.py b/utils/icalendar/tests/test_icalendar.py
similarity index 100%
rename from src/utils/icalendar/tests/test_icalendar.py
rename to utils/icalendar/tests/test_icalendar.py
diff --git a/src/utils/management/__init__.py b/utils/management/__init__.py
similarity index 100%
rename from src/utils/management/__init__.py
rename to utils/management/__init__.py
diff --git a/src/utils/management/commands/__init__.py b/utils/management/commands/__init__.py
similarity index 100%
rename from src/utils/management/commands/__init__.py
rename to utils/management/commands/__init__.py
diff --git a/src/utils/management/commands/compresscss.py b/utils/management/commands/compresscss.py
similarity index 100%
rename from src/utils/management/commands/compresscss.py
rename to utils/management/commands/compresscss.py
diff --git a/src/utils/management/commands/compressjs.py b/utils/management/commands/compressjs.py
similarity index 100%
rename from src/utils/management/commands/compressjs.py
rename to utils/management/commands/compressjs.py
diff --git a/src/utils/management/commands/scss-compiler.py b/utils/management/commands/scss-compiler.py
similarity index 100%
rename from src/utils/management/commands/scss-compiler.py
rename to utils/management/commands/scss-compiler.py
diff --git a/src/utils/massmailer.py b/utils/massmailer.py
similarity index 100%
rename from src/utils/massmailer.py
rename to utils/massmailer.py
diff --git a/src/utils/middleware.py b/utils/middleware.py
similarity index 100%
rename from src/utils/middleware.py
rename to utils/middleware.py
diff --git a/src/utils/mixins.py b/utils/mixins.py
similarity index 100%
rename from src/utils/mixins.py
rename to utils/mixins.py
diff --git a/utils/templatetags/__init__.py b/utils/templatetags/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/src/utils/templatetags/markup.py b/utils/templatetags/markup.py
similarity index 100%
rename from src/utils/templatetags/markup.py
rename to utils/templatetags/markup.py