diff --git a/.gitignore b/.gitignore index 4167dea..9cd6983 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -/public +/web /vendor -/app/* -!/app/typo3conf/sites/default/config.yaml +/app diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 67ebac3..d56c7c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,10 +13,10 @@ setup:composer: paths: - .composer/cache artifacts: - expire_in: 1 hour + expire_in: 30 mins paths: - app - - public + - web - vendor test:acceptance: @@ -24,18 +24,22 @@ test:acceptance: stage: test services: - mysql:5.7 + - selenium/standalone-chrome variables: - MYSQL_DATABASE: workshopgitlabtesting - MYSQL_ROOT_PASSWORD: testing - dependencies: - - setup:composer + MYSQL_ROOT_PASSWORD: "dev" + MYSQL_DATABASE: "dev" + MYSQL_USER: "dev" + MYSQL_PASSWORD: "dev" before_script: - - docker-php-ext-install pdo pdo_mysql - - cp public/index.php app/index.php - - cp public/typo3/index.php app/typo3/index.php - - cp public/typo3/install.php app/typo3/install.php - - sed -i.bak -e '133,136d' vendor/typo3/testing-framework/Classes/Core/Testbase.php - - mkdir -p app/typo3temp/var/tests/acceptance - - env TYPO3_PATH_ROOT="$CI_PROJECT_DIR/app/typo3temp/var/tests/acceptance" TYPO3_PATH_APP="$CI_PROJECT_DIR/app/typo3temp/var/tests/acceptance" php -S 127.0.0.1:8080 -t app/typo3temp/var/tests/acceptance & + - docker-php-ext-install pdo pdo_mysql mysqli + - export LOCAL_IP=$(ip a | grep inet | sed -n 2p | xargs | cut -d" " -f2 | cut -d"/" -f1) + - export TESTING_DOMAIN="$LOCAL_IP:8080" + - export TYPO3_CONTEXT=Testing/Acceptance + - php -S "$TESTING_DOMAIN" -t web & script: - - ./vendor/bin/codecept run + - ./vendor/bin/codecept run --env=gitlab-ci + artifacts: + when: on_failure + expire_in: 10 mins + paths: + - tests/_output/ diff --git a/app/typo3conf/AdditionalConfiguration.php b/app/typo3conf/AdditionalConfiguration.php new file mode 100644 index 0000000..5bad1bd --- /dev/null +++ b/app/typo3conf/AdditionalConfiguration.php @@ -0,0 +1,44 @@ + [ + 'trustedHostsPattern' => 'localhost:8080', + ], + 'DB' => [ + 'Connections' => [ + 'Default' => [ + 'dbname' => 'own_workshopgitlabacceptance_testing', + ], + ], + ], + ] + ); +} +if ((string) $appContext === 'Testing/Acceptance' && getenv('CI') === 'true') { + \TYPO3\CMS\Core\Utility\ArrayUtility::mergeRecursiveWithOverrule( + $GLOBALS['TYPO3_CONF_VARS'], + [ + 'SYS' => [ + 'trustedHostsPattern' => getenv('TESTING_DOMAIN'), + ], + 'DB' => [ + 'Connections' => [ + 'Default' => [ + 'dbname' => 'dev', + 'password' => 'dev', + 'user' => 'dev', + 'host' => 'mysql', + ], + ], + ], + ] + ); +} diff --git a/app/typo3conf/LocalConfiguration.php b/app/typo3conf/LocalConfiguration.php new file mode 100644 index 0000000..806365f --- /dev/null +++ b/app/typo3conf/LocalConfiguration.php @@ -0,0 +1,95 @@ + [ + 'debug' => true, + 'explicitADmode' => 'explicitAllow', + 'installToolPassword' => '$argon2i$v=19$m=65536,t=16,p=2$UzAyaTZoVEpFMmV2M1piSQ$TywI+4PRhqx2ggtTrV+R7BNrb0oheW6tr/SThHr6HgM', + 'loginSecurityLevel' => 'normal', + 'passwordHashing' => [ + 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash', + 'options' => [], + ], + ], + 'DB' => [ + 'Connections' => [ + 'Default' => [ + 'charset' => 'utf8mb4', + 'dbname' => 'own_workshopgitlabacceptance', + 'driver' => 'mysqli', + 'host' => '127.0.0.1', + 'password' => 'dev', + 'port' => 3306, + 'tableoptions' => [ + 'charset' => 'utf8mb4', + 'collate' => 'utf8mb4_unicode_ci', + ], + 'unix_socket' => '/var/run/mysqld/mysqld.sock', + 'user' => 'dev', + ], + ], + ], + 'EXT' => [ + 'extConf' => [ + 'backend' => 'a:6:{s:9:"loginLogo";s:0:"";s:19:"loginHighlightColor";s:0:"";s:20:"loginBackgroundImage";s:0:"";s:13:"loginFootnote";s:0:"";s:11:"backendLogo";s:0:"";s:14:"backendFavicon";s:0:"";}', + 'extensionmanager' => 'a:2:{s:21:"automaticInstallation";s:1:"1";s:11:"offlineMode";s:1:"0";}', + 'scheduler' => 'a:2:{s:11:"maxLifetime";s:4:"1440";s:15:"showSampleTasks";s:1:"1";}', + ], + ], + 'EXTENSIONS' => [ + 'backend' => [ + 'backendFavicon' => '', + 'backendLogo' => '', + 'loginBackgroundImage' => '', + 'loginFootnote' => '', + 'loginHighlightColor' => '', + 'loginLogo' => '', + ], + 'extensionmanager' => [ + 'automaticInstallation' => '1', + 'offlineMode' => '0', + ], + 'scheduler' => [ + 'maxLifetime' => '1440', + 'showSampleTasks' => '1', + ], + ], + 'FE' => [ + 'debug' => true, + 'loginSecurityLevel' => 'normal', + 'passwordHashing' => [ + 'className' => 'TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash', + 'options' => [], + ], + ], + 'GFX' => [ + 'processor' => 'ImageMagick', + 'processor_allowTemporaryMasksAsPng' => false, + 'processor_colorspace' => 'sRGB', + 'processor_effects' => true, + 'processor_enabled' => true, + 'processor_path' => '/usr/bin/', + 'processor_path_lzw' => '/usr/bin/', + ], + 'MAIL' => [ + 'transport' => 'sendmail', + 'transport_sendmail_command' => '/usr/sbin/sendmail -t -i ', + 'transport_smtp_encrypt' => '', + 'transport_smtp_password' => '', + 'transport_smtp_server' => '', + 'transport_smtp_username' => '', + ], + 'SYS' => [ + 'devIPmask' => '*', + 'displayErrors' => 1, + 'encryptionKey' => 'fc4441867ae5c425bd55676e01d6d14fd2ae17ed8fd5682b495e74518eda4d437c0c48917772dc848fff31f5cea3c3eb', + 'exceptionalErrors' => 12290, + 'features' => [ + 'unifiedPageTranslationHandling' => true, + ], + 'sitename' => 'New TYPO3 Console site', + 'systemLogLevel' => 0, + 'systemMaintainers' => [ + 1, + ], + ], +]; diff --git a/app/typo3conf/sites/main/config.yaml b/app/typo3conf/sites/main/config.yaml new file mode 100644 index 0000000..b95f97d --- /dev/null +++ b/app/typo3conf/sites/main/config.yaml @@ -0,0 +1,40 @@ +rootPageId: 1 +base: / +languages: + - + title: English + enabled: true + languageId: '0' + base: / + typo3Language: default + locale: en_US.UTF-8 + iso-639-1: en + navigationTitle: English + hreflang: en-us + direction: ltr + flag: us +errorHandling: {} +routes: {} +baseVariants: {} + +# routeEnhancers: +# ExamplePlugin: +# type: Extbase +# extension: ExampleExtension +# plugin: Address +# defaultController: 'Address::index' +# routes: +# - +# routePath: '/edit/{address}' +# _controller: 'Address::edit' +# _arguments: +# 'address': 'address' +# - +# routePath: '/update' +# _controller: 'Address::update' +# aspects: +# address: +# type: PersistedAliasMapper +# tableName: 'tx_exampleextension_domain_model_address' +# routeFieldName: 'slug' +# routeValuePrefix: '/' diff --git a/codeception.yml b/codeception.yml index f0446cc..3f2a988 100644 --- a/codeception.yml +++ b/codeception.yml @@ -1,10 +1,31 @@ +suites: + acceptance: + actor: AcceptanceTester + path: . + modules: + enabled: + - WebDriver: + url: https://workshop-gitlab-acceptance.own.localhost/ + browser: chrome + - Db: + dump: tests/_data/typo3.sql + populate: true + cleanup: true + - \Helper\Acceptance + step_decorators: + - Codeception\Step\ConditionalAssertion + - Codeception\Step\TryTo + - Codeception\Step\Retry + +extensions: + enabled: [Codeception\Extension\RunFailed] + +params: + - env + paths: tests: tests output: tests/_output data: tests/_data support: tests/_support envs: tests/_envs -actor_suffix: Tester -extensions: - enabled: - - Codeception\Extension\RunFailed diff --git a/composer.json b/composer.json index 8453189..ae2a0a0 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "name": "website/typo3-extension-workshop", - "description": "Example TYPO3 installation for workshop", + "description": "Example TYPO3 installation for Acceptance Testing", "license": "GPL-2.0-or-later", "require": { "helhum/typo3-console": "^5.5.5", @@ -31,14 +31,9 @@ }, "require-dev": { "typo3/cms-lowlevel": "*", - "codeception/codeception": "^2.5", + "codeception/codeception": "^3.1.0", "typo3/testing-framework": "^4.11" }, - "autoload-dev": { - "psr-4": { - "Codappix\\Tests\\": "tests/Classes" - } - }, "config": { "platform": { "php": "7.2" @@ -48,7 +43,7 @@ "typo3/cms": { "app-dir": "app", "root-dir": "app", - "web-dir": "public" + "web-dir": "web" } }, "minimum-stability": "dev", diff --git a/composer.lock b/composer.lock index 22b0189..a79975b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "f53279fe7ba361096d04062806b72848", + "content-hash": "5770c0e541ee89e208e3aa77b5eeabb7", "packages": [ { "name": "algo26-matthias/idna-convert", @@ -4036,28 +4036,29 @@ }, { "name": "codeception/codeception", - "version": "2.5.6", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/Codeception/Codeception.git", - "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98" + "reference": "9ed9146567770e564fdd2b656edb385330f7fae7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98", - "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98", + "url": "https://api.github.com/repos/Codeception/Codeception/zipball/9ed9146567770e564fdd2b656edb385330f7fae7", + "reference": "9ed9146567770e564fdd2b656edb385330f7fae7", "shasum": "" }, "require": { "behat/gherkin": "^4.4.0", - "codeception/phpunit-wrapper": "^6.0.9|^7.0.6", - "codeception/stub": "^2.0", + "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3", + "codeception/stub": "^2.0 | ^3.0", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "facebook/webdriver": ">=1.1.3 <2.0", - "guzzlehttp/guzzle": ">=4.1.4 <7.0", - "guzzlehttp/psr7": "~1.0", + "facebook/webdriver": "^1.6.0", + "guzzlehttp/guzzle": "^6.3.0", + "guzzlehttp/psr7": "~1.4", + "hoa/console": "~3.0", "php": ">=5.6.0 <8.0", "symfony/browser-kit": ">=2.7 <5.0", "symfony/console": ">=2.7 <5.0", @@ -4069,7 +4070,9 @@ }, "require-dev": { "codeception/specify": "~0.3", - "facebook/graph-sdk": "~5.3", + "doctrine/annotations": "^1", + "doctrine/data-fixtures": "^1", + "doctrine/orm": "^2", "flow/jsonpath": "~0.2", "monolog/monolog": "~1.8", "pda/pheanstalk": "~3.0", @@ -4124,7 +4127,7 @@ "functional testing", "unit testing" ], - "time": "2019-04-24T11:28:19+00:00" + "time": "2019-08-18T16:44:20+00:00" }, { "name": "codeception/phpunit-wrapper", @@ -4171,20 +4174,21 @@ }, { "name": "codeception/stub", - "version": "2.1.0", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/Codeception/Stub.git", - "reference": "853657f988942f7afb69becf3fd0059f192c705a" + "reference": "eea518711d736eab838c1274593c4568ec06b23d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a", - "reference": "853657f988942f7afb69becf3fd0059f192c705a", + "url": "https://api.github.com/repos/Codeception/Stub/zipball/eea518711d736eab838c1274593c4568ec06b23d", + "reference": "eea518711d736eab838c1274593c4568ec06b23d", "shasum": "" }, "require": { - "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3" + "codeception/phpunit-wrapper": "^6.6.1 | ^7.7.1 | ^8.0.3", + "phpunit/phpunit": ">=6.5 <9.0" }, "type": "library", "autoload": { @@ -4197,7 +4201,7 @@ "MIT" ], "description": "Flexible Stub wrapper for PHPUnit's Mock Builder", - "time": "2019-03-02T15:35:10+00:00" + "time": "2019-08-10T16:20:53+00:00" }, { "name": "facebook/webdriver", @@ -4259,6 +4263,555 @@ ], "time": "2019-06-13T08:02:18+00:00" }, + { + "name": "hoa/consistency", + "version": "1.17.05.02", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Consistency.git", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f", + "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f", + "shasum": "" + }, + "require": { + "hoa/exception": "~1.0", + "php": ">=5.5.0" + }, + "require-dev": { + "hoa/stream": "~1.0", + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Consistency\\": "." + }, + "files": [ + "Prelude.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Consistency library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "autoloader", + "callable", + "consistency", + "entity", + "flex", + "keyword", + "library" + ], + "time": "2017-05-02T12:18:12+00:00" + }, + { + "name": "hoa/console", + "version": "3.17.05.02", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Console.git", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66", + "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/file": "~1.0", + "hoa/protocol": "~1.0", + "hoa/stream": "~1.0", + "hoa/ustring": "~4.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "suggest": { + "ext-pcntl": "To enable hoa://Event/Console/Window:resize.", + "hoa/dispatcher": "To use the console kit.", + "hoa/router": "To use the console kit." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Console\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Console library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "autocompletion", + "chrome", + "cli", + "console", + "cursor", + "getoption", + "library", + "option", + "parser", + "processus", + "readline", + "terminfo", + "tput", + "window" + ], + "time": "2017-05-02T12:26:19+00:00" + }, + { + "name": "hoa/event", + "version": "1.17.01.13", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Event.git", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54", + "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Event\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Event library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "event", + "library", + "listener", + "observer" + ], + "time": "2017-01-13T15:30:50+00:00" + }, + { + "name": "hoa/exception", + "version": "1.17.01.16", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Exception.git", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f", + "reference": "091727d46420a3d7468ef0595651488bfc3a458f", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Exception\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Exception library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "exception", + "library" + ], + "time": "2017-01-16T07:53:27+00:00" + }, + { + "name": "hoa/file", + "version": "1.17.07.11", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/File.git", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", + "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/iterator": "~2.0", + "hoa/stream": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\File\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\File library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "Socket", + "directory", + "file", + "finder", + "library", + "link", + "temporary" + ], + "time": "2017-07-11T07:42:15+00:00" + }, + { + "name": "hoa/iterator", + "version": "2.17.01.10", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Iterator.git", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc", + "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Iterator\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Iterator library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "iterator", + "library" + ], + "time": "2017-01-10T10:34:47+00:00" + }, + { + "name": "hoa/protocol", + "version": "1.17.01.14", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Protocol.git", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2", + "reference": "5c2cf972151c45f373230da170ea015deecf19e2", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Protocol\\": "." + }, + "files": [ + "Wrapper.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Protocol library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "protocol", + "resource", + "stream", + "wrapper" + ], + "time": "2017-01-14T12:26:10+00:00" + }, + { + "name": "hoa/stream", + "version": "1.17.02.21", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Stream.git", + "reference": "3293cfffca2de10525df51436adf88a559151d82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82", + "reference": "3293cfffca2de10525df51436adf88a559151d82", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/event": "~1.0", + "hoa/exception": "~1.0", + "hoa/protocol": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Stream\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Stream library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "Context", + "bucket", + "composite", + "filter", + "in", + "library", + "out", + "protocol", + "stream", + "wrapper" + ], + "time": "2017-02-21T16:01:06+00:00" + }, + { + "name": "hoa/ustring", + "version": "4.17.01.16", + "source": { + "type": "git", + "url": "https://github.com/hoaproject/Ustring.git", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0", + "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0", + "shasum": "" + }, + "require": { + "hoa/consistency": "~1.0", + "hoa/exception": "~1.0" + }, + "require-dev": { + "hoa/test": "~2.0" + }, + "suggest": { + "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().", + "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, + "autoload": { + "psr-4": { + "Hoa\\Ustring\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Ivan Enderlin", + "email": "ivan.enderlin@hoa-project.net" + }, + { + "name": "Hoa community", + "homepage": "https://hoa-project.net/" + } + ], + "description": "The Hoa\\Ustring library.", + "homepage": "https://hoa-project.net/", + "keywords": [ + "library", + "search", + "string", + "unicode" + ], + "time": "2017-01-16T07:08:25+00:00" + }, { "name": "mikey179/vfsstream", "version": "v1.6.7", diff --git a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php b/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php index cb91429..ee0ad49 100644 --- a/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php +++ b/localPackages/example_extension/Configuration/TCA/Overrides/tt_content.php @@ -1,9 +1,40 @@ [ + 'typeicon_classes' => [ + 'exampleextension_address' => 'content-store', + ], + ], + 'types' => [ + 'exampleextension_address' => [ + 'showitem' => implode(',', [ + // phpcs:disable Generic.Files.LineLength.TooLong + // Keep original code from ext:frontend + '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general', + '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.general;general', + '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.headers;headers', + 'pages;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:pages.ALT.list_formlabel', + 'recursive,', + '--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access', + '--palette--;;hidden', + '--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:palette.access;access', + // phpcs:enable + ]), + ], + ], + ] + ); +})('example_extension', 'tt_content'); diff --git a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php b/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php index 6af4230..13793a9 100644 --- a/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php +++ b/localPackages/example_extension/Configuration/TCA/tx_exampleextension_domain_model_address.php @@ -10,6 +10,7 @@ return (function ( return [ 'ctrl' => [ 'label' => 'company_name', + 'iconfile' => 'EXT:core/Resources/Public/Icons/T3Icons/content/content-store.svg', 'default_sortby' => 'company_name', 'tstamp' => 'tstamp', 'crdate' => 'crdate', @@ -24,7 +25,7 @@ return (function ( 'searchFields' => 'company_name, street, city' ], 'interface' => [ - 'showRecordFieldList' => 'company_name, street, house_number, zip, city, country' + 'showRecordFieldList' => 'company_name, street, house_number, zip, city, country, slug' ], 'palettes' => [ 'address' => [ @@ -42,6 +43,7 @@ return (function ( 'showitem' => implode(',', [ '--div--;' . $coreLanguagePrefix . 'general', 'company_name;;address', + 'slug', ]), ], ], @@ -96,6 +98,18 @@ return (function ( 'eval' => 'trim,required', ], ], + 'slug' => [ + 'label' => $extensionLanguagePrefix . 'slug', + 'config' => [ + 'type' => 'slug', + 'generatorOptions' => [ + 'fields' => ['company_name'], + 'prefixParentPageSlug' => true, + ], + 'fallbackCharacter' => '-', + 'eval' => 'uniqueInSite', + ], + ], ], ]; })(); diff --git a/localPackages/example_extension/Configuration/TypoScript/Config.typoscript b/localPackages/example_extension/Configuration/TypoScript/Config.typoscript new file mode 100644 index 0000000..1031d91 --- /dev/null +++ b/localPackages/example_extension/Configuration/TypoScript/Config.typoscript @@ -0,0 +1,3 @@ +config { + contentObjectExceptionHandler = 0 +} diff --git a/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript b/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript new file mode 100644 index 0000000..cbd1251 --- /dev/null +++ b/localPackages/example_extension/Configuration/TypoScript/Extensions.typoscript @@ -0,0 +1 @@ +@import 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript' diff --git a/localPackages/example_extension/Configuration/TypoScript/Page.typoscript b/localPackages/example_extension/Configuration/TypoScript/Page.typoscript new file mode 100644 index 0000000..c7ff2b6 --- /dev/null +++ b/localPackages/example_extension/Configuration/TypoScript/Page.typoscript @@ -0,0 +1,4 @@ +page = PAGE +page { + 10 < styles.content.get +} diff --git a/localPackages/example_extension/ext_localconf.php b/localPackages/example_extension/ext_localconf.php index e0dbfce..addac49 100644 --- a/localPackages/example_extension/ext_localconf.php +++ b/localPackages/example_extension/ext_localconf.php @@ -9,18 +9,24 @@ ], [ 'Address' => 'update' - ] + ], + \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT ); + \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScriptSetup(trim(' + @import "EXT:example_extension/Configuration/TypoScript/*.typoscript" + ')); + \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(' mod { wizards { newContentElement { wizardItems { - plugins { + common { + show = * elements { exampleElement { - iconIdentifier = content-coffee + iconIdentifier = content-store title = Example title description = Example Description tt_content_defValues { diff --git a/localPackages/example_extension/ext_tables.sql b/localPackages/example_extension/ext_tables.sql index 464c5ff..251e6b5 100644 --- a/localPackages/example_extension/ext_tables.sql +++ b/localPackages/example_extension/ext_tables.sql @@ -5,4 +5,5 @@ CREATE TABLE tx_exampleextension_domain_model_address ( zip varchar(255) DEFAULT '' NOT NULL, city varchar(255) DEFAULT '' NOT NULL, country varchar(255) DEFAULT '' NOT NULL, + slug varchar(2048), ); diff --git a/tests/acceptance/AddressCest.php b/tests/AddressCest.php similarity index 94% rename from tests/acceptance/AddressCest.php rename to tests/AddressCest.php index 3babf82..c22e9ad 100644 --- a/tests/acceptance/AddressCest.php +++ b/tests/AddressCest.php @@ -28,7 +28,7 @@ class AddressCest $I->see('Edit'); $I->click('Edit'); - $I->see('Editing: TYPO3 Camp Rhein Ruhr'); + $I->see('Editing: Codappix GmbH'); $I->fillField(['id' => 'zip'], '123'); $I->click('Update'); diff --git a/tests/Classes/Acceptance/Typo3Environment.php b/tests/Classes/Acceptance/Typo3Environment.php deleted file mode 100644 index 49ed013..0000000 --- a/tests/Classes/Acceptance/Typo3Environment.php +++ /dev/null @@ -1,61 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -use Codeception\Event\TestEvent; -use Codeception\Event\SuiteEvent; -use Codeception\Events; -use PHPUnit\Framework\TestSuite; -use TYPO3\CMS\Core\Utility\ArrayUtility; -use TYPO3\TestingFramework\Core\Acceptance\Extension\BackendEnvironment; - -class Typo3Environment extends BackendEnvironment -{ - public function _initialize() - { - ArrayUtility::mergeRecursiveWithOverrule($this->config, [ - // 'typo3DatabaseDriver' => 'pdo_sqlite', - // 'typo3DatabaseName' => 'workshopgitlabtesting.sqlite', - 'typo3DatabaseDriver' => 'pdo_mysql', - 'typo3DatabaseHost' => 'mysql', - 'typo3DatabaseUsername' => 'root', - 'typo3DatabasePassword' => 'testing', - 'typo3DatabaseName' => 'workshopgitlabtesting', - 'coreExtensionsToLoad' => [ - 'core', - 'extbase', - 'fluid', - 'fluid_styled_content', - 'frontend', - 'backend', - ], - 'testExtensionsToLoad' => [ - 'typo3conf/ext/example_extension', - ], - 'xmlDatabaseFixtures' => [ - dirname(__FILE__) . '/../../acceptance/fixtures/full.xml', - ], - ]); - - parent::_initialize(); - } -} diff --git a/tests/_data/typo3.sql b/tests/_data/typo3.sql new file mode 100644 index 0000000..039ba25 --- /dev/null +++ b/tests/_data/typo3.sql @@ -0,0 +1,1855 @@ +-- MySQL dump 10.13 Distrib 5.7.27, for Linux (x86_64) +-- +-- Host: localhost Database: own_workshopgitlabacceptance +-- ------------------------------------------------------ +-- Server version 5.7.27-0ubuntu0.18.04.1-log + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `backend_layout` +-- + +DROP TABLE IF EXISTS `backend_layout`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `backend_layout` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `config` text COLLATE utf8mb4_unicode_ci NOT NULL, + `icon` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_layout` +-- + +LOCK TABLES `backend_layout` WRITE; +/*!40000 ALTER TABLE `backend_layout` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_layout` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_groups` +-- + +DROP TABLE IF EXISTS `be_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_groups` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `non_exclude_fields` text COLLATE utf8mb4_unicode_ci, + `explicit_allowdeny` text COLLATE utf8mb4_unicode_ci, + `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `custom_options` text COLLATE utf8mb4_unicode_ci, + `db_mountpoints` text COLLATE utf8mb4_unicode_ci, + `pagetypes_select` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tables_select` text COLLATE utf8mb4_unicode_ci, + `tables_modify` text COLLATE utf8mb4_unicode_ci, + `groupMods` text COLLATE utf8mb4_unicode_ci, + `file_mountpoints` text COLLATE utf8mb4_unicode_ci, + `file_permissions` text COLLATE utf8mb4_unicode_ci, + `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `TSconfig` text COLLATE utf8mb4_unicode_ci, + `subgroup` text COLLATE utf8mb4_unicode_ci, + `workspace_perms` smallint(6) NOT NULL DEFAULT '1', + `category_perms` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_groups` +-- + +LOCK TABLES `be_groups` WRITE; +/*!40000 ALTER TABLE `be_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `be_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `be_sessions` +-- + +DROP TABLE IF EXISTS `be_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_sessions` ( + `ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ses_userid` int(10) unsigned NOT NULL DEFAULT '0', + `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `ses_data` longblob, + `ses_backuserid` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ses_id`), + KEY `ses_tstamp` (`ses_tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `be_users` +-- + +DROP TABLE IF EXISTS `be_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `be_users` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `disable` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `avatar` int(10) unsigned NOT NULL DEFAULT '0', + `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `admin` smallint(5) unsigned NOT NULL DEFAULT '0', + `usergroup` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lang` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `db_mountpoints` text COLLATE utf8mb4_unicode_ci, + `options` smallint(5) unsigned NOT NULL DEFAULT '0', + `realName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userMods` text COLLATE utf8mb4_unicode_ci, + `allowed_languages` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `uc` mediumblob, + `file_mountpoints` text COLLATE utf8mb4_unicode_ci, + `file_permissions` text COLLATE utf8mb4_unicode_ci, + `workspace_perms` smallint(6) NOT NULL DEFAULT '1', + `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `disableIPlock` smallint(5) unsigned NOT NULL DEFAULT '0', + `TSconfig` text COLLATE utf8mb4_unicode_ci, + `lastlogin` int(10) unsigned NOT NULL DEFAULT '0', + `createdByAction` int(11) NOT NULL DEFAULT '0', + `usergroup_cached_list` text COLLATE utf8mb4_unicode_ci, + `workspace_id` int(11) NOT NULL DEFAULT '0', + `category_perms` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `username` (`username`), + KEY `parent` (`pid`,`deleted`,`disable`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `be_users` +-- + +LOCK TABLES `be_users` WRITE; +/*!40000 ALTER TABLE `be_users` DISABLE KEYS */; +INSERT INTO `be_users` VALUES (1,0,1566399565,1566399565,0,0,0,0,0,NULL,'dsiepmann',0,'$argon2i$v=19$m=65536,t=16,p=2$T2pmbUd5d29zYVBuV2dWdg$dhzQXuW8Opu6YZZfy9R4+KDNAPfKn+dOiHFCdGESmtY',1,'','','',NULL,0,'',NULL,'',_binary 'a:17:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:10:{s:10:\"web_layout\";a:2:{s:8:\"function\";s:1:\"1\";s:8:\"language\";s:1:\"0\";}s:8:\"web_list\";a:0:{}s:10:\"FormEngine\";a:2:{i:0;a:6:{s:32:\"696addfecc296b326ff6e9f04c7ff3e1\";a:4:{i:0;s:4:\"Home\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:1;s:3:\"pid\";i:0;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"a9a6057797db87f88ceebe9eef404c91\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";a:1:{s:10:\"tt_content\";a:4:{s:6:\"colPos\";s:1:\"0\";s:16:\"sys_language_uid\";s:1:\"0\";s:5:\"CType\";s:4:\"list\";s:9:\"list_type\";s:26:\"exampleextension_pluginkey\";}}s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:225:\"&edit%5Btt_content%5D%5B1%5D=edit&defVals%5Btt_content%5D%5BcolPos%5D=0&defVals%5Btt_content%5D%5Bsys_language_uid%5D=0&defVals%5Btt_content%5D%5BCType%5D=list&defVals%5Btt_content%5D%5Blist_type%5D=exampleextension_pluginkey\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"86205c5935270b8ee413592ec1b62292\";a:4:{i:0;s:25:\"Main TypoScript Rendering\";i:1;a:6:{s:4:\"edit\";a:1:{s:12:\"sys_template\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:35:\"&edit%5Bsys_template%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:12:\"sys_template\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:21:\"TYPO3 Camp Rhein Ruhr\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"20ed475662b97ac33d3aa853a74f9c9c\";a:4:{i:0;s:9:\"addresses\";i:1;a:6:{s:4:\"edit\";a:1:{s:5:\"pages\";a:1:{i:2;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:28:\"&edit%5Bpages%5D%5B2%5D=edit\";i:3;a:5:{s:5:\"table\";s:5:\"pages\";s:3:\"uid\";i:2;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}i:1;s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";}s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";a:0:{}s:6:\"web_ts\";a:8:{s:8:\"function\";s:87:\"TYPO3\\CMS\\Tstemplate\\Controller\\TypoScriptTemplateObjectBrowserModuleFunctionController\";s:19:\"constant_editor_cat\";s:0:\"\";s:15:\"ts_browser_type\";s:5:\"setup\";s:16:\"ts_browser_const\";s:5:\"subst\";s:19:\"ts_browser_fixedLgd\";s:1:\"0\";s:23:\"ts_browser_showComments\";s:1:\"1\";s:20:\"ts_browser_alphaSort\";s:1:\"1\";s:25:\"tsbrowser_depthKeys_setup\";a:4:{s:10:\"tt_content\";i:1;s:15:\"tt_content.list\";i:1;s:18:\"tt_content.list.20\";i:1;s:43:\"tt_content.list.20.exampleextension_address\";i:1;}}s:8:\"web_info\";a:2:{s:8:\"function\";s:60:\"TYPO3\\CMS\\Info\\Controller\\InfoPageTyposcriptConfigController\";s:12:\"tsconf_parts\";s:1:\"0\";}s:16:\"opendocs::recent\";a:2:{s:32:\"76f7d9677d1a94636ccbb1386719b9bd\";a:4:{i:0;s:13:\"Codappix GmbH\";i:1;a:6:{s:4:\"edit\";a:1:{s:40:\"tx_exampleextension_domain_model_address\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:63:\"&edit%5Btx_exampleextension_domain_model_address%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:40:\"tx_exampleextension_domain_model_address\";s:3:\"uid\";i:1;s:3:\"pid\";i:2;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}s:32:\"c312013d83c1a6ad7fec8b36a37ba3c8\";a:4:{i:0;s:14:\"Example plugin\";i:1;a:6:{s:4:\"edit\";a:1:{s:10:\"tt_content\";a:1:{i:1;s:4:\"edit\";}}s:7:\"defVals\";N;s:12:\"overrideVals\";N;s:11:\"columnsOnly\";N;s:6:\"noView\";N;s:9:\"workspace\";N;}i:2;s:33:\"&edit%5Btt_content%5D%5B1%5D=edit\";i:3;a:5:{s:5:\"table\";s:10:\"tt_content\";s:3:\"uid\";i:1;s:3:\"pid\";i:1;s:3:\"cmd\";s:4:\"edit\";s:12:\"deleteAccess\";b:1;}}}s:13:\"system_config\";a:3:{s:4:\"tree\";s:3:\"tca\";s:11:\"regexSearch\";b:0;s:8:\"node_tca\";a:6:{s:10:\"tt_content\";i:1;s:16:\"tt_content.types\";i:1;s:41:\"tt_content.types.exampleextension_address\";i:1;s:24:\"tt_content.types.bullets\";i:1;s:32:\"tt_content.ctrl.typeicon_classes\";i:1;s:21:\"tt_content.types.list\";i:1;}}s:16:\"browse_links.php\";a:1:{s:10:\"expandPage\";s:1:\"1\";}s:9:\"clipboard\";a:5:{s:6:\"normal\";a:2:{s:2:\"el\";a:0:{}s:4:\"mode\";s:0:\"\";}s:5:\"tab_1\";a:0:{}s:5:\"tab_2\";a:0:{}s:5:\"tab_3\";a:0:{}s:7:\"current\";s:6:\"normal\";}}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399603;s:15:\"moduleSessionID\";a:9:{s:10:\"web_layout\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_list\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:10:\"FormEngine\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:57:\"TYPO3\\CMS\\Backend\\Utility\\BackendUtility::getUpdateSignal\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:6:\"web_ts\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:8:\"web_info\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"opendocs::recent\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:16:\"browse_links.php\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";s:9:\"clipboard\";s:32:\"19af5a96aa31241441e9f2d4be6cc635\";}s:10:\"inlineView\";s:72:\"a:1:{s:4:\"site\";a:1:{i:1;a:1:{s:13:\"site_language\";a:1:{i:0;s:1:\"0\";}}}}\";s:17:\"BackendComponents\";a:1:{s:6:\"States\";a:1:{s:8:\"Pagetree\";a:1:{s:9:\"stateHash\";a:1:{s:3:\"0_1\";s:1:\"1\";}}}}s:11:\"browseTrees\";a:1:{s:11:\"browsePages\";s:32:\"a:1:{i:0;a:2:{i:0;i:1;i:1;i:1;}}\";}}',NULL,NULL,1,'',0,NULL,1566399603,0,NULL,0,NULL),(2,0,1566399575,1566399575,0,0,0,0,0,NULL,'_cli_',0,'$argon2i$v=19$m=65536,t=16,p=2$M2ovSHFDbi9tdlhCNWxSMA$rWNqC5yCk1bb7vxtVXl0Q+zWv4YIm9pGz6P0Cb0w8Mk',1,'','','',NULL,0,'',NULL,'',_binary 'a:13:{s:14:\"interfaceSetup\";s:0:\"\";s:10:\"moduleData\";a:0:{}s:19:\"thumbnailsByDefault\";i:1;s:14:\"emailMeAtLogin\";i:0;s:11:\"startModule\";s:15:\"help_AboutAbout\";s:8:\"titleLen\";i:50;s:8:\"edit_RTE\";s:1:\"1\";s:20:\"edit_docModuleUpload\";s:1:\"1\";s:15:\"resizeTextareas\";i:1;s:25:\"resizeTextareas_MaxHeight\";i:500;s:24:\"resizeTextareas_Flexible\";i:0;s:4:\"lang\";s:0:\"\";s:19:\"firstLoginTimeStamp\";i:1566399575;}',NULL,NULL,1,'',0,NULL,0,0,NULL,0,NULL); +/*!40000 ALTER TABLE `be_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache_treelist` +-- + +DROP TABLE IF EXISTS `cache_treelist`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cache_treelist` ( + `md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pid` int(11) NOT NULL DEFAULT '0', + `treelist` mediumtext COLLATE utf8mb4_unicode_ci, + `tstamp` int(11) NOT NULL DEFAULT '0', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`md5hash`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache_treelist` +-- + +LOCK TABLES `cache_treelist` WRITE; +/*!40000 ALTER TABLE `cache_treelist` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache_treelist` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_hash` +-- + +DROP TABLE IF EXISTS `cf_cache_hash`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_hash` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_hash` +-- + +LOCK TABLES `cf_cache_hash` WRITE; +/*!40000 ALTER TABLE `cf_cache_hash` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_hash` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_hash_tags` +-- + +DROP TABLE IF EXISTS `cf_cache_hash_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_hash_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_hash_tags` +-- + +LOCK TABLES `cf_cache_hash_tags` WRITE; +/*!40000 ALTER TABLE `cf_cache_hash_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_hash_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_imagesizes` +-- + +DROP TABLE IF EXISTS `cf_cache_imagesizes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_imagesizes` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_imagesizes` +-- + +LOCK TABLES `cf_cache_imagesizes` WRITE; +/*!40000 ALTER TABLE `cf_cache_imagesizes` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_imagesizes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_imagesizes_tags` +-- + +DROP TABLE IF EXISTS `cf_cache_imagesizes_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_imagesizes_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_imagesizes_tags` +-- + +LOCK TABLES `cf_cache_imagesizes_tags` WRITE; +/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_imagesizes_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_pages` +-- + +DROP TABLE IF EXISTS `cf_cache_pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_pages` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_pages` +-- + +LOCK TABLES `cf_cache_pages` WRITE; +/*!40000 ALTER TABLE `cf_cache_pages` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_pages_tags` +-- + +DROP TABLE IF EXISTS `cf_cache_pages_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_pages_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_pages_tags` +-- + +LOCK TABLES `cf_cache_pages_tags` WRITE; +/*!40000 ALTER TABLE `cf_cache_pages_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_pages_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_pagesection` +-- + +DROP TABLE IF EXISTS `cf_cache_pagesection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_pagesection` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_pagesection` +-- + +LOCK TABLES `cf_cache_pagesection` WRITE; +/*!40000 ALTER TABLE `cf_cache_pagesection` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_pagesection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_pagesection_tags` +-- + +DROP TABLE IF EXISTS `cf_cache_pagesection_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_pagesection_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_cache_pagesection_tags` +-- + +LOCK TABLES `cf_cache_pagesection_tags` WRITE; +/*!40000 ALTER TABLE `cf_cache_pagesection_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_cache_pagesection_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cf_cache_rootline` +-- + +DROP TABLE IF EXISTS `cf_cache_rootline`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_rootline` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cf_cache_rootline_tags` +-- + +DROP TABLE IF EXISTS `cf_cache_rootline_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_cache_rootline_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cf_extbase_datamapfactory_datamap` +-- + +DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_extbase_datamapfactory_datamap` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` int(10) unsigned NOT NULL DEFAULT '0', + `content` longblob, + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(180),`expires`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cf_extbase_datamapfactory_datamap_tags` +-- + +DROP TABLE IF EXISTS `cf_extbase_datamapfactory_datamap_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cf_extbase_datamapfactory_datamap_tags` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `identifier` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tag` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `cache_id` (`identifier`(191)), + KEY `cache_tag` (`tag`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cf_extbase_datamapfactory_datamap_tags` +-- + +LOCK TABLES `cf_extbase_datamapfactory_datamap_tags` WRITE; +/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `cf_extbase_datamapfactory_datamap_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fe_groups` +-- + +DROP TABLE IF EXISTS `fe_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_groups` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `subgroup` tinytext COLLATE utf8mb4_unicode_ci, + `TSconfig` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fe_groups` +-- + +LOCK TABLES `fe_groups` WRITE; +/*!40000 ALTER TABLE `fe_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `fe_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `fe_sessions` +-- + +DROP TABLE IF EXISTS `fe_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_sessions` ( + `ses_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ses_iplock` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ses_userid` int(10) unsigned NOT NULL DEFAULT '0', + `ses_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `ses_data` mediumblob, + `ses_permanent` smallint(5) unsigned NOT NULL DEFAULT '0', + `ses_anonymous` smallint(5) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`ses_id`), + KEY `ses_tstamp` (`ses_tstamp`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `fe_users` +-- + +DROP TABLE IF EXISTS `fe_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `fe_users` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `disable` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `tx_extbase_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `usergroup` tinytext COLLATE utf8mb4_unicode_ci, + `name` varchar(160) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `first_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `middle_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `last_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `telephone` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fax` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lockToDomain` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `uc` blob, + `title` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `zip` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `city` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `country` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `www` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `company` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `image` tinytext COLLATE utf8mb4_unicode_ci, + `TSconfig` text COLLATE utf8mb4_unicode_ci, + `lastlogin` int(10) unsigned NOT NULL DEFAULT '0', + `is_online` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`username`(100)), + KEY `username` (`username`(100)), + KEY `is_online` (`is_online`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `fe_users` +-- + +LOCK TABLES `fe_users` WRITE; +/*!40000 ALTER TABLE `fe_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `fe_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pages` +-- + +DROP TABLE IF EXISTS `pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pages` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `rowDescription` text COLLATE utf8mb4_unicode_ci, + `editlock` smallint(5) unsigned NOT NULL DEFAULT '0', + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_source` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `perms_userid` int(10) unsigned NOT NULL DEFAULT '0', + `perms_groupid` int(10) unsigned NOT NULL DEFAULT '0', + `perms_user` smallint(5) unsigned NOT NULL DEFAULT '0', + `perms_group` smallint(5) unsigned NOT NULL DEFAULT '0', + `perms_everybody` smallint(5) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `doktype` int(10) unsigned NOT NULL DEFAULT '0', + `TSconfig` text COLLATE utf8mb4_unicode_ci, + `is_siteroot` smallint(6) NOT NULL DEFAULT '0', + `php_tree_stop` smallint(6) NOT NULL DEFAULT '0', + `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shortcut` int(10) unsigned NOT NULL DEFAULT '0', + `shortcut_mode` int(10) unsigned NOT NULL DEFAULT '0', + `subtitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `layout` int(10) unsigned NOT NULL DEFAULT '0', + `target` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `media` int(10) unsigned NOT NULL DEFAULT '0', + `lastUpdated` int(10) unsigned NOT NULL DEFAULT '0', + `keywords` text COLLATE utf8mb4_unicode_ci, + `cache_timeout` int(10) unsigned NOT NULL DEFAULT '0', + `cache_tags` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `newUntil` int(10) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `no_search` smallint(5) unsigned NOT NULL DEFAULT '0', + `SYS_LASTCHANGED` int(10) unsigned NOT NULL DEFAULT '0', + `abstract` text COLLATE utf8mb4_unicode_ci, + `module` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `extendToSubpages` smallint(5) unsigned NOT NULL DEFAULT '0', + `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `nav_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `nav_hide` smallint(6) NOT NULL DEFAULT '0', + `content_from_pid` int(10) unsigned NOT NULL DEFAULT '0', + `mount_pid` int(10) unsigned NOT NULL DEFAULT '0', + `mount_pid_ol` smallint(6) NOT NULL DEFAULT '0', + `alias` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `l18n_cfg` smallint(6) NOT NULL DEFAULT '0', + `fe_login_mode` smallint(6) NOT NULL DEFAULT '0', + `backend_layout` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `backend_layout_next_level` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tsconfig_includes` text COLLATE utf8mb4_unicode_ci, + `legacy_overlay_uid` int(10) unsigned NOT NULL DEFAULT '0', + `categories` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `alias` (`alias`), + KEY `determineSiteRoot` (`is_siteroot`), + KEY `language_identifier` (`l10n_parent`,`sys_language_uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pages` +-- + +LOCK TABLES `pages` WRITE; +/*!40000 ALTER TABLE `pages` DISABLE KEYS */; +INSERT INTO `pages` VALUES (1,0,1566401415,1566399570,1,0,0,0,0,'',0,NULL,0,0,0,0,NULL,0,_binary 'a:37:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:9:\"nav_title\";N;s:8:\"subtitle\";N;s:8:\"abstract\";N;s:8:\"keywords\";N;s:11:\"description\";N;s:6:\"author\";N;s:12:\"author_email\";N;s:11:\"lastUpdated\";N;s:6:\"layout\";N;s:8:\"newUntil\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:16:\"content_from_pid\";N;s:6:\"target\";N;s:13:\"cache_timeout\";N;s:10:\"cache_tags\";N;s:11:\"is_siteroot\";N;s:9:\"no_search\";N;s:13:\"php_tree_stop\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:8:\"l18n_cfg\";N;s:6:\"hidden\";N;s:8:\"nav_hide\";N;s:9:\"starttime\";N;s:7:\"endtime\";N;s:16:\"extendToSubpages\";N;s:8:\"fe_group\";N;s:13:\"fe_login_mode\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,1,31,31,1,'Home','/',1,NULL,1,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401415,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(2,1,1566402668,1566400573,1,0,0,0,0,'0',256,NULL,0,0,0,0,NULL,0,_binary 'a:13:{s:7:\"doktype\";N;s:5:\"title\";N;s:4:\"slug\";N;s:14:\"backend_layout\";N;s:25:\"backend_layout_next_level\";N;s:6:\"module\";N;s:5:\"media\";N;s:17:\"tsconfig_includes\";N;s:8:\"TSconfig\";N;s:6:\"hidden\";N;s:8:\"editlock\";N;s:10:\"categories\";N;s:14:\"rowDescription\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'addresses','/addresses',254,'TCEMAIN {\r\n clearCacheCmd = 3\r\n}',0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,0,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0),(3,1,1566401718,1566401700,1,0,0,0,0,'0',128,NULL,0,0,0,0,NULL,0,_binary 'a:1:{s:6:\"hidden\";N;}',0,0,'',0,0,0,0,0,0,1,0,31,27,0,'Plugin','/plugin',1,NULL,0,0,'',0,0,'',0,'',0,0,NULL,0,'',0,NULL,0,1566401718,NULL,'',0,'','','',0,0,0,0,'',0,0,'','',NULL,0,0); +/*!40000 ALTER TABLE `pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_be_shortcuts` +-- + +DROP TABLE IF EXISTS `sys_be_shortcuts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_be_shortcuts` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `userid` int(10) unsigned NOT NULL DEFAULT '0', + `module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `url` text COLLATE utf8mb4_unicode_ci, + `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT '0', + `sc_group` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `event` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_be_shortcuts` +-- + +LOCK TABLES `sys_be_shortcuts` WRITE; +/*!40000 ALTER TABLE `sys_be_shortcuts` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_be_shortcuts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_category` +-- + +DROP TABLE IF EXISTS `sys_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_category` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, + `parent` int(11) NOT NULL DEFAULT '0', + `items` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `category_parent` (`parent`), + KEY `category_list` (`pid`,`deleted`,`sys_language_uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_category` +-- + +LOCK TABLES `sys_category` WRITE; +/*!40000 ALTER TABLE `sys_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_category_record_mm` +-- + +DROP TABLE IF EXISTS `sys_category_record_mm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_category_record_mm` ( + `uid_local` int(11) NOT NULL DEFAULT '0', + `uid_foreign` int(11) NOT NULL DEFAULT '0', + `tablenames` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fieldname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT '0', + `sorting_foreign` int(11) NOT NULL DEFAULT '0', + KEY `uid_local_foreign` (`uid_local`,`uid_foreign`), + KEY `uid_foreign_tablefield` (`uid_foreign`,`tablenames`(40),`fieldname`(3),`sorting_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_category_record_mm` +-- + +LOCK TABLES `sys_category_record_mm` WRITE; +/*!40000 ALTER TABLE `sys_category_record_mm` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_category_record_mm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_collection` +-- + +DROP TABLE IF EXISTS `sys_collection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_collection` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` tinytext COLLATE utf8mb4_unicode_ci, + `type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static', + `table_name` tinytext COLLATE utf8mb4_unicode_ci, + `items` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_collection` +-- + +LOCK TABLES `sys_collection` WRITE; +/*!40000 ALTER TABLE `sys_collection` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_collection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_collection_entries` +-- + +DROP TABLE IF EXISTS `sys_collection_entries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_collection_entries` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `uid_local` int(11) NOT NULL DEFAULT '0', + `uid_foreign` int(11) NOT NULL DEFAULT '0', + `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_collection_entries` +-- + +LOCK TABLES `sys_collection_entries` WRITE; +/*!40000 ALTER TABLE `sys_collection_entries` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_collection_entries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_domain` +-- + +DROP TABLE IF EXISTS `sys_domain`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_domain` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `domainName` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`uid`), + KEY `getSysDomain` (`hidden`), + KEY `getDomainStartPage` (`pid`,`hidden`,`domainName`(100)), + KEY `parent` (`pid`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_domain` +-- + +LOCK TABLES `sys_domain` WRITE; +/*!40000 ALTER TABLE `sys_domain` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_domain` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file` +-- + +DROP TABLE IF EXISTS `sys_file`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `last_indexed` int(11) NOT NULL DEFAULT '0', + `missing` smallint(6) NOT NULL DEFAULT '0', + `storage` int(11) NOT NULL DEFAULT '0', + `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `metadata` int(11) NOT NULL DEFAULT '0', + `identifier` text COLLATE utf8mb4_unicode_ci, + `identifier_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `folder_hash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mime_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` tinytext COLLATE utf8mb4_unicode_ci, + `sha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `size` bigint(20) unsigned NOT NULL DEFAULT '0', + `creation_date` int(11) NOT NULL DEFAULT '0', + `modification_date` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `sel01` (`storage`,`identifier_hash`), + KEY `folder` (`storage`,`folder_hash`), + KEY `tstamp` (`tstamp`), + KEY `lastindex` (`last_indexed`), + KEY `sha1` (`sha1`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file` +-- + +LOCK TABLES `sys_file` WRITE; +/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_collection` +-- + +DROP TABLE IF EXISTS `sys_file_collection`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_collection` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` tinytext COLLATE utf8mb4_unicode_ci, + `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'static', + `files` int(11) NOT NULL DEFAULT '0', + `storage` int(11) NOT NULL DEFAULT '0', + `folder` text COLLATE utf8mb4_unicode_ci, + `recursive` smallint(6) NOT NULL DEFAULT '0', + `category` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_collection` +-- + +LOCK TABLES `sys_file_collection` WRITE; +/*!40000 ALTER TABLE `sys_file_collection` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_collection` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_metadata` +-- + +DROP TABLE IF EXISTS `sys_file_metadata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_metadata` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `file` int(11) NOT NULL DEFAULT '0', + `title` tinytext COLLATE utf8mb4_unicode_ci, + `width` int(11) NOT NULL DEFAULT '0', + `height` int(11) NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `alternative` text COLLATE utf8mb4_unicode_ci, + `categories` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `file` (`file`), + KEY `fal_filelist` (`l10n_parent`,`sys_language_uid`), + KEY `parent` (`pid`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_metadata` +-- + +LOCK TABLES `sys_file_metadata` WRITE; +/*!40000 ALTER TABLE `sys_file_metadata` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_metadata` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_processedfile` +-- + +DROP TABLE IF EXISTS `sys_file_processedfile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_processedfile` ( + `uid` int(11) NOT NULL AUTO_INCREMENT, + `tstamp` int(11) NOT NULL DEFAULT '0', + `crdate` int(11) NOT NULL DEFAULT '0', + `storage` int(11) NOT NULL DEFAULT '0', + `original` int(11) NOT NULL DEFAULT '0', + `identifier` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` tinytext COLLATE utf8mb4_unicode_ci, + `configuration` text COLLATE utf8mb4_unicode_ci, + `configurationsha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `originalfilesha1` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `task_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `checksum` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `width` int(11) DEFAULT '0', + `height` int(11) DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `combined_1` (`original`,`task_type`(100),`configurationsha1`), + KEY `identifier` (`storage`,`identifier`(180)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_processedfile` +-- + +LOCK TABLES `sys_file_processedfile` WRITE; +/*!40000 ALTER TABLE `sys_file_processedfile` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_processedfile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_reference` +-- + +DROP TABLE IF EXISTS `sys_file_reference`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_reference` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l10n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `l10n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `uid_local` int(11) NOT NULL DEFAULT '0', + `uid_foreign` int(11) NOT NULL DEFAULT '0', + `tablenames` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fieldname` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sorting_foreign` int(11) NOT NULL DEFAULT '0', + `table_local` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `title` tinytext COLLATE utf8mb4_unicode_ci, + `description` text COLLATE utf8mb4_unicode_ci, + `alternative` text COLLATE utf8mb4_unicode_ci, + `link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `crop` varchar(4000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `autoplay` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `tablenames_fieldname` (`tablenames`(32),`fieldname`(12)), + KEY `deleted` (`deleted`), + KEY `uid_local` (`uid_local`), + KEY `uid_foreign` (`uid_foreign`), + KEY `combined_1` (`l10n_parent`,`t3ver_oid`,`t3ver_wsid`,`t3ver_state`,`deleted`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_reference` +-- + +LOCK TABLES `sys_file_reference` WRITE; +/*!40000 ALTER TABLE `sys_file_reference` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_file_reference` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_file_storage` +-- + +DROP TABLE IF EXISTS `sys_file_storage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_file_storage` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `driver` tinytext COLLATE utf8mb4_unicode_ci, + `configuration` text COLLATE utf8mb4_unicode_ci, + `is_default` smallint(6) NOT NULL DEFAULT '0', + `is_browsable` smallint(6) NOT NULL DEFAULT '0', + `is_public` smallint(6) NOT NULL DEFAULT '0', + `is_writable` smallint(6) NOT NULL DEFAULT '0', + `is_online` smallint(6) NOT NULL DEFAULT '1', + `auto_extract_metadata` smallint(6) NOT NULL DEFAULT '1', + `processingfolder` tinytext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_file_storage` +-- + +LOCK TABLES `sys_file_storage` WRITE; +/*!40000 ALTER TABLE `sys_file_storage` DISABLE KEYS */; +INSERT INTO `sys_file_storage` VALUES (1,0,1566399620,1566399620,0,0,'This is the local fileadmin/ directory. This storage mount has been created automatically by TYPO3.','fileadmin/ (auto-created)','Local','\n\n \n \n \n \n fileadmin/\n \n \n relative\n \n \n 1\n \n \n \n \n',1,1,1,1,1,1,NULL); +/*!40000 ALTER TABLE `sys_file_storage` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_filemounts` +-- + +DROP TABLE IF EXISTS `sys_filemounts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_filemounts` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `base` int(10) unsigned NOT NULL DEFAULT '0', + `read_only` smallint(5) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_filemounts` +-- + +LOCK TABLES `sys_filemounts` WRITE; +/*!40000 ALTER TABLE `sys_filemounts` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_filemounts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_history` +-- + +DROP TABLE IF EXISTS `sys_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_history` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `actiontype` smallint(6) NOT NULL DEFAULT '0', + `usertype` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'BE', + `userid` int(10) unsigned DEFAULT NULL, + `originaluserid` int(10) unsigned DEFAULT NULL, + `recuid` int(11) NOT NULL DEFAULT '0', + `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `history_data` mediumtext COLLATE utf8mb4_unicode_ci, + `workspace` int(11) DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `recordident_1` (`tablename`(100),`recuid`), + KEY `recordident_2` (`tablename`(100),`tstamp`), + KEY `parent` (`pid`) +) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_history` +-- + +LOCK TABLES `sys_history` WRITE; +/*!40000 ALTER TABLE `sys_history` DISABLE KEYS */; +INSERT INTO `sys_history` VALUES (1,0,1566399649,1,'BE',1,0,1,'tt_content','{\"uid\":1,\"rowDescription\":\"\",\"pid\":1,\"tstamp\":1566399649,\"crdate\":1566399649,\"cruser_id\":1,\"deleted\":0,\"hidden\":0,\"starttime\":0,\"endtime\":0,\"fe_group\":\"\",\"sorting\":256,\"editlock\":0,\"sys_language_uid\":0,\"l18n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l18n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"CType\":\"list\",\"header\":\"Example plugin\",\"header_position\":\"\",\"bodytext\":null,\"bullets_type\":0,\"uploads_description\":0,\"uploads_type\":0,\"assets\":0,\"image\":0,\"imagewidth\":0,\"imageorient\":0,\"imagecols\":2,\"imageborder\":0,\"media\":0,\"layout\":0,\"frame_class\":\"default\",\"cols\":0,\"spaceBefore\":0,\"spaceAfter\":0,\"space_before_class\":\"\",\"space_after_class\":\"\",\"records\":null,\"pages\":\"\",\"colPos\":0,\"subheader\":\"\",\"header_link\":\"\",\"image_zoom\":0,\"header_layout\":\"0\",\"list_type\":\"\",\"sectionIndex\":1,\"linkToTop\":0,\"file_collections\":null,\"filelink_size\":0,\"filelink_sorting\":\"\",\"filelink_sorting_direction\":\"\",\"target\":\"\",\"date\":0,\"recursive\":0,\"imageheight\":0,\"pi_flexform\":null,\"accessibility_title\":\"\",\"accessibility_bypass\":0,\"accessibility_bypass_text\":\"\",\"selected_categories\":null,\"category_field\":\"\",\"table_class\":\"\",\"table_caption\":null,\"table_delimiter\":124,\"table_enclosure\":0,\"table_header_position\":0,\"table_tfoot\":0,\"categories\":0}',0),(2,0,1566399785,2,'BE',1,0,1,'sys_template','{\"oldRecord\":{\"config\":\"page = PAGE\\npage.10 = TEXT\\npage.10.value (\\n
\\n
\\n <\\/svg>\\n <\\/div>\\n

Welcome to a default website made with TYPO3<\\/a><\\/h4>\\n <\\/div>\\n)\\npage.100 =< styles.content.get\",\"include_static_file\":\"EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/,EXT:fluid_styled_content\\/Configuration\\/TypoScript\\/Styling\\/\",\"description\":\"This is an Empty Site Package TypoScript template.\\n\\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject\\/Configuration\\/TypoScript\\/setup.typoscript\'\"},\"newRecord\":{\"config\":\"\",\"include_static_file\":\"\",\"description\":\"This is an Empty Site Package TypoScript template.\\r\\n\\r\\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject\\/Configuration\\/TypoScript\\/setup.typoscript\'\"}}',0),(3,0,1566400263,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"CType\":\"list\",\"l18n_diffsource\":\"\"},\"newRecord\":{\"CType\":\"exampleextension_address\",\"l18n_diffsource\":\"a:25:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:9:\\\"list_type\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"layout\\\";N;s:11:\\\"frame_class\\\";N;s:18:\\\"space_before_class\\\";N;s:17:\\\"space_after_class\\\";N;s:12:\\\"sectionIndex\\\";N;s:9:\\\"linkToTop\\\";N;s:16:\\\"sys_language_uid\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(4,0,1566400541,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"pi_flexform\":null,\"l18n_diffsource\":\"a:25:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:9:\\\"list_type\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"layout\\\";N;s:11:\\\"frame_class\\\";N;s:18:\\\"space_before_class\\\";N;s:17:\\\"space_after_class\\\";N;s:12:\\\"sectionIndex\\\";N;s:9:\\\"linkToTop\\\";N;s:16:\\\"sys_language_uid\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"},\"newRecord\":{\"pi_flexform\":\"\\n\\n \\n \\n \\n \\n <\\/value>\\n <\\/field>\\n <\\/language>\\n <\\/sheet>\\n <\\/data>\\n<\\/T3FlexForms>\",\"l18n_diffsource\":\"a:14:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:11:\\\"pi_flexform\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"}}',0),(5,0,1566400573,1,'BE',1,0,2,'pages','{\"uid\":2,\"pid\":1,\"tstamp\":1566400573,\"crdate\":1566400573,\"cruser_id\":1,\"deleted\":0,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"fe_group\":\"0\",\"sorting\":256,\"rowDescription\":null,\"editlock\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"addresses\",\"slug\":\"\\/addresses\",\"doktype\":254,\"TSconfig\":null,\"is_siteroot\":0,\"php_tree_stop\":0,\"url\":\"\",\"shortcut\":0,\"shortcut_mode\":0,\"subtitle\":\"\",\"layout\":0,\"target\":\"\",\"media\":0,\"lastUpdated\":0,\"keywords\":null,\"cache_timeout\":0,\"cache_tags\":\"\",\"newUntil\":0,\"description\":null,\"no_search\":0,\"SYS_LASTCHANGED\":0,\"abstract\":null,\"module\":\"\",\"extendToSubpages\":0,\"author\":\"\",\"author_email\":\"\",\"nav_title\":\"\",\"nav_hide\":0,\"content_from_pid\":0,\"mount_pid\":0,\"mount_pid_ol\":0,\"alias\":\"\",\"l18n_cfg\":0,\"fe_login_mode\":0,\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":null,\"legacy_overlay_uid\":0,\"categories\":0}',0),(6,0,1566400578,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"}}',0),(7,0,1566400612,1,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"uid\":1,\"pid\":2,\"tstamp\":1566400612,\"crdate\":1566400612,\"cruser_id\":1,\"deleted\":0,\"hidden\":0,\"starttime\":0,\"endtime\":0,\"company_name\":\"Codappix GmbH\",\"street\":\"Wallstra\\u00dfe\",\"house_number\":\"14\",\"zip\":\"41061\",\"city\":\"M\\u00f6nchengladbach\",\"country\":\"Germany\"}',0),(8,0,1566400897,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"pages\":\"\",\"l18n_diffsource\":\"a:14:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:11:\\\"pi_flexform\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"},\"newRecord\":{\"pages\":\"2\",\"l18n_diffsource\":\"a:15:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"}}',0),(9,0,1566401145,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"slug\":null},\"newRecord\":{\"slug\":\"default-65cfba6982\"}}',0),(10,0,1566401161,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"slug\":\"default-65cfba6982\"},\"newRecord\":{\"slug\":\"codappix-gmbh\"}}',0),(11,0,1566401308,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"slug\":\"\\/\",\"fe_group\":\"0\",\"l10n_diffsource\":null},\"newRecord\":{\"slug\":\"\\/home\",\"fe_group\":\"\",\"l10n_diffsource\":\"a:37:{s:7:\\\"doktype\\\";N;s:5:\\\"title\\\";N;s:4:\\\"slug\\\";N;s:9:\\\"nav_title\\\";N;s:8:\\\"subtitle\\\";N;s:8:\\\"abstract\\\";N;s:8:\\\"keywords\\\";N;s:11:\\\"description\\\";N;s:6:\\\"author\\\";N;s:12:\\\"author_email\\\";N;s:11:\\\"lastUpdated\\\";N;s:6:\\\"layout\\\";N;s:8:\\\"newUntil\\\";N;s:14:\\\"backend_layout\\\";N;s:25:\\\"backend_layout_next_level\\\";N;s:16:\\\"content_from_pid\\\";N;s:6:\\\"target\\\";N;s:13:\\\"cache_timeout\\\";N;s:10:\\\"cache_tags\\\";N;s:11:\\\"is_siteroot\\\";N;s:9:\\\"no_search\\\";N;s:13:\\\"php_tree_stop\\\";N;s:6:\\\"module\\\";N;s:5:\\\"media\\\";N;s:17:\\\"tsconfig_includes\\\";N;s:8:\\\"TSconfig\\\";N;s:8:\\\"l18n_cfg\\\";N;s:6:\\\"hidden\\\";N;s:8:\\\"nav_hide\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:16:\\\"extendToSubpages\\\";N;s:8:\\\"fe_group\\\";N;s:13:\\\"fe_login_mode\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(12,0,1566401415,2,'BE',1,0,1,'pages','{\"oldRecord\":{\"slug\":\"\\/home\"},\"newRecord\":{\"slug\":\"\\/\"}}',0),(13,0,1566401509,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":null,\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 1\\r\\n}\",\"l10n_diffsource\":\"a:13:{s:7:\\\"doktype\\\";N;s:5:\\\"title\\\";N;s:4:\\\"slug\\\";N;s:14:\\\"backend_layout\\\";N;s:25:\\\"backend_layout_next_level\\\";N;s:6:\\\"module\\\";N;s:5:\\\"media\\\";N;s:17:\\\"tsconfig_includes\\\";N;s:8:\\\"TSconfig\\\";N;s:6:\\\"hidden\\\";N;s:8:\\\"editlock\\\";N;s:10:\\\"categories\\\";N;s:14:\\\"rowDescription\\\";N;}\"}}',0),(14,0,1566401700,1,'BE',1,0,3,'pages','{\"uid\":3,\"pid\":1,\"tstamp\":1566401700,\"crdate\":1566401700,\"cruser_id\":1,\"deleted\":0,\"hidden\":1,\"starttime\":0,\"endtime\":0,\"fe_group\":\"0\",\"sorting\":128,\"rowDescription\":null,\"editlock\":0,\"sys_language_uid\":0,\"l10n_parent\":0,\"l10n_source\":0,\"l10n_state\":null,\"t3_origuid\":0,\"l10n_diffsource\":\"\",\"t3ver_oid\":0,\"t3ver_id\":0,\"t3ver_label\":\"\",\"t3ver_wsid\":0,\"t3ver_state\":0,\"t3ver_stage\":0,\"t3ver_count\":0,\"t3ver_tstamp\":0,\"t3ver_move_id\":0,\"perms_userid\":1,\"perms_groupid\":0,\"perms_user\":31,\"perms_group\":27,\"perms_everybody\":0,\"title\":\"Plugin\",\"slug\":\"\\/plugin\",\"doktype\":1,\"TSconfig\":null,\"is_siteroot\":0,\"php_tree_stop\":0,\"url\":\"\",\"shortcut\":0,\"shortcut_mode\":0,\"subtitle\":\"\",\"layout\":0,\"target\":\"\",\"media\":0,\"lastUpdated\":0,\"keywords\":null,\"cache_timeout\":0,\"cache_tags\":\"\",\"newUntil\":0,\"description\":null,\"no_search\":0,\"SYS_LASTCHANGED\":0,\"abstract\":null,\"module\":\"\",\"extendToSubpages\":0,\"author\":\"\",\"author_email\":\"\",\"nav_title\":\"\",\"nav_hide\":0,\"content_from_pid\":0,\"mount_pid\":0,\"mount_pid_ol\":0,\"alias\":\"\",\"l18n_cfg\":0,\"fe_login_mode\":0,\"backend_layout\":\"\",\"backend_layout_next_level\":\"\",\"tsconfig_includes\":null,\"legacy_overlay_uid\":0,\"categories\":0}',0),(15,0,1566401714,3,'BE',1,0,1,'tt_content','{\"oldPageId\":1,\"newPageId\":3,\"oldData\":{\"header\":\"Example plugin\",\"pid\":1,\"event_pid\":1,\"t3ver_state\":0,\"_ORIG_pid\":null},\"newData\":{\"tstamp\":1566401714,\"pid\":3,\"sorting\":256}}',0),(16,0,1566401714,2,'BE',1,0,1,'tt_content','{\"oldRecord\":{\"l18n_diffsource\":\"a:15:{s:5:\\\"CType\\\";N;s:6:\\\"colPos\\\";N;s:6:\\\"header\\\";N;s:13:\\\"header_layout\\\";N;s:15:\\\"header_position\\\";N;s:4:\\\"date\\\";N;s:11:\\\"header_link\\\";N;s:9:\\\"subheader\\\";N;s:5:\\\"pages\\\";N;s:9:\\\"recursive\\\";N;s:6:\\\"hidden\\\";N;s:9:\\\"starttime\\\";N;s:7:\\\"endtime\\\";N;s:8:\\\"fe_group\\\";N;s:8:\\\"editlock\\\";N;}\"},\"newRecord\":{\"l18n_diffsource\":\"a:2:{s:6:\\\"colPos\\\";N;s:16:\\\"sys_language_uid\\\";N;}\"}}',0),(17,0,1566401718,2,'BE',1,0,3,'pages','{\"oldRecord\":{\"hidden\":1,\"l10n_diffsource\":\"\"},\"newRecord\":{\"hidden\":\"0\",\"l10n_diffsource\":\"a:1:{s:6:\\\"hidden\\\";N;}\"}}',0),(18,0,1566402622,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 1\\r\\n}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 2\\r\\n}\"}}',0),(19,0,1566402638,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0),(20,0,1566402668,2,'BE',1,0,2,'pages','{\"oldRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 2\\r\\n}\"},\"newRecord\":{\"TSconfig\":\"TCEMAIN {\\r\\n clearCacheCmd = 3\\r\\n}\"}}',0),(21,0,1566402676,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0),(22,0,1566402685,2,'BE',1,0,1,'tx_exampleextension_domain_model_address','{\"oldRecord\":{\"company_name\":\"TYPO3 Camp Rhein Ruhr\"},\"newRecord\":{\"company_name\":\"Codappix GmbH\"}}',0); +/*!40000 ALTER TABLE `sys_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_language` +-- + +DROP TABLE IF EXISTS `sys_language`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_language` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `title` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `flag` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `language_isocode` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `static_lang_isocode` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_language` +-- + +LOCK TABLES `sys_language` WRITE; +/*!40000 ALTER TABLE `sys_language` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_language` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_lockedrecords` +-- + +DROP TABLE IF EXISTS `sys_lockedrecords`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_lockedrecords` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `userid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `record_table` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `record_uid` int(11) NOT NULL DEFAULT '0', + `record_pid` int(11) NOT NULL DEFAULT '0', + `username` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `feuserid` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `event` (`userid`,`tstamp`) +) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_lockedrecords` +-- + +LOCK TABLES `sys_lockedrecords` WRITE; +/*!40000 ALTER TABLE `sys_lockedrecords` DISABLE KEYS */; +INSERT INTO `sys_lockedrecords` VALUES (43,1,1566402685,'tx_exampleextension_domain_model_address',1,0,'dsiepmann',0); +/*!40000 ALTER TABLE `sys_lockedrecords` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_log` +-- + +DROP TABLE IF EXISTS `sys_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_log` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `userid` int(10) unsigned NOT NULL DEFAULT '0', + `action` smallint(5) unsigned NOT NULL DEFAULT '0', + `recuid` int(10) unsigned NOT NULL DEFAULT '0', + `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `recpid` int(11) NOT NULL DEFAULT '0', + `error` smallint(5) unsigned NOT NULL DEFAULT '0', + `details` text COLLATE utf8mb4_unicode_ci, + `type` smallint(5) unsigned NOT NULL DEFAULT '0', + `details_nr` smallint(6) NOT NULL DEFAULT '0', + `IP` varchar(39) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `log_data` text COLLATE utf8mb4_unicode_ci, + `event_pid` int(11) NOT NULL DEFAULT '-1', + `workspace` int(11) NOT NULL DEFAULT '0', + `NEWid` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `request_id` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `time_micro` double NOT NULL DEFAULT '0', + `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `level` smallint(5) unsigned NOT NULL DEFAULT '0', + `message` text COLLATE utf8mb4_unicode_ci, + `data` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `event` (`userid`,`event_pid`), + KEY `recuidIdx` (`recuid`), + KEY `user_auth` (`type`,`action`,`tstamp`), + KEY `request` (`request_id`), + KEY `combined_1` (`tstamp`,`type`,`userid`), + KEY `parent` (`pid`) +) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_log` +-- + +LOCK TABLES `sys_log` WRITE; +/*!40000 ALTER TABLE `sys_log` DISABLE KEYS */; +INSERT INTO `sys_log` VALUES (1,0,1566399649,1,1,1,'tt_content',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW5d5d5c9cf073f726289402','',0,'',0,NULL,NULL),(2,0,1566399773,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:5:\"pages\";}',-1,0,'','',0,'',0,NULL,NULL),(3,0,1566399785,1,2,1,'sys_template',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:25:\"Main TypoScript Rendering\";i:1;s:14:\"sys_template:1\";s:7:\"history\";s:1:\"2\";}',1,0,'','',0,'',0,NULL,NULL),(4,0,1566399786,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(5,0,1566399828,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(6,0,1566399832,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:5:\"pages\";}',-1,0,'','',0,'',0,NULL,NULL),(7,0,1566399832,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(8,0,1566399881,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(9,0,1566400091,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1294587217: The page is not configured! [type=0][]. This means that there is no TypoScript object of type PAGE with typeNum=0 configured. | TYPO3\\CMS\\Core\\Error\\Http\\ServiceUnavailableException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php in line 2602. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(10,0,1566400156,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1540246570: No Content Object definition found at TypoScript object path \"tt_content.list.20.\" | TYPO3Fluid\\Fluid\\Core\\ViewHelper\\Exception thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php in line 160. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/?no_cache=1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(11,0,1566400263,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"3\";}',1,0,'','',0,'',0,NULL,NULL),(12,0,1566400364,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(13,0,1566400541,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"4\";}',1,0,'','',0,'',0,NULL,NULL),(14,0,1566400573,1,1,2,'pages',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW_1','',0,'',0,NULL,NULL),(15,0,1566400578,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:1:\"6\";}',2,0,'','',0,'',0,NULL,NULL),(16,0,1566400612,1,1,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";i:2;s:9:\"addresses\";i:3;i:2;}',2,0,'NEW5d5d60457cecc182582065','',0,'',0,NULL,NULL),(17,0,1566400897,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:1:\"8\";}',1,0,'','',0,'',0,NULL,NULL),(18,0,1566400998,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(19,0,1566401108,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: An exception occurred while executing \'SELECT `slug` FROM `tx_exampleextension_domain_model_address` WHERE `uid` = ?\' with params [1]:\n\nUnknown column \'slug\' in \'field list\' | Doctrine\\DBAL\\Exception\\InvalidFieldNameException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php in line 60. Requested URL: https://workshop-gitlab-acceptance.own.localhost/typo3/index.php?route=%%2Frecord%%2Fedit&token=--AnonymizedToken--&edit%%5Btx_exampleextension_domain_model_address%%5D%%5B1%%5D=edit&returnUrl=%%2Ftypo3%%2Findex.php%%3Froute%%3D%%252Fweb%%252Flist%%252F%%26token%%3Dd2ec9d5beabd65abb4c39034277c19832955f965%%26id%%3D2%%26table%%3D%%26imagemode%%3D1',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(20,0,1566401145,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:1:\"9\";}',2,0,'','',0,'',0,NULL,NULL),(21,0,1566401161,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"10\";}',2,0,'','',0,'',0,NULL,NULL),(22,0,1566401244,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(23,0,1566401255,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(24,0,1566401292,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(25,0,1566401298,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(26,0,1566401308,1,2,1,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:4:\"Home\";i:1;s:7:\"pages:1\";s:7:\"history\";s:2:\"11\";}',1,0,'','',0,'',0,NULL,NULL),(27,0,1566401310,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(28,0,1566401315,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/home/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(29,0,1566401360,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(30,0,1566401369,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/home/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(31,0,1566401415,1,2,1,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:4:\"Home\";i:1;s:7:\"pages:1\";s:7:\"history\";s:2:\"12\";}',1,0,'','',0,'',0,NULL,NULL),(32,0,1566401421,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(33,0,1566401454,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(34,0,1566401509,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"13\";}',2,0,'','',0,'',0,NULL,NULL),(35,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(36,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(37,0,1566401642,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(38,0,1566401700,1,1,3,'pages',0,0,'Record \'%s\' (%s) was inserted on page \'%s\' (%s)',1,10,'::1','a:4:{i:0;s:6:\"Plugin\";i:1;s:7:\"pages:3\";i:2;s:4:\"Home\";i:3;i:1;}',1,0,'NEW_1','',0,'',0,NULL,NULL),(39,0,1566401714,1,4,1,'tt_content',0,0,'Moved record \'%s\' (%s) to page \'%s\' (%s)',1,2,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:6:\"Plugin\";i:3;i:3;}',1,0,'','',0,'',0,NULL,NULL),(40,0,1566401714,1,4,1,'tt_content',0,0,'Moved record \'%s\' (%s) from page \'%s\' (%s)',1,3,'::1','a:4:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";i:2;s:4:\"Home\";i:3;i:1;}',3,0,'','',0,'',0,NULL,NULL),(41,0,1566401714,1,2,1,'tt_content',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:14:\"Example plugin\";i:1;s:12:\"tt_content:1\";s:7:\"history\";s:2:\"16\";}',3,0,'','',0,'',0,NULL,NULL),(42,0,1566401718,1,2,3,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:6:\"Plugin\";i:1;s:7:\"pages:3\";s:7:\"history\";s:2:\"17\";}',3,0,'','',0,'',0,NULL,NULL),(43,0,1566401734,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(44,0,1566401754,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(45,0,1566401757,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/en/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(46,0,1566401765,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(47,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(48,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(49,0,1566401770,0,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: http://127.0.0.1:8080/plugin',5,0,'127.0.0.1','',-1,0,'','',0,'',0,NULL,NULL),(50,0,1566401930,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(51,0,1566402008,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(52,0,1566402011,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(53,0,1566402095,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(54,0,1566402114,1,0,0,'',0,2,'Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1518472189: The requested page does not exist | TYPO3\\CMS\\Core\\Error\\Http\\PageNotFoundException thrown in file /home/daniels/Projects/own/workshop-gitlab-acceptance/app/typo3/sysext/frontend/Classes/Controller/ErrorController.php in line 80. Requested URL: https://workshop-gitlab-acceptance.own.localhost/plugin/edit/codappix-gmbh',5,0,'::1','',-1,0,'','',0,'',0,NULL,NULL),(55,0,1566402119,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(56,0,1566402316,2,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'','a:2:{i:0;s:5:\"_cli_\";i:1;s:3:\"all\";}',-1,0,'','',0,'',0,NULL,NULL),(57,0,1566402622,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"18\";}',2,0,'','',0,'',0,NULL,NULL),(58,0,1566402622,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"1\";}',-1,0,'','',0,'',0,NULL,NULL),(59,0,1566402638,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"19\";}',2,0,'','',0,'',0,NULL,NULL),(60,0,1566402638,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"2\";}',-1,0,'','',0,'',0,NULL,NULL),(61,0,1566402668,1,2,2,'pages',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:9:\"addresses\";i:1;s:7:\"pages:2\";s:7:\"history\";s:2:\"20\";}',2,0,'','',0,'',0,NULL,NULL),(62,0,1566402668,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"2\";}',-1,0,'','',0,'',0,NULL,NULL),(63,0,1566402676,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"21\";}',2,0,'','',0,'',0,NULL,NULL),(64,0,1566402676,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"3\";}',-1,0,'','',0,'',0,NULL,NULL),(65,0,1566402685,1,2,1,'tx_exampleextension_domain_model_address',0,0,'Record \'%s\' (%s) was updated. (Online).',1,10,'::1','a:3:{i:0;s:13:\"Codappix GmbH\";i:1;s:42:\"tx_exampleextension_domain_model_address:1\";s:7:\"history\";s:2:\"22\";}',2,0,'','',0,'',0,NULL,NULL),(66,0,1566402685,1,1,0,'',0,0,'User %s has cleared the cache (cacheCmd=%s)',3,0,'::1','a:2:{i:0;s:9:\"dsiepmann\";i:1;s:1:\"3\";}',-1,0,'','',0,'',0,NULL,NULL); +/*!40000 ALTER TABLE `sys_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_news` +-- + +DROP TABLE IF EXISTS `sys_news`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_news` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `content` mediumtext COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_news` +-- + +LOCK TABLES `sys_news` WRITE; +/*!40000 ALTER TABLE `sys_news` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_news` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_refindex` +-- + +DROP TABLE IF EXISTS `sys_refindex`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_refindex` ( + `hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tablename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `recuid` int(11) NOT NULL DEFAULT '0', + `field` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `flexpointer` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `softref_key` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `softref_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sorting` int(11) NOT NULL DEFAULT '0', + `deleted` smallint(6) NOT NULL DEFAULT '0', + `workspace` int(11) NOT NULL DEFAULT '0', + `ref_table` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ref_uid` int(11) NOT NULL DEFAULT '0', + `ref_string` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`hash`), + KEY `lookup_rec` (`tablename`(100),`recuid`), + KEY `lookup_uid` (`ref_table`(100),`ref_uid`), + KEY `lookup_string` (`ref_string`(191)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_refindex` +-- + +LOCK TABLES `sys_refindex` WRITE; +/*!40000 ALTER TABLE `sys_refindex` DISABLE KEYS */; +INSERT INTO `sys_refindex` VALUES ('cca7ab90d092f4ead7e8b51a7a476f92','tt_content',1,'pages','','','',0,0,0,'pages',2,''); +/*!40000 ALTER TABLE `sys_refindex` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_registry` +-- + +DROP TABLE IF EXISTS `sys_registry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_registry` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `entry_namespace` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `entry_key` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `entry_value` mediumblob, + PRIMARY KEY (`uid`), + UNIQUE KEY `entry_identifier` (`entry_namespace`,`entry_key`) +) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_registry` +-- + +LOCK TABLES `sys_registry` WRITE; +/*!40000 ALTER TABLE `sys_registry` DISABLE KEYS */; +INSERT INTO `sys_registry` VALUES (1,'installUpdate','TYPO3\\CMS\\Install\\Updates\\ExtensionManagerTables',_binary 'i:1;'),(2,'installUpdate','TYPO3\\CMS\\Install\\Updates\\WizardDoneToRegistry',_binary 'i:1;'),(3,'installUpdate','TYPO3\\CMS\\Install\\Updates\\StartModuleUpdate',_binary 'i:1;'),(4,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FrontendUserImageUpdateWizard',_binary 'i:1;'),(5,'installUpdate','TYPO3\\CMS\\Install\\Updates\\DatabaseRowsUpdateWizard',_binary 'i:1;'),(6,'installUpdate','TYPO3\\CMS\\Install\\Updates\\CommandLineBackendUserRemovalUpdate',_binary 'i:1;'),(7,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FillTranslationSourceField',_binary 'i:1;'),(8,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SectionFrameToFrameClassUpdate',_binary 'i:1;'),(9,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SplitMenusUpdate',_binary 'i:1;'),(10,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BulletContentElementUpdate',_binary 'i:1;'),(11,'installUpdate','TYPO3\\CMS\\Install\\Updates\\UploadContentElementUpdate',_binary 'i:1;'),(12,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateFscStaticTemplateUpdate',_binary 'i:1;'),(13,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FileReferenceUpdate',_binary 'i:1;'),(14,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateFeSessionDataUpdate',_binary 'i:1;'),(15,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Compatibility7ExtractionUpdate',_binary 'i:1;'),(16,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FormLegacyExtractionUpdate',_binary 'i:1;'),(17,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RteHtmlAreaExtractionUpdate',_binary 'i:1;'),(18,'installUpdate','TYPO3\\CMS\\Install\\Updates\\LanguageSortingUpdate',_binary 'i:1;'),(19,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Typo3DbExtractionUpdate',_binary 'i:1;'),(20,'installUpdate','TYPO3\\CMS\\Install\\Updates\\FuncExtractionUpdate',_binary 'i:1;'),(21,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigrateUrlTypesInPagesUpdate',_binary 'i:1;'),(22,'installUpdate','TYPO3\\CMS\\Install\\Updates\\SeparateSysHistoryFromSysLogUpdate',_binary 'i:1;'),(23,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RedirectExtractionUpdate',_binary 'i:1;'),(24,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BackendUserStartModuleUpdate',_binary 'i:1;'),(25,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigratePagesLanguageOverlayUpdate',_binary 'i:1;'),(26,'installUpdate','TYPO3\\CMS\\Install\\Updates\\MigratePagesLanguageOverlayBeGroupsAccessRights',_binary 'i:1;'),(27,'installUpdate','TYPO3\\CMS\\Install\\Updates\\BackendLayoutIconUpdateWizard',_binary 'i:1;'),(28,'installUpdate','TYPO3\\CMS\\Install\\Updates\\RedirectsExtensionUpdate',_binary 'i:1;'),(29,'installUpdate','TYPO3\\CMS\\Install\\Updates\\AdminPanelInstall',_binary 'i:1;'),(30,'installUpdate','TYPO3\\CMS\\Install\\Updates\\PopulatePageSlugs',_binary 'i:1;'),(31,'installUpdate','TYPO3\\CMS\\Install\\Updates\\Argon2iPasswordHashes',_binary 'i:1;'),(32,'extensionDataImport','typo3/sysext/core/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(33,'extensionDataImport','typo3/sysext/scheduler/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(34,'extensionDataImport','typo3/sysext/extbase/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(35,'extensionDataImport','typo3/sysext/fluid/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(36,'extensionDataImport','typo3/sysext/frontend/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(37,'extensionDataImport','typo3/sysext/fluid_styled_content/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(38,'extensionDataImport','typo3/sysext/install/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(39,'extensionDataImport','typo3/sysext/recordlist/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(40,'extensionDataImport','typo3/sysext/backend/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(41,'extensionDataImport','typo3/sysext/setup/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(42,'extensionDataImport','typo3/sysext/rte_ckeditor/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(43,'extensionDataImport','typo3/sysext/about/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(44,'extensionDataImport','typo3/sysext/belog/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(45,'extensionDataImport','typo3/sysext/beuser/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(46,'extensionDataImport','typo3/sysext/extensionmanager/ext_tables_static+adt.sql',_binary 's:32:\"9beb0be917f14fdde2c9cb940a47d38e\";'),(47,'extensionDataImport','typo3/sysext/filelist/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(48,'extensionDataImport','typo3/sysext/info/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(49,'extensionDataImport','typo3/sysext/lowlevel/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(50,'extensionDataImport','typo3/sysext/t3editor/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(51,'extensionDataImport','typo3/sysext/tstemplate/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(52,'extensionDataImport','typo3conf/ext/example_extension/ext_tables_static+adt.sql',_binary 's:0:\"\";'),(53,'core','formProtectionSessionToken:1',_binary 's:64:\"a4b6f8511b0ee8c977cc74899405f49ca1f63a928bc85b9ed59a81dc7be389cb\";'); +/*!40000 ALTER TABLE `sys_registry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_template` +-- + +DROP TABLE IF EXISTS `sys_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sys_template` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sitetitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `root` smallint(5) unsigned NOT NULL DEFAULT '0', + `clear` smallint(5) unsigned NOT NULL DEFAULT '0', + `include_static_file` text COLLATE utf8mb4_unicode_ci, + `constants` text COLLATE utf8mb4_unicode_ci, + `config` text COLLATE utf8mb4_unicode_ci, + `nextLevel` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `basedOn` tinytext COLLATE utf8mb4_unicode_ci, + `includeStaticAfterBasedOn` smallint(5) unsigned NOT NULL DEFAULT '0', + `static_file_mode` smallint(5) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `roottemplate` (`deleted`,`hidden`,`root`), + KEY `parent` (`pid`,`deleted`,`hidden`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_template` +-- + +LOCK TABLES `sys_template` WRITE; +/*!40000 ALTER TABLE `sys_template` DISABLE KEYS */; +INSERT INTO `sys_template` VALUES (1,1,1566399785,1566399570,1,0,0,0,0,0,'This is an Empty Site Package TypoScript template.\r\n\r\nFor each website you need a TypoScript template on the main page of your website (on the top level). For better maintenance all TypoScript should be extracted into external files via @import \'EXT:site_myproject/Configuration/TypoScript/setup.typoscript\'',0,0,0,'',0,0,0,0,0,0,'Main TypoScript Rendering','New TYPO3 Console site',1,1,'','','','',NULL,0,0); +/*!40000 ALTER TABLE `sys_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tt_content` +-- + +DROP TABLE IF EXISTS `tt_content`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tt_content` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `rowDescription` text COLLATE utf8mb4_unicode_ci, + `pid` int(11) NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `fe_group` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `editlock` smallint(5) unsigned NOT NULL DEFAULT '0', + `sys_language_uid` int(11) NOT NULL DEFAULT '0', + `l18n_parent` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_source` int(10) unsigned NOT NULL DEFAULT '0', + `l10n_state` text COLLATE utf8mb4_unicode_ci, + `t3_origuid` int(10) unsigned NOT NULL DEFAULT '0', + `l18n_diffsource` mediumblob, + `t3ver_oid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_id` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `t3ver_wsid` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_state` smallint(6) NOT NULL DEFAULT '0', + `t3ver_stage` int(11) NOT NULL DEFAULT '0', + `t3ver_count` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `t3ver_move_id` int(10) unsigned NOT NULL DEFAULT '0', + `CType` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `header` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `header_position` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `bodytext` mediumtext COLLATE utf8mb4_unicode_ci, + `bullets_type` smallint(5) unsigned NOT NULL DEFAULT '0', + `uploads_description` smallint(5) unsigned NOT NULL DEFAULT '0', + `uploads_type` smallint(5) unsigned NOT NULL DEFAULT '0', + `assets` int(10) unsigned NOT NULL DEFAULT '0', + `image` int(10) unsigned NOT NULL DEFAULT '0', + `imagewidth` int(10) unsigned NOT NULL DEFAULT '0', + `imageorient` smallint(5) unsigned NOT NULL DEFAULT '0', + `imagecols` smallint(5) unsigned NOT NULL DEFAULT '0', + `imageborder` smallint(5) unsigned NOT NULL DEFAULT '0', + `media` int(10) unsigned NOT NULL DEFAULT '0', + `layout` int(10) unsigned NOT NULL DEFAULT '0', + `frame_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', + `cols` int(10) unsigned NOT NULL DEFAULT '0', + `spaceBefore` smallint(5) unsigned NOT NULL DEFAULT '0', + `spaceAfter` smallint(5) unsigned NOT NULL DEFAULT '0', + `space_before_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `space_after_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `records` text COLLATE utf8mb4_unicode_ci, + `pages` text COLLATE utf8mb4_unicode_ci, + `colPos` int(10) unsigned NOT NULL DEFAULT '0', + `subheader` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `header_link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `image_zoom` smallint(5) unsigned NOT NULL DEFAULT '0', + `header_layout` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', + `list_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sectionIndex` smallint(5) unsigned NOT NULL DEFAULT '0', + `linkToTop` smallint(5) unsigned NOT NULL DEFAULT '0', + `file_collections` text COLLATE utf8mb4_unicode_ci, + `filelink_size` smallint(5) unsigned NOT NULL DEFAULT '0', + `filelink_sorting` varchar(17) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `filelink_sorting_direction` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `target` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `date` int(10) unsigned NOT NULL DEFAULT '0', + `recursive` smallint(5) unsigned NOT NULL DEFAULT '0', + `imageheight` int(10) unsigned NOT NULL DEFAULT '0', + `pi_flexform` mediumtext COLLATE utf8mb4_unicode_ci, + `accessibility_title` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `accessibility_bypass` smallint(5) unsigned NOT NULL DEFAULT '0', + `accessibility_bypass_text` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `selected_categories` text COLLATE utf8mb4_unicode_ci, + `category_field` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `table_class` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `table_caption` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `table_delimiter` smallint(5) unsigned NOT NULL DEFAULT '0', + `table_enclosure` smallint(5) unsigned NOT NULL DEFAULT '0', + `table_header_position` smallint(5) unsigned NOT NULL DEFAULT '0', + `table_tfoot` smallint(5) unsigned NOT NULL DEFAULT '0', + `categories` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`sorting`), + KEY `t3ver_oid` (`t3ver_oid`,`t3ver_wsid`), + KEY `language` (`l18n_parent`,`sys_language_uid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tt_content` +-- + +LOCK TABLES `tt_content` WRITE; +/*!40000 ALTER TABLE `tt_content` DISABLE KEYS */; +INSERT INTO `tt_content` VALUES (1,'',3,1566401714,1566399649,1,0,0,0,0,'',256,0,0,0,0,NULL,0,_binary 'a:2:{s:6:\"colPos\";N;s:16:\"sys_language_uid\";N;}',0,0,'',0,0,0,0,0,0,'exampleextension_address','Example plugin','',NULL,0,0,0,0,0,0,0,2,0,0,0,'default',0,0,0,'','',NULL,'2',0,'','',0,'0','',1,0,NULL,0,'','','',0,0,0,'\n\n \n \n \n \n \n \n \n \n \n','',0,'',NULL,'','',NULL,124,0,0,0,0); +/*!40000 ALTER TABLE `tt_content` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_exampleextension_domain_model_address` +-- + +DROP TABLE IF EXISTS `tx_exampleextension_domain_model_address`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_exampleextension_domain_model_address` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `starttime` int(10) unsigned NOT NULL DEFAULT '0', + `endtime` int(10) unsigned NOT NULL DEFAULT '0', + `company_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `house_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `slug` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_exampleextension_domain_model_address` +-- + +LOCK TABLES `tx_exampleextension_domain_model_address` WRITE; +/*!40000 ALTER TABLE `tx_exampleextension_domain_model_address` DISABLE KEYS */; +INSERT INTO `tx_exampleextension_domain_model_address` VALUES (1,2,1566402685,1566400612,1,0,0,0,0,'Codappix GmbH','Wallstraße','14','41061','Mönchengladbach','Germany','codappix-gmbh'); +/*!40000 ALTER TABLE `tx_exampleextension_domain_model_address` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_extensionmanager_domain_model_extension` +-- + +DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_extension`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_extensionmanager_domain_model_extension` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `extension_key` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `repository` int(10) unsigned NOT NULL DEFAULT '1', + `version` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `alldownloadcounter` int(10) unsigned NOT NULL DEFAULT '0', + `downloadcounter` int(10) unsigned NOT NULL DEFAULT '0', + `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` mediumtext COLLATE utf8mb4_unicode_ci, + `state` int(11) NOT NULL DEFAULT '0', + `review_state` int(11) NOT NULL DEFAULT '0', + `category` int(11) NOT NULL DEFAULT '0', + `last_updated` int(10) unsigned NOT NULL DEFAULT '0', + `serialized_dependencies` mediumtext COLLATE utf8mb4_unicode_ci, + `author_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `author_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ownerusername` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `md5hash` varchar(35) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `update_comment` mediumtext COLLATE utf8mb4_unicode_ci, + `authorcompany` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `integer_version` int(11) NOT NULL DEFAULT '0', + `current_version` int(11) NOT NULL DEFAULT '0', + `lastreviewedversion` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + UNIQUE KEY `versionextrepo` (`extension_key`,`version`,`repository`), + KEY `index_extrepo` (`extension_key`,`repository`), + KEY `index_versionrepo` (`integer_version`,`repository`,`extension_key`), + KEY `index_currentversions` (`current_version`,`review_state`), + KEY `parent` (`pid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_extensionmanager_domain_model_extension` +-- + +LOCK TABLES `tx_extensionmanager_domain_model_extension` WRITE; +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_extension` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_extensionmanager_domain_model_repository` +-- + +DROP TABLE IF EXISTS `tx_extensionmanager_domain_model_repository`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_extensionmanager_domain_model_repository` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `title` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` mediumtext COLLATE utf8mb4_unicode_ci, + `wsdl_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mirror_list_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `last_update` int(10) unsigned NOT NULL DEFAULT '0', + `extension_count` int(11) NOT NULL DEFAULT '0', + `pid` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `parent` (`pid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_extensionmanager_domain_model_repository` +-- + +LOCK TABLES `tx_extensionmanager_domain_model_repository` WRITE; +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_repository` DISABLE KEYS */; +INSERT INTO `tx_extensionmanager_domain_model_repository` VALUES (1,'TYPO3.org Main Repository','Main repository on typo3.org. This repository has some mirrors configured which are available with the mirror url.','https://typo3.org/wsdl/tx_ter_wsdl.php','https://repositories.typo3.org/mirrors.xml.gz',1346191200,0,0); +/*!40000 ALTER TABLE `tx_extensionmanager_domain_model_repository` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_scheduler_task` +-- + +DROP TABLE IF EXISTS `tx_scheduler_task`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_scheduler_task` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `disable` smallint(5) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `description` text COLLATE utf8mb4_unicode_ci, + `nextexecution` int(10) unsigned NOT NULL DEFAULT '0', + `lastexecution_time` int(10) unsigned NOT NULL DEFAULT '0', + `lastexecution_failure` text COLLATE utf8mb4_unicode_ci, + `lastexecution_context` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `serialized_task_object` mediumblob, + `serialized_executions` mediumblob, + `task_group` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`uid`), + KEY `index_nextexecution` (`nextexecution`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_scheduler_task` +-- + +LOCK TABLES `tx_scheduler_task` WRITE; +/*!40000 ALTER TABLE `tx_scheduler_task` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_scheduler_task` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tx_scheduler_task_group` +-- + +DROP TABLE IF EXISTS `tx_scheduler_task_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tx_scheduler_task_group` ( + `uid` int(10) unsigned NOT NULL AUTO_INCREMENT, + `pid` int(10) unsigned NOT NULL DEFAULT '0', + `tstamp` int(10) unsigned NOT NULL DEFAULT '0', + `crdate` int(10) unsigned NOT NULL DEFAULT '0', + `cruser_id` int(10) unsigned NOT NULL DEFAULT '0', + `deleted` smallint(5) unsigned NOT NULL DEFAULT '0', + `hidden` smallint(5) unsigned NOT NULL DEFAULT '0', + `sorting` int(11) NOT NULL DEFAULT '0', + `groupName` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` text COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`uid`), + KEY `parent` (`pid`,`deleted`,`hidden`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tx_scheduler_task_group` +-- + +LOCK TABLES `tx_scheduler_task_group` WRITE; +/*!40000 ALTER TABLE `tx_scheduler_task_group` DISABLE KEYS */; +/*!40000 ALTER TABLE `tx_scheduler_task_group` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2019-08-21 17:57:58 diff --git a/tests/_envs/gitlab-ci.yml b/tests/_envs/gitlab-ci.yml new file mode 100644 index 0000000..3d4219c --- /dev/null +++ b/tests/_envs/gitlab-ci.yml @@ -0,0 +1,9 @@ +modules: + config: + WebDriver: + url: http://%TESTING_DOMAIN%/ + host: selenium__standalone-chrome + Db: + dsn: 'mysql:host=mysql;dbname=dev' + user: 'dev' + password: 'dev' diff --git a/tests/_envs/local.yml b/tests/_envs/local.yml new file mode 100644 index 0000000..d5dbc2a --- /dev/null +++ b/tests/_envs/local.yml @@ -0,0 +1,8 @@ +modules: + config: + WebDriver: + url: http://localhost:8080/ + Db: + dsn: 'mysql:host=localhost;dbname=own_workshopgitlabacceptance_testing' + user: 'dev' + password: 'dev' diff --git a/tests/_support/AcceptanceTester.php b/tests/_support/AcceptanceTester.php index 4c7dcbb..95c00ec 100644 --- a/tests/_support/AcceptanceTester.php +++ b/tests/_support/AcceptanceTester.php @@ -12,7 +12,7 @@ * @method void am($role) * @method void lookForwardTo($achieveValue) * @method void comment($description) - * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL) + * @method void pause() * * @SuppressWarnings(PHPMD) */ diff --git a/tests/acceptance.suite.yml b/tests/acceptance.suite.yml deleted file mode 100644 index b2de2b5..0000000 --- a/tests/acceptance.suite.yml +++ /dev/null @@ -1,18 +0,0 @@ -# Codeception Test Suite Configuration -# -# Suite for acceptance tests. -# Perform tests in browser using the WebDriver or PhpBrowser. -# If you need both WebDriver and PHPBrowser tests - create a separate suite. - -actor: AcceptanceTester -modules: - enabled: - - - PhpBrowser: - url: http://127.0.0.1:8080 - - - \Helper\Acceptance - -extensions: - enabled: - - Codappix\Tests\Acceptance\Typo3Environment diff --git a/tests/acceptance/fixtures/full.xml b/tests/acceptance/fixtures/full.xml deleted file mode 100644 index 7bc3529..0000000 --- a/tests/acceptance/fixtures/full.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - 1 - 0 - Plugin page - 1 - 0 - 15 - /plugin - - - - 1 - 1 - Main TypoScript Rendering - New TYPO3 site - 0 - 0 - 0 - 1 - 1 - EXT:fluid_styled_content/Configuration/TypoScript/,EXT:fluid_styled_content/Configuration/TypoScript/Styling/ - - - - 0 - 0 - 0 - - - - 1 - 1 - 0 - 256 - list - 0 - 1 - exampleextension_address -
Address Plugin
-
- - - 1 - 1 - Codappix GmbH - Hövelstraße - 32 - 41238 - Mönchengladbach - Deutschland - -