diff --git a/typo3/sysext/core/Classes/DataHandling/DataHandler.php b/typo3/sysext/core/Classes/DataHandling/DataHandler.php index 0594000b331aef0c9f6fa0b78b11f90c3734af8e..18649cf186907d6968e122194df28cf68f73c7e8 100644 --- a/typo3/sysext/core/Classes/DataHandling/DataHandler.php +++ b/typo3/sysext/core/Classes/DataHandling/DataHandler.php @@ -4537,8 +4537,8 @@ class DataHandler implements LoggerAwareInterface if (isset($fCfg['l10n_mode']) && $fCfg['l10n_mode'] === 'prefixLangTitle') { if (($fCfg['config']['type'] === 'text' || $fCfg['config']['type'] === 'input') && (string)$row[$fN] !== '') { $TSConfig = BackendUtility::getPagesTSconfig($pageId)['TCEMAIN.'] ?? []; - $tE = $this->getTableEntries($table, $TSConfig); - if (!empty($TSConfig['translateToMessage']) && !($tE['disablePrependAtCopy'] ?? false)) { + $tableEntries = $this->getTableEntries($table, $TSConfig); + if (!empty($TSConfig['translateToMessage']) && !($tableEntries['disablePrependAtCopy'] ?? false)) { $translateToMsg = $this->getLanguageService()->sL($TSConfig['translateToMessage']); $translateToMsg = @sprintf($translateToMsg, $siteLanguage->getTitle()); } @@ -4583,6 +4583,19 @@ class DataHandler implements LoggerAwareInterface if (!empty($GLOBALS['TCA'][$table]['ctrl']['enablecolumns']['disabled'])) { $hiddenFieldName = $GLOBALS['TCA'][$table]['ctrl']['enablecolumns']['disabled']; $overrideValues[$hiddenFieldName] = $row[$hiddenFieldName] ?? $GLOBALS['TCA'][$table]['columns'][$hiddenFieldName]['config']['default']; + // Override by TCA "hideAtCopy" or pageTS "disableHideAtCopy" + // Only for visible pages to get the same behaviour as for copy + if (!$overrideValues[$hiddenFieldName]) { + $TSConfig = BackendUtility::getPagesTSconfig($uid)['TCEMAIN.'] ?? []; + $tableEntries = $this->getTableEntries($table, $TSConfig); + if ( + ($GLOBALS['TCA'][$table]['ctrl']['hideAtCopy'] ?? false) + && !$this->neverHideAtCopy + && !($tableEntries['disableHideAtCopy'] ?? false) + ) { + $overrideValues[$hiddenFieldName] = 1; + } + } } $temporaryId = StringUtility::getUniqueId('NEW'); $copyTCE = $this->getLocalTCE(); diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php index 69c77d2015175cb367280f635972ffbaecc736e4..95cfb84a98bb0f18e01261d5c3eebbe923a2a1fa 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/AbstractActionTestCase.php @@ -478,6 +478,158 @@ abstract class AbstractActionTestCase extends AbstractDataHandlerActionTestCase $this->actionService->copyRecord(self::TABLE_Content, self::VALUE_ContentIdParent, self::VALUE_PageIdParent); } + public function localizePageNotHiddenHideAtCopyFalse(): void + { + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = false; + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageHiddenHideAtCopyFalse(): void + { + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = false; + + // @todo Add hidden page to importDefault.csv to make this database change superfluous. + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'hidden' => 1, + ], + [ + 'uid' => self::VALUE_PageId, + ] + ); + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + // @todo Add hidden page to importDefault.csv to make this database change superfluous. + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'hidden' => 1, + ], + [ + 'uid' => self::VALUE_PageId, + ] + ); + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'TSconfig' => 'TCEMAIN.table.pages.disableHideAtCopy = 0', + ], + [ + 'uid' => self::VALUE_PageIdWebsite, + ] + ); + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + // @todo Add hidden page to importDefault.csv to make this database change superfluous. + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'hidden' => 1, + ], + [ + 'uid' => self::VALUE_PageId, + ] + ); + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'TSconfig' => 'TCEMAIN.table.pages.disableHideAtCopy = 0', + ], + [ + 'uid' => self::VALUE_PageIdWebsite, + ] + ); + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'TSconfig' => 'TCEMAIN.table.pages.disableHideAtCopy = 1', + ], + [ + 'uid' => self::VALUE_PageIdWebsite, + ] + ); + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + // This is the default, but set it to be expressive for this test. + $GLOBALS['TCA'][self::TABLE_Page]['ctrl']['hideAtCopy'] = true; + + // @todo Add hidden page to importDefault.csv to make this database change superfluous. + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'hidden' => 1, + ], + [ + 'uid' => self::VALUE_PageId, + ] + ); + $this->getConnectionPool()->getConnectionForTable(self::TABLE_Page)->update( + self::TABLE_Page, + [ + 'TSconfig' => 'TCEMAIN.table.pages.disableHideAtCopy = 1', + ], + [ + 'uid' => self::VALUE_PageIdWebsite, + ] + ); + + $localizedTableIds = $this->actionService->localizeRecord(self::TABLE_Page, self::VALUE_PageId, self::VALUE_LanguageId); + $this->recordIds['localizedPageId'] = $localizedTableIds[self::TABLE_Page][self::VALUE_PageId]; + } + public function changePageSorting(): void { $this->actionService->moveRecord(self::TABLE_Page, self::VALUE_PageId, -self::VALUE_PageIdTarget); diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php index 14350e070950b3c1721dbea57d0dcff291c12dac..1ac2a5c0cf6a297aa0731cd5831bd171a4848fe1 100644 --- a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php @@ -772,6 +772,78 @@ class ActionTest extends AbstractActionTestCase $this->assertAssertionDataSet('localizeNestedPagesAndContents'); } + /** + * @test + */ + public function localizePageHiddenHideAtCopyFalse(): void + { + parent::localizePageHiddenHideAtCopyFalse(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyFalse(): void + { + parent::localizePageNotHiddenHideAtCopyFalse(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyNotDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyNotDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + /** * @test * See DataSet/changePageSorting.csv diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0763c30653117b67ade0435ef7668655de0d20e --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,1,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0763c30653117b67ade0435ef7668655de0d20e --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,1,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0763c30653117b67ade0435ef7668655de0d20e --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,1,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyNotDisableHideAtCopyUnset.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyNotDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0763c30653117b67ade0435ef7668655de0d20e --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyNotDisableHideAtCopyUnset.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,1,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..5fcd660dc7423fd2c66a5848bfb149f4ee3b529b --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..a77e7d03f94dac4b7504c966fbb11278460fd280 --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,0,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..a77e7d03f94dac4b7504c966fbb11278460fd280 --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,0,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyNotDisableHideAtCopyUnset.csv b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyNotDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..5fcd660dc7423fd2c66a5848bfb149f4ee3b529b --- /dev/null +++ b/typo3/sysext/core/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyNotDisableHideAtCopyUnset.csv @@ -0,0 +1,29 @@ +"pages",,,,,,,,,,,,,, +,"uid","pid","sorting","sys_language_uid","l10n_parent","deleted","hidden","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug" +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/" +,50,0,512,0,0,0,0,0,0,0,0,0,"Second Root Page","/" +,51,50,128,0,0,0,0,0,0,0,0,0,"DataHandlerTest in second tree","/data-handler" +,52,51,128,0,0,0,0,0,0,0,0,0,"Relations in second tree","/data-handler/relations" +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler" +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations" +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target" +,91,88,256,1,89,0,1,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations" +"sys_language",,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,, +"tt_content",,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header", +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0", +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1", +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2", +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3", +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3", +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1", +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1", +"sys_refindex",,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/ActionTest.php index 579cda304200b81d40cc850242c3eba3e5eec88a..56f818d9f19e1de3febd0a0e3de4a345492aae40 100644 --- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/ActionTest.php +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/ActionTest.php @@ -390,6 +390,86 @@ class ActionTest extends AbstractActionTestCase $this->assertAssertionDataSet('localizePage'); } + /** + * @test + */ + public function localizePageHiddenHideAtCopyFalse(): void + { + parent::localizePageHiddenHideAtCopyFalse(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyFalse(): void + { + parent::localizePageNotHiddenHideAtCopyFalse(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->clearWorkspaceRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + /** * @test */ diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..eca6b07ba16685e75fefd70b9f3c0ef39ceb9bdc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..eca6b07ba16685e75fefd70b9f3c0ef39ceb9bdc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..eca6b07ba16685e75fefd70b9f3c0ef39ceb9bdc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..eca6b07ba16685e75fefd70b9f3c0ef39ceb9bdc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageHiddenHideAtCopyFalse.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b1f3eb901e975d97dded170d4bd29df97bdde28 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b1f3eb901e975d97dded170d4bd29df97bdde28 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b1f3eb901e975d97dded170d4bd29df97bdde28 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b1f3eb901e975d97dded170d4bd29df97bdde28 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Discard/DataSet/localizePageNotHiddenHideAtCopyFalse.csv @@ -0,0 +1,37 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php index 0db4b82f17fcb40c709a15f14fa7b609a43ed1aa..76fd2401ac0990a4326b9c70e3fb2ae6b929ea0e 100644 --- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/ActionTest.php @@ -675,6 +675,78 @@ class ActionTest extends AbstractActionTestCase ->setTable(self::TABLE_Page)->setField('title')->setValues('[Translate to Dansk:] Relations')); } + /** + * @test + */ + public function localizePageHiddenHideAtCopyFalse(): void + { + parent::localizePageHiddenHideAtCopyFalse(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyFalse(): void + { + parent::localizePageNotHiddenHideAtCopyFalse(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + /** * @test */ diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..6894d0b84f49e21c61c4c50f08ad69f56b6e27d0 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..6894d0b84f49e21c61c4c50f08ad69f56b6e27d0 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..6894d0b84f49e21c61c4c50f08ad69f56b6e27d0 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..6894d0b84f49e21c61c4c50f08ad69f56b6e27d0 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..f32b059aebc24d29f0c95197961d014aa89da393 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..1af8d3773fd8de9998e98e3012b9ecbe47aae7cc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..f32b059aebc24d29f0c95197961d014aa89da393 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..1af8d3773fd8de9998e98e3012b9ecbe47aae7cc --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Modify/DataSet/localizePageNotHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,1,1,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"560d1e59437906ce8ecd07cbb8b61650","pages",91,"l10n_parent",,,,0,1,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php index 77644191e764c2952c8d94d67674c176f473178d..fdb280088aed266a2494cea5294a1a2c07fbc92a 100644 --- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/ActionTest.php @@ -531,6 +531,86 @@ class ActionTest extends AbstractActionTestCase ->setTable(self::TABLE_Page)->setField('title')->setValues('[Translate to Dansk:] Relations')); } + /** + * @test + */ + public function localizePageHiddenHideAtCopyFalse(): void + { + parent::localizePageHiddenHideAtCopyFalse(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyFalse(): void + { + parent::localizePageNotHiddenHideAtCopyFalse(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->publishRecord(self::TABLE_Page, $this->recordIds['localizedPageId']); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + /** * @test */ diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..4435e14913ce307fe4fd522992f6dc307b8e3ba7 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f7177bc2dcc307bbd31e9d8570ba8da3385cc2 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..4435e14913ce307fe4fd522992f6dc307b8e3ba7 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f7177bc2dcc307bbd31e9d8570ba8da3385cc2 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/Publish/DataSet/localizePageNotHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php index fd87acceaf9b4f246de41b8eeeb55dc1984f02dd..d90a7b778d399d3d529d676b4de0cba2d693bffd 100644 --- a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/ActionTest.php @@ -516,6 +516,86 @@ class ActionTest extends AbstractActionTestCase ->setTable(self::TABLE_Page)->setField('title')->setValues('[Translate to Dansk:] Relations')); } + /** + * @test + */ + public function localizePageHiddenHideAtCopyFalse(): void + { + parent::localizePageHiddenHideAtCopyFalse(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyFalse(): void + { + parent::localizePageNotHiddenHideAtCopyFalse(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopyUnset(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopyUnset(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopyUnset'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse'); + } + + /** + * @test + */ + public function localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + + /** + * @test + */ + public function localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(): void + { + parent::localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue(); + $this->actionService->publishWorkspace(self::VALUE_WorkspaceId); + $this->assertAssertionDataSet('localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue'); + } + /** * @test * This test creates a page on pid=88 (unlike other tests) and moves the new draft page on that exact level, in order to only modify the "sorting" diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..b85b3ff355ab4e2176800dd1d978c5d0b7f3d98e --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,1,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..4435e14913ce307fe4fd522992f6dc307b8e3ba7 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f7177bc2dcc307bbd31e9d8570ba8da3385cc2 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopySetToTrue.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv new file mode 100644 index 0000000000000000000000000000000000000000..4435e14913ce307fe4fd522992f6dc307b8e3ba7 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyDisableHideAtCopyUnset.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,1,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,, diff --git a/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyFalse.csv b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyFalse.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f7177bc2dcc307bbd31e9d8570ba8da3385cc2 --- /dev/null +++ b/typo3/sysext/workspaces/Tests/Functional/DataHandling/Regular/PublishAll/DataSet/localizePageNotHiddenHideAtCopyFalse.csv @@ -0,0 +1,39 @@ +"pages",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","hidden","sys_language_uid","l10n_parent","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","title","slug",,, +,1,0,256,0,0,0,0,0,0,0,0,0,"FunctionalTest","/",,, +,88,1,256,0,0,0,0,0,0,0,0,0,"DataHandlerTest","/data-handler",,, +,89,88,256,0,0,0,0,0,0,0,0,0,"Relations","/data-handler/relations",,, +,90,88,512,0,0,0,0,0,0,0,0,0,"Target","/data-handler/target",,, +,91,88,256,0,0,1,89,0,0,0,0,0,"[Translate to Dansk:] Relations","/data-handler/translate-to-dansk-relations",,, +"sys_workspace",,,,,,,,,,,,,,,,, +,"uid","pid","deleted","title","adminusers","members","db_mountpoints","file_mountpoints","freeze","live_edit","publish_access","custom_stages","stagechg_notification","edit_notification_defaults","edit_allow_notificaton_settings","publish_notification_defaults","publish_allow_notificaton_settings" +,1,0,0,"Workspace #1",,,,,0,0,0,0,0,0,0,0,0 +,2,0,0,"Workspace #2",,,,,0,0,0,0,0,0,0,0,0 +"sys_workspace_stage",,,,,,,,,,,,,,,,, +,"uid","pid","tstamp","deleted","sorting","title","responsible_persons","default_mailcomment","parentid","parenttable","notification_defaults","allow_notificaton_settings",,,,, +,1,0,1290048921,0,1,"Stage 1","be_users_3",,1,"sys_workspace",0,0,,,,, +"sys_language",,,,,,,,,,,,,,,,, +,"uid","pid","hidden","title","flag",,,,,,,,,,,, +,1,0,0,"Dansk","dk",,,,,,,,,,,, +,2,0,0,"Deutsch","de",,,,,,,,,,,, +"tt_content",,,,,,,,,,,,,,,,, +,"uid","pid","sorting","deleted","sys_language_uid","l18n_parent","l10n_source","t3_origuid","t3ver_wsid","t3ver_state","t3ver_stage","t3ver_oid","header",,,, +,296,88,256,0,0,0,0,0,0,0,0,0,"Regular Element #0",,,, +,297,89,256,0,0,0,0,0,0,0,0,0,"Regular Element #1",,,, +,298,89,512,0,0,0,0,0,0,0,0,0,"Regular Element #2",,,, +,299,89,768,0,0,0,0,0,0,0,0,0,"Regular Element #3",,,, +,300,89,1024,0,1,299,299,299,0,0,0,0,"[Translate to Dansk:] Regular Element #3",,,, +,301,89,384,0,1,297,297,297,0,0,0,0,"[Translate to Dansk:] Regular Element #1",,,, +,302,89,448,0,2,297,301,301,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #1",,,, +,310,90,256,0,0,0,0,0,0,0,0,0,"Regular Element #10",,,, +,311,90,512,0,1,0,310,310,0,0,0,0,"[Translate to Dansk:] Regular Element #10",,,, +,312,90,768,0,2,0,311,311,0,0,0,0,"[Translate to Deutsch:] [Translate to Dansk:] Regular Element #10",,,, +,320,89,512,0,0,0,0,298,2,2,0,298,"Regular Element #2",,,, +"sys_refindex",,,,,,,,,,,,,,,,, +,"hash","tablename","recuid","field","flexpointer","softref_key","softref_id","sorting","workspace","ref_table","ref_uid","ref_string",,,,, +,"01a3ce8c4e3b2bb1aa439dc29081f996","sys_workspace_stage",1,"responsible_persons",,,,0,0,"be_users",3,,,,,, +,"1130084e4038e95f2d5806b731cd416a","tt_content",300,"l18n_parent",,,,0,0,"tt_content",299,,,,,, +,"25426f92d44dd2ccf416108462b446e3","sys_workspace",1,"custom_stages",,,,0,0,"sys_workspace_stage",1,,,,,, +,"25f3b71b67f29fa33fbfd4fa2d930b70","tt_content",302,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"4a1e04a83a4a17882682d86f6cd61f3d","tt_content",301,"l18n_parent",,,,0,0,"tt_content",297,,,,,, +,"583b9974d1df1d9efb695cdabfe53a73","pages",91,"l10n_parent",,,,0,0,"pages",89,,,,,,