├── .config └── ssh_config ├── .editorconfig ├── .gitignore ├── Dockerfile.development ├── PROJECTDETAILS.md ├── app ├── .editorconfig ├── .env ├── .gitignore ├── .patches │ └── .gitkeep ├── .php_cs ├── .surf │ └── src │ │ └── Task │ │ └── Transfer │ │ └── LocalRsyncTask.php ├── Build │ ├── ChangeHeaderComment.php │ ├── ChangeVendor.sh │ ├── InstallDefaultDatabaseRecords.sh │ └── Patches │ │ └── Typo3 │ │ └── Core │ │ └── 58851_15.diff ├── composer.json ├── composer.list ├── composer.patches.json ├── config │ ├── .htaccess │ ├── AdditionalConfiguration.php │ ├── AdditionalConfiguration_Development.php │ ├── AdditionalConfiguration_Development_Docker.php │ ├── AdditionalConfiguration_Development_Mamp.php │ ├── AdditionalConfiguration_Production.php │ ├── AdditionalConfiguration_Production_Dev.php │ ├── AdditionalFactoryConfiguration.php │ └── sites │ │ └── site-main │ │ └── config.yaml └── packages │ ├── theme │ ├── Build │ │ ├── .htaccess │ │ ├── gulpfile.js │ │ └── package.json │ ├── Classes │ │ ├── Backend │ │ │ ├── Enrichment │ │ │ │ └── Badge │ │ │ │ │ └── Configuration.php │ │ │ └── FormDataProvider │ │ │ │ ├── ColorValuePickerItemDataProvider.php │ │ │ │ ├── Div.php │ │ │ │ └── General.php │ │ ├── Configuration │ │ │ └── ExtensionConfiguration.php │ │ ├── DataProcessing │ │ │ └── ConstantsProcessor.php │ │ ├── Error │ │ │ └── ContentExceptionHandler.php │ │ ├── Hooks │ │ │ ├── Backend │ │ │ │ ├── PageLayoutView.php │ │ │ │ ├── PageLayoutViewEnrichment.php │ │ │ │ └── PageLayoutViewEnrichmentFooter.php │ │ │ └── Frontend │ │ │ │ ├── ContentPostProc.php │ │ │ │ └── TypoScriptHook.php │ │ ├── Utility │ │ │ ├── ArrayTool.php │ │ │ └── Tca.php │ │ └── ViewHelpers │ │ │ ├── Backend │ │ │ ├── ContentEditLinkUrlViewHelper.php │ │ │ └── ContentEditLinkViewHelper.php │ │ │ ├── Context │ │ │ ├── GetViewHelper.php │ │ │ └── ProductionLiveViewHelper.php │ │ │ ├── Debug │ │ │ └── TypoScriptViewHelper.php │ │ │ ├── FalViewHelper.php │ │ │ ├── FeatureToggleViewHelper.php │ │ │ ├── FileCollectionViewHelper.php │ │ │ ├── Format │ │ │ ├── CleanupStringViewHelper.php │ │ │ ├── DomainNameViewHelper.php │ │ │ ├── EscapeViewHelper.php │ │ │ ├── PhoneViewHelper.php │ │ │ ├── RemoveEmptyParagraphViewHelper.php │ │ │ ├── SubheaderViewHelper.php │ │ │ ├── TrimViewHelper.php │ │ │ └── YoutubeVideoIdViewHelper.php │ │ │ ├── IsImageViewHelper.php │ │ │ ├── Iterator │ │ │ └── ExplodeViewHelper.php │ │ │ ├── Link │ │ │ └── PhoneViewHelper.php │ │ │ ├── Math │ │ │ ├── SimpleMultiplyViewHelper.php │ │ │ └── SimpleSumViewHelper.php │ │ │ ├── Media │ │ │ ├── Image │ │ │ │ ├── OrientationViewHelper.php │ │ │ │ └── VideoPreviewViewHelper.php │ │ │ └── YoutubeViewHelper.php │ │ │ ├── OrViewHelper.php │ │ │ ├── Render │ │ │ ├── GroupedFalViewHelper.php │ │ │ └── InlineSvgViewHelper.php │ │ │ └── TypoScript │ │ │ └── ConstantsViewHelper.php │ ├── Configuration │ │ ├── .htaccess │ │ ├── ImageManipulation │ │ │ └── CropVariants.yaml │ │ ├── RTE │ │ │ ├── Additional │ │ │ │ ├── DisableTables.yaml │ │ │ │ └── ExternalPlugins.yaml │ │ │ ├── Default.yaml │ │ │ ├── DefaultNoTables.yaml │ │ │ ├── Minimal.yaml │ │ │ ├── MinimalWithLinks.yaml │ │ │ └── RTE-Links.md │ │ ├── SiteConfiguration │ │ │ └── Overrides │ │ │ │ └── sites.php │ │ ├── TCA │ │ │ ├── Overrides │ │ │ │ ├── pages.php │ │ │ │ ├── sys_file_collection_images.php │ │ │ │ ├── sys_file_reference.php │ │ │ │ ├── tt_content.php │ │ │ │ ├── tt_content_collapsible_text.php │ │ │ │ ├── tt_content_download_box.php │ │ │ │ ├── tt_content_facts_figures.php │ │ │ │ ├── tt_content_inheritance_stop.php │ │ │ │ ├── tt_content_lead_text.php │ │ │ │ ├── tt_content_logo_list.php │ │ │ │ ├── tt_content_textimage.php │ │ │ │ ├── tt_content_youtube.php │ │ │ │ └── tx_news_domain_model_news.php │ │ │ └── tx_theme_facts_figures.php │ │ ├── TsConfig │ │ │ ├── Page │ │ │ │ ├── General │ │ │ │ │ ├── BackendLayouts │ │ │ │ │ │ ├── ColPos-Overview.md │ │ │ │ │ │ ├── Default.tsconfig.typoscript │ │ │ │ │ │ └── Homepage.tsconfig.typoscript │ │ │ │ │ ├── BackendWebView.tsconfig.typoscript │ │ │ │ │ ├── Basic.tsconfig.typoscript │ │ │ │ │ ├── ClearCaching.tsconfig.typoscript │ │ │ │ │ ├── DisableRecordTypes.tsconfig.typoscript │ │ │ │ │ ├── Language.tsconfig.typoscript │ │ │ │ │ ├── Linkhandler.tsconfig.typoscript │ │ │ │ │ ├── Linkvalidator.tsconfig.typoscript │ │ │ │ │ ├── NewContentElementWizard │ │ │ │ │ │ ├── Base │ │ │ │ │ │ │ ├── NewContentElementWizard.tsconfig.typoscript │ │ │ │ │ │ │ └── NewContentElementWizardSorting.tsconfig.typoscript │ │ │ │ │ │ ├── CollapsibleText.tsconfig.typoscript │ │ │ │ │ │ ├── DownloadBox.tsconfig.typoscript │ │ │ │ │ │ ├── FactsFigures.tsconfig.typoscript │ │ │ │ │ │ ├── InheritanceStop.tsconfig.typoscript │ │ │ │ │ │ ├── LeadText.tsconfig.typoscript │ │ │ │ │ │ ├── LogoList.tsconfig.typoscript │ │ │ │ │ │ ├── Textimage.tsconfig.typoscript │ │ │ │ │ │ └── Youtube.tsconfig.typoscript │ │ │ │ │ ├── PageModule │ │ │ │ │ │ └── SimpleBackendPreviews │ │ │ │ │ │ │ ├── CollapsibleText.tsconfig.typoscript │ │ │ │ │ │ │ ├── Div.tsconfig.typoscript │ │ │ │ │ │ │ ├── DownloadBox.tsconfig.typoscript │ │ │ │ │ │ │ ├── FactsFigures.tsconfig.typoscript │ │ │ │ │ │ │ ├── InheritanceStop.tsconfig.typoscript │ │ │ │ │ │ │ ├── LeadText.tsconfig.typoscript │ │ │ │ │ │ │ ├── LogoList.tsconfig.typoscript │ │ │ │ │ │ │ ├── Textimage.tsconfig.typoscript │ │ │ │ │ │ │ └── Youtube.tsconfig.typoscript │ │ │ │ │ ├── PagetreeOverview.tsconfig.typoscript │ │ │ │ │ ├── Permissions.tsconfig.typoscript │ │ │ │ │ ├── RTE │ │ │ │ │ │ └── 00-DefaultConfiguration.tsconfig.typoscript │ │ │ │ │ ├── Rte.tsconfig.typoscript │ │ │ │ │ ├── Tcadefaults │ │ │ │ │ │ ├── BeGroups.tsconfig.typoscript │ │ │ │ │ │ ├── BeUsers.tsconfig.typoscript │ │ │ │ │ │ ├── Pages.tsconfig.typoscript │ │ │ │ │ │ └── TtContent.tsconfig.typoscript │ │ │ │ │ ├── Tceform │ │ │ │ │ │ ├── Pages.tsconfig.typoscript │ │ │ │ │ │ ├── SysFileMetadata.tsconfig.typoscript │ │ │ │ │ │ ├── SysFileReference.tsconfig.typoscript │ │ │ │ │ │ └── TtContent.tsconfig.typoscript │ │ │ │ │ ├── Tcemain │ │ │ │ │ │ └── CopyBehaviours.tsconfig.typoscript │ │ │ │ │ └── TxNews.tsconfig.typoscript │ │ │ │ └── Specific │ │ │ │ │ ├── ClearCachePages.tsconfig.typoscript │ │ │ │ │ ├── ClearCacheRegistrationSpecific.tsconfig.typoscript │ │ │ │ │ ├── DisableCopyButtons.tsconfig.typoscript │ │ │ │ │ ├── DisableTranslateButtons.tsconfig.typoscript │ │ │ │ │ ├── Extension │ │ │ │ │ ├── News │ │ │ │ │ │ ├── ClearCacheNews.tsconfig.typoscript │ │ │ │ │ │ ├── NewDefaultTypeSysFolderNews.tsconfig.typoscript │ │ │ │ │ │ ├── NewOnlyNews.tsconfig.typoscript │ │ │ │ │ │ ├── NewsLimitCategories.tsconfig.typoscript │ │ │ │ │ │ ├── NewsLimitMedia.tsconfig.typoscript │ │ │ │ │ │ ├── NewsMediaDefaultShowinpreviewOn.tsconfig.typoscript │ │ │ │ │ │ └── PreviewRecordsNewsDetailDefault.tsconfig.typoscript │ │ │ │ │ └── Powermail │ │ │ │ │ │ └── NewOnlyPowermailRecords.tsconfig.typoscript │ │ │ │ │ ├── HideTableTtContent.tsconfig.typoscript │ │ │ │ │ ├── NewDefaultPageActive.tsconfig.typoscript │ │ │ │ │ ├── NewOnlyFeUsers.tsconfig.typoscript │ │ │ │ │ ├── NewPagePermissions-G-show-editcontent.tsconfig.typoscript │ │ │ │ │ └── README.md │ │ │ ├── PageGeneral.tsconfig.typoscript │ │ │ ├── User │ │ │ │ ├── General │ │ │ │ │ ├── DefaultUserSettings.tsconfig.typoscript │ │ │ │ │ ├── Pagetree.tsconfig.typoscript │ │ │ │ │ └── Recycler.tsconfig.typoscript │ │ │ │ └── Specific │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── DisableBackendFeatures.tsconfig.typoscript │ │ │ │ │ ├── DisableBeuserFastswitchToolbar.tsconfig.typoscript │ │ │ │ │ ├── DisableCopyButtons.tsconfig.typoscript │ │ │ │ │ ├── DisableTranslateButtons.tsconfig.typoscript │ │ │ │ │ └── EnableBigFileListThumbnails.tsconfig.typoscript │ │ │ └── UserGeneral.tsconfig.typoscript │ │ ├── TypoScript │ │ │ ├── Base │ │ │ │ ├── 000-Libs │ │ │ │ │ ├── CountContent.setup.typoscript │ │ │ │ │ ├── DynamicContent.setup.typoscript │ │ │ │ │ ├── Fluidtemplate.setup.typoscript │ │ │ │ │ ├── PageClass.setup.typoscript │ │ │ │ │ └── TrackingBasic.setup.typoscript │ │ │ │ ├── Config.setup.typoscript │ │ │ │ ├── Extensions │ │ │ │ │ ├── Core.constants.typoscript │ │ │ │ │ ├── Core.setup.typoscript │ │ │ │ │ ├── Felogin.setup.typoscript │ │ │ │ │ ├── FluidStyledContent │ │ │ │ │ │ ├── Base │ │ │ │ │ │ │ ├── Breakpoints.constants.typoscript │ │ │ │ │ │ │ ├── FluidStyledContent.constants.typoscript │ │ │ │ │ │ │ └── FluidStyledContent.setup.typoscript │ │ │ │ │ │ └── ContentElements │ │ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ │ │ ├── CollapsibleText.setup.typoscript │ │ │ │ │ │ │ ├── DownloadBox.setup.typoscript │ │ │ │ │ │ │ ├── FactsFigures.setup.typoscript │ │ │ │ │ │ │ ├── InheritanceStop.setup.typoscript │ │ │ │ │ │ │ ├── LeadText.setup.typoscript │ │ │ │ │ │ │ ├── LogoList.setup.typoscript │ │ │ │ │ │ │ ├── Text.setup.typoscript │ │ │ │ │ │ │ ├── Textimage.setup.typoscript │ │ │ │ │ │ │ └── Youtube.setup.typoscript │ │ │ │ │ ├── Form │ │ │ │ │ │ ├── Form.constants.typoscript │ │ │ │ │ │ └── Form.setup.typoscript │ │ │ │ │ ├── Logging.setup.typoscript │ │ │ │ │ ├── News │ │ │ │ │ │ ├── News.constants.typoscript │ │ │ │ │ │ └── News.setup.typoscript │ │ │ │ │ ├── Powermail │ │ │ │ │ │ ├── Powermail.constants.typoscript │ │ │ │ │ │ └── Powermail.setup.typoscript │ │ │ │ │ ├── Rte │ │ │ │ │ │ ├── DisableAutomaticLinking.setup.typoscript │ │ │ │ │ │ └── RTEfluidStyledContent.setup.typoscript │ │ │ │ │ ├── RxShariff.setup.typoscript │ │ │ │ │ ├── Solr │ │ │ │ │ │ ├── Solr.constants.typoscript │ │ │ │ │ │ └── Solr.setup.typoscript │ │ │ │ │ ├── StaticInfoTables.setup.typoscript │ │ │ │ │ └── Vhs.setup.typoscript │ │ │ │ ├── Page │ │ │ │ │ ├── CookieConsent.setup.typoscript │ │ │ │ │ ├── Head.setup.typoscript │ │ │ │ │ └── Page.setup.typoscript │ │ │ │ └── SecurityHeaders.setup.typoscript │ │ │ └── Sites │ │ │ │ ├── Defaults │ │ │ │ ├── constants.typoscript │ │ │ │ └── setup.typoscript │ │ │ │ └── SiteDefault │ │ │ │ ├── constants.typoscript │ │ │ │ └── setup.typoscript │ │ └── YamlConfiguration │ │ │ ├── be_groups.yaml │ │ │ ├── be_users.yaml │ │ │ ├── fe_groups.yaml │ │ │ ├── fe_users.yaml │ │ │ ├── pages.yaml │ │ │ ├── sys_be_shortcuts.yaml │ │ │ ├── sys_filemounts.yaml │ │ │ ├── tt_content.yaml │ │ │ ├── tx_scheduler_task.yaml │ │ │ └── tx_scheduler_task_group.yaml │ ├── Resources │ │ ├── Private │ │ │ ├── .htaccess │ │ │ ├── Backend │ │ │ │ └── ToolbarItems │ │ │ │ │ ├── Layouts │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── Partials │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── Templates │ │ │ │ │ └── .gitkeep │ │ │ ├── Extension │ │ │ │ ├── Felogin │ │ │ │ │ └── FrontendLogin.html │ │ │ │ ├── News │ │ │ │ │ └── .gitkeep │ │ │ │ └── Powermail │ │ │ │ │ ├── Layouts │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── Partials │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── Templates │ │ │ │ │ └── .gitkeep │ │ │ ├── Language │ │ │ │ ├── cz.locallang.xlf │ │ │ │ ├── de.locallang.xlf │ │ │ │ ├── de.locallang_BackendGeneral.xlf │ │ │ │ ├── de.locallang_ContentElements.xlf │ │ │ │ ├── de.locallang_JavascriptFrontend.xlf │ │ │ │ ├── de.locallang_backendlayouts.xlf │ │ │ │ ├── de.locallang_rte.xlf │ │ │ │ ├── fr.locallang.xlf │ │ │ │ ├── hr.locallang.xlf │ │ │ │ ├── hu.locallang.xlf │ │ │ │ ├── it.locallang.xlf │ │ │ │ ├── locallang.xlf │ │ │ │ ├── locallang_BackendGeneral.xlf │ │ │ │ ├── locallang_ContentElements.xlf │ │ │ │ ├── locallang_FrontendEditing.xlf │ │ │ │ ├── locallang_JavascriptFrontend.xlf │ │ │ │ ├── locallang_backendlayouts.xlf │ │ │ │ ├── locallang_csh_sys_file_reference.xlf │ │ │ │ ├── locallang_db.xlf │ │ │ │ ├── locallang_rte.xlf │ │ │ │ ├── nl.locallang.xlf │ │ │ │ ├── pl.locallang.xlf │ │ │ │ ├── ru.locallang.xlf │ │ │ │ └── sk.locallang.xlf │ │ │ ├── Layouts │ │ │ │ ├── Backend │ │ │ │ │ └── PageLayout │ │ │ │ │ │ └── Footer │ │ │ │ │ │ └── Default.html │ │ │ │ ├── Content │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── Default.html │ │ │ │ └── Page │ │ │ │ │ └── Default.html │ │ │ ├── Partials │ │ │ │ ├── Backend │ │ │ │ │ └── PageLayout │ │ │ │ │ │ ├── Badges │ │ │ │ │ │ ├── TypeInfo.html │ │ │ │ │ │ ├── TypeIs.html │ │ │ │ │ │ └── TypeIsNot.html │ │ │ │ │ │ └── CType.html │ │ │ │ ├── Content │ │ │ │ │ └── ImageRender.html │ │ │ │ └── Page │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── Favicon │ │ │ │ │ ├── Dist │ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ │ └── RealFavIcon.html │ │ │ │ │ └── Src │ │ │ │ │ │ └── RealFavIcon.html │ │ │ │ │ ├── Navigation │ │ │ │ │ └── SocialLinks.html │ │ │ │ │ └── Utilities │ │ │ │ │ └── .gitkeep │ │ │ ├── Scss │ │ │ │ └── .gitkeep │ │ │ ├── Source │ │ │ │ ├── Icons │ │ │ │ │ └── BackendLayouts.ai │ │ │ │ └── Images │ │ │ │ │ └── BackendLogo.ai │ │ │ └── Templates │ │ │ │ ├── Backend │ │ │ │ └── PageLayout │ │ │ │ │ └── FooterEnrichment.html │ │ │ │ ├── Content │ │ │ │ ├── BackendPreview │ │ │ │ │ ├── CollapsibleText.html │ │ │ │ │ ├── Div.html │ │ │ │ │ ├── DownloadBox.html │ │ │ │ │ ├── FactsFigures.html │ │ │ │ │ ├── InheritanceStop.html │ │ │ │ │ ├── LeadText.html │ │ │ │ │ ├── LogoList.html │ │ │ │ │ ├── Textimage.html │ │ │ │ │ └── Youtube.html │ │ │ │ ├── CollapsibleText.html │ │ │ │ ├── Div.html │ │ │ │ ├── DownloadBox.html │ │ │ │ ├── FactsFigures.html │ │ │ │ ├── LeadText.html │ │ │ │ ├── List.html │ │ │ │ ├── LogoList.html │ │ │ │ ├── Textimage.html │ │ │ │ └── Youtube.html │ │ │ │ ├── CookieLaw │ │ │ │ └── Default.html │ │ │ │ ├── ErrorPage │ │ │ │ ├── ContentError.html │ │ │ │ └── Error.html │ │ │ │ └── Page │ │ │ │ ├── AboveTheFold │ │ │ │ ├── Dist │ │ │ │ │ └── .gitkeep │ │ │ │ └── Src │ │ │ │ │ └── PageRenderTemplate.html │ │ │ │ ├── Default.html │ │ │ │ └── Homepage.html │ │ └── Public │ │ │ ├── Css │ │ │ ├── Backend │ │ │ │ └── PageLayoutView.css │ │ │ ├── RteDefault.css │ │ │ └── rte.css │ │ │ ├── Icons │ │ │ ├── Backend │ │ │ │ ├── BackendLayouts │ │ │ │ │ ├── content-empty.svg │ │ │ │ │ ├── content-homepage.svg │ │ │ │ │ ├── content-menu-sidebar.svg │ │ │ │ │ ├── content-menu.svg │ │ │ │ │ ├── content-product.svg │ │ │ │ │ ├── content-rubric.svg │ │ │ │ │ ├── content-sidebar-menu.svg │ │ │ │ │ ├── content-sidebar.svg │ │ │ │ │ ├── content-special.svg │ │ │ │ │ ├── content.svg │ │ │ │ │ ├── default.svg │ │ │ │ │ ├── menu-content-sidebar.svg │ │ │ │ │ ├── menu-content.svg │ │ │ │ │ ├── menu-sidebar-content.svg │ │ │ │ │ ├── sidebar-content-menu.svg │ │ │ │ │ ├── sidebar-content.svg │ │ │ │ │ └── sidebar-menu-content.svg │ │ │ │ ├── GridElements │ │ │ │ │ ├── theme-content-gridelement-2-col.svg │ │ │ │ │ ├── theme-content-gridelement-3-col.svg │ │ │ │ │ ├── theme-content-gridelement-4-col.svg │ │ │ │ │ ├── theme-content-gridelement-accordion.svg │ │ │ │ │ ├── theme-content-gridelement-carousel.svg │ │ │ │ │ ├── theme-content-gridelement-container.svg │ │ │ │ │ ├── theme-content-gridelement-row.svg │ │ │ │ │ ├── theme-content-gridelement-single-column-header-footer.svg │ │ │ │ │ ├── theme-content-gridelement-single-column-horizontal.svg │ │ │ │ │ ├── theme-content-gridelement-single-column-vertical.svg │ │ │ │ │ ├── theme-content-gridelement-tab.svg │ │ │ │ │ └── theme-content-gridelement.svg │ │ │ │ ├── theme-backend-clear-processedfiles.svg │ │ │ │ ├── theme-content-badge.svg │ │ │ │ ├── theme-content-call-to-action.svg │ │ │ │ ├── theme-content-download.svg │ │ │ │ ├── theme-content-factbox.svg │ │ │ │ ├── theme-content-facts-figures.svg │ │ │ │ ├── theme-content-form.svg │ │ │ │ ├── theme-content-gallery.svg │ │ │ │ ├── theme-content-image-big.svg │ │ │ │ ├── theme-content-inheritance-stop.svg │ │ │ │ ├── theme-content-logos.svg │ │ │ │ ├── theme-content-map.svg │ │ │ │ ├── theme-content-person.svg │ │ │ │ ├── theme-content-testimonial.svg │ │ │ │ ├── theme-content-text-lead.svg │ │ │ │ ├── theme-content-text-right.svg │ │ │ │ ├── theme-content-timeline.svg │ │ │ │ ├── theme-content-youtube.svg │ │ │ │ ├── theme-pagetree-folder-contains-landingpages.svg │ │ │ │ ├── theme-pagetree-folder-dark.svg │ │ │ │ ├── theme-pagetree-page-contains-attention.svg │ │ │ │ ├── theme-pagetree-page-contains-impress.svg │ │ │ │ └── theme-pagetree-page-contains-news.svg │ │ │ ├── Extension.svg │ │ │ └── Favicon │ │ │ │ ├── FaviconMaster.svg │ │ │ │ └── faviconData.json │ │ │ ├── Images │ │ │ ├── Backend │ │ │ │ ├── BackendLayouts │ │ │ │ │ ├── Default.svg │ │ │ │ │ └── Homepage.svg │ │ │ │ ├── BackendLogo-Development.svg │ │ │ │ ├── BackendLogo.svg │ │ │ │ └── Login │ │ │ │ │ ├── LoginBackground.png │ │ │ │ │ ├── LoginLogo.ai │ │ │ │ │ └── LoginLogo.svg │ │ │ ├── Sprites │ │ │ │ └── .gitkeep │ │ │ └── Svg │ │ │ │ └── .gitkeep │ │ │ ├── JavaScript │ │ │ ├── Dist │ │ │ │ └── .gitkeep │ │ │ └── Src │ │ │ │ └── CeYouTube.js │ │ │ ├── RTE │ │ │ ├── Css │ │ │ │ └── RteBackendOnly.css │ │ │ ├── Plugins │ │ │ │ └── .gitkeep │ │ │ └── ProjectPlugins │ │ │ │ ├── .gitkeep │ │ │ │ ├── deleteall │ │ │ │ ├── icons │ │ │ │ │ ├── deleteall.png │ │ │ │ │ ├── deleteall.svg │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── deleteall.png │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ └── en.js │ │ │ │ └── plugin.js │ │ │ │ ├── nbsp │ │ │ │ └── plugin.js │ │ │ │ └── tableModifications │ │ │ │ └── plugin.js │ │ │ ├── Sass │ │ │ ├── AboveTheFold.scss │ │ │ ├── Abstracts │ │ │ │ ├── _Animations.scss │ │ │ │ ├── _Functions.scss │ │ │ │ ├── _Mixins.scss │ │ │ │ └── _Variables.scss │ │ │ ├── Base │ │ │ │ ├── _Accessibility.scss │ │ │ │ ├── _Backgrounds.scss │ │ │ │ ├── _Base.scss │ │ │ │ ├── _Debug.scss │ │ │ │ ├── _Fonts.scss │ │ │ │ ├── _Forms.scss │ │ │ │ ├── _Helpers.scss │ │ │ │ ├── _Icons.scss │ │ │ │ ├── _Shame.scss │ │ │ │ └── _Typography.scss │ │ │ ├── Components │ │ │ │ └── .gitkeep │ │ │ ├── Layout │ │ │ │ ├── _Footer.scss │ │ │ │ └── _Header.scss │ │ │ ├── Pages │ │ │ │ ├── _Homepage.scss │ │ │ │ └── _Rubric.scss │ │ │ ├── Styles.scss │ │ │ └── Vendors │ │ │ │ ├── _Additional.scss │ │ │ │ ├── _Bootstrap.scss │ │ │ │ ├── _General.scss │ │ │ │ ├── _MagnificPopup.scss │ │ │ │ ├── _SlickCarousel.scss │ │ │ │ └── _SlickNav.scss │ │ │ ├── SourceMaps │ │ │ └── .gitkeep │ │ │ └── StyleSheets │ │ │ └── .gitkeep │ ├── Tests │ │ ├── Functional │ │ │ └── .gitkeep │ │ └── Unit │ │ │ └── .gitkeep │ ├── composer.json │ ├── ext_conf_template.txt │ ├── ext_emconf.php │ ├── ext_localconf.php │ ├── ext_tables.php │ └── ext_tables.sql │ └── theme_project │ ├── Classes │ ├── Command │ │ └── .gitkeep │ ├── Controller │ │ └── .gitkeep │ └── ViewHelpers │ │ └── .gitkeep │ ├── Configuration │ ├── Commands.php │ └── FlexForms │ │ └── .gitkeep │ ├── Resources │ ├── Private │ │ ├── Language │ │ │ └── .gitkeep │ │ ├── Layouts │ │ │ └── .gitkeep │ │ ├── Mask │ │ │ ├── .gitkeep │ │ │ ├── Backend │ │ │ │ ├── Layouts │ │ │ │ │ └── .gitkeep │ │ │ │ ├── Partials │ │ │ │ │ └── .gitkeep │ │ │ │ └── Templates │ │ │ │ │ └── .gitkeep │ │ │ ├── Layouts │ │ │ │ └── .gitkeep │ │ │ ├── Partials │ │ │ │ └── .gitkeep │ │ │ └── Templates │ │ │ │ └── Content │ │ │ │ └── .gitkeep │ │ ├── Partials │ │ │ └── .gitkeep │ │ └── Templates │ │ │ ├── .gitkeep │ │ │ └── Content │ │ │ └── .gitkeep │ └── Public │ │ └── Icons │ │ └── Extension.svg │ ├── composer.json │ └── ext_emconf.php ├── backup └── .gitkeep ├── bin ├── .config.sh ├── GenerateLocalConfiguration.php ├── backup.sh ├── dependencies │ └── php │ │ ├── .gitignore │ │ └── composer.json ├── msg.sh └── restore.sh ├── clisync.yml ├── docker-compose.development-reverse-proxy.yml ├── docker ├── mysql │ ├── MariaDB-10.Dockerfile │ ├── MariaDB-5.5.Dockerfile │ ├── MySQL-5.7.Dockerfile │ ├── Percona-5.7.Dockerfile │ └── conf │ │ └── mysql-docker.cnf ├── redis │ └── redis.conf └── solr │ ├── configsets │ └── ext_solr_10_0_0 │ │ ├── conf │ │ ├── _schema_analysis_stopwords_arabic.json │ │ ├── _schema_analysis_stopwords_armenian.json │ │ ├── _schema_analysis_stopwords_basque.json │ │ ├── _schema_analysis_stopwords_brazilian-portuguese.json │ │ ├── _schema_analysis_stopwords_brazilian_portuguese.json │ │ ├── _schema_analysis_stopwords_bulgarian.json │ │ ├── _schema_analysis_stopwords_burmese.json │ │ ├── _schema_analysis_stopwords_catalan.json │ │ ├── _schema_analysis_stopwords_chinese.json │ │ ├── _schema_analysis_stopwords_czech.json │ │ ├── _schema_analysis_stopwords_danish.json │ │ ├── _schema_analysis_stopwords_dutch.json │ │ ├── _schema_analysis_stopwords_english.json │ │ ├── _schema_analysis_stopwords_finnish.json │ │ ├── _schema_analysis_stopwords_french.json │ │ ├── _schema_analysis_stopwords_galician.json │ │ ├── _schema_analysis_stopwords_generic.json │ │ ├── _schema_analysis_stopwords_german.json │ │ ├── _schema_analysis_stopwords_greek.json │ │ ├── _schema_analysis_stopwords_hindi.json │ │ ├── _schema_analysis_stopwords_hungarian.json │ │ ├── _schema_analysis_stopwords_indonesian.json │ │ ├── _schema_analysis_stopwords_irish.json │ │ ├── _schema_analysis_stopwords_italian.json │ │ ├── _schema_analysis_stopwords_japanese.json │ │ ├── _schema_analysis_stopwords_khmer.json │ │ ├── _schema_analysis_stopwords_korean.json │ │ ├── _schema_analysis_stopwords_lao.json │ │ ├── _schema_analysis_stopwords_latvia.json │ │ ├── _schema_analysis_stopwords_norwegian.json │ │ ├── _schema_analysis_stopwords_persian.json │ │ ├── _schema_analysis_stopwords_polish.json │ │ ├── _schema_analysis_stopwords_portuguese.json │ │ ├── _schema_analysis_stopwords_romanian.json │ │ ├── _schema_analysis_stopwords_russian.json │ │ ├── _schema_analysis_stopwords_serbian.json │ │ ├── _schema_analysis_stopwords_spanish.json │ │ ├── _schema_analysis_stopwords_swedish.json │ │ ├── _schema_analysis_stopwords_thai.json │ │ ├── _schema_analysis_stopwords_turkish.json │ │ ├── _schema_analysis_stopwords_ukrainian.json │ │ ├── admin-extra.html │ │ ├── arabic │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── armenian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── basque │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── brazilian_portuguese │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── bulgarian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── burmese │ │ │ ├── protwords.txt │ │ │ ├── readme.txt │ │ │ └── schema.xml │ │ ├── catalan │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── chinese │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── currency.xml │ │ ├── czech │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── danish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── dutch │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── elevate.xml │ │ ├── english │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── finnish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── french │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── galician │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── general_schema_fields.xml │ │ ├── general_schema_types.xml │ │ ├── generic │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── german │ │ │ ├── german-common-nouns.txt │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── greek │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── hindi │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── hungarian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── indonesian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── irish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── italian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── japanese │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── khmer │ │ │ ├── protwords.txt │ │ │ ├── readme.txt │ │ │ └── schema.xml │ │ ├── korean │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── lao │ │ │ ├── protwords.txt │ │ │ ├── readme.txt │ │ │ └── schema.xml │ │ ├── latvia │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── norwegian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── persian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── polish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── portuguese │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── romanian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── russian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── serbian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── solrconfig.xml │ │ ├── spanish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── swedish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── thai │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── turkish │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ ├── ukrainian │ │ │ ├── protwords.txt │ │ │ └── schema.xml │ │ └── velocity │ │ │ ├── VM_global_library.vm │ │ │ ├── browse.vm │ │ │ ├── doc.vm │ │ │ ├── facet_fields.vm │ │ │ ├── facets.vm │ │ │ ├── footer.vm │ │ │ ├── head.vm │ │ │ ├── header.vm │ │ │ ├── hit.vm │ │ │ ├── hitGrouped.vm │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.autocomplete.js │ │ │ ├── layout.vm │ │ │ ├── main.css │ │ │ ├── query.vm │ │ │ └── suggest.vm │ │ └── typo3lib │ │ └── solr-typo3-plugin-4.0.0.jar │ ├── cores │ ├── arabic │ │ └── core.properties │ ├── armenian │ │ └── core.properties │ ├── basque │ │ └── core.properties │ ├── brazilian_portuguese │ │ └── core.properties │ ├── bulgarian │ │ └── core.properties │ ├── burmese │ │ └── core.properties │ ├── catalan │ │ └── core.properties │ ├── chinese │ │ └── core.properties │ ├── czech │ │ └── core.properties │ ├── danish │ │ └── core.properties │ ├── dutch │ │ └── core.properties │ ├── english │ │ └── core.properties │ ├── finnish │ │ └── core.properties │ ├── french │ │ └── core.properties │ ├── galician │ │ └── core.properties │ ├── german │ │ └── core.properties │ ├── greek │ │ └── core.properties │ ├── hindi │ │ └── core.properties │ ├── hungarian │ │ └── core.properties │ ├── indonesian │ │ └── core.properties │ ├── irish │ │ └── core.properties │ ├── italian │ │ └── core.properties │ ├── japanese │ │ └── core.properties │ ├── khmer │ │ └── core.properties │ ├── korean │ │ └── core.properties │ ├── lao │ │ └── core.properties │ ├── latvia │ │ └── core.properties │ ├── norwegian │ │ └── core.properties │ ├── persian │ │ └── core.properties │ ├── polish │ │ └── core.properties │ ├── portuguese │ │ └── core.properties │ ├── romanian │ │ └── core.properties │ ├── russian │ │ └── core.properties │ ├── serbian │ │ └── core.properties │ ├── spanish │ │ └── core.properties │ ├── swedish │ │ └── core.properties │ ├── thai │ │ └── core.properties │ ├── turkish │ │ └── core.properties │ └── ukrainian │ │ └── core.properties │ ├── data │ └── .gitignore │ ├── solr.xml │ └── zoo.cfg ├── dynamicReturnTypeMeta.json └── etc ├── cron └── crontab ├── php ├── .gitkeep └── development.ini └── ssh └── .gitkeep /.config/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/.config/ssh_config -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/Dockerfile.development -------------------------------------------------------------------------------- /PROJECTDETAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/PROJECTDETAILS.md -------------------------------------------------------------------------------- /app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/.editorconfig -------------------------------------------------------------------------------- /app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/.env -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/.php_cs -------------------------------------------------------------------------------- /app/.surf/src/Task/Transfer/LocalRsyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/.surf/src/Task/Transfer/LocalRsyncTask.php -------------------------------------------------------------------------------- /app/Build/ChangeHeaderComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/Build/ChangeHeaderComment.php -------------------------------------------------------------------------------- /app/Build/ChangeVendor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/Build/ChangeVendor.sh -------------------------------------------------------------------------------- /app/Build/InstallDefaultDatabaseRecords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/Build/InstallDefaultDatabaseRecords.sh -------------------------------------------------------------------------------- /app/Build/Patches/Typo3/Core/58851_15.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/Build/Patches/Typo3/Core/58851_15.diff -------------------------------------------------------------------------------- /app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/composer.json -------------------------------------------------------------------------------- /app/composer.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/composer.list -------------------------------------------------------------------------------- /app/composer.patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/composer.patches.json -------------------------------------------------------------------------------- /app/config/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/.htaccess -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration.php -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration_Development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration_Development.php -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration_Development_Docker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration_Development_Docker.php -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration_Development_Mamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration_Development_Mamp.php -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration_Production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration_Production.php -------------------------------------------------------------------------------- /app/config/AdditionalConfiguration_Production_Dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalConfiguration_Production_Dev.php -------------------------------------------------------------------------------- /app/config/AdditionalFactoryConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/AdditionalFactoryConfiguration.php -------------------------------------------------------------------------------- /app/config/sites/site-main/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/config/sites/site-main/config.yaml -------------------------------------------------------------------------------- /app/packages/theme/Build/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Build/.htaccess -------------------------------------------------------------------------------- /app/packages/theme/Build/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Build/gulpfile.js -------------------------------------------------------------------------------- /app/packages/theme/Build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Build/package.json -------------------------------------------------------------------------------- /app/packages/theme/Classes/Backend/Enrichment/Badge/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Backend/Enrichment/Badge/Configuration.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Backend/FormDataProvider/ColorValuePickerItemDataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Backend/FormDataProvider/ColorValuePickerItemDataProvider.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Backend/FormDataProvider/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Backend/FormDataProvider/Div.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Backend/FormDataProvider/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Backend/FormDataProvider/General.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Configuration/ExtensionConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Configuration/ExtensionConfiguration.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/DataProcessing/ConstantsProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/DataProcessing/ConstantsProcessor.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Error/ContentExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Error/ContentExceptionHandler.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Hooks/Backend/PageLayoutView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Hooks/Backend/PageLayoutView.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Hooks/Backend/PageLayoutViewEnrichment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Hooks/Backend/PageLayoutViewEnrichment.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Hooks/Backend/PageLayoutViewEnrichmentFooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Hooks/Backend/PageLayoutViewEnrichmentFooter.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Hooks/Frontend/ContentPostProc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Hooks/Frontend/ContentPostProc.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Hooks/Frontend/TypoScriptHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Hooks/Frontend/TypoScriptHook.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Utility/ArrayTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Utility/ArrayTool.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/Utility/Tca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/Utility/Tca.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Backend/ContentEditLinkUrlViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Backend/ContentEditLinkUrlViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Backend/ContentEditLinkViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Backend/ContentEditLinkViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Context/GetViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Context/GetViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Context/ProductionLiveViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Context/ProductionLiveViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Debug/TypoScriptViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Debug/TypoScriptViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/FalViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/FalViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/FeatureToggleViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/FeatureToggleViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/FileCollectionViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/FileCollectionViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/CleanupStringViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/CleanupStringViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/DomainNameViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/DomainNameViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/EscapeViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/EscapeViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/PhoneViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/PhoneViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/RemoveEmptyParagraphViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/RemoveEmptyParagraphViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/SubheaderViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/SubheaderViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/TrimViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/TrimViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Format/YoutubeVideoIdViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Format/YoutubeVideoIdViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/IsImageViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/IsImageViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Iterator/ExplodeViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Iterator/ExplodeViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Link/PhoneViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Link/PhoneViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Math/SimpleMultiplyViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Math/SimpleMultiplyViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Math/SimpleSumViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Math/SimpleSumViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Media/Image/OrientationViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Media/Image/OrientationViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Media/Image/VideoPreviewViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Media/Image/VideoPreviewViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Media/YoutubeViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Media/YoutubeViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/OrViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/OrViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Render/GroupedFalViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Render/GroupedFalViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/Render/InlineSvgViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/Render/InlineSvgViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Classes/ViewHelpers/TypoScript/ConstantsViewHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Classes/ViewHelpers/TypoScript/ConstantsViewHelper.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/.htaccess -------------------------------------------------------------------------------- /app/packages/theme/Configuration/ImageManipulation/CropVariants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/ImageManipulation/CropVariants.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/Additional/DisableTables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/Additional/DisableTables.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/Additional/ExternalPlugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/Additional/ExternalPlugins.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/Default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/Default.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/DefaultNoTables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/DefaultNoTables.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/Minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/Minimal.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/MinimalWithLinks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/MinimalWithLinks.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/RTE/RTE-Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/RTE/RTE-Links.md -------------------------------------------------------------------------------- /app/packages/theme/Configuration/SiteConfiguration/Overrides/sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/SiteConfiguration/Overrides/sites.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/pages.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/sys_file_collection_images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/sys_file_collection_images.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/sys_file_reference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/sys_file_reference.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_collapsible_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_collapsible_text.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_download_box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_download_box.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_facts_figures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_facts_figures.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_inheritance_stop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_inheritance_stop.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_lead_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_lead_text.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_logo_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_logo_list.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_textimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_textimage.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tt_content_youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tt_content_youtube.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/Overrides/tx_news_domain_model_news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/Overrides/tx_news_domain_model_news.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TCA/tx_theme_facts_figures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TCA/tx_theme_facts_figures.php -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/ColPos-Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/ColPos-Overview.md -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/Default.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/Default.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/Homepage.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/BackendLayouts/Homepage.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/BackendWebView.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/BackendWebView.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Basic.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Basic.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/ClearCaching.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/ClearCaching.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/DisableRecordTypes.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/DisableRecordTypes.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Language.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Language.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Linkhandler.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Linkhandler.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Linkvalidator.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Linkvalidator.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Base/NewContentElementWizard.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Base/NewContentElementWizard.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Base/NewContentElementWizardSorting.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Base/NewContentElementWizardSorting.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/CollapsibleText.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/CollapsibleText.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/DownloadBox.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/DownloadBox.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/FactsFigures.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/FactsFigures.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/InheritanceStop.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/InheritanceStop.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/LeadText.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/LeadText.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/LogoList.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/LogoList.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Textimage.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Textimage.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Youtube.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/NewContentElementWizard/Youtube.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/CollapsibleText.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/CollapsibleText.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Div.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Div.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/DownloadBox.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/DownloadBox.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/FactsFigures.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/FactsFigures.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/InheritanceStop.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/InheritanceStop.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/LeadText.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/LeadText.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/LogoList.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/LogoList.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Textimage.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Textimage.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Youtube.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PageModule/SimpleBackendPreviews/Youtube.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/PagetreeOverview.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/PagetreeOverview.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Permissions.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Permissions.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/RTE/00-DefaultConfiguration.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/RTE/00-DefaultConfiguration.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Rte.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Rte.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/BeGroups.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/BeGroups.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/BeUsers.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/BeUsers.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/Pages.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/Pages.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/TtContent.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tcadefaults/TtContent.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tceform/Pages.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tceform/Pages.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tceform/SysFileMetadata.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tceform/SysFileMetadata.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tceform/SysFileReference.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tceform/SysFileReference.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tceform/TtContent.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tceform/TtContent.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/Tcemain/CopyBehaviours.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/Tcemain/CopyBehaviours.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/General/TxNews.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/General/TxNews.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/ClearCachePages.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/ClearCachePages.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/ClearCacheRegistrationSpecific.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/ClearCacheRegistrationSpecific.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/DisableCopyButtons.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | mod.web_layout.localization.enableCopy = 0 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/DisableTranslateButtons.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | mod.web_layout.localization.enableTranslate = 0 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/ClearCacheNews.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/ClearCacheNews.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewDefaultTypeSysFolderNews.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewDefaultTypeSysFolderNews.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewOnlyNews.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewOnlyNews.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewsLimitCategories.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewsLimitCategories.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewsLimitMedia.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewsLimitMedia.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/NewsMediaDefaultShowinpreviewOn.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | TCAdefaults.sys_file_reference.showinpreview = 1 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/PreviewRecordsNewsDetailDefault.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/News/PreviewRecordsNewsDetailDefault.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/Powermail/NewOnlyPowermailRecords.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/Extension/Powermail/NewOnlyPowermailRecords.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/HideTableTtContent.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | 2 | mod.web_list.hideTables := addToList(tt_content) 3 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/NewDefaultPageActive.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/NewDefaultPageActive.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/NewOnlyFeUsers.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | mod.web_list.allowedNewTables = fe_users,fe_groups,sys_note 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/NewPagePermissions-G-show-editcontent.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | TCEMAIN.permissions.group = show,editcontent 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/Page/Specific/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/Page/Specific/README.md -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/PageGeneral.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/PageGeneral.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/General/DefaultUserSettings.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/User/General/DefaultUserSettings.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/General/Pagetree.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/User/General/Pagetree.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/General/Recycler.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/User/General/Recycler.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/DisableBackendFeatures.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/User/Specific/DisableBackendFeatures.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/DisableBeuserFastswitchToolbar.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | option.backendToolbarItem.beUserFastwitch.disabled = 1 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/DisableCopyButtons.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | page.mod.web_layout.localization.enableTranslate = 0 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/DisableTranslateButtons.tsconfig.typoscript: -------------------------------------------------------------------------------- 1 | page.mod.web_layout.localization.enableCopy = 0 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/User/Specific/EnableBigFileListThumbnails.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/User/Specific/EnableBigFileListThumbnails.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TsConfig/UserGeneral.tsconfig.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TsConfig/UserGeneral.tsconfig.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/000-Libs/CountContent.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/000-Libs/CountContent.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/000-Libs/DynamicContent.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/000-Libs/DynamicContent.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/000-Libs/Fluidtemplate.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/000-Libs/Fluidtemplate.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/000-Libs/PageClass.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/000-Libs/PageClass.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/000-Libs/TrackingBasic.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/000-Libs/TrackingBasic.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Config.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Config.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Core.constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Core.constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Core.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Core.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Felogin.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Felogin.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/Breakpoints.constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/Breakpoints.constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/FluidStyledContent.constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/FluidStyledContent.constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/FluidStyledContent.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/Base/FluidStyledContent.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/.gitkeep -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/CollapsibleText.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/CollapsibleText.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/DownloadBox.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/DownloadBox.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/FactsFigures.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/FactsFigures.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/InheritanceStop.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/InheritanceStop.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/LeadText.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/LeadText.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/LogoList.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/LogoList.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Text.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Text.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Textimage.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Textimage.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Youtube.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/FluidStyledContent/ContentElements/Youtube.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Form/Form.constants.typoscript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Form/Form.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Form/Form.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Logging.setup.typoscript: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/News/News.constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/News/News.constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/News/News.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/News/News.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Powermail/Powermail.constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Powermail/Powermail.constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Powermail/Powermail.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Powermail/Powermail.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Rte/DisableAutomaticLinking.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Rte/DisableAutomaticLinking.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Rte/RTEfluidStyledContent.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Rte/RTEfluidStyledContent.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/RxShariff.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/RxShariff.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Solr/Solr.constants.typoscript: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Solr/Solr.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/Solr/Solr.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/StaticInfoTables.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Extensions/StaticInfoTables.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Extensions/Vhs.setup.typoscript: -------------------------------------------------------------------------------- 1 | plugin.tx_vhs.settings.prependPath = / 2 | -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Page/CookieConsent.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Page/CookieConsent.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Page/Head.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Page/Head.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/Page/Page.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/Page/Page.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Base/SecurityHeaders.setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Base/SecurityHeaders.setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Sites/Defaults/constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Sites/Defaults/constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Sites/Defaults/setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Sites/Defaults/setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Sites/SiteDefault/constants.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Sites/SiteDefault/constants.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/TypoScript/Sites/SiteDefault/setup.typoscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/TypoScript/Sites/SiteDefault/setup.typoscript -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/be_groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/be_groups.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/be_users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/be_users.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/fe_groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/fe_groups.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/fe_users.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/fe_users.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/pages.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/sys_be_shortcuts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/sys_be_shortcuts.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/sys_filemounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/sys_filemounts.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/tt_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/tt_content.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/tx_scheduler_task.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/tx_scheduler_task.yaml -------------------------------------------------------------------------------- /app/packages/theme/Configuration/YamlConfiguration/tx_scheduler_task_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Configuration/YamlConfiguration/tx_scheduler_task_group.yaml -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/.htaccess -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Backend/ToolbarItems/Layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Backend/ToolbarItems/Partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Backend/ToolbarItems/Templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Extension/Felogin/FrontendLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Extension/Felogin/FrontendLogin.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Extension/News/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Extension/Powermail/Layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Extension/Powermail/Partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Extension/Powermail/Templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/cz.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/cz.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang_BackendGeneral.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang_BackendGeneral.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang_ContentElements.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang_ContentElements.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang_JavascriptFrontend.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang_JavascriptFrontend.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang_backendlayouts.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang_backendlayouts.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/de.locallang_rte.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/de.locallang_rte.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/fr.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/fr.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/hr.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/hr.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/hu.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/hu.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/it.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/it.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_BackendGeneral.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_BackendGeneral.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_ContentElements.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_ContentElements.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_FrontendEditing.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_FrontendEditing.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_JavascriptFrontend.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_JavascriptFrontend.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_backendlayouts.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_backendlayouts.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_csh_sys_file_reference.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_csh_sys_file_reference.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_db.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_db.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/locallang_rte.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/locallang_rte.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/nl.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/nl.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/pl.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/pl.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/ru.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/ru.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Language/sk.locallang.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Language/sk.locallang.xlf -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Layouts/Backend/PageLayout/Footer/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Layouts/Backend/PageLayout/Footer/Default.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Layouts/Content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Layouts/Content/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Layouts/Content/Default.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Layouts/Page/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Layouts/Page/Default.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeInfo.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeIs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeIs.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeIsNot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Backend/PageLayout/Badges/TypeIsNot.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Backend/PageLayout/CType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Backend/PageLayout/CType.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Content/ImageRender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Content/ImageRender.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/Favicon/Dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/Favicon/Dist/RealFavIcon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Page/Favicon/Dist/RealFavIcon.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/Favicon/Src/RealFavIcon.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/Navigation/SocialLinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Partials/Page/Navigation/SocialLinks.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Partials/Page/Utilities/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Scss/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Source/Icons/BackendLayouts.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Source/Icons/BackendLayouts.ai -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Source/Images/BackendLogo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Source/Images/BackendLogo.ai -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Backend/PageLayout/FooterEnrichment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Backend/PageLayout/FooterEnrichment.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/CollapsibleText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/CollapsibleText.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Div.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/DownloadBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/DownloadBox.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/FactsFigures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/FactsFigures.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/InheritanceStop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/InheritanceStop.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/LeadText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/LeadText.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/LogoList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/LogoList.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Textimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Textimage.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/BackendPreview/Youtube.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/CollapsibleText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/CollapsibleText.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/Div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/Div.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/DownloadBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/DownloadBox.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/FactsFigures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/FactsFigures.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/LeadText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/LeadText.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/List.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/LogoList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/LogoList.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/Textimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/Textimage.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Content/Youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Content/Youtube.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/CookieLaw/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/CookieLaw/Default.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/ErrorPage/ContentError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/ErrorPage/ContentError.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/ErrorPage/Error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/ErrorPage/Error.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Page/AboveTheFold/Dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Page/AboveTheFold/Src/PageRenderTemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Page/AboveTheFold/Src/PageRenderTemplate.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Page/Default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Page/Default.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Private/Templates/Page/Homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Private/Templates/Page/Homepage.html -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Css/Backend/PageLayoutView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Css/Backend/PageLayoutView.css -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Css/RteDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Css/RteDefault.css -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Css/rte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Css/rte.css -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-empty.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-homepage.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-menu-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-menu-sidebar.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-menu.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-product.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-rubric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-rubric.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-sidebar-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-sidebar-menu.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-sidebar.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content-special.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/content.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/default.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-content-sidebar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-content-sidebar.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-content.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-sidebar-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/menu-sidebar-content.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-content-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-content-menu.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-content.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-menu-content.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/BackendLayouts/sidebar-menu-content.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-2-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-2-col.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-3-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-3-col.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-4-col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-4-col.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-accordion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-accordion.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-carousel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-carousel.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-container.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-row.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-header-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-header-footer.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-horizontal.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-single-column-vertical.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement-tab.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/GridElements/theme-content-gridelement.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-backend-clear-processedfiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-backend-clear-processedfiles.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-badge.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-call-to-action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-call-to-action.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-download.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-factbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-factbox.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-facts-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-facts-figures.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-form.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-gallery.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-image-big.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-image-big.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-inheritance-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-inheritance-stop.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-logos.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-map.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-person.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-testimonial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-testimonial.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-text-lead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-text-lead.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-text-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-text-right.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-timeline.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-content-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-content-youtube.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-folder-contains-landingpages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-folder-contains-landingpages.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-folder-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-folder-dark.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-attention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-attention.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-impress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-impress.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Backend/theme-pagetree-page-contains-news.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Extension.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Favicon/FaviconMaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Favicon/FaviconMaster.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Icons/Favicon/faviconData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Icons/Favicon/faviconData.json -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/BackendLayouts/Default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/BackendLayouts/Default.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/BackendLayouts/Homepage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/BackendLayouts/Homepage.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/BackendLogo-Development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/BackendLogo-Development.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/BackendLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/BackendLogo.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/Login/LoginBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/Login/LoginBackground.png -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/Login/LoginLogo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/Login/LoginLogo.ai -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Backend/Login/LoginLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Images/Backend/Login/LoginLogo.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Sprites/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Images/Svg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/JavaScript/Dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/JavaScript/Src/CeYouTube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/JavaScript/Src/CeYouTube.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/Css/RteBackendOnly.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/Plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/deleteall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/deleteall.png -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/deleteall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/deleteall.svg -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/hidpi/deleteall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/icons/hidpi/deleteall.png -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/lang/de.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/lang/en.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/deleteall/plugin.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/nbsp/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/nbsp/plugin.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/RTE/ProjectPlugins/tableModifications/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/RTE/ProjectPlugins/tableModifications/plugin.js -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/AboveTheFold.scss: -------------------------------------------------------------------------------- 1 | .supseven.digital { 2 | /*! Above the fold css */ 3 | } 4 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Abstracts/_Animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Abstracts/_Animations.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Abstracts/_Functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Abstracts/_Functions.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Abstracts/_Mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Abstracts/_Mixins.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Abstracts/_Variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Abstracts/_Variables.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Accessibility.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Backgrounds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Backgrounds.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Base.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Debug.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Debug.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Fonts.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Forms.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Helpers.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Icons.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Shame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Shame.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Base/_Typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Base/_Typography.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Layout/_Footer.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Layout/_Header.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Pages/_Homepage.scss: -------------------------------------------------------------------------------- 1 | .tmpl-homepage { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Pages/_Rubric.scss: -------------------------------------------------------------------------------- 1 | .tmpl-rubric { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Styles.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_Additional.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_Additional.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_Bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_Bootstrap.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_General.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_General.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_MagnificPopup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_MagnificPopup.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_SlickCarousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_SlickCarousel.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/Sass/Vendors/_SlickNav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/Resources/Public/Sass/Vendors/_SlickNav.scss -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/SourceMaps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Resources/Public/StyleSheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Tests/Functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/Tests/Unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/composer.json -------------------------------------------------------------------------------- /app/packages/theme/ext_conf_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/ext_conf_template.txt -------------------------------------------------------------------------------- /app/packages/theme/ext_emconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/ext_emconf.php -------------------------------------------------------------------------------- /app/packages/theme/ext_localconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/ext_localconf.php -------------------------------------------------------------------------------- /app/packages/theme/ext_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/ext_tables.php -------------------------------------------------------------------------------- /app/packages/theme/ext_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme/ext_tables.sql -------------------------------------------------------------------------------- /app/packages/theme_project/Classes/Command/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Classes/Controller/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Classes/ViewHelpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Configuration/Commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme_project/Configuration/Commands.php -------------------------------------------------------------------------------- /app/packages/theme_project/Configuration/FlexForms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Backend/Layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Backend/Partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Backend/Templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Mask/Templates/Content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Partials/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Private/Templates/Content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/theme_project/Resources/Public/Icons/Extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme_project/Resources/Public/Icons/Extension.svg -------------------------------------------------------------------------------- /app/packages/theme_project/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme_project/composer.json -------------------------------------------------------------------------------- /app/packages/theme_project/ext_emconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/app/packages/theme_project/ext_emconf.php -------------------------------------------------------------------------------- /backup/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/.config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/.config.sh -------------------------------------------------------------------------------- /bin/GenerateLocalConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/GenerateLocalConfiguration.php -------------------------------------------------------------------------------- /bin/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/backup.sh -------------------------------------------------------------------------------- /bin/dependencies/php/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /composer.l* 3 | -------------------------------------------------------------------------------- /bin/dependencies/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/dependencies/php/composer.json -------------------------------------------------------------------------------- /bin/msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/msg.sh -------------------------------------------------------------------------------- /bin/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/bin/restore.sh -------------------------------------------------------------------------------- /clisync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/clisync.yml -------------------------------------------------------------------------------- /docker-compose.development-reverse-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker-compose.development-reverse-proxy.yml -------------------------------------------------------------------------------- /docker/mysql/MariaDB-10.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/mysql/MariaDB-10.Dockerfile -------------------------------------------------------------------------------- /docker/mysql/MariaDB-5.5.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/mysql/MariaDB-5.5.Dockerfile -------------------------------------------------------------------------------- /docker/mysql/MySQL-5.7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/mysql/MySQL-5.7.Dockerfile -------------------------------------------------------------------------------- /docker/mysql/Percona-5.7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/mysql/Percona-5.7.Dockerfile -------------------------------------------------------------------------------- /docker/mysql/conf/mysql-docker.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/mysql/conf/mysql-docker.cnf -------------------------------------------------------------------------------- /docker/redis/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/redis/redis.conf -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_arabic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_arabic.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_armenian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_armenian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_basque.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_basque.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_brazilian-portuguese.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{"ignoreCase":false}, 3 | "managedList":[]} -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_brazilian_portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_brazilian_portuguese.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_bulgarian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_bulgarian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_burmese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_burmese.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_catalan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_catalan.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_chinese.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_czech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_czech.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_danish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_danish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_dutch.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_english.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_finnish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_finnish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_french.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_galician.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_galician.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_generic.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_german.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_greek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_greek.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_hindi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_hindi.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_hungarian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_hungarian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_indonesian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_indonesian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_irish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_irish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_italian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_italian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_japanese.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_khmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_khmer.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_korean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_korean.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_lao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_lao.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_latvia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_latvia.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_norwegian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_norwegian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_persian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_persian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_polish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_polish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_portuguese.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_romanian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_romanian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_russian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_serbian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_serbian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_spanish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_swedish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_swedish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_thai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_thai.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_turkish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_turkish.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_ukrainian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/_schema_analysis_stopwords_ukrainian.json -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/admin-extra.html -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/arabic/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/arabic/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/arabic/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/armenian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/armenian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/armenian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/basque/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/basque/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/basque/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/brazilian_portuguese/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/brazilian_portuguese/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/brazilian_portuguese/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/bulgarian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/bulgarian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/bulgarian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/burmese/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/burmese/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/burmese/readme.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/burmese/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/burmese/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/catalan/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/catalan/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/catalan/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/chinese/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/chinese/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/chinese/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/currency.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/czech/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/czech/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/czech/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/danish/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/danish/protwords.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/danish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/danish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/dutch/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/dutch/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/dutch/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/elevate.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/english/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/english/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/english/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/finnish/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/finnish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/finnish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/french/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/french/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/french/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/galician/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/galician/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/galician/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/general_schema_fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/general_schema_fields.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/general_schema_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/general_schema_types.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/generic/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/generic/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/generic/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/german/german-common-nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/german/german-common-nouns.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/german/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/german/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/german/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/greek/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/greek/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/greek/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/hindi/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/hindi/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/hindi/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/hungarian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/hungarian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/hungarian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/indonesian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/indonesian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/indonesian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/irish/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/irish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/irish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/italian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/italian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/italian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/japanese/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/japanese/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/japanese/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/khmer/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/khmer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/khmer/readme.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/khmer/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/khmer/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/korean/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/korean/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/korean/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/lao/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/lao/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/lao/readme.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/lao/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/lao/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/latvia/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/latvia/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/latvia/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/norwegian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/norwegian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/norwegian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/persian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/persian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/persian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/polish/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/polish/protwords.txt -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/polish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/polish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/portuguese/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/portuguese/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/portuguese/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/romanian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/romanian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/romanian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/russian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/russian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/russian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/serbian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/serbian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/serbian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/solrconfig.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/spanish/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/spanish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/spanish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/swedish/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/swedish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/swedish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/thai/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/thai/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/thai/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/turkish/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/turkish/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/turkish/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/ukrainian/protwords.txt: -------------------------------------------------------------------------------- 1 | TYPO3 -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/ukrainian/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/ukrainian/schema.xml -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/VM_global_library.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/VM_global_library.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/browse.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/browse.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/doc.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/facet_fields.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/facets.vm: -------------------------------------------------------------------------------- 1 | #parse('facet_fields.vm') 2 | -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/footer.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/head.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/head.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/header.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/hit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/hit.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/hitGrouped.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/hitGrouped.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/jquery.autocomplete.css -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/jquery.autocomplete.js -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/layout.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/main.css -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/query.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/query.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/conf/velocity/suggest.vm -------------------------------------------------------------------------------- /docker/solr/configsets/ext_solr_10_0_0/typo3lib/solr-typo3-plugin-4.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/configsets/ext_solr_10_0_0/typo3lib/solr-typo3-plugin-4.0.0.jar -------------------------------------------------------------------------------- /docker/solr/cores/arabic/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/arabic/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/armenian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/armenian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/basque/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/basque/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/brazilian_portuguese/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/brazilian_portuguese/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/bulgarian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/bulgarian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/burmese/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/burmese/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/catalan/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/catalan/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/chinese/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/chinese/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/czech/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/czech/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/danish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/danish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/dutch/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/dutch/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/english/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/english/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/finnish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/finnish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/french/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/french/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/galician/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/galician/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/german/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/german/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/greek/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/greek/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/hindi/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/hindi/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/hungarian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/hungarian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/indonesian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/indonesian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/irish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/irish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/italian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/italian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/japanese/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/japanese/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/khmer/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/khmer/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/korean/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/korean/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/lao/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/lao/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/latvia/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/latvia/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/norwegian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/norwegian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/persian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/persian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/polish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/polish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/portuguese/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/portuguese/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/romanian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/romanian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/russian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/russian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/serbian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/serbian/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/spanish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/spanish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/swedish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/swedish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/thai/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/thai/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/turkish/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/turkish/core.properties -------------------------------------------------------------------------------- /docker/solr/cores/ukrainian/core.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/cores/ukrainian/core.properties -------------------------------------------------------------------------------- /docker/solr/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docker/solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/solr.xml -------------------------------------------------------------------------------- /docker/solr/zoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/docker/solr/zoo.cfg -------------------------------------------------------------------------------- /dynamicReturnTypeMeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/dynamicReturnTypeMeta.json -------------------------------------------------------------------------------- /etc/cron/crontab: -------------------------------------------------------------------------------- 1 | # m h dom mon dow user command 2 | -------------------------------------------------------------------------------- /etc/php/.gitkeep: -------------------------------------------------------------------------------- 1 | .gitkeep 2 | -------------------------------------------------------------------------------- /etc/php/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josefglatz/TYPO3-Distribution/HEAD/etc/php/development.ini -------------------------------------------------------------------------------- /etc/ssh/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------