diff --git a/.env b/.env deleted file mode 100644 index 354d52efeb5ed502ca00162079dcde60b6eccdbb..0000000000000000000000000000000000000000 --- a/.env +++ /dev/null @@ -1,10 +0,0 @@ -TYPO3_SITENAME=TYPO3 Extension Repository -TYPO3_CONTEXT=Development -DATABASE_USER=t3o -DATABASE_USER_PASSWORD=k6mdcMp0MATlzKAE1RW6qFmmilqt2HNkQhbVgztu -DATABASE_HOST_NAME=db -DATABASE_PORT=3306 -DATABASE_NAME=t3o -DATABASE_ROOT_PASSWORD=uf5c92eCULghtfdEdqH0hsfvnPSuEY7cnPKk5MAz -ADMIN_USER_NAME=t3o -ADMIN_PASSWORD=x2VsAVQNJd8UiDdu9a76 diff --git a/.gitignore b/.gitignore index dcab55c4332859f9c92182d8ac92a1f878a85e68..022a89c069acc88dcb80eaf79114dc813e5d565f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,12 +4,12 @@ typo3_src bin/* !bin/scripts/ vendor -htdocs/fileadmin -htdocs/typo3temp -htdocs/uploads -htdocs/typo3 -htdocs/index.php -htdocs/typo3conf/ext/* -htdocs/typo3conf/PackageStates.php -!htdocs/typo3conf/ext/ter* +html/fileadmin +html/typo3temp +html/uploads +html/typo3 +html/index.php +html/typo3conf/ext/* +html/typo3conf/PackageStates.php +!html/typo3conf/ext/ter* data/etc/solr/server/solr/mycores/t3o/data diff --git a/Makefile b/Makefile deleted file mode 100644 index a50c36d5a6ae4e641690e2ec6cc7d5a62006211a..0000000000000000000000000000000000000000 --- a/Makefile +++ /dev/null @@ -1,144 +0,0 @@ -# Makefile for t3o/ter -# -# Type 'make' for help. -# - - -DOCKER_COMPOSE="$$(pwd)/data/scripts/docker-compose.sh" -COMPOSER="$$(pwd)/data/scripts/composer.sh" -include .env - -.PHONY: help -help: - @echo "Please use 'make ' where is one of" - @echo " help to show this menu." - @echo " help2 for more help." - @echo " init for: composer-install, install-typo3" - @echo " reset for: kill, down, init" - - @echo " pull docker-compose: Pull images for services." - @echo " build docker-compose: Build or rebuild services." - @echo " ps docker-compose: List containers." - @echo " up docker-compose: Build, (re)create, start, and attach" - @echo " to containers for a service." - @echo " down docker-compose: Stops containers and removes containers, networks," - @echo " volumes, and images created by 'up'." - @echo " stop docker-compose: Stop running containers without removing them." - @echo " kill docker-compose: Force stop service containers." - @echo - @echo " install-typo3 docker-compose: Start TYPO3" - @echo " clear-cache Command Line: Empty typo3temp/" - @echo - @echo " log Constantly echo log items to the console." - @echo " composer-install PHP Composer: Install." - @echo " composer-update PHP Composer: Update." - @echo - @echo "Recommended:" - @echo " make init up log" - - -.PHONY: help2 -help2: - @echo - @echo "help2" - @echo "=====" - @echo - @echo "Once TYPO3 is running direct your browser to one of:" - @echo " https://ter.typo3.127.0.0.1.xip.io/typo3/" - @echo " https://ter.typo3.127.0.0.1.xip.io/typo3/sysext/install/Start/Install.php" - @echo - @echo "For a local installation it may be necessary to have file:" - @echo " ./data/typo3/html/typo3conf/AdditionalConfiguration.sample.php" - @echo "being active as file:" - @echo " ./data/typo3/html/typo3conf/AdditionalConfiguration.php" - @echo "Copy if necessary." - @echo - @echo "End of help2." - @echo - - - -.PHONY: init -init: composer-install install-typo3 - @echo - @echo "Direct your browser to:" - @echo " https://ter.typo3.127.0.0.1.xip.io/typo3/" - @echo - @echo "Type 'make help2' for more help." - @echo - - -.PHONY: reset -reset: kill down clear-cache init - - -.PHONY: pull -pull: - $(DOCKER_COMPOSE) pull - - -.PHONY: build -build: - $(DOCKER_COMPOSE) build --no-cache - - -.PHONY: ps -ps: - $(DOCKER_COMPOSE) ps - - -.PHONY: up -up: - $(DOCKER_COMPOSE) up -d - - -.PHONY: down -down: - $(DOCKER_COMPOSE) down --remove-orphans - - -.PHONY: stop -stop: - $(DOCKER_COMPOSE) stop - - -.PHONY: kill -kill: - $(DOCKER_COMPOSE) kill - - -.PHONY: install-typo3 -install-typo3: up - $(DOCKER_COMPOSE) run --rm db /src/data/scripts/wait-for-it.sh -h $(DATABASE_HOST_NAME) -p $(DATABASE_PORT) -t 30 - $(DOCKER_COMPOSE) run --rm php ./bin/typo3cms install:setup \ - --non-interactive \ - --force \ - --database-user-name $(DATABASE_USER) \ - --database-user-password $(DATABASE_USER_PASSWORD) \ - --database-host-name $(DATABASE_HOST_NAME) \ - --database-port $(DATABASE_PORT) \ - --database-name $(DATABASE_NAME) \ - --use-existing-database \ - --admin-user-name $(ADMIN_USER_NAME) \ - --admin-password $(ADMIN_PASSWORD) \ - --site-name $(TYPO3_SITENAME) \ - --site-setup-type site - - -.PHONY: log -log: - $(DOCKER_COMPOSE) logs -f --tail=100 - - -.PHONY: composer-install -composer-install: - $(COMPOSER) --working-dir=data/typo3 install - - -.PHONY: composer-update -composer-update: - $(COMPOSER) --working-dir=data/typo3 up - -.PHONY: clear-cache -clear-cache: - rm -rf data/typo3/html/typo3temp/* diff --git a/README.md b/README.md deleted file mode 100644 index b819dc0ee3df22563f5f8573e166b7181c7346ca..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# TYPO3 Extension Repository -## ter.typo3.org - -### Prerequisites -[docker engine](https://docs.docker.com/engine/installation/) - -Make sure to have an instance of [jwilder/nginx-proxy](https://github.com/jwilder/nginx-proxy) running on your development box. -An easy way to get it up and running is using [torvitas/nginx-proxy-configuration](https://github.com/torvitas/docker-nginx-proxy-configuration). - -### Quickstart -` -git clone https://git-t3o.typo3.org/t3o/ter.git -go in "ter" directory -make init up log -` -... and finally [click here](https://ter.typo3.127.0.0.1.xip.io) - -### Composer -Example: -` -./data/scripts/composer.sh --working-dir=data/typo3/ info -` -For your convenience there are the following make jobs: -` -make composer-install -make composer-update -` - -### Solr -To get the solr connection working, you need to add the "Search - Base Configuration (solr)" to the root template, and the "Initialize Solr Connections" in the "cache-menu" top right. diff --git a/data/typo3/composer.json b/composer.json similarity index 100% rename from data/typo3/composer.json rename to composer.json diff --git a/data/typo3/composer.lock b/composer.lock similarity index 100% rename from data/typo3/composer.lock rename to composer.lock diff --git a/data/etc/nginx/default.conf b/data/etc/nginx/default.conf deleted file mode 100644 index 1d56393d7de4779df203b072f57d60551384ee48..0000000000000000000000000000000000000000 --- a/data/etc/nginx/default.conf +++ /dev/null @@ -1,13 +0,0 @@ -access_log /proc/self/fd/1; -error_log /proc/self/fd/2; -server { - server_name ter.typo3.localhost; - - listen 80; - - index index.php index.html; - - root /var/www/html/; - include /etc/nginx/conf.d/typo3.base; -} - diff --git a/data/etc/nginx/typo3.base b/data/etc/nginx/typo3.base deleted file mode 100644 index 5fd5dde3257c077d1826daa4ae3a58ee389501a8..0000000000000000000000000000000000000000 --- a/data/etc/nginx/typo3.base +++ /dev/null @@ -1,79 +0,0 @@ -location = /favicon.ico { - log_not_found off; - access_log off; -} - -location = /robots.txt { - allow all; - log_not_found off; - access_log off; -} - -# Deny all attempts to access hidden files such as .htaccess, .htpasswd, .DS_Store (Mac). -location ~ /\. { - deny all; - access_log off; - log_not_found off; -} - -location ~ \.php$ { - try_files $uri =404; - include /etc/nginx/fastcgi_params; - fastcgi_param TYPO3_CONTEXT Development; - fastcgi_pass php:9000; - fastcgi_index index.php; - fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_intercept_errors on; - fastcgi_buffer_size 128k; - fastcgi_buffers 256 16k; - fastcgi_busy_buffers_size 256k; - fastcgi_temp_file_write_size 256k; - fastcgi_read_timeout 1200; -} - -client_max_body_size 100M; - -location ~ /\.(js|css)$ { - expires 604800s; -} - -if (!-e $request_filename){ - rewrite ^/(.+)\.(\d+)\.(php|js|css|png|jpg|gif|gzip)$ /$1.$3 last; -} - -location ~* ^/fileadmin/(.*/)?_recycler_/ { - deny all; -} -location ~* ^/fileadmin/templates/.*(\.txt|\.ts)$ { - deny all; -} -location ~* ^/typo3conf/ext/[^/]+/Resources/Private/ { - deny all; -} -location ~* ^/(typo3/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) { -} - -location / { - if ($query_string ~ ".+") { - return 405; - } - if ($http_cookie ~ 'nc_staticfilecache|be_typo_user|fe_typo_user' ) { - return 405; - } # pass POST requests to PHP - if ($request_method !~ ^(GET|HEAD)$ ) { - return 405; - } - if ($http_pragma = 'no-cache') { - return 405; - } - if ($http_cache_control = 'no-cache') { - return 405; - } - error_page 405 = @nocache; - - try_files /typo3temp/tx_ncstaticfilecache/$host${request_uri}index.html @nocache; -} - -location @nocache { - try_files $uri $uri/ /index.php$is_args$args; -} diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/_schema_analysis_stopwords_english.json b/data/etc/solr/server/solr/mycores/t3o/conf/_schema_analysis_stopwords_english.json deleted file mode 100644 index ab37f400e293b82748555675d560cc54a2b1dd83..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/_schema_analysis_stopwords_english.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "initArgs":{"ignoreCase":false}, - "managedList":[]} \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/admin-extra.html b/data/etc/solr/server/solr/mycores/t3o/conf/admin-extra.html deleted file mode 100644 index b68131ad98f0e1a55f6d85e415d4a0ef82310dae..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/admin-extra.html +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/currency.xml b/data/etc/solr/server/solr/mycores/t3o/conf/currency.xml deleted file mode 100644 index 4d77aebd0acfc8260b31edfac68b9d127a3792fc..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/currency.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/elevate.xml b/data/etc/solr/server/solr/mycores/t3o/conf/elevate.xml deleted file mode 100644 index 7630ebe20fb91d4a6564785d01884d577a2fdc20..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/elevate.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/english/_schema_analysis_stopwords_english.json b/data/etc/solr/server/solr/mycores/t3o/conf/english/_schema_analysis_stopwords_english.json deleted file mode 100644 index ffc7fbdc93521dbfef1a2b4c30e67e75b4a199e2..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/english/_schema_analysis_stopwords_english.json +++ /dev/null @@ -1,182 +0,0 @@ -{ - "initArgs": { - "ignoreCase": true - }, - "initializedOn": "2014-04-29T23:08:58.000Z", - "managedList": [ - "i", - "me", - "my", - "myself", - "we", - "us", - "our", - "ours", - "ourselves", - "you", - "your", - "yours", - "yourself", - "yourselves", - "he", - "him", - "his", - "himself", - "she", - "her", - "hers", - "herself", - "it", - "its", - "itself", - "they", - "them", - "their", - "theirs", - "themselves", - "what", - "which", - "who", - "whom", - "this", - "that", - "these", - "those", - "am", - "is", - "are", - "was", - "were", - "be", - "been", - "being", - "have", - "has", - "had", - "having", - "do", - "does", - "did", - "doing", - "would", - "should", - "could", - "ought", - "i'm", - "you're", - "he's", - "she's", - "it's", - "we're", - "they're", - "i've", - "you've", - "we've", - "they've", - "i'd", - "you'd", - "he'd", - "she'd", - "we'd", - "they'd", - "i'll", - "you'll", - "he'll", - "she'll", - "we'll", - "they'll", - "isn't", - "aren't", - "wasn't", - "weren't", - "hasn't", - "haven't", - "hadn't", - "doesn't", - "don't", - "didn't", - "won't", - "wouldn't", - "shan't", - "shouldn't", - "can't", - "cannot", - "couldn't", - "mustn't", - "let's", - "that's", - "who's", - "what's", - "here's", - "there's", - "when's", - "where's", - "why's", - "how's", - "an", - "the", - "and", - "but", - "if", - "or", - "because", - "as", - "until", - "while", - "of", - "at", - "by", - "for", - "with", - "about", - "against", - "between", - "into", - "through", - "during", - "before", - "after", - "above", - "below", - "to", - "from", - "up", - "down", - "in", - "out", - "on", - "off", - "over", - "under", - "again", - "further", - "then", - "once", - "here", - "there", - "when", - "where", - "why", - "how", - "all", - "any", - "both", - "each", - "few", - "more", - "most", - "other", - "some", - "such", - "no", - "nor", - "not", - "only", - "own", - "same", - "so", - "than", - "too", - "very" - ] -} \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/english/protwords.txt b/data/etc/solr/server/solr/mycores/t3o/conf/english/protwords.txt deleted file mode 100644 index 391c6f81cec84ccc48e5547343d9fe3159e55753..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/english/protwords.txt +++ /dev/null @@ -1 +0,0 @@ -TYPO3 \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/english/schema.xml b/data/etc/solr/server/solr/mycores/t3o/conf/english/schema.xml deleted file mode 100644 index b26ecd547820ea21d166638ece69bea2aa25f86d..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/english/schema.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - id - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/english/synonyms.txt b/data/etc/solr/server/solr/mycores/t3o/conf/english/synonyms.txt deleted file mode 100644 index 3057a583b463a25708c97983160a363c6a58f728..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/english/synonyms.txt +++ /dev/null @@ -1,17 +0,0 @@ -aaa => aaaa -bbb => bbbb1 bbbb2 -ccc => cccc1,cccc2 -a\=>a => b\=>b -a\,a => b\,b -fooaaa,baraaa,bazaaa - -# Some synonym groups specific to this example -GB,gib,gigabyte,gigabytes -MB,mib,megabyte,megabytes -Television, Televisions, TV, TVs -#notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming -#after us won't split it into two words. - -# Synonym mappings can be used for spelling correction too -pixima => pixma - diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_fields.xml b/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_fields.xml deleted file mode 100644 index 5897366a84ad94be30e3fda221b656ec607d9b63..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_fields.xml +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_types.xml b/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_types.xml deleted file mode 100644 index b214fdb77f89955d463506c1c0f94927087df14a..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/general_schema_types.xml +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/data/etc/solr/server/solr/mycores/t3o/conf/solrconfig.xml b/data/etc/solr/server/solr/mycores/t3o/conf/solrconfig.xml deleted file mode 100644 index 2e176876f356e935f45479a934c7a6d295c43202..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/conf/solrconfig.xml +++ /dev/null @@ -1,532 +0,0 @@ - - - 6.3.0 - - ${solr.abortOnConfigurationError:true} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - native - true - true - - - - - - - ${solr.data.dir:} - - - - 100 - 3600000 - true - - - - - 1000 - - - - - - 1024 - - - - - - - - true - - 50 - - 200 - - - - - - - - - - - - - - - false - - 5 - - - - - - - - - - - - - - - edismax - explicit - content^40.0 title^5.0 keywords^2.0 tagsH1^5.0 tagsH2H3^3.0 tagsH4H5H6^2.0 tagsInline^1.0 - content^2.0 - content - 15 - - 2<-35% - - title,content - 3 - true - true - - content - 200 - - false - false - false - 1 - default - wordbreak - - json - true - - - - spellcheck - elevator - - - - - - - true - json - true - - - - - - - explicit - - - velocity - - browse - layout - Solritas - - content - edismax - *:* - 10 - *,score - content^0.5 title^1.2 keywords^2.0 - content,title,keywords - 3 - - content^40.0 title^5.0 keywords^2.0 tagsH1^5.0 tagsH2H3^3.0 tagsH4H5H6^2.0 tagsInline^1.0 - - on - type - site - author - keywords - fileMimeType - appKey - 1 - - true - true - - - on - title content - html - <b> - </b> - - - spellcheck - - - - - - - 1 - 1 - 3 - 15 - 20 - false - - - - - - - - - - - - - - - - - - - - - true - - - termsComponent - - - - - - - explicit - - - elevator - - - - - - solrpingquery - - - all - id - - - - - - - explicit - true - - - - - - - - - - - - - - - true - default - true - - name - id - - features - - true - - - - false - - - clusteringComponent - - - - - - - - default - org.carrot2.clustering.lingo.LingoClusteringAlgorithm - 20 - - - - stc - org.carrot2.clustering.stc.STCClusteringAlgorithm - - - - - - textSpell - - - default - spell - solr.DirectSolrSpellChecker - internal - 0.5 - 2 - 1 - 5 - 3 - 0.01 - - - - - wordbreak - solr.WordBreakSolrSpellChecker - spell - - - - - - - - - string - elevate.xml - true - - - - - - - - - - 100 - - - - - - - 70 - 0.5 - [-\w ,/\n\"']{20,200} - - - - - - - ]]> - ]]> - - - - - - - - - - - - - - - - ,, - ,, - ,, - ,, - , - ]]> - - ]]> - - - - - - - - 60 - endtime - - - - - - - - - - - - 5 - - - - - - - - - - html - - - - - - - - *:* - - - diff --git a/data/etc/solr/server/solr/mycores/t3o/core.properties b/data/etc/solr/server/solr/mycores/t3o/core.properties deleted file mode 100644 index 2b050c12f1ab8f6b9708fdfc889091b75626c1b4..0000000000000000000000000000000000000000 --- a/data/etc/solr/server/solr/mycores/t3o/core.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Written by CorePropertiesLocator -#Wed Jan 25 21:01:15 UTC 2017 -name=t3o -config=solrconfig.xml -schema=english/schema.xml -dataDir=data diff --git a/data/etc/solr/server/solr/mycores/t3o/typo3lib/solr-typo3-plugin-1.7.0.jar b/data/etc/solr/server/solr/mycores/t3o/typo3lib/solr-typo3-plugin-1.7.0.jar deleted file mode 100644 index d7b934c367f703d0a7f1de7cf383cc07c7d113b1..0000000000000000000000000000000000000000 Binary files a/data/etc/solr/server/solr/mycores/t3o/typo3lib/solr-typo3-plugin-1.7.0.jar and /dev/null differ diff --git a/data/scripts/composer.sh b/data/scripts/composer.sh deleted file mode 100755 index 0c8b312762ca83903de65cbc817e39a547fe131d..0000000000000000000000000000000000000000 --- a/data/scripts/composer.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash -# -# Run composer in a container -# -# This script will attempt to mirror the host paths by using volumes for the -# following paths: -# * $(pwd) -# * $(dirname $COMPOSE_FILE) if it's set -# * $HOME if it's set -# -# You can add additional volumes (or any docker run options) using -# the $COMPOSER_OPTIONS environment variable. -COMPOSER_OPTIONS=${COMPOSER_OPTIONS:-} - -# You can set the composer cache directory using the $COMPOSER_CACHE -# environment variable. -COMPOSER_CACHE=${COMPOSER_CACHE:-/tmp/composer} - -# You can set the ssh key to be used using the $SSH_IDENTITY_FILE -# environment variable. -SSH_IDENTITY_FILE=${SSH_IDENTITY_FILE:-~/.ssh/id_rsa} - -set -e - -VERSION="1.2-alpine" -IMAGE="composer/composer:$VERSION" - -# Setup volume mounts for composer config, context and ssh keys -if [ "$(pwd)" != '/' ]; then - VOLUMES="-v $(pwd):$(pwd)" -fi -if [ -n "$COMPOSER_FILE" ]; then - composer_dir=$(dirname $COMPOSER_FILE) -fi -# TODO: also check --file argument -if [ -n "$composer_dir" ]; then - VOLUMES="$VOLUMES -v $composer_dir:$composer_dir" -fi -if [ -n "$SSH_IDENTITY_FILE" ]; then - ssh_identity_dir=$(dirname $SSH_IDENTITY_FILE) -fi -# TODO: also check --file argument -if [ -n "$ssh_identity_dir" ]; then - VOLUMES="$VOLUMES -v $ssh_identity_dir:/root/.ssh" -fi -if [ -n "$COMPOSER_CACHE" ]; then - composer_cache_dir=$(dirname $COMPOSER_CACHE) -fi -# TODO: also check --file argument -if [ -n "$composer_cache_dir" ]; then - VOLUMES="$VOLUMES -v $composer_cache_dir:/composer/cache" -fi -if [ -n "$HOME" ]; then - VOLUMES="$VOLUMES -v $HOME:$HOME -v $HOME:/root" # mount $HOME in /root to share docker.config -fi - -# Only allocate tty if we detect one -if [ -t 1 ]; then - DOCKER_RUN_OPTIONS="-t" -fi -if [ -t 0 ]; then - DOCKER_RUN_OPTIONS="$DOCKER_RUN_OPTIONS -i" -fi - -exec docker run --rm -u $(id -u) $DOCKER_RUN_OPTIONS $COMPOSER_OPTIONS $VOLUMES -w "$(pwd)" $IMAGE "$@" diff --git a/data/scripts/docker-compose.sh b/data/scripts/docker-compose.sh deleted file mode 100755 index a16f2ea82ab7ca99092ad81c6595ea24edc87d1c..0000000000000000000000000000000000000000 --- a/data/scripts/docker-compose.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash -# -# Run docker-compose in a container -# -# This script will attempt to mirror the host paths by using volumes for the -# following paths: -# * $(pwd) -# * $(dirname $COMPOSE_FILE) if it's set -# * $HOME if it's set -# -# You can add additional volumes (or any docker run options) using -# the $COMPOSE_OPTIONS environment variable. -# - - -set -e - -VERSION="1.8.1" -IMAGE="docker/compose:$VERSION" - - -# Setup options for connecting to docker host -if [ -z "$DOCKER_HOST" ]; then - DOCKER_HOST="/var/run/docker.sock" -fi -if [ -S "$DOCKER_HOST" ]; then - DOCKER_ADDR="-v $DOCKER_HOST:$DOCKER_HOST -e DOCKER_HOST" -else - DOCKER_ADDR="-e DOCKER_HOST -e DOCKER_TLS_VERIFY -e DOCKER_CERT_PATH" -fi - - -# Setup volume mounts for compose config and context -if [ "$(pwd)" != '/' ]; then - VOLUMES="-v $(pwd):$(pwd)" -fi -if [ -n "$COMPOSE_FILE" ]; then - compose_dir=$(dirname $COMPOSE_FILE) -fi -# TODO: also check --file argument -if [ -n "$compose_dir" ]; then - VOLUMES="$VOLUMES -v $compose_dir:$compose_dir" -fi -if [ -n "$HOME" ]; then - VOLUMES="$VOLUMES -v $HOME:$HOME -v $HOME:/root" # mount $HOME in /root to share docker.config -fi - -# Only allocate tty if we detect one -if [ -t 1 ]; then - DOCKER_RUN_OPTIONS="-t" -fi -if [ -t 0 ]; then - DOCKER_RUN_OPTIONS="$DOCKER_RUN_OPTIONS -i" -fi - -exec docker run --rm $DOCKER_RUN_OPTIONS $DOCKER_ADDR $COMPOSE_OPTIONS $VOLUMES -w "$(pwd)" $IMAGE "$@" diff --git a/data/scripts/wait-for-it.sh b/data/scripts/wait-for-it.sh deleted file mode 100755 index eca6c3b9c8c61aa6ce889c185c700ad094988cc2..0000000000000000000000000000000000000000 --- a/data/scripts/wait-for-it.sh +++ /dev/null @@ -1,161 +0,0 @@ -#!/usr/bin/env bash -# Use this script to test if a given TCP host/port are available - -cmdname=$(basename $0) - -echoerr() { if [[ $QUIET -ne 1 ]]; then echo "$@" 1>&2; fi } - -usage() -{ - cat << USAGE >&2 -Usage: - $cmdname host:port [-s] [-t timeout] [-- command args] - -h HOST | --host=HOST Host or IP under test - -p PORT | --port=PORT TCP port under test - Alternatively, you specify the host and port as host:port - -s | --strict Only execute subcommand if the test succeeds - -q | --quiet Don't output any status messages - -t TIMEOUT | --timeout=TIMEOUT - Timeout in seconds, zero for no timeout - -- COMMAND ARGS Execute command with args after the test finishes -USAGE - exit 1 -} - -wait_for() -{ - if [[ $TIMEOUT -gt 0 ]]; then - echoerr "$cmdname: waiting $TIMEOUT seconds for $HOST:$PORT" - else - echoerr "$cmdname: waiting for $HOST:$PORT without a timeout" - fi - start_ts=$(date +%s) - while : - do - (echo > /dev/tcp/$HOST/$PORT) >/dev/null 2>&1 - result=$? - if [[ $result -eq 0 ]]; then - end_ts=$(date +%s) - echoerr "$cmdname: $HOST:$PORT is available after $((end_ts - start_ts)) seconds" - break - fi - sleep 1 - done - return $result -} - -wait_for_wrapper() -{ - # In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692 - if [[ $QUIET -eq 1 ]]; then - timeout $TIMEOUT $0 --quiet --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - else - timeout $TIMEOUT $0 --child --host=$HOST --port=$PORT --timeout=$TIMEOUT & - fi - PID=$! - trap "kill -INT -$PID" INT - wait $PID - RESULT=$? - if [[ $RESULT -ne 0 ]]; then - echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT" - fi - return $RESULT -} - -# process arguments -while [[ $# -gt 0 ]] -do - case "$1" in - *:* ) - hostport=(${1//:/ }) - HOST=${hostport[0]} - PORT=${hostport[1]} - shift 1 - ;; - --child) - CHILD=1 - shift 1 - ;; - -q | --quiet) - QUIET=1 - shift 1 - ;; - -s | --strict) - STRICT=1 - shift 1 - ;; - -h) - HOST="$2" - if [[ $HOST == "" ]]; then break; fi - shift 2 - ;; - --host=*) - HOST="${1#*=}" - shift 1 - ;; - -p) - PORT="$2" - if [[ $PORT == "" ]]; then break; fi - shift 2 - ;; - --port=*) - PORT="${1#*=}" - shift 1 - ;; - -t) - TIMEOUT="$2" - if [[ $TIMEOUT == "" ]]; then break; fi - shift 2 - ;; - --timeout=*) - TIMEOUT="${1#*=}" - shift 1 - ;; - --) - shift - CLI="$@" - break - ;; - --help) - usage - ;; - *) - echoerr "Unknown argument: $1" - usage - ;; - esac -done - -if [[ "$HOST" == "" || "$PORT" == "" ]]; then - echoerr "Error: you need to provide a host and port to test." - usage -fi - -TIMEOUT=${TIMEOUT:-15} -STRICT=${STRICT:-0} -CHILD=${CHILD:-0} -QUIET=${QUIET:-0} - -if [[ $CHILD -gt 0 ]]; then - wait_for - RESULT=$? - exit $RESULT -else - if [[ $TIMEOUT -gt 0 ]]; then - wait_for_wrapper - RESULT=$? - else - wait_for - RESULT=$? - fi -fi - -if [[ $CLI != "" ]]; then - if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then - echoerr "$cmdname: strict mode, refusing to execute subprocess" - exit $RESULT - fi - exec $CLI -else - exit $RESULT -fi diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index e9b8f9f935b2b019e406481f98139fc6fbe453b1..0000000000000000000000000000000000000000 --- a/docker-compose.yml +++ /dev/null @@ -1,72 +0,0 @@ -version: "2" -services: - data: - image: busybox - volumes: - - ./:/src - - ./data/etc/db/conf.d:/etc/mysql/conf.d - - ./data/etc/db/entrypoint.d:/docker-entrypoint-initdb.d - - /tmp/composer/cache:/tmp/composer/cache - - /var/lib/mysql - - ./data/typo3:/var/www - - ./data/etc/nginx:/etc/nginx/conf.d - - ./data/etc/php/entrypoint.d/user/:/usr/local/entrypoint.d/user/ - - ./data/etc/solr/server/solr/mycores/:/opt/solr/server/solr/mycores/ - - db: - image: mariadb:10 - environment: &db_env - MYSQL_USER: "${DATABASE_USER}" - MYSQL_PASSWORD: "${DATABASE_USER_PASSWORD}" - MYSQL_DATABASE: "${DATABASE_NAME}" - MYSQL_ROOT_PASSWORD: "${DATABASE_ROOT_PASSWORD}" - volumes_from: - - data - - nginx: - image: nginx - networks: - - proxy - - default - environment: - VIRTUAL_HOST: ter.typo3.* - VIRTUAL_PORT: 80 - CERT_NAME: default - volumes_from: - - data - depends_on: - - php - - php: - image: torvitas/php-fpm:7.0-alpine - environment: - <<: *db_env - TYPO3_CONTEXT: "${TYPO3_CONTEXT}" - WEB_ROOT: '/var/www/' - TYPO3_SITENAME: 'TYPO3 Extension Repository' - volumes_from: - - data - working_dir: /var/www - depends_on: - - db - - log: - image: busybox:buildroot-2014.02 - command: sh -c "tail -fn0 /var/www/html/typo3conf/*.log /var/www/html/typo3/typo3temp/logs/*" - volumes_from: - - php - - solr: - image: solr:6.3-alpine - ports: - - "8983:8983" - volumes_from: - - data - entrypoint: - - docker-entrypoint.sh - - solr-precreate - - t3o - -networks: - proxy: - external: true diff --git a/data/typo3/.gitignore b/html/typo3/.gitignore similarity index 100% rename from data/typo3/.gitignore rename to html/typo3/.gitignore diff --git a/data/typo3/html/typo3conf/AdditionalConfiguration.sample.php b/html/typo3conf/AdditionalConfiguration.sample.php similarity index 100% rename from data/typo3/html/typo3conf/AdditionalConfiguration.sample.php rename to html/typo3conf/AdditionalConfiguration.sample.php diff --git a/data/typo3/html/typo3conf/LocalConfiguration.php b/html/typo3conf/LocalConfiguration.php similarity index 100% rename from data/typo3/html/typo3conf/LocalConfiguration.php rename to html/typo3conf/LocalConfiguration.php diff --git a/data/typo3/html/typo3conf/ext/ter/.gitignore b/html/typo3conf/ext/ter/.gitignore similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/.gitignore rename to html/typo3conf/ext/ter/.gitignore diff --git a/data/typo3/html/typo3conf/ext/ter/ChangeLog b/html/typo3conf/ext/ter/ChangeLog similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ChangeLog rename to html/typo3conf/ext/ter/ChangeLog diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Ter10ServerResponse/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Ter10ServerResponse/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Ter10ServerResponse/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixATer10CompatibilityInformation/Ter10ServerResponse/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/((generated))/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/((generated))/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/((generated))/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/((generated))/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixBT3xV10FileFormat/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/ChecklistPrerequisites/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/ChecklistPrerequisites/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/ChecklistPrerequisites/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/ChecklistPrerequisites/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/Index.rst b/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/Index.rst rename to html/typo3conf/ext/ter/Documentation/AppendixCImportExtensionsFromOldRepository/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/ChangeLog/Index.rst b/html/typo3conf/ext/ter/Documentation/ChangeLog/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/ChangeLog/Index.rst rename to html/typo3conf/ext/ter/Documentation/ChangeLog/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/Configuration/Index.rst b/html/typo3conf/ext/ter/Documentation/Configuration/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/Configuration/Index.rst rename to html/typo3conf/ext/ter/Documentation/Configuration/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/Includes.txt b/html/typo3conf/ext/ter/Documentation/Includes.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/Includes.txt rename to html/typo3conf/ext/ter/Documentation/Includes.txt diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/Index.rst b/html/typo3conf/ext/ter/Documentation/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/Index.rst rename to html/typo3conf/ext/ter/Documentation/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/Installation/Index.rst b/html/typo3conf/ext/ter/Documentation/Installation/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/Installation/Index.rst rename to html/typo3conf/ext/ter/Documentation/Installation/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/Introduction/Index.rst b/html/typo3conf/ext/ter/Documentation/Introduction/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/Introduction/Index.rst rename to html/typo3conf/ext/ter/Documentation/Introduction/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/NOTES.txt b/html/typo3conf/ext/ter/Documentation/NOTES.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/NOTES.txt rename to html/typo3conf/ext/ter/Documentation/NOTES.txt diff --git a/data/typo3/html/typo3conf/ext/ter/Documentation/SoapServices/Index.rst b/html/typo3conf/ext/ter/Documentation/SoapServices/Index.rst similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/Documentation/SoapServices/Index.rst rename to html/typo3conf/ext/ter/Documentation/SoapServices/Index.rst diff --git a/data/typo3/html/typo3conf/ext/ter/class.tx_ter_api.php b/html/typo3conf/ext/ter/class.tx_ter_api.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/class.tx_ter_api.php rename to html/typo3conf/ext/ter/class.tx_ter_api.php diff --git a/data/typo3/html/typo3conf/ext/ter/class.tx_ter_exception.php b/html/typo3conf/ext/ter/class.tx_ter_exception.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/class.tx_ter_exception.php rename to html/typo3conf/ext/ter/class.tx_ter_exception.php diff --git a/data/typo3/html/typo3conf/ext/ter/class.tx_ter_helper.php b/html/typo3conf/ext/ter/class.tx_ter_helper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/class.tx_ter_helper.php rename to html/typo3conf/ext/ter/class.tx_ter_helper.php diff --git a/data/typo3/html/typo3conf/ext/ter/class.tx_ter_tcaLabel.php b/html/typo3conf/ext/ter/class.tx_ter_tcaLabel.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/class.tx_ter_tcaLabel.php rename to html/typo3conf/ext/ter/class.tx_ter_tcaLabel.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/build-extension-index.php b/html/typo3conf/ext/ter/cli/build-extension-index.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/build-extension-index.php rename to html/typo3conf/ext/ter/cli/build-extension-index.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/conf.php b/html/typo3conf/ext/ter/cli/conf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/conf.php rename to html/typo3conf/ext/ter/cli/conf.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/fix-uploadcomments.php b/html/typo3conf/ext/ter/cli/fix-uploadcomments.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/fix-uploadcomments.php rename to html/typo3conf/ext/ter/cli/fix-uploadcomments.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/import-from-ter1_cli.php b/html/typo3conf/ext/ter/cli/import-from-ter1_cli.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/import-from-ter1_cli.php rename to html/typo3conf/ext/ter/cli/import-from-ter1_cli.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/process-extension-download-logs_cli.php b/html/typo3conf/ext/ter/cli/process-extension-download-logs_cli.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/process-extension-download-logs_cli.php rename to html/typo3conf/ext/ter/cli/process-extension-download-logs_cli.php diff --git a/data/typo3/html/typo3conf/ext/ter/cli/setreviewstates_cli.php b/html/typo3conf/ext/ter/cli/setreviewstates_cli.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/cli/setreviewstates_cli.php rename to html/typo3conf/ext/ter/cli/setreviewstates_cli.php diff --git a/data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_failedDependency.php b/html/typo3conf/ext/ter/exception/class.tx_ter_exception_failedDependency.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_failedDependency.php rename to html/typo3conf/ext/ter/exception/class.tx_ter_exception_failedDependency.php diff --git a/data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_internalServerError.php b/html/typo3conf/ext/ter/exception/class.tx_ter_exception_internalServerError.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_internalServerError.php rename to html/typo3conf/ext/ter/exception/class.tx_ter_exception_internalServerError.php diff --git a/data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_notFound.php b/html/typo3conf/ext/ter/exception/class.tx_ter_exception_notFound.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_notFound.php rename to html/typo3conf/ext/ter/exception/class.tx_ter_exception_notFound.php diff --git a/data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_unauthorized.php b/html/typo3conf/ext/ter/exception/class.tx_ter_exception_unauthorized.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_unauthorized.php rename to html/typo3conf/ext/ter/exception/class.tx_ter_exception_unauthorized.php diff --git a/data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_versionExists.php b/html/typo3conf/ext/ter/exception/class.tx_ter_exception_versionExists.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/exception/class.tx_ter_exception_versionExists.php rename to html/typo3conf/ext/ter/exception/class.tx_ter_exception_versionExists.php diff --git a/data/typo3/html/typo3conf/ext/ter/ext_autoload.php b/html/typo3conf/ext/ter/ext_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_autoload.php rename to html/typo3conf/ext/ter/ext_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/ext_conf_template.txt b/html/typo3conf/ext/ter/ext_conf_template.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_conf_template.txt rename to html/typo3conf/ext/ter/ext_conf_template.txt diff --git a/data/typo3/html/typo3conf/ext/ter/ext_emconf.php b/html/typo3conf/ext/ter/ext_emconf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_emconf.php rename to html/typo3conf/ext/ter/ext_emconf.php diff --git a/data/typo3/html/typo3conf/ext/ter/ext_icon.gif b/html/typo3conf/ext/ter/ext_icon.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_icon.gif rename to html/typo3conf/ext/ter/ext_icon.gif diff --git a/data/typo3/html/typo3conf/ext/ter/ext_localconf.php b/html/typo3conf/ext/ter/ext_localconf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_localconf.php rename to html/typo3conf/ext/ter/ext_localconf.php diff --git a/data/typo3/html/typo3conf/ext/ter/ext_tables.php b/html/typo3conf/ext/ter/ext_tables.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_tables.php rename to html/typo3conf/ext/ter/ext_tables.php diff --git a/data/typo3/html/typo3conf/ext/ter/ext_tables.sql b/html/typo3conf/ext/ter/ext_tables.sql similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/ext_tables.sql rename to html/typo3conf/ext/ter/ext_tables.sql diff --git a/data/typo3/html/typo3conf/ext/ter/locallang.xml b/html/typo3conf/ext/ter/locallang.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/locallang.xml rename to html/typo3conf/ext/ter/locallang.xml diff --git a/data/typo3/html/typo3conf/ext/ter/locallang_tca.xml b/html/typo3conf/ext/ter/locallang_tca.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/locallang_tca.xml rename to html/typo3conf/ext/ter/locallang_tca.xml diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/clear.gif b/html/typo3conf/ext/ter/mod1/clear.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/clear.gif rename to html/typo3conf/ext/ter/mod1/clear.gif diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/conf.php b/html/typo3conf/ext/ter/mod1/conf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/conf.php rename to html/typo3conf/ext/ter/mod1/conf.php diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/index.php b/html/typo3conf/ext/ter/mod1/index.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/index.php rename to html/typo3conf/ext/ter/mod1/index.php diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/locallang.php b/html/typo3conf/ext/ter/mod1/locallang.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/locallang.php rename to html/typo3conf/ext/ter/mod1/locallang.php diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/locallang_mod.php b/html/typo3conf/ext/ter/mod1/locallang_mod.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/locallang_mod.php rename to html/typo3conf/ext/ter/mod1/locallang_mod.php diff --git a/data/typo3/html/typo3conf/ext/ter/mod1/moduleicon.gif b/html/typo3conf/ext/ter/mod1/moduleicon.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/mod1/moduleicon.gif rename to html/typo3conf/ext/ter/mod1/moduleicon.gif diff --git a/data/typo3/html/typo3conf/ext/ter/pi1/class.tx_ter_pi1.php b/html/typo3conf/ext/ter/pi1/class.tx_ter_pi1.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/pi1/class.tx_ter_pi1.php rename to html/typo3conf/ext/ter/pi1/class.tx_ter_pi1.php diff --git a/data/typo3/html/typo3conf/ext/ter/pi1/locallang.php b/html/typo3conf/ext/ter/pi1/locallang.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/pi1/locallang.php rename to html/typo3conf/ext/ter/pi1/locallang.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/CREDITS b/html/typo3conf/ext/ter/resources/ezcomponents/Base/CREDITS similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/CREDITS rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/CREDITS diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/ChangeLog b/html/typo3conf/ext/ter/resources/ezcomponents/Base/ChangeLog similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/ChangeLog rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/ChangeLog diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/DESCRIPTION b/html/typo3conf/ext/ter/resources/ezcomponents/Base/DESCRIPTION similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/DESCRIPTION rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/DESCRIPTION diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass1.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass1.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass1.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass1.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass2.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass2.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass2.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/Me/myclass2.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass1.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass1.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass1.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass1.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass2.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass2.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass2.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/You/yourclass2.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/my_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/my_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/my_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/my_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/your_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/your_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/your_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/repos/autoloads/your_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial.txt b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial.txt rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial.txt diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_example_01.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_example_01.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_example_01.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/docs/tutorial_example_01.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/base_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/exception.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/exception.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/exception.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/exception.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_exception.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_exception.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_exception.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_exception.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_io.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_io.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_io.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_io.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_not_found.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_not_found.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_not_found.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_not_found.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_permission.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_permission.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_permission.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/file_permission.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_not_found.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_not_found.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_not_found.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_not_found.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_permission.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_permission.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_permission.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/property_permission.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_not_found.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_not_found.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_not_found.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_not_found.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_value.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_value.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_value.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/setting_value.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/value.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/value.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/value.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/value.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/whatever.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/whatever.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/whatever.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/exceptions/whatever.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/options.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/options.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/options.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/options.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/struct.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/struct.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/src/struct.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/src/struct.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/base_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/base_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/base_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/base_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/suite.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/suite.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/suite.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/suite.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class_number_two.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class_number_two.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class_number_two.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/TestClasses/base_test_class_number_two.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/basetest_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/basetest_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/basetest_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/basetest_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/object_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/object_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/object_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/autoload_files/object_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/object/object.php b/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/object/object.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/object/object.php rename to html/typo3conf/ext/ter/resources/ezcomponents/Base/tests/test_repository/object/object.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/CREDITS b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/CREDITS similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/CREDITS rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/CREDITS diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/ChangeLog b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/ChangeLog similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/ChangeLog rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/ChangeLog diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/DESCRIPTION b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/DESCRIPTION similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/DESCRIPTION rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/DESCRIPTION diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/TODO b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/TODO similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/TODO rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/TODO diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_input.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_input.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_input.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_input.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_output.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_output.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_output.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_output.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressmonitor.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressmonitor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressmonitor.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_progressmonitor.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_statusbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_statusbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_statusbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_statusbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table_2.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table_2.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table_2.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/example_table_2.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_06.png b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_06.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_06.png rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_06.png diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_07.png b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_07.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_07.png rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_07.png diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_08.png b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_08.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_08.png rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_08.png diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_09.png b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_09.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_09.png rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_09.png diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_10.png b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_10.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_10.png rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/img/consoletools_tutorial_example_10.png diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial.txt b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial.txt rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial.txt diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_01.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_01.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_01.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_01.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_02.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_02.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_02.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_02.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_03.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_03.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_03.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_03.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_04.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_04.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_04.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_04.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_05.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_05.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_05.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_05.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_06.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_06.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_06.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_06.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_07.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_07.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_07.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_07.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_08.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_08.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_08.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_08.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_09.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_09.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_09.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_09.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_10.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_10.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_10.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_10.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_11.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_11.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_11.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/docs/tutorial_example_11.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/console_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/console_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/console_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/console_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/exception.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/exception.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/exception.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/exception.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/invalid_option_name.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/invalid_option_name.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/invalid_option_name.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/invalid_option_name.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/no_position_stored.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/no_position_stored.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/no_position_stored.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/no_position_stored.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_already_registered.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_already_registered.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_already_registered.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_already_registered.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_arguments_violation.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_arguments_violation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_arguments_violation.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_arguments_violation.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_dependency_violation.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_dependency_violation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_dependency_violation.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_dependency_violation.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_exclusion_violation.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_exclusion_violation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_exclusion_violation.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_exclusion_violation.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_mandatory_violation.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_mandatory_violation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_mandatory_violation.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_mandatory_violation.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_missing_value.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_missing_value.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_missing_value.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_missing_value.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_no_alias.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_no_alias.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_no_alias.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_no_alias.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_not_exists.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_not_exists.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_not_exists.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_not_exists.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_string_not_wellformed.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_string_not_wellformed.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_string_not_wellformed.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_string_not_wellformed.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_too_many_values.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_too_many_values.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_too_many_values.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_too_many_values.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_type_violation.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_type_violation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_type_violation.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/exceptions/option_type_violation.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input/option.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input/option.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input/option.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/input/option.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/output.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/output.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/output.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/output.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressmonitor.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressmonitor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressmonitor.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/progressmonitor.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/statusbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/statusbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/statusbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/statusbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/table.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/table.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/table.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/options/table.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/output.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/output.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/output.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/output.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressmonitor.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressmonitor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressmonitor.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/progressmonitor.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/statusbar.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/statusbar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/statusbar.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/statusbar.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/option_rule.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/option_rule.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/option_rule.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/option_rule.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_format.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_format.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_format.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_format.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_formats.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_formats.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_formats.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/structs/output_formats.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/cell.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/cell.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/cell.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/cell.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/row.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/row.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/row.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/src/table/row.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress1.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress1.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress1.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress1.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress10.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress10.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress10.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress10.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress11.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress11.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress11.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress11.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress12.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress12.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress12.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress12.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress13.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress13.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress13.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress13.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress2.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress2.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress2.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress2.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress3.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress3.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress3.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress3.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress4.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress4.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress4.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress4.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress5.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress5.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress5.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress5.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress6.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress6.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress6.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress6.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress7.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress7.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress7.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress7.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress8.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress8.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress8.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress8.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress9.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress9.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress9.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgress9.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor1.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor1.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor1.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor1.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor2.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor2.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor2.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor2.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor3.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor3.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor3.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor3.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor4.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor4.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor4.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testProgressMonitor4.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar1.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar1.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar1.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar1.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar2.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar2.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar2.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testStatusbar2.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1a.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1a.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1a.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1a.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1b.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1b.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1b.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable1b.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2a.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2a.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2a.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2a.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2b.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2b.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2b.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable2b.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3a.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3a.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3a.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3a.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3b.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3b.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3b.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable3b.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4a.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4a.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4a.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4a.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4b.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4b.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4b.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4b.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4c.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4c.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4c.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTable4c.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding1.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding1.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding1.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding1.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding2.dat b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding2.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding2.dat rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/data/testTableColPadding2.dat diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/input_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/input_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/input_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/input_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_rule_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_rule_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_rule_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_rule_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/option_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_format_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_format_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_format_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_format_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_formats_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_formats_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_formats_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_formats_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_options_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_options_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_options_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_options_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/output_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_options_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_options_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_options_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_options_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressbar_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_options_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_options_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_options_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_options_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/progressmonitor_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_options_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_options_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_options_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_options_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/statusbar_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/suite.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/suite.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/suite.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/suite.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_cell_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_cell_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_cell_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_cell_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_options_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_options_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_options_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_options_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_row_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_row_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_row_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_row_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_test.php b/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_test.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_test.php rename to html/typo3conf/ext/ter/resources/ezcomponents/ConsoleTools/tests/table_test.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/archive_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/archive_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/archive_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/archive_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/base_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/base_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/base_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/base_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/cache_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/cache_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/cache_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/cache_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/configuration_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/configuration_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/configuration_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/configuration_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/console_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/console_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/console_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/console_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_schema_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_schema_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_schema_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/db_schema_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/debug_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/debug_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/debug_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/debug_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/execution_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/execution_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/execution_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/execution_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/file_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/file_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/file_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/file_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_analyzer_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_analyzer_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_analyzer_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_analyzer_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/image_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/input_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/input_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/input_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/input_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_database_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_database_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_database_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/log_database_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/mail_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/mail_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/mail_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/mail_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_object_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_object_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_object_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/persistent_object_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/php_generator_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/php_generator_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/php_generator_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/php_generator_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/query_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/query_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/query_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/query_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/system_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/system_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/system_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/system_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/template_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/template_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/template_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/template_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_cache_autoload.php b/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_cache_autoload.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_cache_autoload.php rename to html/typo3conf/ext/ter/resources/ezcomponents/autoload/translation_cache_autoload.php diff --git a/data/typo3/html/typo3conf/ext/ter/resources/static/setup.txt b/html/typo3conf/ext/ter/resources/static/setup.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/resources/static/setup.txt rename to html/typo3conf/ext/ter/resources/static/setup.txt diff --git a/data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateCurrentVersionListTask.php b/html/typo3conf/ext/ter/task/class.tx_ter_updateCurrentVersionListTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateCurrentVersionListTask.php rename to html/typo3conf/ext/ter/task/class.tx_ter_updateCurrentVersionListTask.php diff --git a/data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask.php b/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask.php rename to html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask.php diff --git a/data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask_additionalFieldProvider.php b/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask_additionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask_additionalFieldProvider.php rename to html/typo3conf/ext/ter/task/class.tx_ter_updateExtensionIndexTask_additionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter/tca.php b/html/typo3conf/ext/ter/tca.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tca.php rename to html/typo3conf/ext/ter/tca.php diff --git a/data/typo3/html/typo3conf/ext/ter/tests/fixtures/fixture_extuploaddataarray_zipped.dat b/html/typo3conf/ext/ter/tests/fixtures/fixture_extuploaddataarray_zipped.dat similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tests/fixtures/fixture_extuploaddataarray_zipped.dat rename to html/typo3conf/ext/ter/tests/fixtures/fixture_extuploaddataarray_zipped.dat diff --git a/data/typo3/html/typo3conf/ext/ter/tests/fixtures/special_characters_utf8.txt b/html/typo3conf/ext/ter/tests/fixtures/special_characters_utf8.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tests/fixtures/special_characters_utf8.txt rename to html/typo3conf/ext/ter/tests/fixtures/special_characters_utf8.txt diff --git a/data/typo3/html/typo3conf/ext/ter/tests/tx_ter_api_direct_testcase.php b/html/typo3conf/ext/ter/tests/tx_ter_api_direct_testcase.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tests/tx_ter_api_direct_testcase.php rename to html/typo3conf/ext/ter/tests/tx_ter_api_direct_testcase.php diff --git a/data/typo3/html/typo3conf/ext/ter/tests/tx_ter_helper_testcase.php b/html/typo3conf/ext/ter/tests/tx_ter_helper_testcase.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tests/tx_ter_helper_testcase.php rename to html/typo3conf/ext/ter/tests/tx_ter_helper_testcase.php diff --git a/data/typo3/html/typo3conf/ext/ter/tests/tx_ter_soap_testcase.php b/html/typo3conf/ext/ter/tests/tx_ter_soap_testcase.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tests/tx_ter_soap_testcase.php rename to html/typo3conf/ext/ter/tests/tx_ter_soap_testcase.php diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter.wsdl b/html/typo3conf/ext/ter/tx_ter.wsdl similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter.wsdl rename to html/typo3conf/ext/ter/tx_ter.wsdl diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_extensiondetails.gif b/html/typo3conf/ext/ter/tx_ter_extensiondetails.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_extensiondetails.gif rename to html/typo3conf/ext/ter/tx_ter_extensiondetails.gif diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_extensionkeys.gif b/html/typo3conf/ext/ter/tx_ter_extensionkeys.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_extensionkeys.gif rename to html/typo3conf/ext/ter/tx_ter_extensionkeys.gif diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_extensionmembers.gif b/html/typo3conf/ext/ter/tx_ter_extensionmembers.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_extensionmembers.gif rename to html/typo3conf/ext/ter/tx_ter_extensionmembers.gif diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_extensionqueue.gif b/html/typo3conf/ext/ter/tx_ter_extensionqueue.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_extensionqueue.gif rename to html/typo3conf/ext/ter/tx_ter_extensionqueue.gif diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_extensions.gif b/html/typo3conf/ext/ter/tx_ter_extensions.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_extensions.gif rename to html/typo3conf/ext/ter/tx_ter_extensions.gif diff --git a/data/typo3/html/typo3conf/ext/ter/tx_ter_wsdl.php b/html/typo3conf/ext/ter/tx_ter_wsdl.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter/tx_ter_wsdl.php rename to html/typo3conf/ext/ter/tx_ter_wsdl.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/.gitignore b/html/typo3conf/ext/ter_fe2/.gitignore similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/.gitignore rename to html/typo3conf/ext/ter_fe2/.gitignore diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ChangeLog b/html/typo3conf/ext/ter_fe2/ChangeLog similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ChangeLog rename to html/typo3conf/ext/ter_fe2/ChangeLog diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Cache/FileCache.php b/html/typo3conf/ext/ter_fe2/Classes/Cache/FileCache.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Cache/FileCache.php rename to html/typo3conf/ext/ter_fe2/Classes/Cache/FileCache.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractTerBasedController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractTerBasedController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractTerBasedController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/AbstractTerBasedController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AuthorController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/AuthorController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/AuthorController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/AuthorController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/CategoryController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/CategoryController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/CategoryController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/CategoryController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/Eid/ExtensionController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/Eid/ExtensionController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/Eid/ExtensionController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/Eid/ExtensionController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/ExtensionController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/ExtensionController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/ExtensionController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/ExtensionController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/MediaController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/MediaController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/MediaController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/MediaController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/RegisterkeyController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/RegisterkeyController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/RegisterkeyController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/RegisterkeyController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/ReviewController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/ReviewController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/ReviewController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/ReviewController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/TagController.php b/html/typo3conf/ext/ter_fe2/Classes/Controller/TagController.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Controller/TagController.php rename to html/typo3conf/ext/ter_fe2/Classes/Controller/TagController.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractEntity.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractEntity.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractEntity.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractEntity.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractValueObject.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractValueObject.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractValueObject.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/AbstractValueObject.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Author.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Author.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Author.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Author.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Category.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Category.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Category.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Category.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Experience.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Experience.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Experience.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Experience.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Extension.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Extension.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Extension.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Extension.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/ExtensionManagerCacheEntry.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/ExtensionManagerCacheEntry.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/ExtensionManagerCacheEntry.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/ExtensionManagerCacheEntry.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Media.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Media.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Media.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Media.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Relation.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Relation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Relation.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Relation.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Search.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Search.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Search.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Search.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Tag.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Tag.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Tag.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Tag.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Version.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Version.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Version.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Model/Version.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AbstractRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AbstractRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AbstractRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AbstractRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AuthorRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AuthorRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AuthorRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/AuthorRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/CategoryRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/CategoryRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/CategoryRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/CategoryRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionManagerCacheEntryRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionManagerCacheEntryRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionManagerCacheEntryRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionManagerCacheEntryRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/ExtensionRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/MediaRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/MediaRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/MediaRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/MediaRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/SearchRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/SearchRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/SearchRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/SearchRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/TagRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/TagRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/TagRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/TagRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/UserRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/UserRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/UserRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/UserRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/VersionRepository.php b/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/VersionRepository.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/VersionRepository.php rename to html/typo3conf/ext/ter_fe2/Classes/Domain/Repository/VersionRepository.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Object/ObjectBuilder.php b/html/typo3conf/ext/ter_fe2/Classes/Object/ObjectBuilder.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Object/ObjectBuilder.php rename to html/typo3conf/ext/ter_fe2/Classes/Object/ObjectBuilder.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/AbstractPersistence.php b/html/typo3conf/ext/ter_fe2/Classes/Persistence/AbstractPersistence.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/AbstractPersistence.php rename to html/typo3conf/ext/ter_fe2/Classes/Persistence/AbstractPersistence.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/PersistenceInterface.php b/html/typo3conf/ext/ter_fe2/Classes/Persistence/PersistenceInterface.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/PersistenceInterface.php rename to html/typo3conf/ext/ter_fe2/Classes/Persistence/PersistenceInterface.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/Registry.php b/html/typo3conf/ext/ter_fe2/Classes/Persistence/Registry.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/Registry.php rename to html/typo3conf/ext/ter_fe2/Classes/Persistence/Registry.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/Session.php b/html/typo3conf/ext/ter_fe2/Classes/Persistence/Session.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Persistence/Session.php rename to html/typo3conf/ext/ter_fe2/Classes/Persistence/Session.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/AbstractProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/AbstractProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/AbstractProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/AbstractProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/FileProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/FileProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/FileProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/FileProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/MirrorProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/MirrorProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/MirrorProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/MirrorProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderInterface.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderInterface.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderInterface.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderInterface.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderManager.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderManager.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderManager.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/ProviderManager.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/SoapProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Provider/SoapProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Provider/SoapProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Provider/SoapProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Security/Role.php b/html/typo3conf/ext/ter_fe2/Classes/Security/Role.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Security/Role.php rename to html/typo3conf/ext/ter_fe2/Classes/Security/Role.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Documentation.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Documentation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Documentation.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Documentation.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Flattr.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Flattr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Flattr.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Flattr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Image.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Image.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Image.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Image.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Mirror.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Mirror.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Mirror.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Mirror.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Notification.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Notification.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Notification.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Notification.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Soap.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Soap.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Soap.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Soap.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Ter.php b/html/typo3conf/ext/ter_fe2/Classes/Service/Ter.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Service/Ter.php rename to html/typo3conf/ext/ter_fe2/Classes/Service/Ter.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Solr/Indexqueue/TerIndexer.php b/html/typo3conf/ext/ter_fe2/Classes/Solr/Indexqueue/TerIndexer.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Solr/Indexqueue/TerIndexer.php rename to html/typo3conf/ext/ter_fe2/Classes/Solr/Indexqueue/TerIndexer.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractAdditionalFieldProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractAdditionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractAdditionalFieldProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/AbstractAdditionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/AbstractTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/AbstractTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForExpiredExtensions.php b/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForExpiredExtensions.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForExpiredExtensions.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/CheckForExpiredExtensions.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForOutdatedExtensions.php b/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForOutdatedExtensions.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CheckForOutdatedExtensions.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/CheckForOutdatedExtensions.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTaskAdditionalFieldProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTaskAdditionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTaskAdditionalFieldProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/CreateExtensionFilesTaskAdditionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/DownloadCounterTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/DownloadCounterTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/DownloadCounterTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/DownloadCounterTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/ImportAllExtensionsTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/ImportAllExtensionsTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/ImportAllExtensionsTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/ImportAllExtensionsTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/ImportExtensionsFromQueueTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/ImportExtensionsFromQueueTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/ImportExtensionsFromQueueTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/ImportExtensionsFromQueueTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTaskAdditionalFieldProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTaskAdditionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTaskAdditionalFieldProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/SearchIndexTaskAdditionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTaskAdditionalFieldProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTaskAdditionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTaskAdditionalFieldProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/UpdateDetailsTaskAdditionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTask.php b/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTask.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTask.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTask.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTaskAdditionalFieldProvider.php b/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTaskAdditionalFieldProvider.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTaskAdditionalFieldProvider.php rename to html/typo3conf/ext/ter_fe2/Classes/Task/UpdateExtensionListTaskAdditionalFieldProvider.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Archive.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Archive.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Archive.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Archive.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Array.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Array.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Array.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Array.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Category.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Category.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Category.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Category.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Datetime.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Datetime.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Datetime.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Datetime.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/File.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/File.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/File.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/File.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Log.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Log.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Log.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Log.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/TypoScript.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/TypoScript.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/TypoScript.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/TypoScript.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Version.php b/html/typo3conf/ext/ter_fe2/Classes/Utility/Version.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Utility/Version.php rename to html/typo3conf/ext/ter_fe2/Classes/Utility/Version.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Validation/Validator/UrlValidator.php b/html/typo3conf/ext/ter_fe2/Classes/Validation/Validator/UrlValidator.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Validation/Validator/UrlValidator.php rename to html/typo3conf/ext/ter_fe2/Classes/Validation/Validator/UrlValidator.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListJson.php b/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListJson.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListJson.php rename to html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListJson.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListLatestJson.php b/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListLatestJson.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListLatestJson.php rename to html/typo3conf/ext/ter_fe2/Classes/View/Extension/ListLatestJson.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ShowJson.php b/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ShowJson.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/View/Extension/ShowJson.php rename to html/typo3conf/ext/ter_fe2/Classes/View/Extension/ShowJson.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CdataViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CdataViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CdataViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CdataViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ChartViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ChartViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ChartViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ChartViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CropViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CropViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CropViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/CropViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DateTimeViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DateTimeViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DateTimeViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DateTimeViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DocumentationLinkViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DocumentationLinkViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DocumentationLinkViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/DocumentationLinkViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionIconViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionIconViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionIconViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionIconViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionImageViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionImageViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionImageViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/ExtensionImageViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FilesizeViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FilesizeViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FilesizeViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FilesizeViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FlattrViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FlattrViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FlattrViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FlattrViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FormatViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FormatViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FormatViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/FormatViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/RawViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/RawViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/RawViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/RawViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/UserImageViewHelper.php b/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/UserImageViewHelper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/UserImageViewHelper.php rename to html/typo3conf/ext/ter_fe2/Classes/ViewHelpers/UserImageViewHelper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Classes/Visitor/ArrayAssurer.php b/html/typo3conf/ext/ter_fe2/Classes/Visitor/ArrayAssurer.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Classes/Visitor/ArrayAssurer.php rename to html/typo3conf/ext/ter_fe2/Classes/Visitor/ArrayAssurer.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/FlexForms/flexform_list.xml b/html/typo3conf/ext/ter_fe2/Configuration/FlexForms/flexform_list.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/FlexForms/flexform_list.xml rename to html/typo3conf/ext/ter_fe2/Configuration/FlexForms/flexform_list.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_author.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_author.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_author.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_author.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_category.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_category.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_category.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_category.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_experience.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_experience.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_experience.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_experience.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_extension.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_extension.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_extension.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_extension.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_media.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_media.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_media.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_media.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_relation.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_relation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_relation.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_relation.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_search.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_search.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_search.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_search.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_tag.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_tag.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_tag.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_tag.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_version.php b/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_version.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_version.php rename to html/typo3conf/ext/ter_fe2/Configuration/TCA/tx_terfe2_domain_model_version.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/Plugins/Solr.ts b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/Plugins/Solr.ts similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/Plugins/Solr.ts rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/Plugins/Solr.ts diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/constants.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/constants.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/constants.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/constants.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/setup.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/setup.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/setup.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Default/setup.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/constants.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/constants.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/constants.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/constants.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/setup.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/setup.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/setup.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Json/setup.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/constants.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/constants.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/constants.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/constants.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/setup.txt b/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/setup.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/setup.txt rename to html/typo3conf/ext/ter_fe2/Configuration/TypoScript/Rss/setup.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_author.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_author.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_author.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_author.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_category.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_category.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_category.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_category.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_experience.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_experience.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_experience.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_experience.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_extension.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_extension.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_extension.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_extension.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_media.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_media.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_media.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_media.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_relation.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_relation.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_relation.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_relation.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_tag.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_tag.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_tag.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_tag.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_version.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_version.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_version.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_csh_tx_terfe2_domain_model_version.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_db.xml b/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_db.xml similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_db.xml rename to html/typo3conf/ext/ter_fe2/Resources/Private/Language/locallang_db.xml diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.rss b/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.rss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.rss rename to html/typo3conf/ext/ter_fe2/Resources/Private/Layouts/Default.rss diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/AuthorList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/AuthorList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/AuthorList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/AuthorList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/CategoryList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/CategoryList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/CategoryList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/CategoryList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionAdminPane.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionAdminPane.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionAdminPane.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionAdminPane.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.rss b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.rss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.rss rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionList.rss diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSearchForm.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSearchForm.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSearchForm.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSearchForm.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSingleInfo.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSingleInfo.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSingleInfo.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionSingleInfo.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionUploadHistoryList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionUploadHistoryList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionUploadHistoryList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ExtensionUploadHistoryList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/FormErrors.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/FormErrors.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/FormErrors.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/FormErrors.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineCategoryList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineCategoryList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineCategoryList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineCategoryList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineRelationList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineRelationList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineRelationList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineRelationList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineTagList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineTagList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineTagList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/InlineTagList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ReviewForm.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ReviewForm.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ReviewForm.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/ReviewForm.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/TagList.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/TagList.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Partials/TagList.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Partials/TagList.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Autoloader.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Autoloader.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Autoloader.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Autoloader.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Class.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Class.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Class.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Class.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Function.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Function.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Function.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Function.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Interface.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Interface.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Interface.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Interface.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Method.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Method.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Method.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Method.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Param.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Param.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Param.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Param.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Property.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Property.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Property.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Builder/Property.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderAbstract.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderAbstract.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderAbstract.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderAbstract.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderFactory.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderFactory.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderFactory.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/BuilderFactory.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment/Doc.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment/Doc.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment/Doc.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Comment/Doc.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Error.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Error.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Error.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Error.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer/Emulative.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer/Emulative.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer/Emulative.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Lexer/Emulative.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Arg.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Arg.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Arg.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Arg.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Const.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Const.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Const.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Const.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Array.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Array.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Array.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Array.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayItem.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayItem.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayItem.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ArrayItem.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Assign.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Assign.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Assign.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Assign.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseXor.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Concat.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Div.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Div.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Div.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Div.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Minus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mod.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Mul.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Plus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/Pow.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftLeft.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignOp/ShiftRight.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignRef.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignRef.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignRef.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/AssignRef.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseAnd.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseOr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Concat.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Div.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Equal.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Greater.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/GreaterOrEqual.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalAnd.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalOr.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/LogicalXor.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Minus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mod.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotEqual.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/NotIdentical.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Plus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Pow.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/Smaller.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BinaryOp/SmallerOrEqual.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BitwiseNot.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BitwiseNot.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BitwiseNot.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BitwiseNot.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BooleanNot.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BooleanNot.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BooleanNot.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/BooleanNot.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Array.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Array.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Array.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Array.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Bool.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Bool.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Bool.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Bool.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Double.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Double.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Double.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Double.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Int.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Int.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Int.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Int.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Object.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Object.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Object.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Object.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/String.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/String.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/String.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/String.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Unset.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Unset.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Unset.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Cast/Unset.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClassConstFetch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClassConstFetch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClassConstFetch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClassConstFetch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Clone.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Clone.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Clone.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Clone.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Closure.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Closure.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Closure.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Closure.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClosureUse.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClosureUse.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClosureUse.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ClosureUse.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ConstFetch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ConstFetch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ConstFetch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ConstFetch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Empty.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Empty.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Empty.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Empty.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ErrorSuppress.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ErrorSuppress.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ErrorSuppress.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ErrorSuppress.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Eval.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Eval.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Eval.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Eval.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Exit.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Exit.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Exit.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Exit.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/FuncCall.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/FuncCall.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/FuncCall.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/FuncCall.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Include.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Include.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Include.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Include.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Instanceof.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Instanceof.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Instanceof.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Instanceof.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Isset.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Isset.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Isset.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Isset.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/List.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/List.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/List.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/List.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/MethodCall.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/MethodCall.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/MethodCall.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/MethodCall.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/New.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/New.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/New.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/New.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostDec.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostDec.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostDec.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostDec.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostInc.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostInc.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostInc.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PostInc.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreDec.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreDec.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreDec.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreDec.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreInc.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreInc.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreInc.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PreInc.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Print.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Print.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Print.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Print.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PropertyFetch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PropertyFetch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PropertyFetch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/PropertyFetch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ShellExec.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ShellExec.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ShellExec.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/ShellExec.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticCall.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticCall.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticCall.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticCall.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/StaticPropertyFetch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Ternary.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Ternary.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Ternary.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Ternary.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryMinus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryMinus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryMinus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryMinus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryPlus.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryPlus.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryPlus.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/UnaryPlus.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Variable.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Variable.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Variable.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Variable.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Yield.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Yield.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Yield.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Expr/Yield.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/FullyQualified.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/FullyQualified.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/FullyQualified.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/FullyQualified.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/Relative.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/Relative.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/Relative.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Name/Relative.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Param.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Param.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Param.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Param.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/DNumber.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/DNumber.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/DNumber.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/DNumber.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/Encapsed.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/Encapsed.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/Encapsed.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/Encapsed.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/LNumber.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/LNumber.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/LNumber.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/LNumber.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Class.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Class.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Class.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Class.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/File.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/File.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/File.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/File.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Function.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Function.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Function.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Function.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Line.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Method.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Namespace.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Trait.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Trait.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Trait.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Trait.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/String.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/String.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/String.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Scalar/String.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Break.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Break.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Break.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Break.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Case.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Case.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Case.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Case.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Catch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Catch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Catch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Catch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Class.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Class.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Class.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Class.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassConst.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassConst.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassConst.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassConst.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassMethod.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassMethod.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassMethod.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ClassMethod.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Const.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Const.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Const.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Const.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Continue.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Continue.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Continue.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Continue.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Declare.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Declare.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Declare.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Declare.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/DeclareDeclare.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Do.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Do.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Do.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Do.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Echo.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Echo.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Echo.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Echo.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Else.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Else.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Else.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Else.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ElseIf.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ElseIf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ElseIf.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/ElseIf.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/For.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/For.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/For.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/For.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Foreach.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Foreach.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Foreach.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Foreach.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Function.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Function.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Function.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Function.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Global.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Global.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Global.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Global.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Goto.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Goto.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Goto.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Goto.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/HaltCompiler.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/HaltCompiler.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/HaltCompiler.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/HaltCompiler.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/If.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/If.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/If.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/If.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/InlineHTML.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/InlineHTML.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/InlineHTML.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/InlineHTML.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Interface.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Interface.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Interface.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Interface.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Label.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Label.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Label.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Label.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Namespace.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Namespace.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Namespace.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Namespace.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Property.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Property.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Property.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Property.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/PropertyProperty.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/PropertyProperty.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/PropertyProperty.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/PropertyProperty.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Return.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Return.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Return.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Return.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Static.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Static.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Static.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Static.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/StaticVar.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/StaticVar.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/StaticVar.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/StaticVar.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Switch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Switch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Switch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Switch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Throw.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Throw.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Throw.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Throw.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Trait.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Trait.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Trait.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Trait.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUse.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUse.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUse.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUse.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Alias.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TraitUseAdaptation/Precedence.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TryCatch.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TryCatch.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TryCatch.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/TryCatch.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Unset.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Unset.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Unset.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Unset.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Use.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Use.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Use.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/Use.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/UseUse.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/UseUse.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/UseUse.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/UseUse.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/While.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/While.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/While.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Node/Stmt/While.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeAbstract.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeAbstract.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeAbstract.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeAbstract.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeDumper.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeDumper.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeDumper.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeDumper.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverser.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverser.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverser.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverser.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverserInterface.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverserInterface.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverserInterface.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeTraverserInterface.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor/NameResolver.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor/NameResolver.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor/NameResolver.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitor/NameResolver.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitorAbstract.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitorAbstract.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitorAbstract.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/NodeVisitorAbstract.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Parser.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Parser.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Parser.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Parser.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinter/Standard.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinter/Standard.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinter/Standard.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinter/Standard.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinterAbstract.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinterAbstract.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinterAbstract.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/PrettyPrinterAbstract.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer/XML.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer/XML.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer/XML.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Serializer/XML.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Template.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Template.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Template.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Template.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/TemplateLoader.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/TemplateLoader.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/TemplateLoader.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/TemplateLoader.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer/XML.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer/XML.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer/XML.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/PhpParser/Unserializer/XML.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/bootstrap.php b/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/bootstrap.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/bootstrap.php rename to html/typo3conf/ext/ter_fe2/Resources/Private/Php/PHP-Parser/lib/bootstrap.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/List.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/List.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/List.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/List.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Show.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Show.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Show.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Author/Show.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/List.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/List.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/List.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/List.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/New.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/New.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/New.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/New.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Show.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Show.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Show.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Category/Show.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Index.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Index.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Index.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Index.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.rss b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.rss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.rss rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/List.rss diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.rss b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.rss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.rss rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/ListLatest.rss diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/New.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/New.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/New.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/New.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Search.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Search.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Search.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Search.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Show.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Show.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Show.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/Show.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/UploadVersion.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/UploadVersion.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/UploadVersion.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Extension/UploadVersion.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Mail/ExpiredExtensions.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Mail/ExpiredExtensions.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Mail/ExpiredExtensions.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Mail/ExpiredExtensions.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/List.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/List.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/List.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/List.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/New.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/New.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/New.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/New.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Show.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Show.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Show.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Media/Show.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Admin.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Admin.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Admin.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Admin.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Index.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Index.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Index.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Index.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Manage.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Manage.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Manage.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Registerkey/Manage.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Review/Index.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Review/Index.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Review/Index.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Review/Index.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Edit.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Edit.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Edit.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Edit.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/List.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/List.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/List.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/List.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/New.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/New.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/New.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/New.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Show.html b/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Show.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Show.html rename to html/typo3conf/ext/ter_fe2/Resources/Private/Templates/Tag/Show.html diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/author.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/author.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/author.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/author.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/category.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/category.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/category.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/category.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/download.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/download.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/download.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/download.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/experience.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/experience.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/experience.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/experience.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/extension.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/extension.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/extension.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/extension.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/html.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/html.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/html.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/html.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/media.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/media.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/media.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/media.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/relation.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/relation.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/relation.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/relation.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/sxw.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/sxw.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/sxw.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/sxw.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/t3x.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/t3x.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/t3x.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/t3x.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/tag.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/tag.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/tag.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/tag.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/version.gif b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/version.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/version.gif rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/version.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/zip.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/zip.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Icons/zip.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Icons/zip.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/bg_row_hover.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/bg_row_hover.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/bg_row_hover.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/bg_row_hover.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/button.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/button.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/button.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/button.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/buttons.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/buttons.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/buttons.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/buttons.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star_grey.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star_grey.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star_grey.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/fav-star_grey.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/ratings.png b/html/typo3conf/ext/ter_fe2/Resources/Public/Images/ratings.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Images/ratings.png rename to html/typo3conf/ext/ter_fe2/Resources/Public/Images/ratings.png diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/Default.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/Default.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/Default.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/Default.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/MIT-LICENSE.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/MIT-LICENSE.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/MIT-LICENSE.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/MIT-LICENSE.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/README.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/README.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/README.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/README.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/changes.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/changes.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/changes.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/changes.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/copyright.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/copyright.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/copyright.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/copyright.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/excanvas.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/gpl-2.0.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/gpl-2.0.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/gpl-2.0.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/gpl-2.0.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotCssStyling.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotCssStyling.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotCssStyling.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotCssStyling.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotOptions.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotOptions.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotOptions.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jqPlotOptions.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.css b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.css rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.css diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.css b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.css rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.css diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.jqplot.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/jquery.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/optionsTutorial.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/optionsTutorial.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/optionsTutorial.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/optionsTutorial.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.BezierCurveRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.barRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.blockRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.bubbleRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasOverlay.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.canvasTextRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ciParser.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.cursor.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dateAxisRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.donutRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.dragable.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.enhancedLegendRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.funnelRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.highlighter.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.json2.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.logAxisRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoAxisRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.mekkoRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.meterGaugeRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.ohlcRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pieRenderer.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.pointLabels.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/plugins/jqplot.trendline.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/usage.txt b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/usage.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/usage.txt rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jqPlot/usage.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jquery-1.6.2.min.js b/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jquery-1.6.2.min.js similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jquery-1.6.2.min.js rename to html/typo3conf/ext/ter_fe2/Resources/Public/Javascript/jquery-1.6.2.min.js diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Stylesheet/Default.css b/html/typo3conf/ext/ter_fe2/Resources/Public/Stylesheet/Default.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Resources/Public/Stylesheet/Default.css rename to html/typo3conf/ext/ter_fe2/Resources/Public/Stylesheet/Default.css diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Domain/Model/ExtensionTest.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Domain/Model/ExtensionTest.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Domain/Model/ExtensionTest.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Domain/Model/ExtensionTest.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/automaketemplate.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/automaketemplate.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/automaketemplate.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/automaketemplate.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/cal.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/cal.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/cal.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/cal.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/direct_mail.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/direct_mail.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/direct_mail.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/direct_mail.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/doc_tut_ftb1_1.0.1.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/doc_tut_ftb1_1.0.1.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/doc_tut_ftb1_1.0.1.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/doc_tut_ftb1_1.0.1.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/newloginbox.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/newloginbox.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/newloginbox.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/newloginbox.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/phpmyadmin.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/phpmyadmin.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/phpmyadmin.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/phpmyadmin.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/powermail.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/powermail.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/powermail.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/powermail.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/realurl.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/realurl.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/realurl.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/realurl.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/static_info_tables.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/static_info_tables.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/static_info_tables.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/static_info_tables.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/templavoila.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/templavoila.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/templavoila.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/templavoila.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_address.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_address.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_address.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_address.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_news.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_news.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_news.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/tt_news.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/ve_guestbook.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/ve_guestbook.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/ve_guestbook.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Fixtures/EmConfFiles/ve_guestbook.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Task/CheckForOutdatedExtensionsTaskTest.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Task/CheckForOutdatedExtensionsTaskTest.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Task/CheckForOutdatedExtensionsTaskTest.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Task/CheckForOutdatedExtensionsTaskTest.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Utility/ArchiveTest.php b/html/typo3conf/ext/ter_fe2/Tests/Unit/Utility/ArchiveTest.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/Tests/Unit/Utility/ArchiveTest.php rename to html/typo3conf/ext/ter_fe2/Tests/Unit/Utility/ArchiveTest.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/doc/manual.sxw b/html/typo3conf/ext/ter_fe2/doc/manual.sxw similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/doc/manual.sxw rename to html/typo3conf/ext/ter_fe2/doc/manual.sxw diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ext_emconf.php b/html/typo3conf/ext/ter_fe2/ext_emconf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ext_emconf.php rename to html/typo3conf/ext/ter_fe2/ext_emconf.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ext_icon.gif b/html/typo3conf/ext/ter_fe2/ext_icon.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ext_icon.gif rename to html/typo3conf/ext/ter_fe2/ext_icon.gif diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ext_localconf.php b/html/typo3conf/ext/ter_fe2/ext_localconf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ext_localconf.php rename to html/typo3conf/ext/ter_fe2/ext_localconf.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ext_tables.php b/html/typo3conf/ext/ter_fe2/ext_tables.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ext_tables.php rename to html/typo3conf/ext/ter_fe2/ext_tables.php diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/ext_tables.sql b/html/typo3conf/ext/ter_fe2/ext_tables.sql similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/ext_tables.sql rename to html/typo3conf/ext/ter_fe2/ext_tables.sql diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/todo.txt b/html/typo3conf/ext/ter_fe2/todo.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/todo.txt rename to html/typo3conf/ext/ter_fe2/todo.txt diff --git a/data/typo3/html/typo3conf/ext/ter_fe2/views.txt b/html/typo3conf/ext/ter_fe2/views.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_fe2/views.txt rename to html/typo3conf/ext/ter_fe2/views.txt diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Config.ts b/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Config.ts similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Config.ts rename to html/typo3conf/ext/ter_layout/Configuration/TypoScript/Config.ts diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/constants.txt b/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/constants.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/constants.txt rename to html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/constants.txt diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/setup.txt b/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/setup.txt similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/setup.txt rename to html/typo3conf/ext/ter_layout/Configuration/TypoScript/Default/setup.txt diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Page.ts b/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Page.ts similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/Page.ts rename to html/typo3conf/ext/ter_layout/Configuration/TypoScript/Page.ts diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/TempObjects.ts b/html/typo3conf/ext/ter_layout/Configuration/TypoScript/TempObjects.ts similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Configuration/TypoScript/TempObjects.ts rename to html/typo3conf/ext/ter_layout/Configuration/TypoScript/TempObjects.ts diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Private/Ext/Solr/Search.html b/html/typo3conf/ext/ter_layout/Resources/Private/Ext/Solr/Search.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Private/Ext/Solr/Search.html rename to html/typo3conf/ext/ter_layout/Resources/Private/Ext/Solr/Search.html diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Private/Templates/Default.html b/html/typo3conf/ext/ter_layout/Resources/Private/Templates/Default.html similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Private/Templates/Default.html rename to html/typo3conf/ext/ter_layout/Resources/Private/Templates/Default.html diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css b/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css.map b/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css.map similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css.map rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.css.map diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.scss b/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.scss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.scss rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/PluginStyles.scss diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/_mixins.scss b/html/typo3conf/ext/ter_layout/Resources/Public/Css/_mixins.scss similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/_mixins.scss rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/_mixins.scss diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles.css b/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles.css rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/styles.css diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles2.css b/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles2.css similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Css/styles2.css rename to html/typo3conf/ext/ter_layout/Resources/Public/Css/styles2.css diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.eot b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.eot similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.eot rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.eot diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.svg b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.svg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.svg rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.svg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.ttf b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.ttf similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.ttf rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.ttf diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.woff b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.woff similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.woff rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-bold-webfont.woff diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.eot b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.eot similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.eot rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.eot diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.svg b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.svg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.svg rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.svg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.ttf b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.ttf similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.ttf rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.ttf diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.woff b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.woff similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.woff rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-italic-webfont.woff diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.eot b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.eot similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.eot rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.eot diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.svg b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.svg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.svg rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.svg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.ttf b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.ttf similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.ttf rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.ttf diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.woff b/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.woff similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.woff rename to html/typo3conf/ext/ter_layout/Resources/Public/Fonts/share-regular-webfont.woff diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Icons/favicon.ico b/html/typo3conf/ext/ter_layout/Resources/Public/Icons/favicon.ico similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Icons/favicon.ico rename to html/typo3conf/ext/ter_layout/Resources/Public/Icons/favicon.ico diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/ajax-preloader.gif b/html/typo3conf/ext/ter_layout/Resources/Public/Images/ajax-preloader.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/ajax-preloader.gif rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/ajax-preloader.gif diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/aside-shade.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/aside-shade.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/aside-shade.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/aside-shade.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/avatar-list-li.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/avatar-list-li.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/avatar-list-li.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/avatar-list-li.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-3-columns-foot.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-3-columns-foot.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-3-columns-foot.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-3-columns-foot.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-calendar-archive.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-calendar-archive.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-calendar-archive.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-calendar-archive.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-b.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-b.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-b.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-b.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-br.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-br.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-br.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-br.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-lr.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-lr.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-lr.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-body-lr.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-h.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-h.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-h.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-h.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-r-tl.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-r-tl.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-r-tl.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-drop-r-tl.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-evaluation.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-evaluation.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-evaluation.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-evaluation.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-event-item-date.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-event-item-date.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-event-item-date.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-event-item-date.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-find-out-link.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-find-out-link.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-find-out-link.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-find-out-link.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr-img.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr-img.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr-img.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr-img.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-flickr.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-home-3-cols-gc.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-home-3-cols-gc.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-home-3-cols-gc.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-home-3-cols-gc.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-link.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-link.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-link.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-link.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-release.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-release.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-release.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers-release.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-numbers.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-pager.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-pager.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-pager.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-pager.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social-body.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social-body.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social-body.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social-body.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-social.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-twitter.jpg b/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-twitter.jpg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/b-twitter.jpg rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/b-twitter.jpg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/bg_row_hover.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/bg_row_hover.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/bg_row_hover.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/bg_row_hover.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/blockquote.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/blockquote.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/blockquote.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/blockquote.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/buttons.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/buttons.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/buttons.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/buttons.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/calendar-ics.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/calendar-ics.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/calendar-ics.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/calendar-ics.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/closebutton.gif b/html/typo3conf/ext/ter_layout/Resources/Public/Images/closebutton.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/closebutton.gif rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/closebutton.gif diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/dark-grey.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/dark-grey.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/dark-grey.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/dark-grey.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/download-icon.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/download-icon.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/download-icon.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/download-icon.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/f-g.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/f-g.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/f-g.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/f-g.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/facet-close.gif b/html/typo3conf/ext/ter_layout/Resources/Public/Images/facet-close.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/facet-close.gif rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/facet-close.gif diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancy-nav.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancy-nav.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancy-nav.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/fancy-nav.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/blank.gif b/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/blank.gif similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/blank.gif rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/blank.gif diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/fancybox.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/fancybox.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/fancybox.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/fancybox/fancybox.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star_grey.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star_grey.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star_grey.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/fav-star_grey.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/featured.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/featured.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/featured.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/featured.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-punkt.de.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-punkt.de.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-punkt.de.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-punkt.de.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-sourceforge.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-sourceforge.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-sourceforge.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/footer-sourceforge.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-hover-bg.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-hover-bg.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-hover-bg.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-hover-bg.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-li-bg.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-li-bg.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-li-bg.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/forge-li-bg.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/form-boxes.jpg b/html/typo3conf/ext/ter_layout/Resources/Public/Images/form-boxes.jpg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/form-boxes.jpg rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/form-boxes.jpg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/gallery.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/gallery.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/gallery.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/gallery.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-a-item.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-a-item.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-a-item.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/h-a-item.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-accordion-bg.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-accordion-bg.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-accordion-bg.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/h-accordion-bg.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-bar-nav-li.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-bar-nav-li.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/h-bar-nav-li.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/h-bar-nav-li.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/header.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/header.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/header.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/header.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/hr.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/hr.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/hr.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/hr.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-arrows.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-arrows.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-arrows.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/i-arrows.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-browse.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-browse.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-browse.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/i-browse.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-externallink.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-externallink.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-externallink.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/i-externallink.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-text.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-text.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/i-text.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/i-text.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/ico-smart-search.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/ico-smart-search.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/ico-smart-search.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/ico-smart-search.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-aside.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-aside.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-aside.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-aside.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-sub.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-sub.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-sub.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/nav-sub.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/o-play.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/o-play.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/o-play.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/o-play.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-30.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-30.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-30.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-30.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-50.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-50.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-50.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-50.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-80.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-80.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-80.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-black-80.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-white-30.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-white-30.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-white-30.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/opacity-white-30.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/orange-tabs.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/orange-tabs.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/orange-tabs.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/orange-tabs.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/page-404.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/page-404.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/page-404.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/page-404.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/pre.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/pre.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/pre.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/pre.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/quick-search-tip.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/quick-search-tip.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/quick-search-tip.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/quick-search-tip.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/relevance.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/relevance.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/relevance.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/relevance.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-buttons.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-buttons.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-buttons.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/s-buttons.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-icons.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-icons.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/s-icons.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/s-icons.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/search-types.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/search-types.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/search-types.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/search-types.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/search/bg_row_hover.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/search/bg_row_hover.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/search/bg_row_hover.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/search/bg_row_hover.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-footer.jpg b/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-footer.jpg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-footer.jpg rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-footer.jpg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-page.jpg b/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-page.jpg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-page.jpg rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-page.jpg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-site.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-site.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-site.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-site.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-top-slider.jpg b/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-top-slider.jpg similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-top-slider.jpg rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/shadow-top-slider.jpg diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/smart-search-arrows.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/smart-search-arrows.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/smart-search-arrows.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/smart-search-arrows.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/tab_background.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/tab_background.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/tab_background.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/tab_background.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/top-slider.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/top-slider.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/top-slider.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/top-slider.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/typo3-logo.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/typo3-logo.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/typo3-logo.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/typo3-logo.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/view-demo-icon.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/view-demo-icon.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/view-demo-icon.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/view-demo-icon.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/voice/bubble.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/voice/bubble.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/voice/bubble.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/voice/bubble.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/wallpaper.png b/html/typo3conf/ext/ter_layout/Resources/Public/Images/wallpaper.png similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/Resources/Public/Images/wallpaper.png rename to html/typo3conf/ext/ter_layout/Resources/Public/Images/wallpaper.png diff --git a/data/typo3/html/typo3conf/ext/ter_layout/ext_emconf.php b/html/typo3conf/ext/ter_layout/ext_emconf.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/ext_emconf.php rename to html/typo3conf/ext/ter_layout/ext_emconf.php diff --git a/data/typo3/html/typo3conf/ext/ter_layout/ext_tables.php b/html/typo3conf/ext/ter_layout/ext_tables.php similarity index 100% rename from data/typo3/html/typo3conf/ext/ter_layout/ext_tables.php rename to html/typo3conf/ext/ter_layout/ext_tables.php